/* ==========================================================================
   A&B SWEET LIVING — Design Tokens
   Gallery-dark theme: every section lives on the brand's navy tones.
   Gold + script font are reserved for the signature moments only.
   ========================================================================== */
:root {
  /* Brand colors */
  --navy-950: #1A1A2E;   /* deepest background — hero, footer */
  --navy-900: #16213E;   /* mid panel — alternating gallery "rooms" */
  --navy-800: #0F3460;   /* richest panel — accent rooms, card fills */
  --gold:     #EFC07B;   /* rare signature accent — logo, signature, hairline only */
  --gold-faded: rgba(239, 192, 123, 0.7);

  /* Text on dark (no light backgrounds anywhere on this site) */
  --cream:      #F8F6F0; /* primary text on dark - enhanced contrast */
  --cream-soft: #D4D6E0; /* secondary / muted text on dark - enhanced contrast */
  --cream-faint:#A8ABBE; /* tertiary text, captions - enhanced contrast */

  --line: rgba(248, 246, 240, 0.18);
  --line-strong: rgba(248, 246, 240, 0.32);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-signature: 'Parisienne', 'Brittany Signature', cursive;

  /* Rhythm */
  --gutter: clamp(1.5rem, 5vw, 5rem);
  --section-y: clamp(4.5rem, 10vw, 8.5rem);
  --radius: 2px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-display);
  background: var(--navy-950);
  color: var(--cream);
  font-size: 1.125rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-width: 320px;
}

h1, h2, h3 { margin: 0; font-weight: 500; letter-spacing: 0.01em; color: var(--cream); overflow-wrap: break-word; word-wrap: break-word; }
p { margin: 0; overflow-wrap: break-word; word-wrap: break-word; }
a { color: inherit; text-decoration: none; overflow-wrap: break-word; word-wrap: break-word; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

/* Visible, high-contrast focus ring everywhere */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cream);
  color: var(--navy-950);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  font-family: var(--font-display);
  font-weight: 600;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ==========================================================================
   Shared layout helpers
   ========================================================================== */
.section-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
  box-sizing: border-box;
}
.section-inner.narrow { max-width: 860px; text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 1rem;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 1px;
  background: var(--gold);
}
.section-inner.narrow .eyebrow::after,
.contact .eyebrow::after,
.offer .eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
}
.hero-content .eyebrow::after { background: var(--gold); }

.lead {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  color: var(--cream-soft);
  max-width: 46ch;
  margin: 1.25rem auto 0;
  font-weight: 400;
}
.body-copy {
  font-size: 1.15rem;
  color: var(--cream-soft);
  max-width: 60ch;
  margin: 1.5rem auto 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  min-height: 3.5rem;
  min-width: 3.5rem;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.btn-primary {
  margin-top: 2.5rem;
  background: var(--cream);
  color: var(--navy-950);
  border-color: var(--cream);
  font-weight: 500;
}
.btn-primary:hover { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-primary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.btn-outline {
  color: var(--cream);
  border-color: var(--line-strong);
}
.btn-outline:hover { background: rgba(246,243,234,0.08); border-color: var(--cream); }
.btn-outline:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}


/* Media frame — shared container for real images (border, fallback fill, cover-fit) */
.media-frame {
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
  border: 1px solid var(--line);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 500;
  background: rgba(11, 13, 27, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1400px;
  margin-inline: auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.logo-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  white-space: nowrap;
}
.logo-script {
  font-family: var(--font-signature);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
}
.logo-word {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: block;
  background: var(--navy-950);
  overflow: hidden;
  padding-top: env(safe-area-inset-top, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 8rem var(--gutter) 6rem;
  max-width: 1400px;
  margin-inline: auto;
  box-sizing: border-box;
}
.hero-content .eyebrow { color: var(--gold); font-size: clamp(0.75rem, 2vw, 1rem); text-shadow: 0 2px 4px rgba(0,0,0,0.85), 0 4px 20px rgba(0,0,0,0.7); }
.hero-content .hero-eyebrow {
  background: rgba(10,10,10,0.7);
  padding: 8px 16px;
  border-left: 3px solid #C9A96E;
  border-radius: 4px;
  display: inline-block;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: normal;
  line-height: 1.4;
  z-index: 10;
  position: relative;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.05;
  max-width: 16ch;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.hero-intro{
  margin-top: clamp(2.5rem, 5vw, 4rem);
  max-width: 700px;
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(246, 243, 234, 0.22);
  width: 100%;
  box-sizing: border-box;
}

.hero-lead{
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.55;
  font-weight: 500;
  color: var(--cream);
  max-width: 36ch;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.9),
    0 6px 24px rgba(0, 0, 0, 0.75);
}

.hero-copy{
  margin: 1.35rem 0 0;
  font-size: clamp(1.18rem, 1.5vw, 1.3rem);
  line-height: 1.8;
  font-weight: 400;
  color: var(--cream);
  max-width: 58ch;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.95),
    0 6px 24px rgba(0, 0, 0, 0.85),
    0 0 2px rgba(0, 0, 0, 0.9);
}

.hero-intro .btn{
  margin-top: 2.5rem;
}

/* ==========================================================================
   Services intro — navy-900 gallery room
   ========================================================================== */
.services-intro {
  padding-top: var(--section-y);
  background: var(--navy-900);
  border-top: 1px solid var(--line);
}
.services-intro h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--cream);
}
.showcase-media {
  margin-top: clamp(3.5rem, 8vw, 6rem);
  height: clamp(320px, 45vw, 640px);
  width: 100%;
}

/* ==========================================================================
   Offer / What We Offer — navy-950 room
   ========================================================================== */
.offer {
  position: relative;
  background: transparent;
  border-top: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.offer-half {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: 70vh;
}

.offer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.offer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 70vh;
}

.offer-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 4vw, 4rem);
  text-align: center;
  max-width: 90%;
}

.offer-half-left::before,
.offer-half-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.7) 0%, rgba(26, 26, 46, 0.4) 50%, rgba(26, 26, 46, 0.7) 100%);
  z-index: 1;
}

.offer-content h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--cream);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.offer-content p {
  color: var(--cream);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  max-width: 38ch;
  margin-inline: auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.offer-warranty {
  font-family: var(--font-signature);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--gold);
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
}

/* Offer section title overlay */
.offer-title-overlay {
  position: absolute;
  top: clamp(4%, 6vw, 8%);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 0 var(--gutter);
}

.offer-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  opacity: 0.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.offer-title-underline {
  width: clamp(120px, 25vw, 160px);
  height: 3px;
  margin: 0 auto;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 8px rgba(239, 192, 123, 0.4);
}

.offer-title-underline::before,
.offer-title-underline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gold);
  border-radius: 50%;
}

.offer-title-underline::before {
  top: -4px;
  left: 10%;
  width: 80%;
  opacity: 0.7;
}

.offer-title-underline::after {
  top: -8px;
  left: 20%;
  width: 60%;
  opacity: 0.4;
}

/* Offer warranty overlay */
.offer-warranty-overlay {
  position: absolute;
  bottom: clamp(4%, 6vw, 8%);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 500px;
  padding: 0 var(--gutter);
}

.offer-warranty-text {
  font-family: var(--font-signature);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--gold);
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin: 0;
}

/* ==========================================================================
   Philosophy / Quote — navy-800 richest room, signature moment
   ========================================================================== */
.philosophy {
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
  padding-block: clamp(5rem, 12vw, 10rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.philosophy-media {
  position: absolute;
  inset: 0;
}
.philosophy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.philosophy-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,52,96,0.90) 0%, rgba(15,52,96,0) 100%);
}
.philosophy .section-inner {
  position: relative;
  z-index: 2;
}
.philosophy blockquote {
  margin: 0;
}
.philosophy p {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--cream);
}
.philosophy .signature {
  font-family: var(--font-signature);
  font-size: 2.75rem;
  color: var(--gold);
  margin-top: 2.75rem;
  line-height: 1;
}
.philosophy .attribution {
  display: block;
  font-style: normal;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-top: 0.75rem;
}

/* ==========================================================================
   Contact — navy-900 room
   ========================================================================== */
.contact {
  background: var(--navy-900);
  padding-top: var(--section-y);
  padding-bottom: 0;
}
.contact .section-inner { text-align: center; }
.contact h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--cream);
}

.contact-grid {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: left;
  max-width: 700px;
  margin-inline: auto;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2rem;
  background: rgba(15, 52, 96, 0.35);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  min-height: 5rem;
  min-width: 5rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.contact-card:hover,
.contact-card:focus-visible {
  border-color: var(--gold);
  background: rgba(15, 52, 96, 0.55);
  outline: none;
}
.contact-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.contact-label {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-faint);
  font-weight: 500;
}
.contact-value {
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 500;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.contact-emails {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: left;
  max-width: 800px;
  margin-inline: auto;
}
.contact-email-group {
  padding: 1.5rem;
  background: rgba(15, 52, 96, 0.25);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-email-group h3 {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.contact-email-link {
  font-size: 1.2rem;
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  display: inline-block;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.contact-email-link:hover,
.contact-email-link:focus-visible {
  color: var(--gold);
  border-color: var(--cream);
}
.contact-email-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.contact-email-desc {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--cream-soft);
  line-height: 1.6;
}

.map-section {
  width: 100%;
  border: 1px solid var(--line);
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
  height: clamp(260px, 32vw, 420px);
  position: relative;
}

.map-iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.map-button-text {
  background: var(--cream);
  color: var(--navy-950);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: rgba(11, 13, 27, 0.95);
  color: var(--cream-soft);
  margin-top: 0;
  border-top: 1px solid var(--line);
  padding-top: clamp(2rem, 4vw, 3rem);
}
.footer-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter) 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  width: 100%;
  box-sizing: border-box;
  align-items: center;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-col > * {
  margin-left: 0;
  padding-left: 0;
}
.footer-col h3 {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
  font-weight: 500;
  width: 100%;
}
.footer-col p { font-size: 1rem; line-height: 1.7; color: var(--cream-soft); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; width: 100%; padding-left: 0; }
.footer-col a {
  font-size: 1rem;
  border-bottom: 1px solid transparent;
  color: var(--cream-soft);
  text-decoration: none;
  display: inline-block;
  padding: 0.2rem 0;
}
.footer-col a:hover,
.footer-col a:focus-visible { color: var(--cream); border-bottom-color: var(--gold); }
.footer-col a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.footer-brand .logo-mark-footer {
  margin-bottom: 0.75rem;
  margin-left: 0;
  padding-left: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
}
.footer-brand .logo-mark-footer .logo-script { font-size: 2.5rem; }
.footer-brand .logo-mark-footer .logo-word { font-size: 0.95rem; }
.footer-contact { margin-top: 0.5rem; color: var(--cream-soft); line-height: 1.7; margin-left: 0; padding-left: 0; }

.social-list { flex-direction: column; width: 100%; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.75rem var(--gutter) 2rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--cream-faint);
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, background 0.2s ease;
  min-width: 64px;
  min-height: 64px;
}
.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-3px);
  background: var(--navy-900);
}
.whatsapp-fab:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: var(--cream);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .offer { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .offer-split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .contact-emails { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .offer-title-overlay { top: 6%; }
  .offer-warranty-overlay { bottom: 6%; }
}

@media (max-width: 760px) {
  .hero { min-height: 100vh; min-height: 100dvh; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .hero-content {
    padding: 6rem var(--gutter) 4rem;
  }
  .hero-content .hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    padding: 8px 14px;
    max-width: 100%;
  }
  .offer-split {
    min-height: auto;
  }
  .offer-half {
    min-height: 60vh;
  }
  .offer-content {
    padding: clamp(1.5rem, 4vw, 2.5rem);
  }
}

@media (max-width: 560px) {
  .header-inner { padding-block: 0.85rem; }
  .logo-script { font-size: 1.6rem; }
  .logo-word { font-size: 0.7rem; letter-spacing: 0.1em; }
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-content {
    padding: 7rem 1rem 4rem;
  }
  .hero-content .hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    padding: 8px 12px;
    white-space: normal;
    line-height: 1.4;
    max-width: 100%;
    text-transform: uppercase;
    display: inline-block;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .hero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 375px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-content {
    padding: 8rem 0.75rem 4rem;
  }
  .hero-content .hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 6px 10px;
    line-height: 1.4;
  }
}

@media (max-width: 320px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-content {
    padding: 9rem 0.5rem 4rem;
  }
  .hero-content .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    padding: 5px 8px;
    line-height: 1.5;
  }
}
