/* === THEME: lakes === */
/* ============================================
   THEME: The Lakes Dispensary
   Family-owned. Recreational. By the lake.
   ============================================ */
:root {
  --navy: #1B2D45;
  --navy-light: #2A4060;
  --sand: #D4C5A9;
  --sand-light: #EDE6D6;
  --cream: #F5F0E8;
  --amber: #C4893B;
  --amber-light: #E8B96E;
  --moss-lake: #5B7357;
  --driftwood: #8B7355;
  --warm-white: #FAF7F2;
  --text: #3A3228;
  --text-muted: #7A7060;
  --border: #DDD5C8;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --header-h: 64px;
  --header-logo-w: 160px;
  --header-logo-h: 50px;

  /* Semantic tokens */
  --body-bg: var(--warm-white);
  --body-fg: var(--text);
  --heading: var(--navy);
  --heading-strong: var(--navy);
  --link: var(--navy);
  --link-hover: var(--amber);
  --header-bg: rgba(250, 247, 242, 0.95);
  --footer-bg: var(--navy);
  --footer-accent: var(--amber);

  /* Aliases for shared components */
  --moss: var(--navy);
  --deep-fern: var(--navy);
  --sprout: var(--amber);
  --washi: var(--border);
  --kinako: var(--sand-light);
  --shoji: var(--warm-white);
  --fog: var(--text-muted);
  --charcoal: var(--text);
  --sumi: #1A1A1A;
  --yuzu: var(--amber);
  --wisteria: var(--driftwood);

  --hero-bg-image: none;
  --hero-overlay: none;
  --about-bg: linear-gradient(135deg, var(--sand-light) 0%, var(--cream) 100%);
  --alert-bg: var(--navy);
  --alert-border: transparent;
  --alert-text: #FFFFFF;
  --alert-link: var(--amber-light);
  --alert-dot-open: #4CAF50;
  --signup-bg: var(--navy);
  --faq-bg: var(--cream);
  --gallery-bg: var(--cream);
}

body { background-color: var(--warm-white); }

/* Lake-cabin grain texture (subtle) */
body::after {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

/* Hero: clean split with image */
.hero { background: var(--warm-white); }
.hero::before { display: none; }
.hero__title {
  font-family: var(--font-display);
  text-transform: none; word-spacing: normal;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.hero__subtitle {
  font-style: normal; font-weight: 500;
  color: var(--text-muted); letter-spacing: 0.02em;
}
h1, h2, h3, h4 { font-family: var(--font-display); }

/* Alert banner: dark navy for Lakes. Text/link colors come from the --alert-*
   tokens (set in :root) so they survive the theme-before-component CSS order;
   weight/size need !important to beat the shared component's base rule. */
.alert-banner { color: #FFFFFF !important; }
.alert-banner__text {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.02em;
}
.alert-banner__link { color: var(--amber-light) !important; }

/* CTA style: navy primary */
.cta { border-radius: 3px; }
.cta--primary { background: var(--navy); border-color: var(--navy); }
.cta--primary::before { background: var(--navy-light); }
.cta--primary:hover { box-shadow: 0 8px 24px rgba(27, 45, 69, 0.35); }
.cta--secondary { color: var(--navy); border-color: var(--border); }

/* Info cards: warm sand */
.info-card { background: var(--sand-light); border-left-color: var(--amber); }

/* Footer: 2-column navy */
.footer__tagline { color: var(--amber); }

/* ── Polish pass (2026-06-17): section texture, dock divider, wordmark band ── */
:root {
  --section-texture: url("/img/section-texture.jpg");
  --wordmark-eyebrow: var(--amber-light);
}
/* Real Artlist lake-linen texture behind the gallery, the shop (menu), and the
   info card — muted under a warm-white scrim so content stays legible. */
.gallery, .dutchie-menu, .visit {
  background-image:
    linear-gradient(rgba(245, 240, 232, 0.62), rgba(245, 240, 232, 0.62)),
    var(--section-texture) !important;
  background-size: auto, cover !important;
  background-position: center, center !important;
  background-repeat: repeat, no-repeat !important;
}
/* Dock-at-golden-hour divider: the Artlist scene shown full-bleed as a band
   (overrides the shared component's botanical strip styling). */
.botanical-divider--image {
  height: 240px !important;
  background: var(--warm-white) !important;
  border: none !important;
}
.botanical-divider--image img {
  opacity: 1 !important;
  object-fit: cover !important;
  object-position: center 40% !important;
}
@media (max-width: 600px) {
  .botanical-divider--image { height: 150px !important; }
}


/* === BASE === */
/* ============================================
   BASE — reset + layout utilities
   (shared across all tenants; theme.css defines tokens)
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h, 64px) + 32px);
}

body {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-fg, #1C1C1C);
  background: var(--body-bg, #FAFAF5);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--link, #4A7C59);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s, background 0.2s;
}
a:hover { color: var(--link-hover, #7FB069); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-weight: 700;
  color: var(--heading, #1C1C1C);
  line-height: 1.1;
}

h2 { font-size: clamp(1.8rem, 4vw, 3rem); }

p + p { margin-top: 1.5em; }

.wrap {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}


/* === COMPONENT: age-gate === */
/* ============================================
   AGE GATE — first-paint modal, sessionStorage-backed
   ============================================ */
.age-gate {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.age-verified .age-gate { display: none; }

.age-gate__backdrop {
  position: absolute; inset: 0;
  background: rgba(28, 28, 28, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: ageGateFadeIn 0.35s ease-out both;
}

.age-gate__card {
  position: relative;
  max-width: 440px; width: 100%;
  padding: 2.5rem 2rem;
  background: var(--shoji, #FAFAF5);
  border-radius: 12px;
  border: 2px solid var(--washi, #E4DDD0);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
  animation: ageGatePop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.age-gate__brand {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--moss, #4A7C59);
  margin-bottom: 1.25rem;
}

.age-gate__headline {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--heading-strong, #2B5438);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.age-gate__sub {
  font-size: 0.95rem;
  color: var(--charcoal, #4A4A4A);
  line-height: 1.55;
  margin: 0 0 1.75rem;
}

.age-gate__actions {
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: stretch;
}

/* Matched button pair, theme-proof.
   The shared .cta--secondary is `background:white; border:transparent`, which
   vanishes on a near-white card (the "invisible-CTA trap") and clashes on a
   dark one. Several tenant themes also redefine `.cta` with no border, so the
   gate's buttons must declare the FULL border (style included) explicitly —
   never inherit it from the shared base. The deny button reuses --charcoal
   (the same token the sub-headline uses, so it's known-legible on every
   theme's card) with a currentColor border. */
.age-gate__actions .cta {
  width: 100%; text-align: center;
  padding: 1rem 1.75rem;
  font-size: 0.9rem;
  border-radius: 8px;
  border: 2px solid transparent;
}
.age-gate__actions .cta:focus-visible {
  outline: 2px solid var(--moss, #4A7C59);
  outline-offset: 3px;
}
/* Primary: solid brand fill; border matches fill so there's no ring. */
.age-gate__actions .cta--primary {
  background: var(--moss, #4A7C59);
  color: white;
  border-color: var(--moss, #4A7C59);
}
/* Deny: visible bordered button on any card (border == legible text color). */
.age-gate__actions .cta--secondary {
  background: transparent;
  color: var(--charcoal, #4A4A4A);
  border-color: currentColor;
}
.age-gate__actions .cta--secondary:hover,
.age-gate__actions .cta--secondary:focus-visible {
  background: var(--charcoal, #4A4A4A);
  color: var(--shoji, #FAFAF5);
}

.age-gate__legal {
  font-size: 0.75rem;
  color: var(--fog, #8A8A8A);
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--washi, #E4DDD0);
  line-height: 1.5;
}

/* Lock page scroll while gate is active */
body.age-gate-active { overflow: hidden; }

@keyframes ageGateFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes ageGatePop {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
  .age-gate__card { padding: 2rem 1.5rem; }
}


/* === COMPONENT: header === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--header-bg, rgba(250, 250, 245, 0.95));
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--washi, #E4DDD0);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  padding: 0 1.5rem;
}
.header__logo { flex-shrink: 0; display: flex; align-items: center; }
.header__logo img,
.header__logo .header__logo-img {
  width: var(--header-logo-w, 120px);
  height: var(--header-logo-h, 40px);
  display: block;
  object-fit: contain;
  transition: transform 0.3s;
}
.header__nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; gap: 2.5rem; list-style: none; }
.nav-link {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fog, #8A8A8A); position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--moss, #4A7C59);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--moss, #4A7C59); }
.nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.header__phone {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--sumi, #1C1C1C); white-space: nowrap;
  transition: color 0.2s;
}
.header__phone-icon {
  width: 1em; height: 1em; flex-shrink: 0;
  color: var(--moss, #4A7C59);
}
.header__phone:hover { color: var(--moss, #4A7C59); }
.header__cta {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--moss, #4A7C59);
  padding: 0.7em 1.5em; border: 2px solid var(--moss, #4A7C59);
  border-radius: 4px; transition: all 0.3s; white-space: nowrap;
}
.header__cta:hover {
  background: var(--moss, #4A7C59); color: white;
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 24px; height: 2.5px;
  background: var(--sumi, #1C1C1C); transition: all 0.3s; border-radius: 1px;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

@media (max-width: 980px) {
  .header__nav {
    display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--header-bg, rgba(250, 250, 245, 0.98)); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--washi, #E4DDD0);
    flex-direction: column; padding: 1.5rem 0; z-index: 999;
  }
  .header__nav.open { display: flex; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-link { display: block; padding: 1rem 1.5rem; border-bottom: 1px solid var(--washi, #E4DDD0); }
  .nav-link::after { display: none; }
  .header__cta { display: none; }
  .header__phone { font-size: 0.8rem; }
  .mobile-menu-toggle { display: block; }
}


/* === COMPONENT: alert-banner === */
.alert-banner {
  background: var(--alert-bg, var(--kinako, #F2EBD9));
  border-bottom: 1px solid var(--alert-border, var(--washi, #E4DDD0));
  padding: 0.5rem 0;
  margin-top: var(--header-h, 64px);
  font-size: 0.85rem;
  text-align: center;
}
.alert-banner__inner {
  display: flex; align-items: center; justify-content: center; gap: 0.65rem;
}
.alert-banner__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--alert-dot-closed, #C0392B);
  flex-shrink: 0;
}
.alert-banner__dot--open {
  background: var(--alert-dot-open, #27AE60);
  animation: alertPulse 2s ease-in-out infinite;
}
.alert-banner__text {
  color: var(--alert-text, var(--charcoal, #4A4A4A));
  font-weight: 500;
}
.alert-banner__link {
  color: var(--alert-link, var(--moss, #4A7C59));
  font-weight: 600; text-decoration: underline;
}
@keyframes alertPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(39, 174, 96, 0); }
}


/* === COMPONENT: hero === */
/* Lakes hero — full-viewport photo background */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.7) 0%,
    rgba(26, 26, 26, 0.25) 35%,
    transparent 65%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--warm-white);
  line-height: 1.05;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.65);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero__ctas {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero__link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--amber-light);
  border-bottom: 1px solid rgba(232, 185, 110, 0.3);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.hero__link:hover {
  color: var(--warm-white);
  border-color: var(--warm-white);
}

.hero__link--order {
  background: var(--amber);
  color: var(--navy);
  padding: 0.6em 1.4em;
  border-radius: 4px;
  border-bottom: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.hero__link--order:hover {
  background: var(--amber-light);
  color: var(--navy);
  border-color: transparent;
}

.hero__info {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9rem 0;
  background: rgba(27, 45, 69, 0.85);
  backdrop-filter: blur(6px);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(250, 247, 242, 0.7);
}
.hero__info a { color: rgba(250, 247, 242, 0.7); }
.hero__info a:hover { color: var(--warm-white); }
.hero__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.3);
}

@media (max-width: 600px) {
  .hero { min-height: 500px; max-height: 700px; }
  .hero__title { font-size: 2.4rem; }
  .hero__content { padding-bottom: 3.5rem; }
  .hero__bg img { object-position: 70% 55%; }
  .hero__info { font-size: 0.72rem; gap: 0.6rem; flex-wrap: wrap; justify-content: center; }
}


/* === COMPONENT: gallery === */
/* Lakes gallery — 2x2 grid, clean, breathing room */
.gallery {
  padding: 3rem 0;
  background: var(--cream);
}

.gallery__grid {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.gallery__item {
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 3 / 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img {
  transform: scale(1.02);
}

@media (max-width: 980px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .gallery__grid { grid-template-columns: 1fr; gap: 4px; }
  .gallery__item { aspect-ratio: 16 / 10; }
}


/* === COMPONENT: about === */
/* Lakes about — left-aligned text + 3-column info aside */
.about {
  padding: 6rem 0;
  background: var(--warm-white);
}

.about__inner {
  max-width: 720px;
}

.about__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.about__text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.about__aside {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about__detail {
  text-align: center;
  position: relative;
}

.about__detail + .about__detail::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}

.about__detail h4 {
  margin-bottom: 0.5rem;
}

.about__detail p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.about__detail a {
  color: var(--text);
}
.about__detail a:hover {
  color: var(--amber);
}

@media (max-width: 600px) {
  .about__aside {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about__detail + .about__detail::before {
    width: 100%; height: 1px;
    top: 0; left: 0;
  }
  .about__detail {
    padding: 1.2rem 0;
  }
}


/* === COMPONENT: map === */
.map-section {
  width: 100%;
  background: var(--kinako, #F2EBD9);
}
.map-section iframe {
  width: 100%;
  height: var(--map-h, 420px);
  border: 0;
  display: block;
}
@media (max-width: 600px) {
  .map-section iframe { height: 300px; }
}


/* === COMPONENT: dutchie-menu === */
.dutchie-menu { padding: 4rem 0 5rem; background: var(--shoji, #FAFAF5); }
.dutchie-menu__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--heading-strong, #2B5438);
  text-align: center; margin-bottom: 0.6rem;
}
.dutchie-menu__sub {
  text-align: center; max-width: 640px; margin: 0 auto 2.5rem;
  color: var(--charcoal, #4A4A4A); font-size: 1rem;
}
.dutchie-wrap {
  background: white;
  border-radius: 8px;
  border: 1px solid var(--washi, #E4DDD0);
  padding: 1.5rem;
  min-height: 400px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.dutchie-wrap__placeholder {
  padding: 3rem 1.5rem; text-align: center;
  color: var(--fog, #8A8A8A);
  border: 2px dashed var(--washi, #E4DDD0);
  border-radius: 6px;
}
.dutchie-wrap__placeholder strong {
  display: block; color: var(--moss, #4A7C59);
  font-size: 1.1rem; margin-bottom: 0.5rem;
}
/* Hide the fallback the moment Dutchie's embed injects its iframe. */
.dutchie-wrap:has(iframe) .dutchie-wrap__placeholder { display: none; }

@media (max-width: 600px) {
  .dutchie-menu { padding: 2.5rem 0; }
  .dutchie-wrap { padding: 0.75rem; }
}


/* === COMPONENT: email-signup === */
/* Lakes email signup — dark navy background */
.signup {
  padding: 4rem 0;
  background: var(--navy);
  color: var(--warm-white);
}

.signup__inner {
  max-width: 520px;
}

.signup h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--warm-white);
  margin-bottom: 0.3rem;
}

.signup p {
  color: rgba(250, 247, 242, 0.55);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.custom-email-signup {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(250, 247, 242, 0.15);
}

.custom-email-signup input[type="email"] {
  flex: 1;
  padding: 0.8rem 1rem;
  background: rgba(250, 247, 242, 0.06);
  border: none;
  color: white;
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.custom-email-signup input::placeholder {
  color: rgba(250, 247, 242, 0.35);
}

.custom-email-signup button {
  padding: 0.8rem 1.5rem;
  background: var(--amber);
  color: var(--navy);
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s;
}
.custom-email-signup button:hover { background: var(--amber-light); }

.email-response {
  display: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 0;
  color: var(--amber-light);
}
.email-response.is-visible {
  display: block;
  animation: fadeUp 0.3s ease forwards;
}
.custom-email-signup.is-hidden {
  opacity: 0; height: 0; overflow: hidden;
  pointer-events: none;
  transition: opacity 0.2s, height 0.2s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* === COMPONENT: faq === */
/* Lakes FAQ — native details/summary accordion */
.faq {
  padding: 5rem 0;
  background: var(--cream);
}

.faq h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 2rem;
  text-align: center;
}

.accordion {
  max-width: 750px;
  margin-inline: auto;
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__q {
  padding: 1.3rem 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  transition: color 0.2s;
}
.accordion__q:hover { color: var(--navy); }

.accordion__q::after {
  content: '+';
  font-size: 1.3em;
  font-weight: 300;
  color: var(--amber);
  flex-shrink: 0;
}

details[open] .accordion__q::after { content: '\2212'; }

.accordion__q::-webkit-details-marker,
.accordion__q::marker { display: none; content: ''; }

.accordion__a {
  padding: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}


/* === COMPONENT: divider === */
.botanical-divider { position: relative; overflow: hidden; transition: opacity 0.3s ease; }
/* Inline-SVG wave variant: a centered two-tone wave motif. Asset-free + fully
   reskinnable via CSS (the paths use stroke colors from the --divider-wave-*
   tokens). Inline SVG (not a CSS background) so it composites everywhere. */
.botanical-divider--wave {
  padding: 1.75rem 0;
  background-color: var(--divider-wave-bg, transparent);
  display: flex;
  justify-content: center;
}
.botanical-divider--wave .bd-wave {
  display: block;
  width: min(560px, 72%);
  height: auto;
}
.botanical-divider--wave .bd-wave__front { stroke: var(--divider-wave-front, #C4893B); }
.botanical-divider--wave .bd-wave__back  { stroke: var(--divider-wave-back, rgba(27, 45, 69, 0.4)); }
.botanical-divider--image {
  height: 120px;
  background: linear-gradient(90deg,
    rgba(74, 124, 89, 0.04) 0%,
    rgba(127, 176, 105, 0.08) 50%,
    rgba(74, 124, 89, 0.04) 100%);
  border-top: 1px solid var(--washi, #E4DDD0);
  border-bottom: 1px solid var(--washi, #E4DDD0);
  display: flex; align-items: center; justify-content: center;
}
.botanical-divider--image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.botanical-divider--accent {
  height: 180px; background: var(--shoji, #FAFAF5);
  display: flex; align-items: center; justify-content: center; padding: 2rem 0;
}
.botanical-divider--accent img {
  max-width: 300px; width: 80%; height: auto; object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}


/* === COMPONENT: wordmark === */
/* Wordmark — a typographic brand-mark band: a centered brand name in the
   display face with an accent rule and optional eyebrow + tagline. A dark
   brand "breath" between content sections. All colors come from semantic
   tokens so any theme can re-skin it by aliasing them. */
.wordmark {
  padding: 4.5rem 0;
  background: var(--wordmark-bg, var(--deep-fern, #1B2D45));
  text-align: center;
}
.wordmark__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wordmark-eyebrow, var(--yuzu, #C4893B));
  margin-bottom: 1.1rem;
}
.wordmark__name {
  font-family: var(--font-display, var(--font-heading, Georgia, serif));
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.05;
  color: var(--wordmark-fg, #FFFFFF);
  margin: 0;
}
.wordmark__rule {
  display: block;
  width: 64px;
  height: 3px;
  margin: 1.4rem auto 0;
  background: var(--wordmark-accent, var(--yuzu, #C4893B));
  border-radius: 2px;
}
.wordmark__tagline {
  margin: 1.2rem auto 0;
  max-width: 40ch;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--wordmark-tagline, rgba(255, 255, 255, 0.82));
}
@media (max-width: 600px) {
  .wordmark { padding: 3.25rem 0; }
}


/* === COMPONENT: visit === */
.visit { padding: 5rem 0; background: var(--shoji, #FAFAF5); }
.visit__card {
  background: linear-gradient(135deg, var(--kinako, #F2EBD9) 0%, var(--washi, #E4DDD0) 100%);
  padding: 4rem; border-radius: 12px;
  text-align: center;
  border: 2px solid var(--washi, #E4DDD0);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  max-width: 600px; margin: 0 auto;
}
.visit__card h2 { color: var(--heading-strong, #2B5438); margin-bottom: 2rem; }
.visit__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
.visit__item strong {
  display: block; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--fog, #8A8A8A); margin-bottom: 0.6rem; font-weight: 600;
}
.visit__item p { font-size: 1rem; color: var(--charcoal, #4A4A4A); line-height: 1.7; margin: 0; }
/* An orphaned final item (odd count in the 2-col grid) spans the full row so it
   centers under the pair above, instead of hanging alone in the left column. */
.visit__grid > .visit__item:last-child:nth-child(odd) { grid-column: 1 / -1; }
.visit__legal {
  font-size: 0.85rem; color: var(--fog, #8A8A8A);
  margin: 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.visit__item--social a {
  color: var(--link, var(--heading-strong, #2B5438));
  font-weight: 600; text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.visit__item--social a:hover { border-color: currentColor; }

@media (max-width: 980px) { .visit__grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .visit { padding: 3rem 0; }
  .visit__card { padding: 2rem; }
  .visit__card h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }
}


/* === COMPONENT: footer === */
/* Lakes footer — two-column with loon logo */
.site-footer {
  background: #1A1A1A;
  color: rgba(250, 247, 242, 0.45);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer__loon {
  height: 48px;
  width: auto;
  opacity: 0.7;
  margin-bottom: 0.6rem;
  filter: brightness(1.8);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 0.4rem;
}

.footer__left p,
.footer__right p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer__left a { color: rgba(250, 247, 242, 0.45); }
.footer__left a:hover { color: var(--warm-white); }

.footer__right { text-align: right; }

.footer__copy {
  margin-top: 0.3rem;
  font-size: 0.75rem;
  opacity: 0.5;
}

@media (max-width: 980px) {
  .footer__inner { flex-direction: column; gap: 1.5rem; }
  .footer__right { text-align: left; }
}

