@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,600;1,300;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════
   TOKENS
═══════════════════════════════════ */
:root {
  --cream:    #F5F0E8;
  --cream2:   #EDE6D8;
  --cream3:   #E4DAC8;
  --forest:   #1C3A28;
  --forest2:  #2D5A3D;
  --amber:    #C8892A;
  --amber2:   #A86F1A;
  --sand:     #C8B89A;
  --text:     #2A2520;
  --muted:    #7A7060;
  --border:   rgba(28,58,40,0.1);
  --r:        14px;
  --ease:     cubic-bezier(0.16,1,0.3,1);
}

/* ═══════════════════════════════════
   RESET
═══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }   /* no horizontal scroll ever */
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  padding-bottom: 60px; /* space for mobile sticky bar */
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

h1, h2 { font-family: 'Cormorant Garamond', serif; line-height: 1.1; }
h3      { font-family: 'Outfit', sans-serif; font-weight: 700; }
em      { font-style: italic; }
a       { color: inherit; text-decoration: none; }
img     { display: block; max-width: 100%; height: auto; }
input, select, textarea, button { font-family: inherit; }

/* ═══════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════ */
.wrap {
  width: min(1240px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px)  { .wrap { padding-inline: 40px; } }
@media (min-width: 1024px) { .wrap { padding-inline: 64px; } }

.tag-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 14px;
}
.tag-label.light  { color: rgba(200,137,42,0.9); }
.tag-label.center { display: block; text-align: center; }

.section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300; color: var(--forest);
  text-align: center; margin-bottom: 48px;
}

.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.btn-gold, .btn-ghost, .btn-forest, .btn-wa {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 7px; padding: 13px 26px; border-radius: 50px;
  font-weight: 700; font-size: 0.92rem;
  cursor: pointer; border: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap; line-height: 1;
}
.btn-lg { padding: 15px 30px; font-size: 1rem; }

.btn-gold   { background: var(--amber); color: #fff; }
.btn-gold:hover  { background: var(--amber2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,137,42,.35); }

.btn-ghost  { border: 2px solid rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest2); transform: translateY(-2px); }

.btn-wa     { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1faa55; transform: translateY(-2px); }

/* ═══════════════════════════════════
   MOBILE STICKY BAR
═══════════════════════════════════ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: flex; height: 60px; z-index: 9999;
  box-shadow: 0 -3px 16px rgba(0,0,0,.15);
}
.sticky-call, .sticky-book {
  flex: 1; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem; gap: 6px;
}
.sticky-call { background: #27ae60; color: #fff; }
.sticky-book { background: var(--amber); color: #fff; }
@media (min-width: 768px) { .sticky-bar { display: none; } }

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .35s var(--ease), box-shadow .35s;
}
header.scrolled {
  background: rgba(245,240,232,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.hdr-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 16px 20px; gap: 12px;
}
@media (min-width: 768px) { .hdr-inner { padding: 18px 40px; } }
@media (min-width: 1024px) { .hdr-inner { padding: 20px 64px; } }

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #fff;
  transition: color .35s; flex-shrink: 0;
}
header.scrolled .logo { color: var(--forest); }

.desk-nav { display: none; gap: 28px; align-items: center; }
@media (min-width: 900px) { .desk-nav { display: flex; } }
.desk-nav a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  transition: color .25s;
}
header.scrolled .desk-nav a { color: var(--muted); }
.desk-nav a:hover { color: var(--amber) !important; }

.hdr-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.lang-bar { display: flex; gap: 3px; }
.lbtn {
  padding: 5px 8px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent; color: rgba(255,255,255,.6);
  font-size: 0.7rem; font-weight: 800; cursor: pointer;
  transition: all .2s;
}
header.scrolled .lbtn { border-color: var(--border); color: var(--muted); }
.lbtn.active, .lbtn:hover { background: var(--amber); border-color: var(--amber); color: #fff !important; }

.btn-hdr {
  padding: 9px 18px; border-radius: 50px;
  background: var(--amber); color: #fff;
  font-size: 0.8rem; font-weight: 700;
  cursor: pointer; border: none; transition: all .25s;
  white-space: nowrap;
}
.btn-hdr:hover { background: var(--amber2); transform: translateY(-1px); }
.desk-only { display: none; }
@media (min-width: 900px) { .desk-only { display: inline-flex; } }

/* hamburger */
.burger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px; background: transparent; border: none; cursor: pointer; flex-shrink: 0;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
header.scrolled .burger span { background: var(--text); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .burger { display: none; } }

/* mobile nav */
.mob-nav {
  display: none; flex-direction: column; gap: 2px;
  padding: 12px 20px 18px;
  background: rgba(245,240,232,.98); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
}
.mob-nav.open { display: flex; }
.mob-nav a {
  padding: 11px 14px; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; color: var(--text);
  transition: background .2s, color .2s;
}
.mob-nav a:hover { background: rgba(28,58,40,.05); color: var(--amber); }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.hero-grad {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(20,35,25,.08) 0%,
    rgba(20,35,25,.15) 40%,
    rgba(15,26,18,.7)  75%,
    rgba(10,18,12,.88) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 20px 80px; width: 100%;
}
@media (min-width: 768px)  { .hero-content { padding: 0 40px 80px; } }
@media (min-width: 1024px) { .hero-content { padding: 0 64px 80px; max-width: 900px; } }

.hero-tag {
  display: inline-flex; align-items: center;
  background: rgba(200,137,42,.85); color: #fff;
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  font-weight: 300; color: #fff; margin-bottom: 16px;
}
.hero h1 em { color: #E8C97A; }
.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.65); margin-bottom: 32px; font-weight: 300;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-phone {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 800; color: #4cd689; letter-spacing: .5px;
}
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  font-size: 1.3rem; color: rgba(255,255,255,.4);
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════ */
.marquee-wrap {
  background: var(--forest); overflow: hidden;
  padding: 14px 0; white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,.05);
}
.marquee-track {
  display: inline-flex; gap: 40px;
  animation: marquee 22s linear infinite;
}
.m-item {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.5); display: inline-flex; align-items: center; gap: 10px;
}
.m-dot { color: var(--amber); font-size: 0.9rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════
   INTRO
═══════════════════════════════════ */
.intro { padding: 80px 0; }
.intro .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .intro .wrap { grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
}
@media (min-width: 1024px) {
  .intro .wrap { gap: 80px; }
}
.intro-text h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300; color: var(--forest); margin-bottom: 20px;
}
.intro-text p { color: var(--muted); font-size: 1rem; line-height: 1.8; font-weight: 300; }
.intro-text p + p { margin-top: 12px; }
.intro-img-wrap { position: relative; }
.intro-img-wrap img { width: 100%; height: min(480px, 55vw); object-fit: cover; border-radius: var(--r); }
@media (max-width: 767px) { .intro-img-wrap img { height: 280px; } }
.intro-badge {
  position: absolute; bottom: -20px; right: 16px;
  background: var(--amber); color: #fff;
  padding: 16px 20px; border-radius: 8px; text-align: center;
  box-shadow: 0 4px 20px rgba(200,137,42,.4);
}
.intro-badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.intro-badge span   { font-size: 0.72rem; opacity: .85; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; display: block; }

/* ═══════════════════════════════════
   BENTO GRID
═══════════════════════════════════ */
.bento-section { padding: 64px 0 80px; background: var(--cream2); }

/* mobile: 2 cols */
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 10px;
}
/* desktop: 12-col layout */
@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 300px 300px;
    gap: 14px;
  }
}

.bc { border-radius: var(--r); overflow: hidden; position: relative; }
.bc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.bc-photo:hover img { transform: scale(1.06); }
.bc-hover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,26,18,.75) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s;
  display: flex; align-items: flex-end; padding: 18px 20px;
}
.bc-hover span { color: #fff; font-size: 0.92rem; font-weight: 700; }
.bc-photo:hover .bc-hover { opacity: 1; }

.bc-text {
  display: flex; flex-direction: column;
  justify-content: center; padding: 24px 20px;
}
.bc-icon { font-size: 2rem; margin-bottom: 10px; }
.bc-text h3 { font-size: 1rem; margin-bottom: 6px; color: #fff; }
.bc-text p  { font-size: 0.82rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.bc-forest  { background: var(--forest); }
.bc-forest2 { background: var(--forest2); }
.bc-amber   { background: var(--amber); }

/* mobile positions (2-col, auto rows) */
.bc-wide { grid-column: span 2; }

/* ═══════════════════════════════════
   OFFER STORIES
═══════════════════════════════════ */

/* shared story base */
.story { overflow: hidden; }
.story-light { background: var(--cream); }
.story-dark  { background: var(--forest); color: #fff; }
.story-warm  { background: var(--cream2); }
.story-bar   { background: var(--cream3); }

/* story number */
.story-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 300; line-height: 1;
  color: var(--sand); margin-bottom: -8px;
  display: block;
}
.story-num-light { color: rgba(255,255,255,.2); }

/* story header row */
.story-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-top: 64px; padding-bottom: 48px;
}
@media (min-width: 768px) {
  .story-head { grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; }
}
.story-head-center {
  grid-template-columns: 1fr !important;
  text-align: center; max-width: 700px; margin-inline: auto;
}
.story-left h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 300; color: var(--forest); margin-top: 8px;
}
.story-dark .story-left h2 { color: #fff; }
.story-head-center h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300; color: #fff; margin-top: 8px;
}
.story-desc {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.85; font-weight: 300;
  align-self: center;
}
@media (min-width: 768px) { .story-desc { padding-bottom: 12px; } }
.story-desc-light { color: rgba(255,255,255,.55); text-align: center; }

/* full-bleed photo */
.story-photo-full {
  width: 100%;
  height: clamp(260px, 55vw, 640px);
  overflow: hidden;
}
.story-photo-full img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease;
}
.story-photo-full:hover img { transform: scale(1.04); }

/* 2-photo strip */
.story-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 10px; padding-bottom: 64px;
}
.story-strip img {
  width: 100%; height: clamp(160px, 30vw, 340px);
  object-fit: cover; border-radius: var(--r);
}

/* split layout (grill) */
.story-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 64px; padding-bottom: 64px;
}
@media (min-width: 768px) {
  .story-split { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
}
@media (min-width: 1024px) {
  .story-split { grid-template-columns: 5fr 7fr; gap: 80px; }
}
.story-split-text .story-num { margin-bottom: 4px; }
.story-split-text h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300; color: var(--forest); margin: 8px 0 16px;
}
.story-split-text p { color: var(--muted); font-size: 1rem; line-height: 1.8; font-weight: 300; }
.story-split-photo img {
  width: 100%; height: clamp(260px, 45vw, 520px);
  object-fit: cover; border-radius: var(--r);
  box-shadow: 0 20px 60px rgba(28,58,40,.15);
}

/* bar blocks */
.bar-blocks {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}
.bar-blocks::-webkit-scrollbar { display: none; }
.bar-block {
  flex: 1 0 140px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 40px 20px;
  border-right: 1px solid var(--border);
  transition: background .25s;
  cursor: default;
}
.bar-block:last-child { border-right: none; }
.bar-block:hover { background: rgba(28,58,40,.04); }
.bar-icon { font-size: 2.4rem; }
.bar-block strong { font-size: 0.85rem; font-weight: 700; color: var(--forest); text-align: center; }

/* kids section pull-quote */
.story-kids-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-style: italic;
  color: var(--amber);
  text-align: center;
  padding: 0 1.5rem 3.5rem;
  line-height: 1.4;
}

/* ═══════════════════════════════════
   PRICES
═══════════════════════════════════ */
.prices-section { padding: 80px 0; }
.prices-head {
  display: flex; align-items: baseline;
  justify-content: space-between; flex-wrap: wrap; gap: 8px;
  border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 0;
}
.prices-head h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--forest); }
.prices-head span { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.price-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center; gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s; border-radius: 8px;
}
@media (min-width: 640px) {
  .price-row { gap: 24px; padding: 26px 0; }
  .price-row:hover { background: rgba(28,58,40,.03); padding-left: 12px; padding-right: 12px; }
}
.price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: var(--sand); font-weight: 300; line-height: 1;
}
.price-info { display: flex; flex-direction: column; gap: 3px; }
.price-info strong { font-size: 0.95rem; font-weight: 700; color: var(--forest); }
.price-info span   { font-size: 0.82rem; color: var(--muted); }
.price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--amber);
  white-space: nowrap; text-align: right;
}

/* ═══════════════════════════════════
   LAKE SPLIT
═══════════════════════════════════ */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .split-section { grid-template-columns: 1fr 1fr; min-height: 560px; }
}
.split-photo { overflow: hidden; min-height: 280px; }
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
.split-content {
  background: var(--forest); color: #fff;
  padding: 52px 28px; display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 768px) { .split-content { padding: 64px 52px; } }
@media (min-width: 1024px) { .split-content { padding: 80px 72px; } }
.split-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; color: #fff; margin-bottom: 18px;
}
.split-content h2 em { color: #E8C97A; }
.split-content p { font-size: 0.98rem; color: rgba(255,255,255,.6); line-height: 1.8; font-weight: 300; }
.lake-stats { display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; }
.lstat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--amber); font-weight: 600; line-height: 1; }
.lstat span   { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.4); margin-top: 4px; display: block; }

/* ═══════════════════════════════════
   LAKE PHOTO STRIP
═══════════════════════════════════ */
.lake-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
@media (min-width: 768px) {
  .lake-strip { grid-template-columns: 1.4fr 1fr 1fr; }
}
.lake-strip img {
  width: 100%; height: clamp(200px, 35vw, 420px);
  object-fit: cover;
  transition: transform .5s var(--ease), filter .4s;
  filter: brightness(.95);
}
.lake-strip img:hover { transform: scale(1.02); filter: brightness(1.05); }
/* first photo (kids) spans 2 rows on mobile to feel more prominent */
.lake-strip img:first-child {
  grid-row: span 1;
}

/* ═══════════════════════════════════
   ZOO SECTION
═══════════════════════════════════ */
.zoo-section { padding: 80px 0; background: var(--cream2); }
.zoo-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .zoo-inner { grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
}
.zoo-img img { width: 100%; height: min(420px, 55vw); object-fit: cover; border-radius: var(--r); }
@media (max-width: 767px) { .zoo-img img { height: 260px; } }
.zoo-text h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 300; color: var(--forest); margin-bottom: 16px; }
.zoo-text p  { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 28px; }
.zoo-btns    { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════ */
.steps-section { padding: 80px 0; }
.steps {
  display: flex; flex-direction: column;
  gap: 16px; align-items: center; margin-top: 8px;
}
@media (min-width: 768px) {
  .steps { flex-direction: row; align-items: flex-start; }
}
.step {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px 26px;
  text-align: center; width: 100%;
  box-shadow: 0 2px 16px rgba(28,58,40,.06);
}
.step-n {
  width: 52px; height: 52px; background: var(--amber);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; font-weight: 800;
  color: #fff; margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; color: var(--forest); }
.step p  { font-size: 0.88rem; color: var(--muted); }
.step-arr {
  font-size: 2rem; color: var(--amber); opacity: .4;
  flex-shrink: 0;
  transform: rotate(90deg);
}
@media (min-width: 768px) { .step-arr { transform: none; margin-top: 32px; } }

/* ═══════════════════════════════════
   LEAD FORM
═══════════════════════════════════ */
.lead-section { padding: 80px 0; background: var(--cream3); }
.lead-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .lead-inner { grid-template-columns: 1fr 1fr; align-items: start; gap: 64px; }
}
.lead-left h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300; color: var(--forest); margin-bottom: 24px; }
.lead-left h2 em { color: var(--amber); }

.gift-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.gift-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; background: #fff; border-radius: 8px;
  border: 1px solid rgba(200,137,42,.2);
  font-weight: 600; font-size: 0.93rem; color: var(--forest);
}
.gift-list li span:first-child { font-size: 1.3rem; flex-shrink: 0; }
.lead-fine { font-size: 0.76rem; color: var(--muted); }

.lead-card {
  background: #fff; border-radius: 18px; padding: 36px 28px;
  box-shadow: 0 4px 40px rgba(28,58,40,.1);
}
.lead-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--forest); margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.field label {
  font-size: 0.78rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .5px;
}
.field input, .field select {
  padding: 12px 14px;
  border: 1.5px solid rgba(28,58,40,.15);
  border-radius: 8px; font-size: 0.95rem; color: var(--text);
  background: var(--cream); outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none; width: 100%;
}
.field input:focus, .field select:focus {
  border-color: var(--amber); background: #fff;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7060' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.consent {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 18px; cursor: pointer;
}
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--amber); flex-shrink: 0; }
.consent span  { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
.btn-submit {
  width: 100%; padding: 15px; border: none; border-radius: 50px;
  background: var(--amber); color: #fff;
  font-size: 0.95rem; font-weight: 800; cursor: pointer;
  transition: all .3s;
}
.btn-submit:hover { background: var(--amber2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,137,42,.3); }
.form-ok { margin-top: 14px; text-align: center; color: #27ae60; font-weight: 700; font-size: 0.95rem; }

/* ═══════════════════════════════════
   CONTACT & MAP
═══════════════════════════════════ */
.contact-section { padding: 80px 0; background: var(--cream2); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .contact-inner { grid-template-columns: 1fr 1fr; gap: 56px; } }
.contact-info h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 300; color: var(--forest); margin-bottom: 28px; }
.c-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.c-item > span { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.c-item strong { display: block; font-size: 0.78rem; color: var(--amber); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.c-item a, .c-item span:not(:first-child) { font-size: 0.95rem; color: var(--muted); }
.c-item a:hover { color: var(--forest); }
.c-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.map-wrap {
  height: 360px; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(28,58,40,.08);
}
@media (max-width: 767px) { .map-wrap { height: 260px; } }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer { background: var(--forest); color: #fff; padding: 52px 0 24px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 8px;
}
footer p { color: rgba(255,255,255,.45); font-size: 0.88rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 20px; align-content: flex-start; }
.footer-nav a { color: rgba(255,255,255,.5); font-size: 0.88rem; transition: color .2s; }
.footer-nav a:hover { color: var(--amber); }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a, .footer-contact span { color: rgba(255,255,255,.5); font-size: 0.88rem; }
.footer-contact a:hover { color: var(--amber); }
.footer-copy { text-align: center; font-size: 0.72rem; color: rgba(255,255,255,.25); }
