/* =====================================================================
   WILDWOOD — Premium Multi-Page Summer Camp / Youth Adventure Template
   Plain HTML5 + CSS3. No frameworks, no build tools.
   ---------------------------------------------------------------------
   REBRAND TIP: Change the look by editing the CSS variables in :root
   below. Everything (colors, radius, shadows, fonts) cascades from here.
   Update the Google Fonts <link> in each HTML file if you change fonts.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:       #fbf7ec;   /* warm cream page background        */
  --ink:      #20331f;   /* deep forest charcoal (headings)   */
  --green:    #2f5d3a;   /* forest green (primary)            */
  --green-d:  #234a2d;   /* darker forest green for hovers    */
  --green-l:  #4d8a5d;   /* lighter leafy green               */
  --sun:      #f6c23a;   /* sunny yellow                      */
  --sun-d:    #e0a91f;   /* darker amber for hovers           */
  --clay:     #e07a4e;   /* warm campfire clay/orange         */
  --clay-d:   #c75f34;   /* darker clay                       */
  --muted:    #71796a;   /* muted sage text                   */
  --surface:  #ffffff;   /* card / surface white              */
  --line:     #ece5d3;   /* warm hairline borders             */

  /* --- Fonts --- */
  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    22px;
  --radius-sm: 14px;
  --radius-lg: 34px;
  --shadow:    0 14px 34px rgba(32, 51, 31, .09);
  --shadow-lg: 0 28px 60px rgba(32, 51, 31, .16);
  --shadow-c:  0 12px 28px rgba(246, 194, 58, .34);
  --ease:      .35s cubic-bezier(.34, 1.2, .4, 1);

  /* --- Layout --- */
  --maxw: 1180px;
  --gutter: 24px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: #444c41;
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.012em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 3.8rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1rem; }

a { color: var(--green); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--clay-d); }

img, svg { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 92px 0; position: relative; }
.section--soft { background: linear-gradient(180deg, #fff 0%, #f4f8ee 100%); }
.section--sun  { background: linear-gradient(180deg, #fff 0%, #fdf6e1 100%); }
.section--tight { padding: 64px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(47, 93, 58, .12);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.is-sun { color: var(--sun-d); background: rgba(246, 194, 58, .2); }
.eyebrow.is-clay { color: var(--clay-d); background: rgba(224, 122, 78, .16); }

.lead { font-size: 1.14rem; color: #515a4c; }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }

.btn-primary {
  background: var(--sun);
  color: var(--ink);
  box-shadow: var(--shadow-c);
}
.btn-primary:hover { background: var(--sun-d); color: var(--ink); box-shadow: 0 16px 34px rgba(246, 194, 58, .46); }

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(47, 93, 58, .3);
}
.btn-green:hover { background: var(--green-d); color: #fff; }

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--green-l); color: var(--green); }

.btn-light {
  background: rgba(255,255,255,.16);
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-light:hover { background: #fff; color: var(--green); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 236, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -.015em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 42px; height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-l));
  display: grid; place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 18px rgba(47, 93, 58, .35);
  transform: rotate(-6deg);
  transition: transform var(--ease);
}
.brand:hover .logo-mark { transform: rotate(6deg) scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: #4f5749;
  padding: 8px 15px;
  border-radius: 12px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(246, 194, 58, .2); color: var(--clay-d); }
.nav-links a.active { color: var(--green); font-weight: 600; background: rgba(47, 93, 58, .12); }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: rgba(47, 93, 58, .12);
  border: none;
  border-radius: 14px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2.5px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   DECORATIVE BLOBS
   --------------------------------------------------------------------- */
.blob {
  position: absolute;
  border-radius: 46% 54% 60% 40% / 52% 44% 56% 48%;
  filter: blur(2px);
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 480px at 88% -8%, rgba(246, 194, 58, .26), transparent 62%),
    radial-gradient(620px 460px at 2% 108%, rgba(47, 93, 58, .16), transparent 58%),
    linear-gradient(180deg, #fbf7ec 0%, #f3f1e0 100%);
  padding: 84px 0 92px;
}
.hero .blob-1 { width: 230px; height: 230px; background: var(--clay); top: 10%; left: -60px; opacity: .12; }
.hero .blob-2 { width: 180px; height: 180px; background: var(--green); bottom: 6%; right: 44%; opacity: .1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 span { color: var(--clay-d); }
.hero h1 .leaf { color: var(--green); }
.hero .lead { max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; color: var(--ink); font-size: .95rem; }
.hero-badges b { font-size: 1.3rem; }

/* Hero photo */
.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  aspect-ratio: 4 / 5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute;
  background: var(--surface);
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  z-index: 3;
}
.hero-float small { display: block; font-weight: 400; color: var(--muted); font-size: .78rem; }
.hero-float .fe { font-size: 1.7rem; }
.hero-float.f1 { top: -20px; left: -18px; animation: bob 4s ease-in-out infinite; }
.hero-float.f2 { bottom: 24px; right: -22px; animation: bob 4.6s ease-in-out infinite .6s; }

@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------------------------------------------------------------------
   TRUST STRIP
   --------------------------------------------------------------------- */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-grid .ts { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.trust-grid .ts .te { font-size: 1.7rem; margin-bottom: 6px; }
.trust-grid .ts strong {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  color: var(--ink);
  line-height: 1;
}
.trust-grid .ts span { color: var(--muted); font-size: .94rem; }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(77, 138, 93, .45); }

.card .icon {
  width: 62px; height: 62px;
  border-radius: 20px;
  background: rgba(246, 194, 58, .2);
  display: grid; place-items: center;
  font-size: 1.9rem;
  margin-bottom: 18px;
  transition: transform var(--ease);
}
.card:hover .icon { transform: rotate(-8deg) scale(1.08); }
.card .icon.is-green { background: rgba(47, 93, 58, .14); }
.card .icon.is-clay { background: rgba(224, 122, 78, .16); }
.card h3 { margin-bottom: 8px; }
.card p { color: #515a4c; margin-bottom: 0; }

/* ---------------------------------------------------------------------
   ACTIVITY / PROGRAM CARDS (with photos)
   --------------------------------------------------------------------- */
.activity-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.activity-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.activity-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.activity-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease); }
.activity-card:hover .activity-media img { transform: scale(1.06); }
.activity-media .age-pill {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-body); font-weight: 600; font-size: .8rem;
  background: rgba(255,255,255,.92); color: var(--ink);
  padding: 6px 14px; border-radius: 999px;
  box-shadow: var(--shadow);
}
.activity-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.activity-body h3 { margin-bottom: 8px; }
.activity-body > p { color: #515a4c; }
.activity-meta {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  margin: 4px 0 18px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
}
.activity-meta span { display: inline-flex; align-items: center; gap: 6px; }
.activity-body .btn { margin-top: auto; align-self: flex-start; }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  color: #4f5749;
  background: var(--surface);
  border: 2px solid var(--line);
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn:hover { border-color: var(--green-l); color: var(--green); transform: translateY(-2px); }
.filter-btn.active { background: var(--green); border-color: var(--green); color: #fff; }

/* ---------------------------------------------------------------------
   FEATURE LIST
   --------------------------------------------------------------------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .tick {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-l));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 1.2rem;
  box-shadow: 0 8px 16px rgba(47, 93, 58, .3);
}
.feature h3 { font-size: 1.18rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: #515a4c; }

/* Split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  aspect-ratio: 5 / 4;
  position: relative;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------------------------------------------
   A DAY AT CAMP — timeline
   --------------------------------------------------------------------- */
.timeline { display: grid; gap: 18px; max-width: 760px; margin: 0 auto; }
.tl-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 26px;
  box-shadow: var(--shadow);
  transition: transform var(--ease);
}
.tl-item:hover { transform: translateX(6px); }
.tl-time { font-family: var(--font-head); font-weight: 700; color: var(--green); font-size: 1rem; }
.tl-body { display: flex; align-items: center; gap: 14px; }
.tl-body .tl-emoji {
  width: 50px; height: 50px; flex: 0 0 auto;
  border-radius: 14px; background: rgba(246, 194, 58, .2);
  display: grid; place-items: center; font-size: 1.5rem;
}
.tl-body h3 { font-size: 1.08rem; margin: 0 0 2px; }
.tl-body p { margin: 0; font-size: .94rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   SESSIONS / DATES
   --------------------------------------------------------------------- */
.dates-list { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.date-row {
  display: grid; grid-template-columns: 150px 1fr auto; gap: 18px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  box-shadow: var(--shadow);
}
.date-row .dr-date { font-family: var(--font-head); font-weight: 700; color: var(--clay-d); }
.date-row .dr-label b { font-family: var(--font-head); color: var(--ink); display: block; font-size: 1.1rem; }
.date-row .dr-label span { font-size: .92rem; color: var(--muted); }
.date-row .dr-status {
  font-family: var(--font-body); font-weight: 600; font-size: .82rem;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.dr-status.open { background: rgba(47, 93, 58, .14); color: var(--green); }
.dr-status.few { background: rgba(224, 122, 78, .16); color: var(--clay-d); }
.dr-status.wait { background: rgba(113, 121, 106, .16); color: var(--muted); }

/* ---------------------------------------------------------------------
   COUNSELLORS / TEAM
   --------------------------------------------------------------------- */
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 30px 24px 28px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card .team-photo {
  width: 116px; height: 116px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 2px; }
.team-card .role { color: var(--clay-d); font-family: var(--font-body); font-weight: 600; font-size: .9rem; margin-bottom: 10px; }
.team-card p { font-size: .94rem; color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-card .stars { color: var(--sun); margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.1rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.5;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-author .avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   GALLERY
   --------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: #eee;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .g-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px;
  font-family: var(--font-body); font-weight: 600; font-size: .92rem; color: #fff;
  background: linear-gradient(0deg, rgba(32,51,31,.78), transparent);
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--ease), transform var(--ease);
}
.gallery-item:hover .g-cap { opacity: 1; transform: none; }
.gallery-item.is-hidden { display: none; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px 360px at 86% -20%, rgba(246, 194, 58, .26), transparent 60%),
    radial-gradient(420px 320px at 6% 120%, rgba(224, 122, 78, .14), transparent 60%),
    linear-gradient(180deg, #f7f3e3, #fbf7ec);
  padding: 66px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-banner .blob-1 { width: 150px; height: 150px; background: var(--green); top: 12%; right: 8%; opacity: .1; }
.page-banner .pb-emoji { font-size: 2.6rem; display: block; margin-bottom: 10px; }
.page-banner h1 { margin-bottom: 10px; position: relative; z-index: 1; }
.page-banner p { max-width: 640px; color: #515a4c; margin-bottom: 0; position: relative; z-index: 1; }
.breadcrumb {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.breadcrumb a { color: var(--green); }
.breadcrumb span { margin: 0 6px; }

/* ---------------------------------------------------------------------
   ABOUT — safety list, grounds
   --------------------------------------------------------------------- */
.req-list { display: grid; gap: 14px; }
.req-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow);
}
.req-list .rq-ic {
  width: 40px; height: 40px; flex: 0 0 auto;
  border-radius: 12px; background: rgba(47, 93, 58, .12);
  display: grid; place-items: center; font-size: 1.2rem;
}
.req-list b { font-family: var(--font-head); color: var(--ink); display: block; }
.req-list span { font-size: .94rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(560px 380px at 88% 14%, rgba(246, 194, 58, .4), transparent 60%),
    linear-gradient(135deg, var(--green), var(--green-d));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .deco { position: absolute; font-size: 2.4rem; opacity: .5; }
.cta-band .deco.d1 { top: 22px; left: 30px; animation: bob 4s ease-in-out infinite; }
.cta-band .deco.d2 { bottom: 24px; right: 38px; animation: bob 4.6s ease-in-out infinite .5s; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fdfbf4;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-l);
  box-shadow: 0 0 0 4px rgba(77, 138, 93, .16);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #d04b3a; font-size: .84rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d04b3a; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .86rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: #eef7e9;
  border: 1px solid #bfe2af;
  color: #3f7a3c;
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: linear-gradient(160deg, #f7f3e3, #fdf6e1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 22px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 14px; background: #fff;
  display: grid; place-items: center; font-size: 1.35rem;
  box-shadow: var(--shadow);
}
.info-row b { font-family: var(--font-head); color: var(--ink); display: block; }
.info-row span { font-size: .94rem; color: #515a4c; }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 240px;
  background:
    linear-gradient(rgba(47,93,58,.05), rgba(47,93,58,.05)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 44px),
    #f1f6ec;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { font-size: 2.6rem; }
.map-placeholder b { font-family: var(--font-head); color: var(--ink); display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: #20331f;
  color: rgba(255,255,255,.78);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: rgba(255,255,255,.72); max-width: 320px; }
.footer-col h4 {
  color: #fff; font-family: var(--font-head); font-size: 1.05rem; letter-spacing: .01em;
  margin-bottom: 14px;
}
.footer-col a { display: block; color: rgba(255,255,255,.74); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--sun); }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.social a:hover { background: var(--sun); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.62);
}
.footer-bottom a { color: rgba(255,255,255,.78); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.34, 1.1, .4, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split-media { order: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 46px 28px; }
  .tl-item { grid-template-columns: 1fr; gap: 8px; }
  .date-row { grid-template-columns: 1fr; gap: 6px; text-align: left; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .trust-grid, .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-float.f1 { left: -6px; }
  .hero-float.f2 { right: -6px; }
  .cta-band .deco { display: none; }
}
