/* ==========================================================================
   Marina Cleaners — Design System
   Warm minimal neighborhood aesthetic. Cream / sand / powder blue / sage.
   ========================================================================== */

/* --- Self-hosted variable fonts ------------------------------------------ */
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-latin-var.woff2') format('woff2-variations'),
       url('/assets/fonts/fraunces-latin-var.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin-var.woff2') format('woff2-variations'),
       url('/assets/fonts/inter-latin-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Tokens -------------------------------------------------------------- */
:root {
  /* Warm neutrals */
  --cream:        #FBF7F0;
  --cream-deep:   #F5EEE3;
  --ivory:        #FFFCF7;
  --sand:         #EFE6D8;
  --sand-deep:    #E5DACA;

  /* Supporting cool */
  --powder:       #DCE8EE;
  --powder-deep:  #C2D5E0;
  --sky:          #EAF2F5;

  /* Greens */
  --sage:         #93A98F;
  --sage-deep:    #5E7C64;
  --sage-soft:    #E7EDE4;

  /* Accent */
  --teal:         #4C7E7A;
  --teal-deep:    #3A625F;

  /* Ink */
  --navy:         #2A3548;
  --navy-soft:    #4A5670;
  --ink-muted:    #6B7488;

  /* Lines */
  --line:         #E8DFD1;
  --line-soft:    #F0E9DD;

  /* Semantic */
  --bg:           var(--cream);
  --surface:      var(--ivory);
  --text:         var(--navy);
  --text-muted:   var(--ink-muted);
  --accent:       var(--teal);
  --accent-hover: var(--teal-deep);
  --highlight:    var(--sage-deep);

  /* Shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Warm-tinted soft shadows */
  --sh-xs: 0 1px 2px rgba(58, 46, 30, .05);
  --sh-sm: 0 2px 8px rgba(58, 46, 30, .06), 0 1px 2px rgba(58, 46, 30, .04);
  --sh-md: 0 8px 24px rgba(58, 46, 30, .08), 0 2px 6px rgba(58, 46, 30, .04);
  --sh-lg: 0 20px 48px rgba(58, 46, 30, .10), 0 4px 12px rgba(58, 46, 30, .05);

  /* Type */
  --font-head: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Rhythm */
  --wrap: 1140px;
  --wrap-narrow: 820px;
  --gutter: 20px;
  --sec-y: clamp(56px, 8vw, 104px);

  --header-h: 68px;
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

/* --- Typography --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--navy);
  text-wrap: balance;
}
h1 { font-size: clamp(2.15rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.08rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0; }
p { text-wrap: pretty; }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--navy-soft); line-height: 1.6; }
.muted { color: var(--text-muted); }
.small { font-size: .94rem; }
.tiny { font-size: .84rem; }

/* Section eyebrow / kicker */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--sage);
  border-radius: 2px;
}

/* --- Layout ------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--sec-y); }
.section--tight { padding-block: clamp(40px, 5.5vw, 68px); }
.section--cream { background: var(--cream); }
.section--ivory { background: var(--ivory); }
.section--sand  { background: var(--cream-deep); }
.section--powder{ background: linear-gradient(180deg, var(--sky), var(--ivory)); }
.section--sage  { background: var(--sage-soft); }
.section--navy  { background: var(--navy); color: #EFE9E0; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #FFFCF7; }
.section--navy .lede, .section--navy p { color: #D5D2CE; }

.stack > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 26px; }
.center { text-align: center; }
.center .kicker { justify-content: center; }

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 46px); }
.section-head.center { margin-inline: auto; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  font-size: .97rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2.5px solid var(--teal); outline-offset: 3px; }
.btn--primary { background: var(--teal); color: #fff; box-shadow: var(--sh-sm); }
.btn--primary:hover { background: var(--teal-deep); transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { background: var(--ivory); border-color: var(--sage); color: var(--teal-deep); }
.btn--soft { background: var(--sage-soft); color: var(--sage-deep); }
.btn--soft:hover { background: #DCE5D8; }
.btn--light { background: #FFFCF7; color: var(--navy); }
.btn--light:hover { background: #fff; transform: translateY(-1px); }
.btn--outline-light { background: transparent; color: #FFFCF7; border-color: rgba(255,252,247,.42); }
.btn--outline-light:hover { background: rgba(255,252,247,.12); border-color: rgba(255,252,247,.7); }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--lg { padding: 16px 32px; font-size: 1.03rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 247, 240, .86);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 14px rgba(58, 46, 30, .05);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-size: 1.16rem; font-weight: 600; color: var(--navy); letter-spacing: -.01em; }
.brand-sub { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-deep); font-weight: 600; }

.nav { margin-left: auto; display: none; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-size: .94rem;
  font-weight: 500;
  color: var(--navy-soft);
  transition: background-color .16s ease, color .16s ease;
}
.nav a:hover { background: var(--ivory); color: var(--navy); }
.nav a[aria-current="page"] { background: var(--sage-soft); color: var(--sage-deep); font-weight: 600; }
.header-cta { display: none; }
.header-phone { display: none; align-items: center; gap: 7px; font-size: .92rem; font-weight: 600; color: var(--navy-soft); }
.header-phone:hover { color: var(--teal); }

.nav-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--ivory);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 17px; height: 1.5px; background: var(--navy); border-radius: 2px; position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.5px; background: var(--navy); border-radius: 2px;
  transition: transform .22s ease, top .22s ease;
}
.nav-toggle span::before { top: -5.5px; }
.nav-toggle span::after  { top: 5.5px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .26s ease;
  border-top: 1px solid transparent;
  background: var(--cream);
}
.mobile-nav.is-open { grid-template-rows: 1fr; border-top-color: var(--line); }
.mobile-nav__inner { overflow: hidden; }
.mobile-nav ul { padding: 10px var(--gutter) 20px; display: grid; gap: 2px; }
.mobile-nav a { display: block; padding: 13px 14px; border-radius: var(--r-sm); font-weight: 500; color: var(--navy-soft); }
.mobile-nav a:hover { background: var(--ivory); }
.mobile-nav .btn { margin-top: 10px; }

/* --- Hero --------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 68%); }
.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -32% auto;
  width: 56vw; height: 56vw;
  max-width: 700px; max-height: 700px;
  background: radial-gradient(closest-side, rgba(147,169,143,.16), transparent 72%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(30px, 5vw, 56px);
  padding-block: clamp(38px, 6vw, 74px) clamp(48px, 7vw, 88px);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero h1 { margin-bottom: 16px; }
.hero .lede { max-width: 540px; }
.hero-body { margin-top: 20px; display: grid; gap: 12px; color: var(--navy-soft); max-width: 560px; }
.hero-actions { margin-top: 30px; }

.hero-figure { position: relative; }
.hero-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--sand);
  aspect-ratio: 4 / 3.4;
}
.hero-media img, .hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(255,252,247,.94);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-md);
  font-size: .86rem;
  font-weight: 600;
  color: var(--navy);
}
.hero-badge svg { color: var(--sage-deep); flex-shrink: 0; }

/* Trust strip */
.trust-strip { background: var(--cream-deep); border-block: 1px solid var(--line); }
.trust-strip ul {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 30px; padding-block: 16px;
}
.trust-strip li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 600; color: var(--navy-soft);
}
.trust-strip svg { color: var(--sage-deep); flex-shrink: 0; }

/* --- Cards -------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--sh-xs);
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
  height: 100%;
}
.card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); border-color: var(--line); }
.card h3 { margin-bottom: 8px; }
.card-lead { font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.card p + p { margin-top: 10px; }
.card p { color: var(--navy-soft); }
.card-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--sage-soft);
  color: var(--sage-deep);
  margin-bottom: 16px;
}
.card-icon--powder { background: var(--powder); color: var(--teal); }
.card-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  background: var(--powder);
  color: var(--teal-deep);
  font-size: .8rem;
  font-weight: 700;
}
.card-badge span { opacity: .7; font-weight: 600; }
.card-cta { margin-top: 16px; font-weight: 600; color: var(--teal); font-size: .93rem; display: inline-flex; align-items: center; gap: 6px; }
.card-cta:hover { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 3px; }

/* Numbered steps */
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: var(--navy);
  color: #FFFCF7;
  font-family: var(--font-head);
  font-size: 1.06rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.step-note { margin-top: 12px; font-size: .88rem; color: var(--text-muted); font-style: italic; }

/* --- Price list --------------------------------------------------------- */
.price-grid { display: grid; gap: 18px; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--sh-xs);
}
.price-card > h3 { margin-bottom: 6px; }
.price-card .price-note { font-size: .88rem; color: var(--text-muted); margin-bottom: 18px; }
.price-rows { display: grid; gap: 2px; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-row .pr-name { font-weight: 500; color: var(--navy); }
.price-row .pr-detail { display: block; font-size: .82rem; color: var(--text-muted); font-weight: 400; margin-top: 2px; }
.price-row .pr-amt { font-weight: 700; color: var(--teal-deep); white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-row .pr-amt.is-quoted { color: var(--ink-muted); font-weight: 600; font-size: .9rem; }

.price-strip { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); }
.price-chip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 16px;
  text-align: center;
  box-shadow: var(--sh-xs);
}
.price-chip .pc-name { font-size: .86rem; font-weight: 600; color: var(--navy-soft); }
.price-chip .pc-amt { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--teal-deep); margin-top: 6px; }

/* --- Feature band ------------------------------------------------------- */
.facts { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); }
.fact {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 18px;
  box-shadow: var(--sh-xs);
}
.fact .f-label { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.fact .f-value { font-family: var(--font-head); font-size: 1.18rem; font-weight: 600; color: var(--navy); margin-top: 5px; }

/* --- Split media -------------------------------------------------------- */
.split { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; }
.split-media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--sand);
  aspect-ratio: 4 / 3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* --- Check list --------------------------------------------------------- */
.checklist { display: grid; gap: 11px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; color: var(--navy-soft); }
.checklist svg { flex-shrink: 0; margin-top: 4px; color: var(--sage-deep); }
.section--navy .checklist svg { color: var(--sage); }
.section--navy .checklist li { color: #D5D2CE; }

/* --- Pull quote / promise ----------------------------------------------- */
.promise-quote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  line-height: 1.32;
  color: var(--navy);
  text-wrap: balance;
}

/* --- Reviews ------------------------------------------------------------ */
.review-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--sh-xs);
  display: flex; flex-direction: column; gap: 14px;
  height: 100%;
}
.stars { display: flex; gap: 3px; color: #D8A94A; }
.review-quote { font-family: var(--font-head); font-size: 1.12rem; line-height: 1.4; color: var(--navy); }
.review-author { font-size: .86rem; color: var(--text-muted); margin-top: auto; }

/* --- Offer -------------------------------------------------------------- */
.offer {
  background: linear-gradient(150deg, var(--sage-soft) 0%, var(--powder) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4.6vw, 46px);
  box-shadow: var(--sh-md);
}
.offer-amount {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1.05;
}
.offer-detail { font-size: 1.06rem; color: var(--navy-soft); margin-top: 6px; }
.offer-terms { font-size: .84rem; color: var(--text-muted); display: grid; gap: 3px; }

/* --- FAQ ---------------------------------------------------------------- */
.faq { display: grid; gap: 10px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xs);
  overflow: hidden;
}
.faq details[open] { border-color: var(--line); box-shadow: var(--sh-sm); }
.faq summary {
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 22px; top: 50%;
  width: 11px; height: 11px;
  border-right: 1.8px solid var(--sage-deep);
  border-bottom: 1.8px solid var(--sage-deep);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .faq-a { padding: 0 22px 20px; color: var(--navy-soft); }

/* --- Forms -------------------------------------------------------------- */
.form-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--navy); }
.field .req { color: var(--teal); }
.input, .select, .textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--ivory);
  font-size: 1rem;
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.input::placeholder, .textarea::placeholder { color: #A9AEB9; }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(147,169,143,.18);
}
.textarea { min-height: 116px; resize: vertical; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7488' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3.4vw, 36px);
  box-shadow: var(--sh-md);
}
.form-note { font-size: .84rem; color: var(--text-muted); }
.form-status { border-radius: var(--r-md); padding: 14px 16px; font-size: .92rem; display: none; }
.form-status.is-ok { display: block; background: var(--sage-soft); color: var(--sage-deep); }
.form-status.is-err { display: block; background: #FBEAEA; color: #9B3B3B; }

/* --- Contact / info boxes ---------------------------------------------- */
.info-box {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--sh-xs);
}
.info-box h3 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 12px; }
.info-box address { font-style: normal; color: var(--navy-soft); line-height: 1.7; }
.info-box a { color: var(--teal-deep); font-weight: 600; }
.info-box a:hover { text-decoration: underline; text-underline-offset: 3px; }
.hours-list { display: grid; gap: 1px; }
.hours-list div {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 9px 0; border-bottom: 1px dashed var(--line-soft); font-size: .93rem;
}
.hours-list div:last-child { border-bottom: 0; }
.hours-list .d-day { color: var(--navy-soft); }
.hours-list .d-time { font-weight: 600; color: var(--navy); font-variant-numeric: tabular-nums; }
.hours-list .d-time.is-closed { color: var(--ink-muted); font-weight: 500; }
.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  background: var(--sand);
}
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

/* --- Page hero (interior) ---------------------------------------------- */
.page-hero {
  background: linear-gradient(180deg, var(--ivory), var(--cream));
  border-bottom: 1px solid var(--line-soft);
  padding-block: clamp(40px, 6vw, 72px) clamp(34px, 5vw, 58px);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lede { max-width: 660px; }
.crumbs { font-size: .84rem; color: var(--text-muted); margin-bottom: 16px; display: flex; gap: 8px; align-items: center; }
.crumbs a:hover { color: var(--teal); }

/* --- CTA band ----------------------------------------------------------- */
.cta-band { background: var(--navy); color: #EFE9E0; }
.cta-band h2 { color: #FFFCF7; }
.cta-band p { color: #D5D2CE; }

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: var(--navy); color: #C9CBCF; padding-block: clamp(44px, 6vw, 68px) 0; }
.site-footer h4 { color: #FFFCF7; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.footer-grid { display: grid; gap: 34px; }
.footer-brand .brand-name { color: #FFFCF7; }
.footer-brand .brand-sub { color: var(--sage); }
.footer-blurb { margin-top: 16px; font-size: .93rem; color: #A9AEB9; max-width: 320px; }
.footer-col ul { display: grid; gap: 9px; }
.footer-col a { font-size: .93rem; color: #C9CBCF; }
.footer-col a:hover { color: #FFFCF7; }
.footer-col address { font-style: normal; font-size: .93rem; line-height: 1.7; color: #C9CBCF; }
.footer-col address a { color: #FFFCF7; font-weight: 600; }
.footer-bottom {
  margin-top: clamp(34px, 5vw, 52px);
  border-top: 1px solid rgba(255,252,247,.12);
  padding-block: 22px 26px;
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  align-items: center; justify-content: space-between;
  font-size: .84rem; color: #949AA5;
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a:hover { color: #FFFCF7; }

/* --- Sticky mobile CTA -------------------------------------------------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 8px;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  background: rgba(251,247,240,.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: none;
}
/* Always-on quick actions on mobile: Call / Text / Schedule Pickup */
body { padding-bottom: 74px; }
.mobile-cta .btn { padding: 12px 16px; font-size: .92rem; }

/* --- Utilities ---------------------------------------------------------- */
.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: 12px; top: -60px;
  background: var(--navy); color: #fff; padding: 10px 18px;
  border-radius: var(--r-sm); z-index: 100; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }
.divider { height: 1px; background: var(--line); border: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 6px 13px; border-radius: var(--r-pill);
  background: var(--sage-soft); color: var(--sage-deep);
  font-size: .82rem; font-weight: 600;
}
.tag--powder { background: var(--powder); color: var(--teal-deep); }
.note-band {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-size: .91rem;
  color: var(--navy-soft);
}
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* --- Responsive --------------------------------------------------------- */
@media (min-width: 720px) {
  :root { --gutter: 28px; }
  .grid { gap: 24px; }
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
  .form-grid--2 .field--full { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
  .header-cta { display: inline-flex; }
  .header-phone { display: inline-flex; }
  .mobile-cta { display: none; }
  body { padding-bottom: 0; }

  .hero-inner { grid-template-columns: 1.02fr .98fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-first .split-media { order: -1; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
  .price-grid--2 { grid-template-columns: 1fr 1fr; }
  .section-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; max-width: none; }
  .section-head--split .section-head-copy { max-width: 620px; }
}

@media (min-width: 1100px) {
  h1 { letter-spacing: -0.02em; }
}

/* --- Motion & print ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .card:hover, .btn:hover { transform: none; }
}

@media print {
  .site-header, .mobile-cta, .site-footer { display: none; }
  body { background: #fff; }
}