/* ───────────────── TOKENS ───────────────── */
:root {
  --bg-mint-1: #ecf6d4;
  --bg-mint-2: #d6ecd0;
  --bg-mint-soft: #ecf6db;
  --bg-cream: #f6f4ef;
  --ink: #0c0c0c;
  --ink-soft: #2a2a2a;
  --muted: #5e5e5e;
  --muted-2: #8a8a8a;
  --line: #e7e4dc;
  --line-mint: #cfe2c1;
  --white: #ffffff;
  --gold: #f5b50a;

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 12px 40px -16px rgba(20,30,15,.18);
  --shadow-lg: 0 24px 60px -20px rgba(20,30,15,.22);

  --container: 1280px;

  --font-display: "Bricolage Grotesque", "Onest", system-ui, sans-serif;
  --font-body: "Onest", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-cream);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ───────────────── TYPE ───────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.display--md {
  font-size: clamp(36px, 4.4vw, 64px);
  letter-spacing: -0.03em;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.eyebrow--light { color: rgba(255,255,255,.7); }
.lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 38ch;
  margin: 24px 0 36px;
}

/* ───────────────── BUTTONS ───────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  border: none;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); background: #1d1d1d; }
.btn__arrow {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  transition: transform .2s ease;
}
.btn:hover .btn__arrow { transform: rotate(-15deg); }
.btn--lg { padding: 18px 28px; font-size: 16px; }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--sm .btn__arrow { width: 22px; height: 22px; font-size: 11px; }
.btn--pill { padding: 12px 20px 12px 24px; }
.btn--inverse {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--inverse:hover { background: var(--ink); color: var(--white); }
.btn--inverse .btn__arrow { background: var(--ink); color: var(--white); }
.btn--inverse:hover .btn__arrow { background: var(--white); color: var(--ink); }
.btn--block { display: flex; justify-content: center; width: 100%; }

.text-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* ───────────────── NAV ───────────────── */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.brand svg { color: var(--ink); }
.brand--light { color: var(--white); }
.nav__links {
  display: flex;
  gap: 36px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 500;
}
.nav__links a { color: var(--muted); transition: color .15s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__links a.is-current { color: var(--ink); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1.5px; }

/* ───────────────── HERO ───────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero__fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(228,242,201,.88) 0%, rgba(228,242,201,.55) 30%, rgba(228,242,201,0) 56%);
}

.hero__content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 180px 32px 0;
  position: relative;
  z-index: 3;
}
.hero__content .eyebrow { margin-bottom: 36px; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(52px, 6.5vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  color: var(--ink);
  max-width: 14ch;
}
.hero__lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 40px;
  line-height: 1.5;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 0;
  position: relative;
  z-index: 5;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.star { color: var(--gold); font-size: 18px; }
.rating__sub { font-size: 13px; color: var(--ink-soft); }

/* rating pill: in document flow below hero copy (avoids covering CTAs) */
.hero__rating {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  max-width: calc(100% - 64px);
  margin: 48px 0 0;
  background: rgba(228, 242, 201, 0.96);
  border: 1px solid rgba(255,255,255,.55);
  padding: 14px 24px 14px 16px;
  border-radius: 20px;
  box-shadow: 0 6px 24px -8px rgba(20,30,15,.15);
  z-index: 2;
}
.avatars {
  display: inline-flex;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.avatars span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #ccc center/cover;
  border: 2px solid #e4f2c9;
  display: inline-block;
  position: relative;
}
.avatars span + span { margin-left: -10px; }
.hero__rating-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}

/* availability pill bottom-right */
.hero__avail {
  position: absolute;
  right: max(32px, calc((100vw - 1400px) / 2 + 32px));
  bottom: 80px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 6px 24px -8px rgba(20,30,15,.18);
  z-index: 2;
}
.dot {
  width: 8px; height: 8px;
  background: #2d8a4a;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(45,138,74,.18);
}

/* legacy hooks kept inert */
.hero__photo, .hero__proof, .proof__card, .proof__rating, .stat-chip, .floating-tag { display: none; }

/* marquee pinned to bottom of hero, pills above it */
.hero .marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  background: rgba(255,255,255,.78);
}
.hero__avail { bottom: 120px; }

/* MARQUEE */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(12,12,12,.08);
  border-bottom: 1px solid rgba(12,12,12,.08);
  padding: 22px 0;
  background: rgba(255,255,255,.25);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 50s linear infinite;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
  width: max-content;
}
.marquee__track i { font-style: normal; color: #6c8857; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ───────────────── ABOUT ───────────────── */
.about { background: var(--bg-cream); padding: 120px 0 100px; }
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  margin-bottom: 80px;
  align-items: end;
}
.about__copy { font-size: 17px; color: var(--muted); max-width: 44ch; }
.about__copy p { margin: 0 0 28px; }
.about__copy em { color: var(--ink); font-style: normal; font-weight: 500; }

.about__panels {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}
.panel--photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #d8dfd0;
}
.panel--photo img { width: 100%; height: 100%; object-fit: cover; }

.panel--stack { display: flex; flex-direction: column; gap: 24px; }
.stat-card {
  flex: 1;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.stat-card--cream {
  background: var(--bg-mint-soft);
  border: 1px solid var(--line-mint);
}
.stat-card--dark {
  background: var(--ink);
  color: var(--white);
}
.stat-card strong {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-card strong span {
  font-size: 22px;
  font-weight: 400;
  margin-left: 6px;
  color: var(--muted);
}
.stat-card--dark strong span { color: rgba(255,255,255,.6); }
.stat-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 20ch;
}
.stat-card--dark p { color: rgba(255,255,255,.7); }

.panel--quote {
  margin: 0;
  background: linear-gradient(180deg, #ecf6db 0%, #dceec5 100%);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--line-mint);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 0.6;
  color: var(--ink);
  margin-bottom: 16px;
}
.panel--quote blockquote {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
  flex: 1;
}
.panel--quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(12,12,12,.1);
  padding-top: 20px;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--muted-2) center/cover;
}
.panel--quote figcaption strong { display: block; font-weight: 600; font-size: 15px; }
.panel--quote figcaption em { display: block; font-style: normal; font-size: 13px; color: var(--muted); }

/* ───────────────── SERVICES ───────────────── */
.services {
  background:
    radial-gradient(80% 60% at 100% 0%, #dff0c9 0%, transparent 50%),
    var(--bg-cream);
  padding: 100px 0 120px;
}
.services__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.services__head .eyebrow { grid-column: 1; }
.services__head h2 { grid-column: 1; grid-row: 2; }
.services__intro {
  grid-column: 2;
  grid-row: 2;
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  max-width: 38ch;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #d8dfd0;
}
.service__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service:hover .service__photo img { transform: scale(1.04); }
.service__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.service__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  display: block;
}
.service__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.15;
}
.service__body p { font-size: 14px; color: var(--muted); margin: 0 0 20px; flex: 1; }
.service__price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  padding: 8px 14px;
  background: var(--bg-mint-soft);
  border-radius: 999px;
  align-self: flex-start;
  border: 1px solid var(--line-mint);
}

.service--featured {
  background: var(--ink);
  color: var(--white);
  border: none;
}
.service--featured .service__body h3 { color: var(--white); }
.service--featured .service__body p { color: rgba(255,255,255,.7); }
.service--featured .service__num { color: rgba(255,255,255,.5); }
.service--featured .service__price {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: var(--white);
}

.service--cta {
  background: linear-gradient(180deg, #ecf6db 0%, #dceec5 100%);
  border: 1px solid var(--line-mint);
}
.service--cta .service__body { padding: 36px 30px; }
.service--cta .btn { margin-top: 8px; align-self: flex-start; }

/* ───────────────── WHY ───────────────── */
.why { background: var(--white); padding: 120px 0; }
.why__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.why__head-right p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 42ch;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.why__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 540px;
}
.wp { margin: 0; border-radius: var(--radius); overflow: hidden; background: #d8dfd0; }
.wp img { width: 100%; height: 100%; object-fit: cover; }
.wp--tall { grid-row: 1 / span 2; }
.wp--wide { grid-column: 2; grid-row: 1 / span 2; }

.features {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
}
.features li { display: flex; flex-direction: column; gap: 8px; }
.features__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--bg-mint-soft);
  display: grid; place-items: center;
  color: var(--ink);
  margin-bottom: 6px;
  border: 1px solid var(--line-mint);
}
.features__icon svg { width: 22px; height: 22px; }
.features h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.features p { margin: 0; font-size: 14px; color: var(--muted); }

/* ───────────────── HOW ───────────────── */
.how { background: var(--bg-cream); padding: 100px 0; }
.how__head { text-align: center; margin-bottom: 64px; }
.how__head .eyebrow { display: inline-block; }
.how__head h2 { max-width: 16ch; margin: 0 auto; }
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
}
.step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 32px;
  -webkit-text-stroke: 1px var(--ink);
  color: transparent;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.step p { color: var(--muted); margin: 0; font-size: 15px; }

/* ───────────────── PRICING ───────────────── */
.pricing {
  background:
    radial-gradient(80% 60% at 0% 0%, #dff0c9 0%, transparent 55%),
    var(--bg-cream);
  padding: 120px 0;
}
.pricing__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 64px;
  margin-bottom: 64px;
}
.pricing__note { color: var(--muted); max-width: 36ch; margin: 0; font-size: 14px; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.plan header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.plan__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-mint-soft);
  color: var(--ink);
  border: 1px solid var(--line-mint);
}
.plan__tag--featured { background: var(--ink); color: var(--white); border-color: var(--ink); }
.plan header h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.plan__price strong {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan__price span { color: var(--muted); font-size: 16px; }
.plan__sub { color: var(--muted); margin: 0 0 28px; font-size: 14px; }
.plan__list {
  list-style: none;
  margin: 0 0 32px; padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan__list li {
  font-size: 14px;
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--bg-mint-soft);
  border: 1px solid var(--line-mint);
}
.plan__list li::after {
  content: "✓";
  position: absolute;
  left: 2.5px; top: 5px;
  font-size: 10px;
  color: var(--ink);
}
.plan--featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  position: relative;
}
.plan--featured .plan__sub,
.plan--featured .plan__price span { color: rgba(255,255,255,.6); }
.plan--featured .plan__list li { color: rgba(255,255,255,.9); }
.plan--featured .plan__list li::before {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
}
.plan--featured .plan__list li::after { color: var(--white); }
.plan--featured .btn {
  background: var(--white);
  color: var(--ink);
}
.plan--featured .btn:hover { background: var(--bg-mint-soft); }
.plan--featured .btn__arrow { background: var(--ink); color: var(--white); }

/* ───────────────── INQUIRY ───────────────── */
.inquiry {
  background: var(--ink);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.inquiry::before {
  content: "";
  position: absolute;
  top: -200px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(216,239,195,.12), transparent 70%);
  pointer-events: none;
}
.inquiry__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  position: relative;
}
.inquiry__side .display { color: var(--white); }
.inquiry__lede {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  margin: 24px 0 36px;
  max-width: 34ch;
}
.inquiry__points {
  list-style: none;
  padding: 0; margin: 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inquiry__points li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,.9);
}
.inquiry__points li span {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--bg-mint-soft);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 600;
}

.inquiry__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.inquiry__contact div span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.4);
  margin-bottom: 4px;
}
.inquiry__contact a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 2px;
}
.inquiry__contact p { margin: 0; font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.45; }

/* form */
.inquiry__form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--shadow-lg);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 0;
  padding: 0;
  margin: 0;
}
.field--full { grid-column: 1 / -1; }
.field__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 15px;
  padding: 14px 16px;
  background: var(--bg-cream);
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230c0c0c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.field__hint { font-size: 12px; color: var(--muted); margin-top: 4px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bg-cream);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border: 1px solid transparent;
  transition: all .15s ease;
}
.chip:hover span { background: var(--bg-mint-soft); }
.chip input:checked + span {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.check input { margin-top: 3px; accent-color: var(--ink); }
.check a { text-decoration: underline; color: var(--ink); }

.form__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.form__hint { font-size: 13px; color: var(--muted); }
.form__hint strong { color: var(--ink); font-weight: 600; }

.inquiry__success {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.success__mark {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--bg-mint-soft);
  border: 1px solid var(--line-mint);
  display: grid; place-items: center;
  color: var(--ink);
  margin-bottom: 12px;
}
.success__mark svg { width: 32px; height: 32px; }
.inquiry__success h3 { font-family: var(--font-display); font-size: 32px; font-weight: 600; letter-spacing: -0.02em; margin: 0; }
.inquiry__success p { color: var(--muted); margin: 0 0 20px; max-width: 36ch; }

/* ───────────────── REVIEWS ───────────────── */
.reviews { background: var(--bg-cream); padding: 120px 0; overflow: hidden; }
.reviews__head { text-align: center; margin-bottom: 64px; }
.reviews__head .eyebrow { display: inline-block; }
.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 14px;
}
.reviews__rating .stars { color: var(--gold); letter-spacing: 2px; }
.reviews__rating strong { font-family: var(--font-display); font-size: 18px; }
.reviews__rating span { color: var(--muted); }

.reviews__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.review blockquote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}
.review footer { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review__person { display: flex; flex-direction: column; gap: 2px; }
.review footer strong { font-weight: 600; font-size: 14px; }
.review footer em { font-style: normal; font-size: 13px; color: var(--muted); }

/* ───────────────── LEGAL ───────────────── */
.legal { background: var(--bg-cream); padding: 120px 0 100px; }
.legal__grid { max-width: 720px; margin: 0 auto; }
.legal__head { margin-bottom: 40px; }
.legal__updated { color: var(--muted); font-size: 14px; margin: 12px 0 0; }
.legal__content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 40px 0 12px;
  color: var(--ink);
}
.legal__content h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--ink);
}
.legal__content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 16px;
}
.legal__content ul {
  margin: 0 0 20px;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.legal__content li { margin-bottom: 8px; }
.legal__content a { border-bottom: 1px solid var(--ink); color: var(--ink); }
.legal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.legal__links a { border-bottom: 1px solid var(--ink); }

/* ───────────────── FAQ ───────────────── */
.faq { background: var(--white); padding: 120px 0; }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 96px;
  align-items: start;
}
.faq__head p { color: var(--muted); margin: 16px 0 0; }
.faq__head a { border-bottom: 1px solid var(--ink); }
.faq__list { display: flex; flex-direction: column; }
.faq__list details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq__list details:last-child { border-bottom: 1px solid var(--line); }
.faq__list summary {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary span {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--muted);
  transition: transform .25s ease;
}
.faq__list details[open] summary span { transform: rotate(45deg); }
.faq__list p { margin: 16px 0 0; color: var(--muted); font-size: 15px; max-width: 60ch; }

/* ───────────────── CTA ───────────────── */
.cta {
  background:
    radial-gradient(80% 60% at 100% 100%, #dff0c9 0%, transparent 60%),
    var(--bg-mint-soft);
  padding: 100px 0 120px;
}
.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: end;
}
.cta__left .display { margin-bottom: 48px; }
.cta__panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
}
.cta__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--bg-mint-soft);
  display: grid; place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--line-mint);
}
.cta__icon svg { width: 24px; height: 24px; }
.cta__panel p { margin: 0 0 20px; font-size: 15px; color: var(--muted); }

.cta__photo {
  margin: 0;
  aspect-ratio: 5/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #d8dfd0;
  box-shadow: var(--shadow);
}
.cta__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ───────────────── FOOTER ───────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.6fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer .brand { color: var(--white); margin-bottom: 20px; }
.footer__brand p { font-size: 14px; line-height: 1.5; margin: 0 0 24px; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: rgba(255,255,255,.7);
  transition: all .15s ease;
}
.footer__socials a:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.footer__col h5,
.footer__news h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: 14px; transition: color .15s ease; }
.footer__col ul a:hover { color: var(--white); }
.footer__cols {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px !important;
}

.footer__news p { font-size: 13px; margin: 0 0 16px; }
.footer__form {
  display: flex;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 4px 4px 4px 18px;
  gap: 8px;
}
.footer__form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font: inherit;
  font-size: 14px;
}
.footer__form input::placeholder { color: rgba(255,255,255,.4); }
.footer__form button {
  background: var(--white);
  color: var(--ink);
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 13px;
  transition: background .15s ease;
}
.footer__form button:hover { background: var(--bg-mint-soft); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  color: rgba(255,255,255,.5);
  gap: 24px;
  flex-wrap: wrap;
}
.footer__bottom a { color: rgba(255,255,255,.7); }
.footer__bottom a:hover { color: var(--white); }

/* ───────────────── COOKIE BANNER (glass) ───────────────── */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}
.cookie-banner__inner {
  pointer-events: auto;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 8px 32px rgba(20, 30, 15, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .cookie-banner__inner {
    background: rgba(246, 244, 239, 0.96);
  }
}
.cookie-banner__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
  flex: 1 1 200px;
}
.cookie-banner__text a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__text a:hover { color: var(--muted); }
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.cookie-banner__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: background 0.15s ease, color 0.15s ease;
}
.cookie-banner__link:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}
.cookie-banner__btn {
  border: none;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(12, 12, 12, 0.15);
  transition: background 0.15s ease, transform 0.15s ease;
}
.cookie-banner__btn:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
}

body:has(.cookie-banner) {
  padding-bottom: 96px;
}

/* ───────────────── RESPONSIVE ───────────────── */
@media (min-width: 1101px) {
  .hero__content {
    padding-top: 168px;
  }
  .hero__title {
    font-size: clamp(58px, 6.2vw, 108px);
  }
}

/* Shorter viewports: scale down so CTAs and rating stay visible */
@media (min-width: 1101px) and (max-height: 920px) {
  .hero__content {
    padding-top: 140px;
  }
  .hero__content .eyebrow {
    margin-bottom: 24px;
  }
  .hero__title {
    font-size: clamp(50px, 5.2vw, 84px);
    margin-bottom: 24px;
  }
  .hero__lede {
    margin-bottom: 28px;
  }
  .hero__rating {
    margin-top: 32px;
  }
}

@media (max-width: 1100px) {
  .hero__grid,
  .about__grid,
  .about__panels,
  .services__head,
  .services__grid,
  .why__head,
  .why__grid,
  .how__steps,
  .pricing__head,
  .pricing__grid,
  .inquiry__grid,
  .reviews__track,
  .faq__grid,
  .cta__grid,
  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .services__grid { grid-template-columns: repeat(2, 1fr) !important; }
  .reviews__track { grid-template-columns: repeat(2, 1fr) !important; }
  .pricing__grid { grid-template-columns: 1fr !important; }
  .why__photos { height: 360px; }
  .display { font-size: clamp(40px, 7vw, 64px); }
  .nav__links { display: none; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .services__grid,
  .reviews__track { grid-template-columns: 1fr !important; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero__content { padding: 140px 20px 40px; }
  .hero__avail { position: static; margin: 24px 0 0; bottom: auto; left: auto; right: auto; }
  .hero__rating { margin: 24px 0 0; }
  .hero__rating { display: inline-flex; width: auto; max-width: 100%; }
  .hero__avail { display: inline-flex; }
  .hero__cta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero__proof { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero .marquee { position: static; margin-top: 40px; }
  .marquee__track { font-size: 22px; gap: 32px; }
  .hero__bg img { object-position: center; }
  .cookie-banner {
    padding-left: 12px;
    padding-right: 12px;
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px;
    border-radius: 18px;
  }
  .cookie-banner__text {
    font-size: 12px;
    flex: none;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-end;
    margin-left: 0;
  }
  body:has(.cookie-banner) { padding-bottom: 108px; }
}

