/* ============================================================
   Kim's Valet Cleaners — kimsvaletcleaners.com
   Design system: "Valet Ticket" — mint & deep-teal brand palette,
   dry-cleaner motifs (conveyor rail, hangers, ticket stubs,
   stitched seams, soap bubbles). Since 1975.
   ============================================================ */

:root {
  /* brand */
  --ink: #00333b;            /* darkest teal — deep sections text-on-light */
  --teal: #004954;           /* logo teal — headers, dark bands */
  --teal-2: #06606a;
  --primary: #0a8f77;        /* action green-teal */
  --primary-dark: #077a65;
  --mint: #2dc9ae;           /* bright mint accent */
  --mint-soft: #d9f4ec;
  --mint-mist: #eefaf6;
  --bg: #f6fbf9;
  --card: #ffffff;
  --line: #dcebe5;
  --text: #274b4d;
  --muted: #5b7a7a;
  --tag: #ffb43c;            /* ticket-tag amber */
  --tag-ink: #4a3200;
  --star: #f5b301;

  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --font-script: "Caveat", cursive;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 44px -18px rgba(0, 73, 84, .25);
  --shadow-lift: 0 26px 54px -20px rgba(0, 73, 84, .35);
  --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--teal); line-height: 1.18; margin: 0 0 .6rem; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; letter-spacing: -.015em; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1rem; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(3.4rem, 7vw, 5.5rem) 0; }
.section-tight { padding: clamp(2.4rem, 5vw, 3.6rem) 0; }

/* skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 3000;
  background: var(--teal); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 10px 0;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* eyebrow + script accents */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--primary);
  margin-bottom: .8rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--mint); border-radius: 2px; }
.script { font-family: var(--font-script); font-weight: 700; color: var(--primary); font-size: 1.45em; line-height: 1; }

/* ------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: .85rem 1.55rem; border-radius: 999px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  line-height: 1.2;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 14px 28px -12px rgba(10, 143, 119, .55); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-dark { background: var(--teal); color: #fff; }
.btn-dark:hover { background: var(--ink); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--teal); border-color: rgba(0, 73, 84, .28); }
.btn-ghost:hover { border-color: var(--teal); background: rgba(0, 73, 84, .05); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--teal); }
.btn-light:hover { background: var(--mint-soft); transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }

/* ------------------------------------------------ topbar */
.topbar { background: var(--teal); color: #cfe9e2; font-size: .84rem; }
.topbar-in { display: flex; align-items: center; gap: 1.4rem; padding: .5rem 0; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar-item { display: inline-flex; align-items: center; gap: .42rem; white-space: nowrap; }
.topbar-item svg { width: 15px; height: 15px; color: var(--mint); flex: none; }
.topbar-spacer { flex: 1; }
.topbar-social { display: inline-flex; gap: .7rem; }
.topbar-social a { display: inline-flex; opacity: .85; }
.topbar-social a:hover { opacity: 1; }
.topbar-social svg { width: 16px; height: 16px; }
@media (max-width: 860px) { .topbar-item.hide-sm, .topbar-social { display: none; } .topbar-in { justify-content: center; } }

/* ------------------------------------------------ header */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-in { display: flex; align-items: center; gap: 1.6rem; padding: .7rem 0; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: .2rem; margin-left: auto; }
.nav a {
  font-family: var(--font-head); font-size: .92rem; font-weight: 500;
  color: var(--text); text-decoration: none; padding: .55rem .8rem; border-radius: 8px;
  transition: color .18s, background .18s;
}
.nav a:hover { color: var(--teal); background: var(--mint-mist); }
.nav a[aria-current="page"] { color: var(--teal); font-weight: 600; box-shadow: inset 0 -2px 0 var(--mint); border-radius: 8px 8px 2px 2px; }
.header-cta { margin-left: .4rem; }
.header-cta .btn { padding: .68rem 1.25rem; font-size: .88rem; }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer;
  width: 46px; height: 46px; border-radius: 10px; color: var(--teal);
}
.nav-toggle:hover { background: var(--mint-mist); }
.nav-toggle svg { width: 26px; height: 26px; }
@media (max-width: 1020px) {
  .nav { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .header-cta { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .8rem 1.2rem 1.2rem; gap: .15rem; box-shadow: var(--shadow);
  }
  .nav.open a { padding: .8rem .6rem; font-size: 1rem; border-bottom: 1px dashed var(--line); }
  .nav.open .nav-cta-mobile { margin-top: .9rem; border-bottom: 0; }
  .nav.open .nav-cta-mobile a { border-bottom: 0; }
}
.nav-cta-mobile { display: none; }
.nav .btn-primary { color: #fff; }
.nav .btn-primary:hover { color: #fff; background: var(--primary-dark); }
.nav.open .nav-cta-mobile { display: block; }

/* ------------------------------------------------ hero */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(1100px 520px at 85% -10%, rgba(45, 201, 174, .18), transparent 60%),
  radial-gradient(900px 480px at -12% 110%, rgba(10, 143, 119, .12), transparent 60%),
  linear-gradient(180deg, #fdfefe, var(--mint-mist));
}
.hero-in { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.6rem; align-items: center; padding: clamp(2.6rem, 6vw, 4.6rem) 0 clamp(2.8rem, 6vw, 4.8rem); }
.hero-script { font-family: var(--font-script); font-size: clamp(1.5rem, 2.6vw, 1.9rem); font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: .6rem; margin-bottom: .4rem; }
.hero-script svg { width: 30px; height: 30px; }
.hero h1 .hl { position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .3em;
  background: var(--mint-soft); z-index: -1; border-radius: 4px;
}
.hero-sub { font-size: 1.12rem; color: var(--muted); max-width: 34rem; margin-bottom: 1.6rem; }
.hero-ctas { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.7rem; }
.hero-trust { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; }
.trust-chip { display: inline-flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--muted); font-weight: 500; }
.trust-chip strong { color: var(--teal); font-family: var(--font-head); }
.trust-chip .stars { color: var(--star); letter-spacing: .05em; font-size: .82rem; }
@media (max-width: 940px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-rail { max-width: 560px; margin: 0 auto; }
}

/* conveyor rail scene */
.hero-rail { position: relative; }
.hero-rail svg { width: 100%; height: auto; overflow: visible; }
.rail-garment { transform-origin: 0 0; transform-box: view-box; animation: sway 5.2s ease-in-out infinite; }
.rail-garment.enter { animation: slidein 1.1s cubic-bezier(.22,.9,.35,1.1) both, sway 5.2s ease-in-out 1.1s infinite; }
.rail-garment:nth-child(odd) { animation-duration: 6.1s, 5.8s; }
@keyframes sway { 0%,100% { transform: rotate(-1.6deg);} 50% { transform: rotate(1.6deg);} }
@keyframes slidein { from { translate: 130px 0; opacity: 0; } to { translate: 0 0; opacity: 1; } }
.hero-bubbles span, .band-bubbles span {
  position: absolute; bottom: -30px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.9), rgba(45,201,174,.16) 58%, rgba(45,201,174,.3));
  border: 1px solid rgba(45, 201, 174, .35);
  animation: rise linear infinite; opacity: 0; pointer-events: none;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  12% { opacity: .8; }
  88% { opacity: .6; }
  100% { transform: translateY(-520px) translateX(24px); opacity: 0; }
}

/* ------------------------------------------------ reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .rail-garment, .rail-garment.enter { animation: none; }
  .hero-bubbles span, .band-bubbles span { animation: none; display: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------ how it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; position: relative; margin-top: 2.2rem; }
.steps::before {
  content: ""; position: absolute; top: 44px; left: 12%; right: 12%; height: 0;
  border-top: 3px dashed var(--mint); opacity: .55; z-index: 0;
}
.step { position: relative; z-index: 1; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem 1.5rem; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.step-badge {
  width: 88px; height: 88px; border-radius: 24px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--mint-soft), #fff); border: 1px solid var(--line);
  margin-bottom: 1.1rem; position: relative;
}
.step-badge svg { width: 44px; height: 44px; color: var(--teal); }
.step-num {
  position: absolute; top: -10px; right: -10px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--teal); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  display: grid; place-items: center; border: 3px solid #fff;
}
.step p { margin: 0; color: var(--muted); font-size: .95rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } .steps::before { display: none; } }

/* ------------------------------------------------ services */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 2.2rem; }
.svc-card {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem 1.5rem; box-shadow: var(--shadow); overflow: hidden;
  transition: transform .25s, box-shadow .25s; text-decoration: none; display: block; color: inherit;
}
.svc-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 0;
  border-top: 3px dashed var(--mint); opacity: 0; transition: opacity .25s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.svc-card:hover::before { opacity: .8; }
.svc-icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; background: var(--mint-mist); margin-bottom: 1rem; }
.svc-icon svg { width: 32px; height: 32px; color: var(--primary); }
.svc-card h3 { margin-bottom: .4rem; }
.svc-card p { color: var(--muted); font-size: .94rem; margin-bottom: .8rem; }
.svc-pop { font-size: .8rem; color: var(--teal); background: var(--mint-mist); border-radius: 8px; padding: .5rem .7rem; display: block; }
.svc-pop strong { font-family: var(--font-head); font-weight: 600; }
@media (max-width: 960px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------ price tickets */
.tickets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-top: 2.2rem; }
.ticket {
  position: relative; background: var(--card); border-radius: var(--radius-sm);
  border: 1px solid var(--line); box-shadow: var(--shadow); padding: 1.5rem 1.3rem 1.3rem;
  transition: transform .25s, box-shadow .25s;
}
.ticket:hover { transform: translateY(-5px) rotate(-.5deg); box-shadow: var(--shadow-lift); }
/* punched hole + string */
.ticket::before {
  content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%; background: var(--bg);
  box-shadow: inset 0 1px 3px rgba(0, 73, 84, .3), 0 0 0 3px #fff;
}
/* perforated bottom edge */
.ticket::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 46px; height: 0;
  border-top: 2px dashed var(--line);
}
.ticket-cat { font-size: .74rem; font-family: var(--font-head); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: .9rem 0 .1rem; text-align: center; }
.ticket h3 { text-align: center; margin-bottom: .1rem; }
.ticket-note { text-align: center; color: var(--muted); font-size: .86rem; margin-bottom: 1rem; }
.ticket-price { text-align: center; padding-top: .9rem; }
.ticket-price .from { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); }
.ticket-price .amt { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--primary); }
@media (max-width: 960px) { .tickets { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tickets { grid-template-columns: 1fr; } }

/* offer tag (15% off) */
.offer-tag {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--tag); color: var(--tag-ink); font-family: var(--font-head);
  font-weight: 700; font-size: .86rem; padding: .55rem 1rem .55rem .8rem; border-radius: 10px;
  position: relative; box-shadow: 0 10px 22px -10px rgba(255, 180, 60, .7);
}
.offer-tag svg { width: 18px; height: 18px; }

/* ------------------------------------------------ stats band */
.band { position: relative; overflow: hidden; background: linear-gradient(140deg, var(--teal), var(--ink)); color: #eafaf5; }
.band h2, .band h3 { color: #fff; }
.band .eyebrow { color: var(--mint); }
.band-bubbles span { background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.5), rgba(45,201,174,.12) 58%, rgba(45,201,174,.22)); border-color: rgba(255,255,255,.18); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; text-align: center; position: relative; z-index: 1; }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; line-height: 1.05; }
.stat .num .suffix { color: var(--mint); }
.stat .lbl { font-size: .9rem; color: #b9ded4; margin-top: .3rem; }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------------------------ reviews */
.review-plats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin: 2.2rem 0 1.6rem; }
.plat {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.3rem; box-shadow: var(--shadow); text-decoration: none; color: inherit;
  display: flex; align-items: center; gap: 1rem; transition: transform .25s, box-shadow .25s;
}
.plat:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.plat-logo { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--mint-mist); flex: none; }
.plat-logo svg { width: 26px; height: 26px; }
.plat-score { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--teal); }
.plat-score .stars { color: var(--star); font-size: .85rem; letter-spacing: .06em; display: block; }
.plat small { color: var(--muted); display: block; font-size: .82rem; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.quote { background: var(--mint-mist); border-radius: var(--radius); padding: 1.5rem 1.4rem; position: relative; }
.quote::before { content: "\201C"; font-family: var(--font-script); font-size: 3.4rem; color: var(--mint); position: absolute; top: .2rem; left: 1rem; line-height: 1; }
.quote p { margin: 1rem 0 .8rem; font-size: 1rem; color: var(--teal); font-weight: 500; }
.quote cite { font-style: normal; font-size: .86rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.quote cite .stars { color: var(--star); font-size: .78rem; letter-spacing: .05em; }
@media (max-width: 860px) { .review-plats, .quotes { grid-template-columns: 1fr; } }

/* ------------------------------------------------ app band */
.app-band { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.4rem; align-items: center; }
.store-badges { display: flex; gap: .8rem; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: .65rem; text-decoration: none;
  background: var(--ink); color: #fff; border-radius: 12px; padding: .6rem 1.15rem;
  transition: transform .2s, background .2s; border: 1px solid rgba(255,255,255,.14);
}
.store-badge:hover { transform: translateY(-2px); background: #000; }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .sb-txt { line-height: 1.15; }
.store-badge .sb-txt small { display: block; font-size: .64rem; opacity: .8; letter-spacing: .04em; text-transform: uppercase; }
.store-badge .sb-txt strong { font-family: var(--font-head); font-size: .98rem; font-weight: 600; }
@media (max-width: 860px) { .app-band { grid-template-columns: 1fr; } }

/* ------------------------------------------------ FAQ */
.faq { max-width: 760px; margin: 2rem auto 0; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .8rem; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--teal);
  padding: 1.05rem 3.2rem 1.05rem 1.3rem; position: relative;
}
.faq-q:hover { background: var(--mint-mist); }
.faq-q::after {
  content: ""; position: absolute; right: 1.2rem; top: 50%; width: 11px; height: 11px;
  border-right: 2.5px solid var(--primary); border-bottom: 2.5px solid var(--primary);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s;
}
.faq-item.open .faq-q::after { transform: translateY(-30%) rotate(225deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-in { padding: 0 1.3rem 1.15rem; color: var(--muted); font-size: .96rem; }

/* ------------------------------------------------ areas */
.area-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.area-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1.05rem; font-size: .9rem; font-weight: 500; color: var(--teal);
}
.area-chip svg { width: 15px; height: 15px; color: var(--primary); }
.area-chip.primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.area-chip.primary svg { color: var(--mint); }

/* ------------------------------------------------ CTA band */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-band p { max-width: 560px; margin: 0 auto 1.6rem; color: #b9ded4; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ------------------------------------------------ page hero (inner pages) */
.page-hero { background:
  radial-gradient(900px 420px at 90% -20%, rgba(45, 201, 174, .16), transparent 60%),
  linear-gradient(180deg, #fdfefe, var(--mint-mist));
  padding: clamp(2.6rem, 5vw, 4rem) 0; border-bottom: 1px solid var(--line);
}
.page-hero .hero-sub { margin-bottom: 1.2rem; }
.breadcrumbs { font-size: .82rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--primary); text-decoration: underline; }

/* ------------------------------------------------ split sections */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: center; }
.split.rev > .split-media { order: 2; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split.rev > .split-media { order: 0; } }
.check-list { list-style: none; padding: 0; margin: 1rem 0 1.4rem; }
.check-list li { padding-left: 2rem; position: relative; margin-bottom: .65rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .32em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--mint-soft) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230a8f77" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M5 13l4 4 10-11"/></svg>') center/12px no-repeat;
}

/* info cards */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 2rem; }
.info-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; box-shadow: var(--shadow); }
.info-card h3 { display: flex; align-items: center; gap: .6rem; }
.info-card h3 svg { width: 24px; height: 24px; color: var(--primary); flex: none; }
.info-card p { color: var(--muted); font-size: .95rem; margin: 0; }
@media (max-width: 860px) { .info-cards { grid-template-columns: 1fr; } }

/* note / callout */
.callout {
  background: var(--mint-mist); border-left: 4px solid var(--mint); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.3rem; margin: 1.4rem 0; font-size: .95rem; color: var(--teal);
}
.callout strong { font-family: var(--font-head); }

/* ------------------------------------------------ contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.2rem; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.8rem 1.6rem; }
.contact-rows { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.contact-rows li { display: flex; gap: .9rem; align-items: flex-start; padding: .8rem 0; border-bottom: 1px dashed var(--line); }
.contact-rows li:last-child { border-bottom: 0; }
.contact-rows svg { width: 21px; height: 21px; color: var(--primary); flex: none; margin-top: .15rem; }
.contact-rows a { color: var(--teal); font-weight: 600; text-decoration: none; }
.contact-rows a:hover { color: var(--primary); }
.contact-rows small { display: block; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
label { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--teal); display: block; margin-bottom: .35rem; }
input, textarea, select {
  width: 100%; font: inherit; color: var(--text); background: #fff;
  border: 1.5px solid var(--line); border-radius: 10px; padding: .75rem .9rem;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--mint); box-shadow: 0 0 0 3px rgba(45, 201, 174, .18); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .8rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 320px; height: 100%; }

/* ------------------------------------------------ prose (privacy) */
.prose { max-width: 800px; }
.prose h2 { font-size: 1.35rem; margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }

/* ------------------------------------------------ footer */
.site-footer { background: var(--ink); color: #b9ded4; font-size: .93rem; }
.footer-cta { background: var(--teal); }
.footer-in { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 2.2rem; padding: 3.2rem 0 2.4rem; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; letter-spacing: .04em; }
.site-footer a { color: #cfe9e2; text-decoration: none; }
.site-footer a:hover { color: var(--mint); text-decoration: underline; }
.footer-brand .f-logo { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #fff; line-height: 1.2; }
.footer-brand .f-logo .script { color: var(--mint); font-size: 1.2em; }
.footer-brand p { font-size: .9rem; margin-top: .8rem; color: #9fcdc2; }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: .55rem; }
.footer-list li svg { width: 15px; height: 15px; color: var(--mint); margin-right: .45rem; vertical-align: -2px; }
.footer-social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer-social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--primary); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; font-size: .82rem; color: #8dbcb1; }
.footer-bottom-in { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.footer-bottom a { color: #8dbcb1; }
@media (max-width: 960px) { .footer-in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-in { grid-template-columns: 1fr; } }

/* util */
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::before { display: none; }
.mt-2 { margin-top: 2rem; }
.section-head { max-width: 640px; }
.section-head.center { margin-left: auto; margin-right: auto; }
