/* AWC — Paw Vivant | Aesthetic: Mock Up 1 | Content: actual websitec */

@font-face {
  font-family: 'CooperLtBT';
  src: url('https://cdn.shopify.com/s/files/1/0956/6286/6728/files/CooperLtBT-Bold.ttf?v=1761126119') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Biro Script Plus';
  src: url('https://pawvivant.com/cdn/shop/files/biro-script-plus.ttf?v=1761969916') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #faf8f4;
  --surface: #fff;
  --surface2: #f3ede3;
  --sage: #647da6;
  --sage-dark: #4d6285;
  --gold: #b8892a;
  --text: #1c1a16;
  --muted: #7a6e5e;
  --border: #e8e0d4;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); overflow-x: hidden; font-size: 1rem; line-height: 1.6; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

/* ── NAV ─────────────────────────────────────────────────── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
#navbar.scrolled { border-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,.04); }

.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 2rem; height: var(--nav-h); display: flex; align-items: center; gap: 1rem; }

.nav-logo { text-decoration: none; display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-logo-img { height: 80px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-top { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); letter-spacing: .08em; }
.logo-btm { font-size: .58rem; font-weight: 600; letter-spacing: .16em; color: var(--muted); text-transform: uppercase; }

.nav-links { display: flex; list-style: none; gap: 2.5rem; margin-left: auto; }
.nav-links a { text-decoration: none; font-size: 1.05rem; font-weight: 500; color: var(--muted); transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--sage); transition: width .3s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }

.nav-cta { text-decoration: none; background: var(--sage); color: #fff; font-size: .95rem; font-weight: 600; letter-spacing: .05em; padding: .6rem 1.4rem; transition: background .2s; white-space: nowrap; margin-left: 1rem; }
.nav-cta:hover { background: var(--sage-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }

.mobile-menu { display: none; flex-direction: column; background: var(--bg); border-top: 1px solid var(--border); padding: 1rem 2rem 1.5rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--text); font-size: 1rem; font-weight: 500; padding: .8rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta { color: var(--sage); font-weight: 600; }

/* ── HERO (homepage) ─────────────────────────────────────── */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: var(--nav-h); overflow: hidden; }
.hero-img-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-badge { position: absolute; top: calc(var(--nav-h) + 1.5rem); right: 2rem; width: 270px; height: auto; z-index: 3; filter: drop-shadow(0 4px 12px rgba(0,0,0,.25)); }
@media (max-width: 720px) { .hero-badge { width: 171px; right: 1rem; top: calc(var(--nav-h) + 1rem); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(250,248,244,.715) 40%, rgba(250,248,244,.22) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; padding: 4rem 2rem; width: 100%; }
.hero-script { font-family: 'Dancing Script', cursive; font-size: 1.5rem; color: var(--sage); margin-bottom: 1rem; display: block; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.1rem, 4.6vw, 4.25rem); font-weight: 600; line-height: 1.05; color: var(--text); margin-bottom: 1.5rem; }
.hero-title em { font-family: 'Biro Script Plus', 'Biro Script', 'Homemade Apple', 'Caveat', cursive; font-style: normal; font-weight: 400; color: var(--sage); }
.hero-sub { font-size: 1.05rem; line-height: 1.8; color: var(--muted); max-width: 480px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── INNER PAGE HERO ─────────────────────────────────────── */
.inner-hero { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: calc(var(--nav-h) + 4rem) 2rem 4rem; overflow: hidden; background: var(--surface2); min-height: 52vh; }
.inner-hero-bg { position: absolute; inset: 0; z-index: 0; }
.inner-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.inner-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(243,237,227,.85), rgba(250,248,244,.95)); }
.inner-hero-content { position: relative; z-index: 1; max-width: 680px; }
.inner-hero-script { font-family: 'Dancing Script', cursive; font-size: 1.3rem; color: var(--sage); margin-bottom: .75rem; display: block; opacity: .8; }
.inner-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700; color: var(--text); line-height: 1.1; margin-bottom: 1rem; }
.inner-hero p { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; text-wrap: balance; max-width: 56ch; margin-left: auto; margin-right: auto; }
.inner-hero-images { display: flex; gap: 1rem; margin-top: 3rem; position: relative; z-index: 1; max-width: 900px; }
.inner-hero-images > div { flex: 1; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.inner-hero-images img { width: 100%; height: 100%; object-fit: cover; }

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap { background: var(--sage); overflow: hidden; padding: .8rem 0; white-space: nowrap; }
.marquee-track { display: inline-flex; align-items: center; gap: 1.5rem; animation: marquee 22s linear infinite; }
.marquee-track span { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.9); }
.marquee-track .dot { color: rgba(255,255,255,.4); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SECTION UTILITIES ───────────────────────────────────── */
section { padding: 5rem 0; }
.eyebrow { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--sage); margin-bottom: .75rem; }
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; color: var(--text); margin-bottom: .75rem; line-height: 1.15; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 480px; margin: 0 auto; line-height: 1.7; text-wrap: balance; }
.divider { width: 3rem; height: 1px; background: var(--sage); margin: .75rem auto; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary { display: inline-block; background: var(--sage); color: #fff; text-decoration: none; font-weight: 600; font-size: .875rem; padding: .9rem 2.2rem; letter-spacing: .04em; transition: background .2s, transform .2s; }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); }
.btn-ghost { display: inline-block; background: #f3ead7; border: 1.5px solid #f3ead7; color: #5e4a32; text-decoration: none; font-weight: 600; font-size: .875rem; padding: .9rem 2.2rem; letter-spacing: .04em; transition: background .2s, border-color .2s, color .2s; }
.btn-ghost:hover { background: #e3d6ba; border-color: #e3d6ba; color: #5e4a32; }
.btn-outline { display: inline-block; border: 1.5px solid rgba(255,255,255,.4); color: #fff; text-decoration: none; font-weight: 600; font-size: .875rem; padding: .9rem 2.2rem; letter-spacing: .04em; transition: background .2s; }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-white { display: inline-block; background: #fff; color: var(--sage); text-decoration: none; font-weight: 600; font-size: .875rem; padding: .9rem 2.2rem; letter-spacing: .04em; transition: background .2s, transform .2s; }
.btn-white:hover { background: var(--bg); transform: translateY(-2px); }

/* ── PREMIUM HOVER ───────────────────────────────────────── */
.premium-hover { transition: transform .25s, box-shadow .25s; }
.premium-hover:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.07); }

/* ── CHECK LIST ──────────────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
.check-list li { display: flex; align-items: center; gap: .75rem; font-size: .9rem; font-weight: 500; color: var(--text); }
.check-list li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/65% no-repeat; flex-shrink: 0; }
.text-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 700; color: var(--sage); text-decoration: none; letter-spacing: .04em; transition: gap .2s; }
.text-link:hover { gap: .7rem; }
.text-link::after { content: '→'; }

/* ── ABOUT (homepage) ────────────────────────────────────── */
.about-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.about-img-main { aspect-ratio: 4/5; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.12); position: relative; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-quote { position: absolute; bottom: -2rem; right: -1.5rem; background: var(--surface); padding: 1.5rem 2rem; max-width: 240px; border: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.about-quote p { font-family: 'Dancing Script', cursive; font-size: 1rem; color: var(--sage); line-height: 1.4; }
.about-quote span { font-size: .65rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(2rem, 2.6vw, 2.25rem); font-weight: 600; color: var(--text); margin-bottom: 1rem; line-height: 1.2; white-space: nowrap; }
@media (max-width: 720px) { .about-text h2 { white-space: normal; font-size: clamp(1.75rem, 6vw, 2rem); } }
.about-text p { font-size: .95rem; line-height: 1.8; color: var(--muted); margin-bottom: 1rem; }
.about-stats { display: flex; align-items: center; gap: 2rem; padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 1.5rem 0; }
.astat { display: flex; flex-direction: column; gap: .2rem; }
.astat-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--sage); line-height: 1; }
.astat-label { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.astat-div { width: 1px; height: 36px; background: var(--border); }

/* ── SERVICES ────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.scard { background: var(--surface); border: 1px solid var(--border); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.scard:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.07); }
.scard-img { height: 220px; overflow: hidden; background: var(--surface2); }
.scard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.scard:hover .scard-img img { transform: scale(1.05); }
.scard-body { padding: 1.75rem; }
.scard-tag { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); background: rgba(100,125,166,.1); padding: .25rem .65rem; margin-bottom: .75rem; display: inline-block; }
.scard h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.scard p { font-size: .875rem; line-height: 1.7; color: var(--muted); margin-bottom: .75rem; }
.scard-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--sage); }
.scard-price span { font-size: .8rem; color: var(--muted); font-family: var(--font-body); font-weight: 400; }
.scard-foot { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: .75rem; }
.scard-link { font-size: .8rem; font-weight: 700; color: var(--sage); text-decoration: none; letter-spacing: .04em; transition: letter-spacing .2s; white-space: nowrap; }
.scard-link:hover { letter-spacing: .1em; }

/* ── SCHEDULE ────────────────────────────────────────────── */
.schedule-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); }
.schedule-item { padding: 2.5rem 1.5rem; text-align: center; border-right: 1px solid var(--border); }
.schedule-item:last-child { border-right: none; }
.schedule-icon { display: flex; justify-content: center; margin-bottom: 1rem; color: var(--text); opacity: .85; }
.schedule-icon svg { width: 32px; height: 32px; }
.schedule-item h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: .35rem; }
.schedule-label { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-bottom: .5rem; display: block; }
.schedule-item p { font-size: .8rem; line-height: 1.6; color: var(--muted); }

/* ── REVIEW HERO ─────────────────────────────────────────── */
.review-hero { background: var(--surface); border: 1px solid var(--border); padding: 3.5rem; max-width: 800px; margin: 0 auto; position: relative; transition: box-shadow .25s; }
.review-hero:hover { box-shadow: 0 12px 40px rgba(0,0,0,.07); }
.review-stars { color: var(--gold); letter-spacing: .1em; margin-bottom: 1.5rem; font-size: 1rem; }
.review-hero blockquote { font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-style: italic; color: var(--text); line-height: 1.6; margin-bottom: 2rem; }
.review-hero-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.review-hero-author { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); }
.review-hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.review-external-actions { display: flex; justify-content: space-between; align-items: center; max-width: 800px; margin: 1.5rem auto 0; gap: 1rem; flex-wrap: wrap; }
.yelp-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 600; color: var(--sage); text-decoration: none; }
.yelp-link:hover { text-decoration: underline; }
.yelp-link::after { content: '↗'; }

/* ── REVIEWS GRID ────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.rcard { background: var(--surface); border: 1px solid var(--border); padding: 2rem; transition: box-shadow .25s; }
.rcard:hover { box-shadow: 0 8px 32px rgba(0,0,0,.06); }
.rcard-stars { color: var(--gold); font-size: .875rem; letter-spacing: .1em; margin-bottom: 1rem; display: block; }
.rcard blockquote { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; line-height: 1.65; color: var(--text); margin-bottom: 1.25rem; }
.rcard-author { display: flex; align-items: center; gap: .75rem; }
.rcard-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(100,125,166,.12); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: .85rem; color: var(--sage); flex-shrink: 0; }
.rcard-name { font-size: .8rem; font-weight: 600; color: var(--text); }
.rcard-meta { font-size: .7rem; color: var(--muted); }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 280px 280px; gap: 4px; margin-top: 3rem; background: var(--border); }
.gitem { overflow: hidden; background: var(--surface2); }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gitem:hover img { transform: scale(1.05); }
.gitem.tall { grid-row: span 2; }
.gitem.wide { grid-column: span 2; }

.gallery-wrap { position: relative; }
.gallery-container { display: flex; overflow-x: auto; gap: 1.5rem; padding: 0 6rem 2rem; scroll-behavior: smooth; cursor: grab; -ms-overflow-style: none; scrollbar-width: none; }
.gallery-container::-webkit-scrollbar { display: none; }
.gallery-slide { flex: none; width: 320px; height: 440px; overflow: hidden; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-slide:hover img { transform: scale(1.08); }
.gallery-more { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; text-align: center; text-decoration: none; color: #fff; background: var(--sage); padding: 2rem; transition: background .3s ease; }
.gallery-more:hover { background: var(--sage-dark); }
.gallery-more svg { opacity: .9; }
.gallery-more-title { font-family: var(--font-display, serif); font-size: 1.75rem; font-weight: 500; letter-spacing: .01em; }
.gallery-more-sub { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.gallery-more-arrow { margin-top: .5rem; font-size: 1.4rem; transition: transform .3s ease; }
.gallery-more:hover .gallery-more-arrow { transform: translateX(6px); }
.gallery-arrow { position: absolute; top: 220px; transform: translateY(-50%); z-index: 5; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.95); border: 1px solid var(--border); color: var(--text); font-size: 1.75rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.12); transition: background .2s, transform .2s; padding: 0 0 4px; }
.gallery-arrow:hover { background: var(--sage); color: #fff; transform: translateY(-50%) scale(1.05); }
.gallery-prev { left: 1.25rem; }
.gallery-next { right: 1.25rem; }
#gallery-dots { display: flex; justify-content: center; gap: .5rem; padding: 1.5rem 0; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: background .2s, transform .2s; }
.dot.active { background: var(--sage); transform: scale(1.4); }

/* ── LOCATION ────────────────────────────────────────────── */
.location-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.location-detail { display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 1.5rem; }
.location-icon { width: 32px; height: 32px; flex-shrink: 0; background: transparent; display: flex; align-items: center; justify-content: center; color: var(--text); }
.location-icon svg { width: 100%; height: 100%; }
.location-detail h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: .25rem; }
.location-detail p, .location-detail a { font-size: 1rem; color: var(--muted); text-decoration: none; line-height: 1.6; }
.location-detail a:hover { color: var(--sage); }
.map-embed { height: 480px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,.1); position: relative; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-contact { position: relative; }
.map-touch-shield { display: none; position: absolute; inset: 0; background: transparent; z-index: 2; }
@media (max-width: 900px) {
  .map-embed iframe, .map-contact iframe { pointer-events: none; }
  .map-touch-shield { display: block; }
}

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner { background: var(--sage); padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .08; }
.cta-banner-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.cta-banner .script { font-family: 'Dancing Script', cursive; font-size: 1.5rem; color: rgba(255,255,255,.7); margin-bottom: .5rem; display: block; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; color: #fff; margin-bottom: 1rem; line-height: 1.2; white-space: nowrap; }
@media (max-width: 720px) { .cta-banner h2 { white-space: normal; } }
.cta-banner p { color: rgba(255,255,255,.8); font-size: .95rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); margin-bottom: .5rem; overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 1.25rem 1.75rem; display: flex; justify-content: space-between; align-items: center; font-size: .875rem; font-weight: 600; color: var(--text); background: none; border: none; cursor: pointer; font-family: var(--font-body); transition: color .2s; }
.faq-question:hover { color: var(--sage); }
.faq-chevron { font-size: 1.1rem; color: var(--sage); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer > div { padding: 0 1.75rem 1.25rem; font-size: .875rem; line-height: 1.8; color: var(--muted); }

/* ── BOARDING: INCLUDED ──────────────────────────────────── */
.included-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.included-card { background: var(--surface2); padding: 2.25rem 1.5rem; border-radius: 14px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .75rem; transition: transform .25s, box-shadow .25s; }
.included-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.included-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; color: var(--text); margin-bottom: .5rem; }
.included-icon svg { width: 100%; height: 100%; }
.included-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: .25rem; line-height: 1.25; }
.included-card p { font-size: .9rem; line-height: 1.6; color: var(--muted); }
.highlights-star { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; max-width: 1000px; margin: 0 auto; }
.highlight-box { background: var(--surface2); border-radius: 12px; padding: 1.25rem .75rem; display: grid; grid-template-rows: 1fr 1fr; justify-items: center; text-align: center; aspect-ratio: 1 / 1; transition: transform .25s, box-shadow .25s; }
.highlight-box:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.highlight-box svg { width: 36px; height: 36px; color: var(--sage); flex-shrink: 0; align-self: end; margin-bottom: .75rem; }
.highlight-box p { font-family: var(--font-display); font-size: .95rem; font-weight: 600; color: var(--text); line-height: 1.25; align-self: start; }
.manifesto-list { max-width: 880px; margin: 0 auto; }
.manifesto-row { display: grid; grid-template-columns: 100px 1fr; gap: 2.5rem; padding: 1rem 0; border-bottom: 1px solid var(--border); align-items: baseline; }
.manifesto-row:last-child { border-bottom: 0; }
.manifesto-num { font-family: var(--font-display); font-size: 2.75rem; font-weight: 500; color: var(--sage); line-height: 1; letter-spacing: .02em; }
.manifesto-body h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; line-height: 1.2; }
.manifesto-body p { font-size: 1rem; color: var(--muted); line-height: 1.75; }
.section-script { font-family: 'Biro Script Plus', 'Biro Script', 'Homemade Apple', 'Caveat', cursive; font-size: 36px; color: var(--sage); margin-top: .75rem; font-weight: 400; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.bcard { background: var(--surface); padding: 2.5rem 1.75rem; border-radius: 14px; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,.04); transition: transform .25s, box-shadow .25s; }
.bcard:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.bcard h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: .75rem; }
.bcard p { font-size: .95rem; line-height: 1.6; color: var(--muted); }

/* ── BOARDING: PRICING ───────────────────────────────────── */
.pricing-card { background: var(--surface); border: 1px solid var(--border); padding: 3.5rem; max-width: 440px; margin: 0 auto; }
.pricing-tag { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); margin-bottom: .5rem; }
.price-num { font-family: var(--font-display); font-size: clamp(3.5rem, 6vw, 5.5rem); font-weight: 700; color: var(--text); line-height: 1; margin-bottom: .25rem; }
.price-sub { font-size: .875rem; color: var(--muted); margin-bottom: 2rem; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.pricing-list li { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: var(--muted); }
.pricing-list li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/65% no-repeat; }
.extended-care { background: var(--surface2); border: 1px solid var(--border); padding: 2.5rem; margin-top: 2rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.extended-care h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.extended-care > p { font-size: .875rem; color: var(--muted); margin-bottom: 1.5rem; }
.extended-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.extended-item { background: var(--surface); border: 1px solid var(--border); padding: 1.25rem; text-align: center; }
.extended-item .label { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-bottom: .4rem; }
.extended-item .value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--text); }
.extended-item .note { font-size: .7rem; color: var(--muted); margin-top: .2rem; }

/* ── BOARDING: ADD-ONS ───────────────────────────────────── */
.addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.addon-card { background: var(--surface2); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.addon-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.addon-img { aspect-ratio: 4/3; overflow: hidden; }
.addon-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.addon-card:hover .addon-img img { transform: scale(1.05); }
.addon-body { padding: 1.25rem; }
.addon-body h3 { font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: .35rem; }
.addon-body p { font-size: .8rem; line-height: 1.6; color: var(--muted); }
.addon-custom { background: rgba(100,125,166,.05); border: 2px dashed rgba(100,125,166,.25); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; transition: border-color .2s; }
.addon-custom:hover { border-color: var(--sage); }
.addon-custom h3 { font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.addon-custom p { font-size: .8rem; color: var(--muted); margin-bottom: 1rem; }

/* ── REQUIREMENTS ────────────────────────────────────────── */
.requirements-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.req-card { background: var(--surface); border: 1px solid var(--border); padding: 1.75rem; display: flex; align-items: flex-start; gap: 1rem; transition: transform .25s, box-shadow .25s; }
.req-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.req-icon { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--text); }
.req-icon svg { width: 100%; height: 100%; }
.req-card h3 { font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.req-card p { font-size: .825rem; line-height: 1.65; color: var(--muted); }
.req-vax-list { list-style: none; display: flex; flex-direction: column; gap: .4rem; margin-top: .5rem; }
.req-vax-list li { display: flex; align-items: center; gap: .5rem; font-size: .825rem; color: var(--muted); }
.req-vax-list li::before { content: '✓'; color: var(--sage); font-weight: 700; }

/* ── PACKING LIST ────────────────────────────────────────── */
.packing-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.packing-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.packing-item { display: flex; align-items: flex-start; gap: .75rem; }
.packing-check { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: .1rem; background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/60% no-repeat; }
.packing-item strong { display: block; font-size: .875rem; font-weight: 600; color: var(--text); }
.packing-item p { font-size: .825rem; color: var(--muted); line-height: 1.65; }
.packing-img { aspect-ratio: 4/5; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.packing-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.story-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-img { position: relative; }
.story-img-main { aspect-ratio: 4/5; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.12); }
.story-img-main img { width: 100%; height: 100%; object-fit: cover; }
.story-badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--surface); border: 1px solid var(--border); padding: 1.25rem 1.5rem; max-width: 200px; box-shadow: 0 8px 24px rgba(0,0,0,.07); }
.story-badge p { font-family: 'Dancing Script', cursive; font-size: 1rem; color: var(--sage); line-height: 1.4; }
.story-badge span { font-size: .62rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.story-text h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; color: var(--text); margin-bottom: 1rem; line-height: 1.2; }
.story-text p { font-size: .95rem; line-height: 1.8; color: var(--muted); margin-bottom: 1rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { background: var(--surface); border: 1px solid var(--border); padding: 2.5rem 2rem; text-align: center; transition: transform .25s, box-shadow .25s; }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.06); }
.value-icon { width: 56px; height: 56px; background: rgba(100,125,166,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--sage); font-size: 1.4rem; }
.value-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--text); margin-bottom: .75rem; }
.value-card p { font-size: .85rem; line-height: 1.75; color: var(--muted); }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 280px); gap: 4px; }
.photo-grid-item { overflow: hidden; }
.photo-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.photo-grid-item:hover img { transform: scale(1.05); }

/* ── BOOK PAGE ───────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card { background: var(--surface2); padding: 2.5rem; }
.step-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--sage); opacity: .3; line-height: 1; margin-bottom: 1rem; }
.step-card h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.step-card p { font-size: .875rem; color: var(--muted); line-height: 1.75; }
.invite-section { background: var(--sage); padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden; }
.invite-bg { position: absolute; inset: 0; }
.invite-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .1; }
.invite-inner { position: relative; z-index: 1; }
.invite-label { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.invite-section h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.invite-code { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: 1rem 2.5rem; display: inline-block; letter-spacing: .1em; margin-bottom: 1rem; }
.invite-section > div > p { font-size: .875rem; color: rgba(255,255,255,.75); }
.booking-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.booking-card { background: var(--surface2); padding: 2.5rem; text-align: center; transition: transform .25s, box-shadow .25s; }
.booking-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.booking-icon { width: 52px; height: 52px; background: rgba(100,125,166,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--sage); font-size: 1.25rem; }
.booking-card h3 { font-size: .95rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.booking-card p { font-size: .825rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.5rem; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-form-wrap { background: var(--surface2); padding: 2.5rem; }
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; color: var(--text); margin-bottom: 1.75rem; }
.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; letter-spacing: .03em; }
.form-input { width: 100%; background: var(--surface); border: 1px solid var(--border); padding: .75rem 1rem; font-family: var(--font-body); font-size: .875rem; color: var(--text); transition: border-color .2s; outline: none; }
.form-input:focus { border-color: var(--sage); }
.form-input::placeholder { color: var(--muted); opacity: .6; }
textarea.form-input { resize: none; min-height: 120px; }
#form-msg { display: none; margin-top: 1rem; font-size: .875rem; font-weight: 600; text-align: center; }
.contact-info-block { background: var(--surface2); border: 1px solid var(--border); padding: 1.75rem; margin-bottom: 1rem; }
.contact-info-block h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--text); margin-bottom: 1.25rem; }
.ci-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.ci-item:last-child { margin-bottom: 0; }
.ci-icon { width: 28px; height: 28px; flex-shrink: 0; background: transparent; display: flex; align-items: center; justify-content: center; color: var(--text); }
.ci-icon svg { width: 100%; height: 100%; }
.ci-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); margin-bottom: .25rem; }
.ci-value { font-size: .875rem; color: var(--text); line-height: 1.6; }
.ci-value a { color: var(--text); text-decoration: none; }
.ci-value a:hover { text-decoration: underline; }
.map-contact { height: 280px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 1rem; }
.map-contact iframe { width: 100%; height: 100%; border: 0; }
.social-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; gap: .5rem; background: var(--surface); border: 1px solid var(--border); padding: .6rem 1.2rem; font-size: .8rem; font-weight: 600; color: var(--text); text-decoration: none; transition: border-color .2s, color .2s; }
.social-btn:hover { border-color: var(--sage); color: var(--sage); }
.questions-wrap { background: var(--surface2); padding: 5rem 2rem; text-align: center; }
.questions-wrap h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; color: var(--text); margin-bottom: .75rem; }
.questions-wrap p { font-size: .95rem; color: var(--muted); margin-bottom: 2rem; }
.questions-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.email-btn { display: flex; align-items: center; gap: .5rem; background: var(--surface); border: 1px solid var(--border); padding: .8rem 1.5rem; font-size: .875rem; font-weight: 600; color: var(--text); text-decoration: none; transition: border-color .2s, color .2s; }
.email-btn:hover { border-color: var(--sage); color: var(--sage); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--text); padding: 4rem 0 0; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 2rem 3rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
.footer-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #fff; display: block; margin-bottom: .75rem; letter-spacing: .08em; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.65; }
.footer-col h4 { font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col a, .footer-col li { display: block; font-size: .85rem; color: rgba(255,255,255,.45); text-decoration: none; line-height: 1.75; transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 2rem; max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .78rem; color: rgba(255,255,255,.25); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp .7s ease forwards; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .65s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.delay-100 { transition-delay: .1s; }
.delay-200 { transition-delay: .2s; }
.delay-300 { transition-delay: .3s; }
.delay-400 { transition-delay: .4s; }
.delay-500 { transition-delay: .5s; }
.delay-600 { transition-delay: .6s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-wrap, .story-wrap, .packing-wrap, .location-wrap, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .included-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .schedule-grid { grid-template-columns: 1fr 1fr; }
  .schedule-item { border-right: none; border-bottom: 1px solid var(--border); }
  .booking-grid, .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .inner-hero-images > div:nth-child(3) { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #hero { min-height: unset; }
  .hero-content { padding: 3rem 1.5rem 4rem; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost, .btn-outline, .btn-white { text-align: center; }
  .included-grid, .requirements-grid, .extended-grid, .values-grid, .addons-grid { grid-template-columns: 1fr; }
  .highlights-star { grid-template-columns: 1fr; }
  .highlights-star .highlight-box { grid-column: 1 / -1 !important; aspect-ratio: auto; min-height: 140px; }
  .manifesto-row { grid-template-columns: 1fr; gap: .5rem; padding: 1.75rem 0; }
  .manifesto-num { font-size: 2.25rem; }
  .manifesto-body h3 { font-size: 1.4rem; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-grid-item { height: 180px; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; padding: 0 1.5rem 2rem; }
  .footer-bottom { padding: 1rem 1.5rem; flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gitem.tall, .gitem.wide { grid-row: span 1; grid-column: span 1; height: 220px; }
  .cta-banner { padding: 3rem 1.5rem; }
  .review-hero { padding: 2rem; }
  .pricing-card { padding: 2rem; }
  .inner-hero-images { flex-direction: column; }
  .inner-hero-images > div:nth-child(2), .inner-hero-images > div:nth-child(3) { display: none; }
  section { padding: 5rem 0; }
  .booking-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr 1fr; border: none; }
  .schedule-item { border: 1px solid var(--border); margin-bottom: 4px; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-quote { position: static; margin-top: 1rem; max-width: 100%; }
}
