/* ==========================================================================
   DRAGŪNIŠKĖS — design system
   Palette: #4B3B2A (dark), #6B553E (brown), #BD745A (terracotta accent),
            #C9B89C (tan), #E9E2D4 (cream)
   Type: Cormorant Garamond (headings), Inter (body)
   ========================================================================== */

:root {
  --dark: #4B3B2A;
  --brown: #6B553E;
  --terracotta: #BD745A;
  --terracotta-dark: #a35f47;
  --tan: #C9B89C;
  --cream: #E9E2D4;
  --cream-light: #F5F1E8;
  --white: #FFFDF9;

  --ink: #3a2d20;
  --ink-soft: #5c4d3c;
  --line: rgba(75, 59, 42, 0.14);

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow: 0 20px 50px -20px rgba(75, 59, 42, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(75, 59, 42, 0.3);

  --nav-h: 84px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-light) url('../img/bckground.jpg') no-repeat center center fixed;
  background-size: cover;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--dark); }
p { line-height: 1.7; margin: 0 0 1em; color: var(--ink-soft); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }
.container--wide { max-width: 1360px; }

section { position: relative; }

/* ---------- typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--terracotta);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 640px; }
.section-head { max-width: 700px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.text-cream { color: var(--cream) !important; }
.text-tan { color: var(--tan) !important; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--terracotta); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: var(--cream); }
.btn-dark:hover { background: #362a1d; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--cream); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: var(--white); color: var(--dark); }
.btn-ghost { background: rgba(75,59,42,.06); color: var(--dark); }
.btn-ghost:hover { background: rgba(75,59,42,.12); }
.btn-sm { padding: 11px 22px; font-size: .85rem; }
.btn-block { width: 100%; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- header / nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-solid { background: rgba(245, 241, 232, 0.98); box-shadow: 0 1px 0 var(--line); height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 50px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  font-size: .88rem; font-weight: 500; color: var(--white); white-space: nowrap;
  position: relative; padding: 6px 0; transition: color .3s ease;
}
.site-header.is-solid .main-nav a { color: var(--ink); }
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--terracotta); transition: right .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav a.active { font-weight: 600; }

/* nav "more" dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  background: none; border: none; font-family: var(--font-body); font-size: .88rem; font-weight: 500;
  color: var(--white); padding: 6px 0; cursor: pointer; transition: color .3s ease;
}
.site-header.is-solid .nav-dropdown-toggle { color: var(--ink); }
.nav-dropdown-toggle svg { width: 12px; height: 12px; transition: transform .25s ease; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 20px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 10px; min-width: 220px; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease;
}
.nav-dropdown.open .nav-dropdown-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-panel a { color: var(--ink) !important; padding: 10px 14px; border-radius: 8px; font-size: .9rem; font-weight: 500; }
.nav-dropdown-panel a::after { display: none; }
.nav-dropdown-panel a:hover { background: rgba(75,59,42,.06); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; z-index: 501;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: all .3s ease; }
.site-header.is-solid .nav-toggle span, .nav-open .nav-toggle span { background: var(--dark); }

.header-cta { display: inline-flex; }

/* transparent header on hero pages */
.site-header.on-hero:not(.is-solid) .btn-outline { border-color: rgba(255,255,255,.7); color: var(--white); }
.site-header.on-hero:not(.is-solid) .btn-outline:hover { background: var(--white); color: var(--dark); }

@media (max-width: 1240px) {
  body.nav-open { overflow: hidden; }
  body.nav-open::after {
    content: ''; position: fixed; inset: 0; background: rgba(20,15,10,.45); z-index: 498;
    opacity: 0; animation: navScrimIn .35s ease forwards;
  }
  @keyframes navScrimIn { to { opacity: 1; } }

  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto; width: min(86vw, 400px);
    background: var(--cream-light); box-shadow: -24px 0 60px rgba(20,15,10,.2);
    display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: calc(var(--nav-h) + 24px) 0 28px; overflow-y: auto;
    transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1); z-index: 499;
  }
  .nav-open .main-nav { transform: translateX(0); }

  .main-nav a {
    color: var(--dark) !important; font-family: var(--font-body); font-size: 1.02rem; font-weight: 600;
    display: flex; align-items: center; padding: 16px 32px; border-bottom: 1px solid var(--line);
  }
  .main-nav a::after { display: none; }
  .main-nav a.active { color: var(--terracotta-dark) !important; }

  .nav-toggle { display: flex; }
  .header-cta.desktop-only { display: none; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-open .site-header { background: var(--cream-light); box-shadow: 0 1px 0 var(--line); }

  .nav-dropdown { display: flex; flex-direction: column; }
  .nav-dropdown-toggle {
    color: var(--terracotta-dark) !important; font-family: var(--font-body); font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em; cursor: default; pointer-events: none;
    display: flex; align-items: center; width: 100%;
    padding: 22px 32px 8px;
  }
  .nav-dropdown-toggle svg { display: none; }
  .nav-dropdown-panel {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: rgba(75,59,42,.03);
    padding: 0; margin: 0; align-items: stretch; max-height: none; overflow: visible;
  }
  .nav-dropdown-panel a {
    font-family: var(--font-body) !important; font-size: .92rem !important; font-weight: 500 !important;
    padding: 13px 32px !important; border-bottom: 1px solid var(--line); color: var(--ink-soft) !important;
  }

  .nav-mobile-cta {
    display: flex !important; margin: 24px 32px 0; padding: 14px 22px !important; border: none !important;
    background: var(--terracotta); color: var(--white) !important; border-radius: 999px;
    justify-content: center; font-weight: 600;
  }
  .nav-mobile-cta:hover { background: var(--terracotta-dark); }
}

.nav-mobile-cta { display: none; }

/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  display: flex; align-items: flex-end;
  position: relative;
  color: var(--white);
  padding: 160px 0 100px;
  background-image: url('../img/first-page-cover.jpg');
  background-size: cover; background-position: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,22,14,.35) 0%, rgba(30,22,14,.25) 40%, rgba(30,22,14,.78) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(245,241,232,.14); border: 1px solid rgba(245,241,232,.35);
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero h1 { color: var(--white); max-width: 900px; }
.hero .lede { color: rgba(255,253,249,.88); font-size: 1.25rem; max-width: 620px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 34px; }
/* first-page-cover.jpg is a wide 3:1 panorama — great on desktop, but on a
   tall narrow phone a 100vh hero would force the browser to upscale it
   several times over to "cover" the frame. Swap in a dedicated portrait
   crop for mobile instead. */
@media (max-width: 640px) {
  .hero { background-image: url('../img/first-page-coverMobile.png'); }
}

.page-hero {
  min-height: 62vh;
  display: flex; align-items: flex-end;
  position: relative; color: var(--white);
  padding: 160px 0 70px;
  background-size: cover; background-position: center;
}
.page-hero::before { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(30,22,14,.45) 0%, rgba(30,22,14,.35) 35%, rgba(20,14,8,.9) 100%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); max-width: 780px; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.page-hero .lede { color: rgba(255,253,249,.88); }
.page-hero .eyebrow { text-shadow: 0 2px 8px rgba(0,0,0,.55); }

/* fact strip */
.fact-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.fact-strip .fact { background: var(--cream-light); padding: 34px 26px; text-align: center; }
.fact .fact-num { font-family: var(--font-head); font-size: 2.1rem; color: var(--terracotta-dark); display: block; margin-bottom: 6px; }
.fact .fact-label { font-size: .88rem; color: var(--ink-soft); }
@media (max-width: 820px) { .fact-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- sections ---------- */
.section { padding: 110px 0; }
.section-sm { padding: 70px 0; }
.section.bg-cream { background: var(--cream); }
.section.bg-dark { background: var(--dark); color: var(--cream); }
.section.bg-dark h2, .section.bg-dark h3 { color: var(--cream); }
.section.bg-dark p { color: rgba(233,226,212,.75); }
.section.bg-tan-soft { background: linear-gradient(180deg, var(--cream-light), var(--cream)); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-6 { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } .grid-6 { grid-template-columns: repeat(2,1fr); } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } .split.reverse { direction: ltr; } }

/* ---------- cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.card-icon { width: 58px; height: 58px; margin-bottom: 20px; }
.card-icon img { width: 100%; height: 100%; object-fit: contain; }

.value-card { text-align: center; padding: 20px; }
.value-card .card-icon {
  margin: 0 auto 18px; width: 84px; height: 84px; padding: 20px; box-sizing: border-box;
  border: 1.5px solid var(--tan); border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.value-card .card-icon svg { width: 100%; height: 100%; }
.value-card .card-icon img { width: 100%; height: 100%; object-fit: contain; }
.value-card h4 { font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 8px; }
.value-card p { font-size: .92rem; }

.photo-card { display: block; border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/5; }
.photo-card img, .photo-card video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.photo-card:hover img, .photo-card:hover video { transform: scale(1.06); }
.photo-card .photo-caption {
  position: absolute; inset: auto 0 0 0; padding: 26px;
  background: linear-gradient(180deg, transparent, rgba(20,15,10,.85));
  color: var(--white);
}

/* placeholder blocks for missing real imagery */
.placeholder {
  background: repeating-linear-gradient(135deg, var(--cream) 0 14px, var(--cream-light) 14px 28px);
  border: 1.5px dashed var(--tan);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 10px; color: var(--brown); padding: 40px 24px; min-height: 220px;
}
.placeholder svg { width: 34px; height: 34px; opacity: .6; }
.placeholder span { font-size: .85rem; max-width: 260px; }
.placeholder.aspect-16-9 { aspect-ratio: 16/9; min-height: 0; }
.placeholder.aspect-4-3 { aspect-ratio: 4/3; min-height: 0; }
.placeholder.aspect-1-1 { aspect-ratio: 1/1; min-height: 0; }

/* ---------- badges / pills ---------- */
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 999px; background: rgba(75,59,42,.08); font-size: .82rem; font-weight: 600; color: var(--brown); }
.bg-dark .pill { background: rgba(233,226,212,.1); color: var(--cream); border: 1px solid rgba(233,226,212,.2); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- numbered steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--dark); color: var(--cream);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 16px;
}
.steps-row { display: flex; flex-wrap: wrap; gap: 0; }
.steps-row .step { flex: 1 1 160px; padding-right: 24px; }

/* timeline (vertical) */
.timeline { border-left: 2px solid var(--line); margin-left: 12px; }
.timeline-item { position: relative; padding: 0 0 44px 34px; }
.timeline-item::before { content: ''; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--terracotta); box-shadow: 0 0 0 4px var(--cream-light); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item .tl-tag { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--terracotta-dark); font-weight: 700; margin-bottom: 6px; display: block; }

/* ---------- lists with check icons ---------- */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; color: var(--ink-soft); }
.check-list li svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--terracotta-dark); margin-top: 2px; }
.two-col-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
@media (max-width: 640px) { .two-col-list { grid-template-columns: 1fr; } }

/* ---------- pricing / model cards ---------- */
.model-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; }
.model-card .model-photo { aspect-ratio: 16/10; overflow: hidden; flex-shrink: 0; }
.model-card .model-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.model-card .model-body { padding: 28px 26px 30px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.model-card .model-body .check-list { flex: 1; }
.model-card .price { font-family: var(--font-head); font-size: 1.8rem; color: var(--dark); }
.model-card .price small { font-family: var(--font-body); font-size: .8rem; color: var(--ink-soft); font-weight: 400; }
.model-card.featured { border-color: var(--terracotta); box-shadow: var(--shadow-sm); position: relative; }
.model-card.featured::before { content: 'Populiariausias'; position: absolute; top: 18px; right: 18px; background: var(--terracotta); color: var(--white); font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; z-index: 2; letter-spacing: .04em; }

/* ---------- zone cards (sklypai) ---------- */
.zone-card { border-radius: var(--radius); padding: 30px; background: var(--white); border: 1px solid var(--line); }
.zone-letter { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--terracotta); color: var(--terracotta-dark); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 18px; }

/* ---------- communications status + responsibility split (sklypai) ---------- */
.comm-panel { background: rgba(245,241,232,.04); border: 1px solid rgba(233,226,212,.14); border-radius: var(--radius); padding: 34px 32px; }
.comm-panel-icon { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(233,226,212,.35); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.comm-panel-icon svg { width: 24px; height: 24px; color: var(--tan); }
.comm-panel h4 { font-size: 1.25rem; margin-bottom: 10px; }
.comm-panel .tag-row { margin: 16px 0 4px; }

.comm-deadline {
  display: flex; align-items: center; gap: 18px; margin-top: 28px;
  background: rgba(189,116,90,.12); border: 1px solid rgba(189,116,90,.3); border-radius: var(--radius);
  padding: 22px 28px;
}
.comm-deadline-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(189,116,90,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.comm-deadline-icon svg { width: 22px; height: 22px; color: var(--terracotta); }
.comm-deadline strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 2px; }
.comm-deadline span { color: rgba(233,226,212,.75); font-size: .92rem; }

.resp-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; margin-top: 48px; }
.resp-col-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.resp-badge {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.05rem; background: var(--terracotta); color: var(--white);
}
.resp-badge.alt { background: rgba(233,226,212,.12); border: 1.5px solid rgba(233,226,212,.4); color: var(--cream); }
.resp-col-head h4 { font-size: 1.15rem; margin-bottom: 0; }
.resp-divider { width: 1px; background: rgba(233,226,212,.18); }
.bg-dark .check-list li { color: rgba(233,226,212,.75); }
.bg-dark .check-list li svg { color: var(--tan); }

@media (max-width: 900px) {
  .resp-compare { grid-template-columns: 1fr; gap: 32px; }
  .resp-divider { display: none; }
  .comm-deadline { flex-direction: column; text-align: center; }
}

/* ---------- quote / founder ---------- */
.quote-block { border-left: 3px solid var(--terracotta); padding-left: 28px; font-family: var(--font-head); font-size: 1.4rem; color: var(--dark); font-style: italic; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); overflow: hidden; }
/* ---------- gallery carousel ---------- */
.gallery-carousel-wrap { position: relative; }
.gallery-carousel {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; padding: 2px 2px 14px; margin: 0 -2px;
  scrollbar-width: thin; scrollbar-color: var(--tan) transparent;
}
.gallery-carousel::-webkit-scrollbar { height: 6px; }
.gallery-carousel::-webkit-scrollbar-track { background: transparent; }
.gallery-carousel::-webkit-scrollbar-thumb { background: var(--tan); border-radius: 999px; }
.gallery-slide {
  flex: 0 0 auto; width: min(280px, 72vw); aspect-ratio: 1/1; scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-slide video { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--dark); }
.carousel-arrow {
  position: absolute; top: calc(50% - 7px); transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; background: var(--white); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.carousel-arrow:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }
.carousel-arrow svg { width: 18px; height: 18px; }
.carousel-arrow.prev { left: -14px; }
.carousel-arrow.next { right: -14px; }
@media (max-width: 640px) {
  .carousel-arrow { width: 38px; height: 38px; }
  .carousel-arrow.prev { left: -6px; }
  .carousel-arrow.next { right: -6px; }
}

/* ---------- project map ---------- */
.project-map { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--cream); }

/* ---------- video embed ---------- */
.video-embed { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--dark); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; text-align: left; background: none; border: none; padding: 20px 24px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--dark);
}
.faq-q .icon-plus { width: 20px; height: 20px; flex-shrink: 0; position: relative; }
.faq-q .icon-plus::before, .faq-q .icon-plus::after { content: ''; position: absolute; background: var(--terracotta-dark); transition: transform .3s ease; }
.faq-q .icon-plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q .icon-plus::after { height: 100%; width: 2px; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.open .icon-plus::after { transform: translateX(-50%) rotate(90deg) scaleX(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--ink-soft); }
.faq-cat { margin-bottom: 44px; }
.faq-cat h3 { margin-bottom: 20px; }

/* ---------- footer ---------- */
.site-footer { background: var(--dark); color: var(--cream); padding: 90px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(233,226,212,.14); }
.footer-brand img { height: 46px; margin-bottom: 18px; }
.footer-brand p { color: rgba(233,226,212,.65); font-size: .92rem; max-width: 280px; }
.footer-col h5 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--tan); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(233,226,212,.78); font-size: .92rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(233,226,212,.3); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--terracotta); border-color: var(--terracotta); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: .82rem; color: rgba(233,226,212,.55); flex-wrap: wrap; gap: 10px; }
@media (max-width: 980px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- sticky mobile CTA ---------- */
.mobile-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  padding: 12px 16px; background: rgba(245,241,232,.96); backdrop-filter: blur(8px);
  box-shadow: 0 -8px 24px rgba(0,0,0,.12);
}
@media (max-width: 780px) { .mobile-cta { display: block; } body { padding-bottom: 76px; } }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .85rem; font-weight: 600; color: var(--dark); }
.form-field input, .form-field select, .form-field textarea {
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); color: var(--ink); outline: none; transition: border-color .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--terracotta); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- utility ---------- */
.mt-0{margin-top:0} .mb-0{margin-bottom:0}
.flex{display:flex} .items-center{align-items:center} .justify-between{justify-content:space-between}
.gap-8{gap:8px} .gap-12{gap:12px} .gap-16{gap:16px} .gap-24{gap:24px}
.text-center{text-align:center}
.divider { height: 1px; background: var(--line); border: none; margin: 60px 0; }
.badge-circle {
  width: 120px; height: 120px; border-radius: 50%; border: 1px solid var(--tan);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-head); font-size: .95rem; color: var(--brown); line-height: 1.25; padding: 10px;
}

/* stage badge */
.stage-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.stage-badge.done { background: rgba(107,85,62,.12); color: var(--brown); }
.stage-badge.active { background: rgba(189,116,90,.15); color: var(--terracotta-dark); }
.stage-badge.next { background: rgba(75,59,42,.08); color: var(--ink-soft); }

/* image with rounded frame */
.frame-img { border-radius: var(--radius); overflow: hidden; }
.frame-img img { width: 100%; height: 100%; object-fit: cover; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--dark), #2d2318);
  color: var(--cream); border-radius: var(--radius-lg); padding: 70px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(233,226,212,.75); margin-bottom: 0; max-width: 480px; }

/* journeys (three paths) */
.journey-card { background: var(--white); border-radius: var(--radius); padding: 36px 30px; border: 1px solid var(--line); position: relative; }
.journey-card .journey-num { font-family: var(--font-head); font-size: 3rem; color: var(--tan); position: absolute; top: 20px; right: 28px; }

/* animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }

/* ---------- founders / project initiators ---------- */
.founders-section { position: relative; overflow: hidden; background: transparent; }
.founders-decor { display: none; }
.founders-section .container { position: relative; z-index: 2; }

.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 8px; }
.founder { display: flex; flex-direction: column; align-items: center; }
.founder-card {
  display: flex; width: 100%; min-height: 300px; flex: 1 0 auto;
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.founder-photo {
  width: 46%; flex-shrink: 0; position: relative;
  background: linear-gradient(160deg, var(--brown), var(--dark));
  display: flex; align-items: center; justify-content: center;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-photo .placeholder-icon { width: 42%; height: 42%; color: rgba(233,226,212,.4); }
.founder-info { flex: 1; padding: 36px 34px; display: flex; flex-direction: column; justify-content: center; }
.founder-info h3 { font-size: 1.7rem; margin-bottom: 12px; }
.founder-info p { font-size: .92rem; margin-bottom: 0; }
.founder-social { display: flex; gap: 14px; margin-top: 24px; }
.social-circle {
  width: 46px; height: 46px; border-radius: 50%; background: var(--dark); color: var(--cream);
  display: flex; align-items: center; justify-content: center; transition: transform .25s ease, background .25s ease;
}
.social-circle:hover { background: var(--terracotta); transform: translateY(-3px); }
.social-circle svg { width: 19px; height: 19px; }
.founders-divider { width: 90px; height: 2px; background: var(--terracotta); margin: 56px auto 0; opacity: .6; }

@media (max-width: 820px) {
  .founders-grid { grid-template-columns: 1fr; }
  .founder-card { flex-direction: column; }
  .founder-photo { width: 100%; height: 240px; }
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- process flow (steps with numbered circles + dotted connector) ---------- */
.process-panel {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, var(--cream-light) 0%, var(--cream) 100%);
  border: 1px solid var(--line); padding: 52px 44px 0;
}
.process-panel.no-photo { padding-bottom: 52px; }
.process-panel-decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.process-panel-head { position: relative; z-index: 1; text-align: center; margin-bottom: 44px; }
.process-panel-head h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 8px; }
.process-panel-head p { font-size: .95rem; margin-bottom: 0; }

.process-row { display: flex; position: relative; z-index: 1; gap: 12px; }
.process-row + .process-row { margin-top: 36px; }
.process-row::before {
  content: ''; position: absolute; top: 20px; left: 40px; right: 40px; height: 0;
  border-top: 2px dotted var(--tan); z-index: 0;
}
.process-step { flex: 1; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 6px; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--dark); color: var(--cream);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.1rem;
  margin-bottom: 16px; flex-shrink: 0;
}
.step-icon-circle {
  width: 58px; height: 58px; border-radius: 50%; border: 1.5px solid var(--tan); background: var(--white);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step-icon-circle svg { width: 26px; height: 26px; }
.process-step h4 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 6px; }
.process-step p { font-size: .82rem; margin-bottom: 0; color: var(--ink-soft); }

.process-photo-strip { position: relative; z-index: 1; margin: 44px -44px 0; aspect-ratio: 21/8; }
.process-photo-strip img { width: 100%; height: 100%; object-fit: cover; display: block; }

.process-step .step-photo { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.process-step .step-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .process-panel { padding: 40px 24px 0; }
  .process-photo-strip { margin-left: -24px; margin-right: -24px; }
  .process-row { flex-direction: column; gap: 32px; }
  .process-row::before { display: none; }
}

/* ---------- honest / clean list card (with botanical corner decor) ---------- */
.honest-card {
  position: relative; max-width: 640px; margin: 0 auto; overflow: hidden;
  background: var(--cream-light); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 56px 48px; text-align: center;
}
.honest-card > * { position: relative; z-index: 1; }
.honest-card > .honest-card-decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.honest-card-decor svg { width: 100%; height: 100%; }
.eyebrow-lines { display: inline-flex; align-items: center; gap: 10px; justify-content: center; }
.eyebrow-lines::before, .eyebrow-lines::after { content: ''; width: 28px; height: 1px; background: var(--terracotta); }
.honest-list { text-align: left; max-width: 380px; margin: 28px auto 0; }
.honest-list li { display: flex; align-items: center; gap: 14px; padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: .97rem; color: var(--ink-soft); }
.honest-list li:last-child { border-bottom: none; }
.honest-list li svg { width: 15px; height: 15px; color: var(--terracotta-dark); flex-shrink: 0; }

/* ---------- interactive plot plan ---------- */
.plan-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .plan-grid { grid-template-columns: 1fr; } }

.plot-plan-frame { position: relative; }
.plot-hotspot {
  position: absolute; display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 6px;
  background: rgba(75,59,42,.1); border: 2px solid rgba(75,59,42,.35); padding: 0; outline: none;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.plot-hotspot span {
  font-family: var(--font-head); font-weight: 600; font-size: clamp(.7rem, 1.4vw, .95rem);
  color: var(--white); text-shadow: 0 1px 3px rgba(0,0,0,.5); pointer-events: none;
}
.plot-hotspot[data-zone="a"] { background: rgba(189,116,90,.38); border-color: rgba(189,116,90,.9); }
.plot-hotspot[data-zone="b"] { background: rgba(201,150,46,.38); border-color: rgba(201,150,46,.9); }
.plot-hotspot[data-zone="c"] { background: rgba(92,122,139,.38); border-color: rgba(92,122,139,.9); }
.plot-hotspot:hover, .plot-hotspot.active { box-shadow: 0 0 0 3px rgba(255,255,255,.6); transform: scale(1.04); filter: brightness(1.12); }
.plot-hotspot:focus-visible { box-shadow: 0 0 0 3px rgba(255,255,255,.75); }

.plot-zone-legend { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; margin-top: 20px; }
.plot-zone-legend-item { display: inline-flex; align-items: center; gap: 9px; font-size: .88rem; font-weight: 600; color: var(--ink); }
.plot-zone-legend-item em { font-style: normal; font-weight: 500; color: var(--ink-soft); }
.plot-zone-legend-item::before { content: ''; width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.plot-zone-legend-item[data-zone="a"]::before { background: var(--terracotta); }
.plot-zone-legend-item[data-zone="b"]::before { background: #C9962E; }
.plot-zone-legend-item[data-zone="c"]::before { background: #5C7A8B; }

.plot-info-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; position: sticky; top: 100px; min-height: 320px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 860px) { .plot-info-panel { position: static; } }
.plot-empty { text-align: center; color: var(--ink-soft); padding: 20px 6px; }
.plot-empty svg { width: 32px; height: 32px; margin: 0 auto 14px; display: block; opacity: .45; }
.plot-info-panel .pill.plot-pill { background: rgba(189,116,90,.14); color: var(--terracotta-dark); }
.plot-info-title { font-size: 1.6rem; margin-bottom: 6px; }
.plot-info-sub { color: var(--ink-soft); font-size: .9rem; margin-bottom: 22px; }
.plot-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; margin-bottom: 24px; }
.plot-info-grid .f-label { font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 3px; }
.plot-info-grid .f-value { font-family: var(--font-head); font-size: 1.2rem; color: var(--dark); }

/* ---------- scroll-scrubbed seasons video ---------- */
.seasons-scrub-wrap { position: relative; height: 280vh; }
.seasons-scrub-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.seasons-scrub-frame {
  width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 24px;
}
.seasons-scrub-frame .seasons-scrub-video-outer {
  width: 100%; aspect-ratio: 1600 / 666; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); background: var(--dark);
}
.seasons-scrub-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.seasons-scrub-progress { position: absolute; left: 24px; right: 24px; bottom: 14px; height: 3px; background: rgba(255,255,255,.25); border-radius: 3px; max-width: 1252px; margin: 0 auto; }
.seasons-scrub-progress-bar { height: 100%; width: 0%; background: var(--terracotta); border-radius: 3px; transition: width .05s linear; }
.seasons-scrub-hint { position: absolute; bottom: 34px; left: 0; right: 0; text-align: center; color: rgba(233,226,212,.6); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; pointer-events: none; opacity: 1; transition: opacity .4s ease; }
.seasons-scrub-wrap.scrolled .seasons-scrub-hint { opacity: 0; }

@media (max-width: 700px) {
  .seasons-scrub-wrap { height: 220vh; }
  .seasons-scrub-frame { padding: 0 16px; }
}

/* ---------- booking widget ---------- */
.booking-widget { background: var(--dark); color: var(--cream); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.booking-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; }
.booking-title { color: var(--cream); font-size: .95rem; font-weight: 600; margin-bottom: 18px; }
.booking-cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.booking-month { font-family: var(--font-head); font-size: 1.2rem; color: var(--cream); }
.booking-nav-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(233,226,212,.3); background: transparent; color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; line-height: 1; }
.booking-nav-btn:hover:not(:disabled) { background: rgba(233,226,212,.12); }
.booking-nav-btn:disabled { opacity: .3; cursor: not-allowed; }
.booking-weekdays { display: grid; grid-template-columns: repeat(7,1fr); text-align: center; font-size: .78rem; font-weight: 600; color: var(--tan); margin-bottom: 8px; }
.booking-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.booking-day { aspect-ratio: 1; border: none; background: transparent; color: rgba(233,226,212,.35); border-radius: 50%; font-family: var(--font-body); font-size: .9rem; cursor: default; }
.booking-day.is-available { color: var(--cream); cursor: pointer; }
.booking-day.is-available:hover { background: rgba(233,226,212,.12); }
.booking-day.is-selected { background: var(--tan); color: var(--dark); font-weight: 700; }
.booking-timezone { margin-top: 22px; font-size: .82rem; color: rgba(233,226,212,.6); }
.booking-slot-list { display: flex; flex-direction: column; gap: 12px; }
.booking-slot { padding: 14px 20px; border-radius: var(--radius-sm); border: 1px solid rgba(233,226,212,.35); background: transparent; color: var(--tan); font-weight: 600; text-align: center; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.booking-slot:hover { border-color: var(--cream); color: var(--cream); }
.booking-slot.is-selected { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }
.booking-slot-empty { color: rgba(233,226,212,.5); font-size: .9rem; }
.booking-form { margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(233,226,212,.15); }
.booking-selected { margin-bottom: 16px; font-size: .92rem; color: var(--tan); }
.booking-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.booking-fields input, .booking-fields select { width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); border: 1px solid rgba(233,226,212,.3); background: rgba(245,241,232,.06); color: var(--cream); }
.booking-fields input::placeholder { color: rgba(233,226,212,.5); }
.booking-fields select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E9E2D4' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.booking-fields select:invalid { color: rgba(233,226,212,.5); }
.booking-fields select option { color: var(--ink); background: var(--white); }
.booking-consents { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.booking-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; color: rgba(233,226,212,.75); cursor: pointer; line-height: 1.4; }
.booking-checkbox input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; accent-color: var(--terracotta); background: rgba(245,241,232,.06); border: 1px solid rgba(233,226,212,.3); border-radius: 4px; }
.booking-status { margin-top: 14px; font-size: .88rem; text-align: center; min-height: 1.2em; }
.booking-status.is-success { color: #9bc99b; }
.booking-status.is-error { color: #e0a3a3; }
@media (max-width: 720px) {
  .booking-widget { padding: 26px 20px; }
  .booking-grid { grid-template-columns: 1fr; gap: 32px; }
  .booking-fields { grid-template-columns: 1fr; }
}
