/* =========================================================
   Adventure Training Centre — Design System
   Premium outdoor adventure aesthetic
   ========================================================= */

:root {
  /* Brand colours */
  --green: #1f6b43;
  --green-dark: #154d30;
  --green-soft: #e8f3ec;
  --navy: #16263f;
  --navy-soft: #eef1f6;
  --orange: #e8702a;
  --orange-dark: #c95a1a;
  --orange-soft: #fdf0e8;

  --ink: #1b2330;
  --body: #44505f;
  --muted: #74808f;
  --line: #e6e9ee;
  --white: #ffffff;
  --bg-soft: #f7f9fb;

  --shadow-sm: 0 2px 8px rgba(22, 38, 63, 0.06);
  --shadow-md: 0 12px 30px rgba(22, 38, 63, 0.10);
  --shadow-lg: 0 24px 60px rgba(22, 38, 63, 0.16);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --maxw: 1200px;
  --header-h: 76px;

  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { color: var(--body); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section--soft { background: var(--bg-soft); }
.section--green { background: var(--green); color: #dff0e6; }
.section--navy { background: var(--navy); color: #cfd8e6; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { margin-top: 14px; font-size: 1.08rem; color: var(--muted); }
.section--green .eyebrow,
.section--navy .eyebrow { color: var(--orange); }
.section--green h2, .section--navy h2 { color: #fff; }
.section--green .section-head p,
.section--navy .section-head p { color: rgba(255,255,255,0.82); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(232,112,42,.32); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(31,107,67,.28); }
.btn-green:hover { background: var(--green-dark); }
.btn-light { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-light:hover { box-shadow: var(--shadow-md); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.24); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.06rem; }
.btn svg { width: 19px; height: 19px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--navy));
  display: grid; place-items: center; color: #fff;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-head); font-size: 1.02rem; color: var(--ink); font-weight: 700; }
.brand-text span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  color: var(--ink); padding: 9px 13px; border-radius: 9px;
  transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--green-soft); color: var(--green); }
.main-nav a.active { color: var(--green); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.lang-switch { display: flex; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang-switch button {
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  padding: 6px 12px; border-radius: 999px; color: var(--muted); transition: all .15s;
}
.lang-switch button.active { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }

.header-cta { display: inline-flex; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 11px; background: var(--bg-soft); color: var(--ink); place-items: center; }
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff;
  min-height: 90vh; display: flex; align-items: center;
  background-color: var(--green-dark);
  background-size: cover; background-position: center;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,28,20,.82) 0%, rgba(16,38,63,.6) 50%, rgba(16,38,63,.25) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero-inner { max-width: 720px; }
.hero h1 { color: #fff; }
.hero .lead { font-size: clamp(1.05rem, 2vw, 1.32rem); color: rgba(255,255,255,.92); margin: 22px 0 32px; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px); padding: 8px 16px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 500; font-size: .85rem; margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #5ad17e; box-shadow: 0 0 0 4px rgba(90,209,126,.3); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 46px; }
.hero-stats .stat strong { display: block; font-family: var(--font-head); font-size: 2rem; color: #fff; font-weight: 700; }
.hero-stats .stat span { font-size: .9rem; color: rgba(255,255,255,.78); }

/* Page hero (smaller, inner pages) */
.page-hero {
  position: relative; color: #fff; padding: clamp(70px,11vw,130px) 0 clamp(54px,8vw,90px);
  background-color: var(--green-dark);
  background-size: cover; background-position: center;
}
.page-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(100deg, rgba(11,28,20,.84), rgba(16,38,63,.5)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color:#fff; max-width: 820px; }
.page-hero .lead { color: rgba(255,255,255,.9); font-size: 1.15rem; margin-top: 18px; max-width: 640px; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 18px; font-family: var(--font-head); letter-spacing: .04em; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Feature grid (Why families) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 22px; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-soft); color: var(--green); margin-bottom: 18px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feature-card p { font-size: .98rem; color: var(--muted); }

/* ---------- Activity cards ---------- */
.activity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 22px; }
.activity-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
  display: block;
}
.activity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.activity-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.activity-card:hover img { transform: scale(1.07); }
.activity-card .overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(11,22,16,.85) 100%);
}
.activity-card .overlay h3 { color: #fff; font-size: 1.25rem; }
.activity-card .overlay p { color: rgba(255,255,255,.85); font-size: .9rem; margin-top: 4px; }
.activity-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.92); color: var(--green); font-family: var(--font-head);
  font-weight: 600; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}

/* ---------- Split / region section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.split-body h2 { margin-bottom: 18px; }
.split-body p + p { margin-top: 14px; }

.region-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 16px; margin-top: 28px; }
.region-chip {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 16px; box-shadow: var(--shadow-sm);
}
.region-chip .ri { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--orange-soft); color: var(--orange); flex-shrink: 0; }
.region-chip .ri svg { width: 22px; height: 22px; }
.region-chip span { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .98rem; }

/* mosaic gallery for region */
.mosaic { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 180px; gap: 14px; }
.mosaic img { width:100%; height:100%; object-fit: cover; border-radius: var(--radius-sm); }
.mosaic .tall { grid-row: span 2; }
.mosaic .wide { grid-column: span 2; }

/* ---------- Camp / pricing ---------- */
.dates-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(230px,1fr)); gap: 18px; }
.date-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.date-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.date-card .dnum { font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.date-card .ddate { font-family: var(--font-head); font-size: 1.45rem; font-weight: 700; color: var(--ink); margin: 8px 0 4px; }
.date-card .dmeta { font-size: .92rem; color: var(--muted); }
.date-card .dstatus { display:inline-block; margin-top:14px; font-size:.78rem; font-weight:600; font-family:var(--font-head); color: var(--green); background: var(--green-soft); padding: 4px 11px; border-radius:999px; }

.pricing-wrap { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 32px; box-shadow: var(--shadow-sm); position: relative;
}
.price-card.featured { border: 2px solid var(--orange); box-shadow: var(--shadow-md); }
.price-card .ribbon {
  position: absolute; top: -14px; left: 32px; background: var(--orange); color:#fff;
  font-family: var(--font-head); font-weight:600; font-size:.78rem; letter-spacing:.06em;
  padding: 6px 16px; border-radius: 999px;
}
.price-card h3 { font-size: 1.3rem; }
.price-card .price { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--green); margin: 10px 0 2px; }
.price-card .price small { font-size: 1rem; color: var(--muted); font-weight: 500; }
.price-card .price-note { color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
.price-card .btn { width: 100%; justify-content: center; }

.incl-list { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 14px 30px; }
.incl-list li { display: flex; gap: 12px; align-items: flex-start; }
.incl-list .check { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin-top: 2px; }
.incl-list .check svg { width: 16px; height: 16px; }
.incl-list span { color: var(--ink); font-weight: 500; }

/* timeline (active weekends) */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 8px; }
.timeline::before { content:""; position:absolute; left: 26px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 34px 70px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: 12px; top: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--orange); color:#fff; display:grid; place-items:center; box-shadow: 0 0 0 5px var(--orange-soft); }
.tl-dot svg { width: 16px; height: 16px; }
.tl-item .tl-time { font-family: var(--font-head); font-weight:600; color: var(--orange); font-size:.84rem; letter-spacing:.08em; text-transform: uppercase; }
.tl-item h3 { font-size: 1.2rem; margin: 4px 0 6px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr)); gap: 26px; }
.team-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-photo { aspect-ratio: 1/1; overflow: hidden; }
.team-photo img { width:100%; height:100%; object-fit: cover; }
.team-body { padding: 22px 22px 26px; }
.team-body h3 { font-size: 1.2rem; }
.team-body .role { font-family: var(--font-head); font-weight:600; color: var(--orange); font-size:.9rem; margin: 2px 0 12px; }
.team-body .bio { font-size: .95rem; color: var(--muted); margin-bottom: 14px; }
.team-certs { display: flex; flex-wrap: wrap; gap: 7px; }
.team-certs span { font-size:.76rem; font-weight:600; font-family:var(--font-head); color: var(--green); background: var(--green-soft); padding: 4px 10px; border-radius: 999px; }

/* approach cards */
.approach-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 20px; }
.approach-card { padding: 28px 24px; border-radius: var(--radius); background:#fff; border:1px solid var(--line); box-shadow: var(--shadow-sm); }
.approach-card .num { font-family: var(--font-head); font-weight:700; font-size: 1.1rem; color:#fff; width:42px; height:42px; border-radius:12px; background: linear-gradient(135deg,var(--orange),var(--orange-dark)); display:grid; place-items:center; margin-bottom:16px; }
.approach-card h3 { font-size:1.12rem; margin-bottom:6px; }
.approach-card p { font-size:.95rem; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery-filters { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom: 36px; }
.gallery-filters button {
  font-family: var(--font-head); font-weight:600; font-size:.9rem; padding: 9px 18px; border-radius: 999px;
  background:#fff; border:1px solid var(--line); color: var(--body); transition: all .15s;
}
.gallery-filters button.active, .gallery-filters button:hover { background: var(--green); color:#fff; border-color: var(--green); }
.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-grid .g-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; position: relative; }
.gallery-grid .g-item img { width:100%; transition: transform .4s; }
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.gallery-grid .g-item::after { content:""; position:absolute; inset:0; background: rgba(16,38,63,0); transition: background .2s; }
.gallery-grid .g-item:hover::after { background: rgba(16,38,63,.18); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(10,16,26,.92); display:none; align-items:center; justify-content:center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position:absolute; top: 22px; right: 26px; width:48px; height:48px; border-radius:50%; background: rgba(255,255,255,.15); color:#fff; display:grid; place-items:center; }
.lightbox .lb-close svg { width: 26px; height: 26px; }
.lightbox .lb-nav { position:absolute; top:50%; transform: translateY(-50%); width:52px; height:52px; border-radius:50%; background: rgba(255,255,255,.15); color:#fff; display:grid; place-items:center; }
.lightbox .lb-prev { left: 22px; } .lightbox .lb-next { right: 22px; }
.lightbox .lb-nav svg { width:28px; height:28px; }

/* ---------- Reviews ---------- */
.reviews-grid { display:grid; grid-template-columns: repeat(auto-fill,minmax(330px,1fr)); gap: 24px; }
.review-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); display:flex; flex-direction:column; }
.review-card .stars { color: var(--orange); margin-bottom: 14px; letter-spacing: 2px; }
.review-card .quote { font-size: 1.05rem; color: var(--ink); flex-grow:1; }
.review-card .quote::before { content: "“"; font-family: var(--font-head); font-size: 2.4rem; color: var(--green); line-height: 0; vertical-align: -0.35em; margin-right: 4px; }
.review-author { display:flex; align-items:center; gap: 14px; margin-top: 22px; }
.review-author img { width:52px; height:52px; border-radius:50%; object-fit:cover; }
.review-author strong { display:block; font-family: var(--font-head); color: var(--ink); }
.review-author span { font-size: .88rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; transition: box-shadow .2s; }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--green); }
.faq-q { width:100%; display:flex; align-items:center; justify-content:space-between; gap: 18px; padding: 22px 24px; text-align:left; font-family: var(--font-head); font-weight:600; font-size: 1.1rem; color: var(--ink); }
.faq-q .fi-icon { flex-shrink:0; width:30px; height:30px; border-radius:50%; background: var(--green-soft); color: var(--green); display:grid; place-items:center; transition: transform .25s, background .2s; }
.faq-item.open .fi-icon { transform: rotate(45deg); background: var(--green); color:#fff; }
.faq-q .fi-icon svg { width:18px; height:18px; }
.faq-a { max-height: 0; overflow:hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 24px 24px; color: var(--body); }

/* ---------- Contact ---------- */
.contact-layout { display:grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.contact-info-grid { display:grid; gap: 16px; }
.contact-info-card { display:flex; gap: 16px; align-items:flex-start; background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.contact-info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-info-card .ci-icon { flex-shrink:0; width:48px; height:48px; border-radius:12px; display:grid; place-items:center; color:#fff; }
.ci-icon.wa { background:#25d366; } .ci-icon.tg { background:#229ed9; } .ci-icon.ph { background: var(--green); } .ci-icon.em { background: var(--navy); } .ci-icon.mp { background: var(--orange); }
.contact-info-card .ci-icon svg { width:24px; height:24px; }
.contact-info-card .ci-label { font-size: .82rem; color: var(--muted); font-family: var(--font-head); letter-spacing:.04em; text-transform: uppercase; }
.contact-info-card .ci-value { font-family: var(--font-head); font-weight:600; color: var(--ink); font-size: 1.05rem; word-break: break-word; }

.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); }
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display:block; font-family: var(--font-head); font-weight:600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width:100%; padding: 13px 15px; border:1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background:#fff; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 8px; }
.form-success { display:none; background: var(--green-soft); border:1px solid var(--green); color: var(--green-dark); padding: 16px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight:500; }
.form-success.show { display:block; }
.map-embed { border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md); margin-top: 40px; line-height:0; }
.map-embed iframe { width:100%; height: 420px; border:0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color:#fff; text-align:center; background-color: var(--green-dark); background-size:cover; background-position:center; }
.cta-band::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(31,107,67,.92), rgba(16,38,63,.86)); }
.cta-band .container { position:relative; z-index:2; }
.cta-band h2 { color:#fff; max-width: 640px; margin: 0 auto 16px; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 560px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-band .hero-cta { justify-content:center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #aebbcd; padding: 64px 0 30px; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .brand-text strong { color:#fff; }
.site-footer .brand-text span { color: #8094ac; }
.footer-about { margin-top: 18px; font-size: .95rem; color: #93a4ba; max-width: 320px; }
.footer-social { display:flex; gap: 11px; margin-top: 20px; }
.footer-social a { width:42px; height:42px; border-radius:11px; background: rgba(255,255,255,.08); color:#fff; display:grid; place-items:center; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-social svg { width:20px; height:20px; }
.site-footer h4 { color:#fff; font-size: 1.02rem; margin-bottom: 18px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color:#aebbcd; font-size: .96rem; transition: color .15s; }
.footer-links a:hover { color:#fff; }
.footer-contact li { display:flex; gap:10px; align-items:flex-start; margin-bottom:13px; font-size:.95rem; }
.footer-contact svg { width:18px; height:18px; flex-shrink:0; margin-top:3px; color: var(--orange); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top: 46px; padding-top: 24px; display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; font-size:.88rem; color:#7d90a8; }

/* ---------- Floating contact buttons ---------- */
.floating-contacts { position: fixed; right: 18px; bottom: 22px; z-index: 500; display:flex; flex-direction:column; gap: 12px; }
.floating-contacts a {
  width: 54px; height: 54px; border-radius: 50%; display:grid; place-items:center; color:#fff;
  box-shadow: var(--shadow-md); transition: transform .18s; position: relative;
}
.floating-contacts a:hover { transform: scale(1.1); }
.floating-contacts a svg { width: 28px; height: 28px; }
.fc-wa { background:#25d366; } .fc-tg { background:#229ed9; } .fc-ph { background: var(--orange); }
.floating-contacts a .fc-tip {
  position:absolute; right: 64px; top:50%; transform: translateY(-50%); white-space:nowrap;
  background: var(--ink); color:#fff; font-size:.82rem; font-weight:600; padding: 6px 12px; border-radius: 8px;
  opacity:0; pointer-events:none; transition: opacity .15s; font-family: var(--font-head);
}
.floating-contacts a:hover .fc-tip { opacity: 1; }

/* fade-in on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* mobile nav drawer */
.nav-overlay { display:none; position: fixed; inset: 0; background: rgba(16,38,63,.5); z-index: 150; }
.nav-overlay.open { display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 920px) {
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100%; width: 300px; max-width: 84vw;
    background:#fff; z-index: 200; transform: translateX(100%); transition: transform .3s ease;
    padding: 84px 24px 30px; box-shadow: var(--shadow-lg); overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { padding: 13px 14px; font-size: 1.05rem; border-radius: 11px; }
  .nav-toggle { display: grid; }
  .header-cta { display: none; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(2,1fr); grid-auto-rows: 160px; }
  .gallery-grid { columns: 2; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero { min-height: 86vh; }
  .hero-stats { gap: 24px; }
  .hero-stats .stat strong { font-size: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .brand-text span { display:none; }
  .floating-contacts a { width: 50px; height: 50px; }
}
