/* ============================================================
   THE NOOK — Design System
   Brand mint sampled from logo: #809888
   Fonts: Montserrat (headings/UI) + Pontano Sans (body) — both used on thenookstt.com
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette (mint/sage from logo + warm neutrals) */
  --sage:        #809888;   /* primary brand mint */
  --sage-dark:   #61776a;
  --sage-darker: #495a50;
  --sage-100:    #e7eee9;
  --sage-50:     #f1f5f2;
  --cream:       #f6f1e9;   /* warm page background */
  --paper:       #fcfaf5;   /* card / surface */
  --ink:         #2c322e;   /* warm near-black text */
  --ink-soft:    #5c625c;
  --line:        #e4ded2;   /* hairline borders */
  --clay:        #bf8157;   /* warm terracotta accent */
  --clay-soft:   #e8d0bb;
  --blush:       #d9b7a8;
  --white:       #ffffff;
  --shadow-sm: 0 2px 10px rgba(44,50,46,.06);
  --shadow:    0 14px 40px rgba(44,50,46,.10);
  --shadow-lg: 0 28px 70px rgba(44,50,46,.16);

  /* Type */
  --font-head: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Pontano Sans", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --radius:   14px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 3rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .25vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--sage-dark); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.3rem); font-weight: 300; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3rem); font-weight: 300; }
h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: .02em; }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }
.eyebrow {
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--sage-dark);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content:""; width: 26px; height: 1px; background: var(--sage); display: inline-block; }
.eyebrow.center::after { content:""; width: 26px; height: 1px; background: var(--sage); display: inline-block; }
.eyebrow.center { justify-content: center; }
.lead { font-size: clamp(1.08rem, 1rem + .5vw, 1.3rem); color: var(--ink-soft); }
.script { font-family: var(--font-head); font-style: italic; font-weight: 300; color: var(--sage-dark); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: 820px; }
.section { padding-block: var(--section-y); }
.section.tint { background: var(--sage-50); }
.section.paper { background: var(--paper); }
.section.dark { background: var(--sage-darker); color: #eef2ee; }
.section.dark h1, .section.dark h2, .section.dark h3 { color: #fff; }
.section.dark p { color: #d4ddd5; }
.section.dark .eyebrow { color: var(--clay-soft); }
.section.dark .eyebrow::before, .section.dark .eyebrow.center::after { background: var(--clay-soft); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { margin-top: 1rem; }
.grid { display: grid; gap: clamp(1.2rem, 3vw, 2rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: .86rem; letter-spacing: .04em;
  padding: .95rem 1.8rem; border-radius: var(--radius-pill); border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  text-align: center; line-height: 1; cursor: pointer; white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary { background: var(--sage); color: #fff; box-shadow: 0 10px 24px rgba(128,152,136,.35); }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(97,119,106,.40); }
.btn-clay { background: var(--clay); color: #fff; box-shadow: 0 10px 24px rgba(191,129,87,.32); }
.btn-clay:hover { background: #a86c44; transform: translateY(-3px); }
.btn-outline { border-color: var(--sage); color: var(--sage-dark); background: transparent; }
.btn-outline:hover { background: var(--sage); color: #fff; transform: translateY(-3px); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: #fff; color: var(--sage-darker); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-sm { padding: .65rem 1.15rem; font-size: .78rem; }
.btn-lg { padding: 1.1rem 2.3rem; font-size: .95rem; }
.link-arrow { font-family: var(--font-head); font-weight: 600; font-size: .88rem; letter-spacing: .03em; color: var(--sage-dark); display: inline-flex; align-items: center; gap: .5rem; }
.link-arrow svg { transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,241,233,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s;
}
.site-header.scrolled { background: rgba(252,250,245,.92); box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 118px; }
.nav-logo { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.nav-logo img { height: 100px; width: auto; }
.nav-logo .wordmark { font-family: var(--font-head); font-weight: 300; font-size: 1.45rem; letter-spacing: .14em; color: var(--sage-dark); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: .84rem; letter-spacing: .05em;
  color: var(--ink); padding: .6rem .8rem; border-radius: var(--radius-pill); position: relative; transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a::after {
  content:""; position: absolute; left: 50%; bottom: .35rem; width: 0; height: 2px; background: var(--sage);
  transform: translateX(-50%); transition: width .25s var(--ease); border-radius: 2px;
}
.nav-links a:hover { color: var(--sage-dark); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 18px; }
.nav-links a[aria-current="page"] { color: var(--sage-dark); }
.nav-links [data-mobile-cta] { display: none; } /* shown only inside the mobile menu */
.nav-actions { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.cart-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line);
  color: var(--ink); transition: transform .2s, border-color .2s, background .2s;
}
.cart-btn:hover { transform: translateY(-2px); border-color: var(--sage); color: var(--sage-dark); }
.cart-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--clay); color: #fff; border-radius: 999px; font-family: var(--font-head);
  font-size: .68rem; font-weight: 700; display: none; align-items: center; justify-content: center;
}
.cart-count.show { display: flex; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content:""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transform: translate(-50%,-50%); transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.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); }

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    position: fixed; inset: 118px 0 auto 0; flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--paper); padding: 1.2rem var(--gutter) 2rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .4s var(--ease); max-height: calc(100vh - 118px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: .95rem 1rem; font-size: 1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-links a::after { display: none; }
  .nav-links .btn { margin-top: .8rem; }
  .nav-links [data-mobile-cta] { display: inline-flex; }
  .nav-cta-desktop { display: none; }
}

/* skip link */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--sage-darker); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 10px 0; font-family: var(--font-head); font-weight: 600; }
.skip-link:focus { left: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center; padding-block: clamp(2.5rem, 6vw, 5rem); }
.hero-copy .eyebrow { margin-bottom: 1.4rem; }
.hero-copy h1 { margin-bottom: 1.4rem; }
.hero-copy h1 .script { display: block; font-size: .92em; }
.hero-copy p { max-width: 46ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-media { position: relative; }
.hero-media .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--paper); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: .9rem; max-width: 240px;
}
.hero-badge .dot { width: 42px; height: 42px; border-radius: 50%; background: var(--sage-100); color: var(--sage-dark); display: grid; place-items: center; flex-shrink: 0; }
.hero-badge .dot svg { width: 22px; height: 22px; }
.hero-badge strong { display: block; font-family: var(--font-head); font-size: .95rem; }
.hero-badge span { font-size: .8rem; color: var(--ink-soft); }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .eyebrow, .hero-cta { justify-content: center; }
  .hero-copy p { margin-inline: auto; }
  .hero-media { max-width: 460px; margin-inline: auto; width: 100%; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -26px; }
}

/* marquee trust strip */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-row { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; align-items: center; justify-content: center; padding-block: 1.4rem; }
.trust-row span { font-family: var(--font-head); font-weight: 500; font-size: .82rem; letter-spacing: .04em; color: var(--ink-soft); display: inline-flex; align-items: center; gap: .5rem; }
.trust-row span svg { width: 18px; height: 18px; color: var(--sage); }

/* ---------- Cards ---------- */
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-tag { position: absolute; top: 1rem; left: 1rem; background: rgba(252,250,245,.92); color: var(--sage-darker); font-family: var(--font-head); font-weight: 600; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: .4rem .8rem; border-radius: var(--radius-pill); }
.card-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.card-body h3 { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.card-price { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--sage-dark); white-space: nowrap; }
.card-body p { font-size: .96rem; flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .4rem; }

/* feature list */
.feature-list { display: grid; gap: .7rem; }
/* hanging-marker layout so inline links/bold inside an item flow naturally (no flex-item splitting) */
.feature-list li { position: relative; padding-left: 1.85rem; font-size: .96rem; color: var(--ink-soft); line-height: 1.5; }
.feature-list li svg { position: absolute; left: 0; top: .2rem; width: 20px; height: 20px; color: var(--sage); }

/* split feature row */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,4rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy .eyebrow { margin-bottom: 1rem; }
.split-copy h2 { margin-bottom: 1rem; }
.split-copy > p { margin-bottom: 1.4rem; }
.split-copy .btn { margin-top: 1.6rem; }
@media (max-width: 840px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
.stats .num { font-family: var(--font-head); font-weight: 300; font-size: clamp(2rem,1.4rem+2vw,3.1rem); color: var(--sage-dark); line-height: 1; }
.stats .lbl { font-size: .85rem; color: var(--ink-soft); margin-top: .5rem; }
@media (max-width: 660px) { .stats { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; } }

/* ---------- Add-on / shop grid ---------- */
.shop-toolbar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; align-items: center; }
.chip { font-family: var(--font-head); font-weight: 500; font-size: .8rem; letter-spacing: .03em; padding: .55rem 1.1rem; border-radius: var(--radius-pill); border: 1.5px solid var(--line); background: var(--paper); color: var(--ink-soft); transition: all .2s; }
.chip:hover { border-color: var(--sage); color: var(--sage-dark); }
.chip.active { background: var(--sage); color: #fff; border-color: var(--sage); }
.shop-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1rem,2vw,1.5rem); }
@media (max-width: 1000px) { .shop-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 760px) { .shop-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px) { .shop-grid { grid-template-columns: 1fr; } }
.product { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-media { aspect-ratio: 1/1; background: var(--sage-50); position: relative; overflow: hidden; display: grid; place-items: center; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product:hover .product-media img { transform: scale(1.07); }
.product-icon { color: var(--sage); opacity: .5; }
.product-icon svg { width: 54px; height: 54px; }
.product-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.product-cat { font-family: var(--font-head); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--clay); }
.product h3 { font-size: 1.02rem; font-weight: 600; }
.product-desc { font-size: .85rem; color: var(--ink-soft); flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-top: .6rem; }
.product-price { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--sage-dark); }
.add-btn { display: inline-flex; align-items: center; gap: .4rem; background: var(--sage-100); color: var(--sage-darker); border: none; border-radius: var(--radius-pill); padding: .55rem .9rem; font-family: var(--font-head); font-weight: 600; font-size: .78rem; transition: all .2s; }
.add-btn:hover { background: var(--sage); color: #fff; }
.add-btn.added { background: var(--clay); color: #fff; }
.add-btn svg { width: 15px; height: 15px; }

/* qty stepper */
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; background: var(--white); }
.qty button { width: 30px; height: 30px; background: transparent; border: none; color: var(--sage-dark); font-size: 1.1rem; display: grid; place-items: center; }
.qty button:hover { background: var(--sage-100); }
.qty span { min-width: 26px; text-align: center; font-family: var(--font-head); font-weight: 600; font-size: .85rem; }

/* ---------- Cart drawer ---------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(44,50,46,.45); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 90; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--cream); z-index: 100;
  transform: translateX(100%); transition: transform .4s var(--ease); display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-weight: 500; }
.cart-close { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); display: grid; place-items: center; }
.cart-close:hover { background: var(--sage-100); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: .9rem; }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; }
.cart-empty svg { width: 54px; height: 54px; color: var(--sage); opacity: .4; margin: 0 auto 1rem; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: .3rem .8rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.cart-item h4 { font-size: .92rem; font-weight: 600; }
.cart-item .ci-price { font-family: var(--font-head); font-weight: 600; color: var(--sage-dark); font-size: .9rem; }
.cart-item .ci-controls { display: flex; align-items: center; gap: .8rem; grid-column: 1 / -1; margin-top: .3rem; }
.ci-remove { background: none; border: none; color: var(--ink-soft); font-size: .78rem; font-family: var(--font-head); text-decoration: underline; }
.ci-remove:hover { color: var(--clay); }
.cart-foot { padding: 1.3rem 1.5rem; border-top: 1px solid var(--line); background: var(--paper); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .3rem; }
.cart-total .t-lbl { font-family: var(--font-head); font-weight: 600; }
.cart-total .t-val { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--sage-dark); }
.cart-note { font-size: .76rem; color: var(--ink-soft); margin-bottom: 1rem; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { display: grid; gap: .8rem; }
.acc-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.acc-item.open { box-shadow: var(--shadow-sm); border-color: var(--sage); }
.acc-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; padding: 1.3rem 1.5rem; background: none; border: none; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.acc-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--sage-100); color: var(--sage-dark); display: grid; place-items: center; transition: transform .3s var(--ease), background .3s; position: relative; }
.acc-icon::before, .acc-icon::after { content:""; position: absolute; background: currentColor; border-radius: 2px; }
.acc-icon::before { width: 12px; height: 2px; } .acc-icon::after { width: 2px; height: 12px; transition: transform .3s var(--ease); }
.acc-item.open .acc-icon { background: var(--sage); color: #fff; }
.acc-item.open .acc-icon::after { transform: scaleY(0); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-panel-inner { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .03em; color: var(--ink); }
.field label .req { color: var(--clay); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); padding: .85rem 1rem;
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius); transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 4px var(--sage-100); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.help { font-size: .78rem; color: var(--ink-soft); }
.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); }
.check input { width: 20px; height: 20px; margin-top: .15rem; accent-color: var(--sage); flex-shrink: 0; }

/* selectable cards (booking type / space) */
.choice-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice label { display: flex; flex-direction: column; gap: .5rem; padding: 1.3rem; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--paper); cursor: pointer; height: 100%; transition: all .2s; }
.choice label:hover { border-color: var(--sage); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.choice input:checked + label { border-color: var(--sage); background: var(--sage-50); box-shadow: 0 0 0 3px var(--sage-100); }
.choice input:focus-visible + label { outline: 3px solid var(--sage-dark); outline-offset: 2px; }
.choice .ch-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--sage-100); color: var(--sage-dark); display: grid; place-items: center; }
.choice .ch-icon svg { width: 22px; height: 22px; }
.choice strong { font-family: var(--font-head); font-size: 1rem; }
.choice small { font-size: .82rem; color: var(--ink-soft); }
.choice input:checked + label .ch-icon { background: var(--sage); color: #fff; }

/* ---------- Booking wizard ---------- */
.wizard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.wiz-progress { display: flex; background: var(--sage-50); border-bottom: 1px solid var(--line); }
.wiz-progress li { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .4rem; padding: 1rem .5rem; font-family: var(--font-head); font-size: .74rem; font-weight: 600; letter-spacing: .03em; color: var(--ink-soft); position: relative; text-align: center; }
.wiz-progress li .step-num { width: 30px; height: 30px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--ink-soft); transition: all .3s; }
.wiz-progress li.active .step-num { background: var(--sage); border-color: var(--sage); color: #fff; }
.wiz-progress li.done .step-num { background: var(--sage-dark); border-color: var(--sage-dark); color: #fff; }
.wiz-progress li.active, .wiz-progress li.done { color: var(--sage-dark); }
.wiz-progress li:not(:last-child)::after { content:""; position: absolute; top: 1.95rem; left: 60%; width: 80%; height: 2px; background: var(--line); z-index: 0; }
.wiz-progress li.done:not(:last-child)::after { background: var(--sage); }
.wiz-label { display: block; }
@media (max-width: 620px) { .wiz-label { display: none; } .wiz-progress li:not(:last-child)::after { top: 1.4rem; } }
.wiz-body { padding: clamp(1.5rem, 4vw, 2.6rem); }
.wiz-step { display: none; animation: fade .4s var(--ease); }
.wiz-step.active { display: block; }
.wiz-step h3 { margin-bottom: .4rem; }
.wiz-step > p.lead { margin-bottom: 1.6rem; }
.wiz-foot { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.wiz-summary { background: var(--sage-50); border-radius: var(--radius); padding: 1.3rem 1.5rem; display: grid; gap: .6rem; }
.wiz-summary .row { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; }
.wiz-summary .row span:first-child { color: var(--ink-soft); }
.wiz-summary .row span:last-child { font-family: var(--font-head); font-weight: 600; color: var(--ink); text-align: right; }
.wiz-summary .row.total { border-top: 1px dashed var(--blush); padding-top: .7rem; margin-top: .3rem; }
.wiz-summary .row.total span:last-child { color: var(--sage-dark); font-size: 1.15rem; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* form callout */
.callout { background: var(--sage-50); border: 1px solid var(--sage-100); border-left: 4px solid var(--sage); border-radius: var(--radius); padding: 1.1rem 1.3rem; display: flex; gap: .8rem; }
.callout svg { width: 22px; height: 22px; color: var(--sage-dark); flex-shrink: 0; margin-top: .1rem; }
.callout p { font-size: .9rem; margin: 0; }
.callout.clay { background: #fbf3ec; border-color: var(--clay-soft); border-left-color: var(--clay); }
.callout.clay svg { color: var(--clay); }

/* ---------- Newsletter ---------- */
.newsletter { background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem,5vw,3.5rem); text-align: center; position: relative; overflow: hidden; }
.newsletter::before, .newsletter::after { content:""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.08); }
.newsletter::before { width: 220px; height: 220px; top: -80px; right: -60px; }
.newsletter::after { width: 160px; height: 160px; bottom: -70px; left: -40px; }
.newsletter h2, .newsletter p { color: #fff; position: relative; }
.newsletter p { color: #e7efe9; max-width: 48ch; margin: 1rem auto 1.8rem; }
.news-form { position: relative; display: flex; gap: .6rem; max-width: 480px; margin-inline: auto; flex-wrap: wrap; }
.news-form input { flex: 1; min-width: 200px; padding: .95rem 1.2rem; border-radius: var(--radius-pill); border: none; font-family: var(--font-body); font-size: 1rem; }
.news-form input:focus { outline: none; box-shadow: 0 0 0 4px rgba(255,255,255,.3); }
.news-msg { position: relative; color: #fff; font-size: .9rem; margin-top: 1rem; min-height: 1.2em; font-weight: 600; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-block: clamp(2.5rem,6vw,4.5rem) clamp(2rem,4vw,3rem); text-align: center; }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero p { max-width: 60ch; margin: 1.1rem auto 0; }
.breadcrumb { font-family: var(--font-head); font-size: .76rem; letter-spacing: .04em; color: var(--ink-soft); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--sage-dark); }

/* ---------- Gallery ---------- */
.gallery { columns: 3 240px; column-gap: clamp(.8rem,2vw,1.2rem); }
.gallery img { width: 100%; border-radius: var(--radius); margin-bottom: clamp(.8rem,2vw,1.2rem); break-inside: avoid; transition: transform .4s var(--ease), filter .4s; box-shadow: var(--shadow-sm); }
.gallery img:hover { transform: scale(1.02); filter: saturate(1.08); }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; }
.quote-card .stars { display: flex; gap: .15rem; color: var(--clay); }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-size: 1.05rem; color: var(--ink); line-height: 1.6; font-style: italic; }
.quote-card .who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.quote-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--sage-100); color: var(--sage-dark); display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; }
.quote-card .who strong { display: block; font-family: var(--font-head); font-size: .95rem; }
.quote-card .who span { font-size: .82rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--sage-darker); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.2rem,5vw,4rem); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: #d4ddd5; max-width: 52ch; margin: 0 auto 2rem; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cdd3cd; padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.6rem,4vw,3rem); margin-bottom: 3rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .wordmark { font-family: var(--font-head); font-weight: 300; font-size: 1.5rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; }
.footer-brand img { height: 50px; margin-bottom: 1rem; }
.footer-brand p { color: #aab1aa; font-size: .92rem; margin-top: .9rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a, .footer-col li { font-size: .92rem; color: #b6bdb6; transition: color .2s; display: inline-flex; align-items: center; gap: .5rem; }
.footer-col a:hover { color: var(--sage); }
.footer-col svg { width: 16px; height: 16px; color: var(--sage); flex-shrink: 0; }
.social-row { display: flex; gap: .7rem; margin-top: 1.2rem; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .2s, transform .2s; }
.social-row a:hover { background: var(--sage); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; align-items: center; font-size: .82rem; color: #8d948d; }
.footer-bottom a:hover { color: var(--sage); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--ink); color: #fff; padding: .9rem 1.4rem; border-radius: var(--radius-pill); font-family: var(--font-head); font-weight: 600; font-size: .88rem; box-shadow: var(--shadow); z-index: 200; display: flex; align-items: center; gap: .6rem; transition: transform .4s var(--ease); }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: var(--sage); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }
.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; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--section-y); }

/* ============================================================
   AVAILABILITY CALENDAR (mockup — swappable for a live embed)
   ============================================================ */
:root { --cat-events:#809888; --cat-hair:#bf8157; --cat-photo:#6f93a8; --cat-public:#c2a24c; }
.demo-banner { background:#fbf3ec; border:1px solid var(--clay-soft); border-left:4px solid var(--clay); border-radius:var(--radius); padding:1rem 1.2rem; display:flex; gap:.8rem; align-items:flex-start; margin-bottom:1.6rem; }
.demo-banner svg { width:22px; height:22px; color:var(--clay); flex-shrink:0; margin-top:.1rem; }
.demo-banner p { font-size:.9rem; margin:0; }
.cal-toolbar { display:flex; flex-wrap:wrap; gap:1rem; align-items:center; justify-content:space-between; margin-bottom:1.2rem; }
.cal-nav { display:flex; align-items:center; gap:.8rem; }
.cal-nav button { width:42px; height:42px; border-radius:50%; border:1px solid var(--line); background:var(--paper); color:var(--sage-dark); display:grid; place-items:center; transition:all .2s; }
.cal-nav button:hover { background:var(--sage-100); }
.cal-nav h3 { font-family:var(--font-head); font-weight:500; min-width:200px; text-align:center; }
.cal-filters { display:flex; flex-wrap:wrap; gap:.5rem; }
.cal-legend { display:flex; flex-wrap:wrap; gap:1rem 1.4rem; margin:1.4rem 0; padding:1rem 1.2rem; background:var(--sage-50); border-radius:var(--radius); }
.legend-item { display:flex; align-items:center; gap:.5rem; font-size:.82rem; font-family:var(--font-head); font-weight:600; color:var(--ink-soft); }
.legend-dot { width:14px; height:14px; border-radius:4px; flex-shrink:0; }
.cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:6px; }
.cal-dow { font-family:var(--font-head); font-weight:600; font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-soft); text-align:center; padding:.4rem 0; }
.cal-cell { background:var(--paper); border:1px solid var(--line); border-radius:10px; min-height:104px; padding:.5rem; display:flex; flex-direction:column; gap:.25rem; transition:box-shadow .2s, border-color .2s; }
.cal-cell.out { background:transparent; border-color:transparent; }
.cal-cell.past { opacity:.45; }
.cal-cell.today { border-color:var(--sage); box-shadow:0 0 0 2px var(--sage-100); }
.cal-date { font-family:var(--font-head); font-weight:600; font-size:.82rem; color:var(--ink); }
.cal-cell.today .cal-date { color:var(--sage-dark); }
.cal-chip { font-family:var(--font-head); font-weight:600; font-size:.62rem; letter-spacing:.02em; padding:.18rem .4rem; border-radius:6px; line-height:1.25; display:flex; align-items:center; gap:.3rem; }
.cal-chip .cdot { width:7px; height:7px; border-radius:50%; flex-shrink:0; }
.cal-chip.open { background:#eef3ef; color:var(--sage-darker); }
.cal-chip.booked { background:#f0ece6; color:#8a7f73; }
.cal-chip.public { background:#faf3df; color:#7a6526; }
@media (max-width:680px){ .cal-cell{ min-height:74px; padding:.35rem; } .cal-chip{ font-size:.56rem; } .cal-nav h3{ min-width:130px; font-size:1rem; } .cal-dow{ font-size:.6rem; } }

/* ---------- Grouped booking-type options (wizard step 1) ---------- */
.choice-group { margin-bottom: 1.6rem; }
.choice-group:last-child { margin-bottom: 0; }
.choice-group-label { font-family: var(--font-head); font-weight: 700; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-dark); margin: 0 0 .15rem; display: flex; align-items: center; gap: .6rem; }
.choice-group-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.choice-group-note { font-size: .85rem; color: var(--ink-soft); margin: 0 0 .8rem; }

/* ---------- Rich package card (Micro Wedding inclusions in wizard step 1) ---------- */
.choice-inclusions { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 1.1rem; margin-top: .9rem; padding-top: .9rem; border-top: 1px solid var(--line); width: 100%; }
.choice-inclusions li { display: flex; gap: .45rem; align-items: flex-start; font-size: .84rem; color: var(--ink-soft); }
.choice-inclusions li svg { width: 15px; height: 15px; color: var(--sage); flex-shrink: 0; margin-top: .18rem; }
@media (max-width: 600px) { .choice-inclusions { grid-template-columns: 1fr; } }

/* ---------- Social links inside booking divert panels ---------- */
.divert-social { display: flex; gap: .6rem; justify-content: center; align-items: center; margin-top: 1.5rem; }
.divert-social a { width: 44px; height: 44px; border-radius: 50%; background: var(--sage-100); color: var(--sage-dark); display: grid; place-items: center; transition: transform .2s, background .2s, color .2s; }
.divert-social a:hover { transform: translateY(-3px); background: var(--sage); color: #fff; }
.divert-social svg { width: 19px; height: 19px; }

/* ---------- Booking divert panel icon badge ---------- */
.divert-badge { width: 80px; height: 80px; border-radius: 50%; background: var(--sage-100); color: var(--sage-dark); display: grid; place-items: center; margin: 0 auto 1.3rem; }
.divert-badge svg { width: 38px; height: 38px; }
.divert-eyebrow { font-family: var(--font-head); font-weight: 600; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 1.6rem; }

/* ---------- Return-to-booking banner (Add-Ons page, during a booking round-trip) ---------- */
.return-bar { position: sticky; top: 118px; z-index: 50; background: var(--sage-100); border-bottom: 1px solid var(--sage); box-shadow: var(--shadow-sm); }
.return-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: .7rem; }
.return-bar span { font-family: var(--font-head); font-weight: 600; font-size: .86rem; color: var(--sage-darker); display: inline-flex; align-items: center; gap: .5rem; }
.return-bar span svg { width: 18px; height: 18px; color: var(--sage-dark); }
@media (max-width: 560px) { .return-bar .container { justify-content: center; text-align: center; } }

/* ---------- "Suggestion" stamp (proposed add-ons for owner review) ---------- */
.suggestion-badge { position: absolute; top: .6rem; left: .6rem; z-index: 2; background: var(--clay); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .58rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.suggestion-section .product { border-style: dashed; }

/* ---------- Responsive logo/header: large on desktop, balanced on phones ---------- */
@media (max-width: 600px) {
  .nav { height: 92px; }
  .nav-logo img { height: 72px; }
  .nav-links { inset: 92px 0 auto 0; max-height: calc(100vh - 92px); }
  .return-bar { top: 92px; }
}
