/* Kale Garden — Modern Multi-Page Design System */
:root {
  --forest: #123b2a;
  --green: #2f7d4a;
  --accent: #59a96a;
  --sage: #eaf4ec;
  --mint: #f5faf6;
  --white: #ffffff;
  --ink: #17211b;
  --muted: #5d6b62;
  --beige: #f4ebdd;
  --border: #dce8df;
  --shadow: 0 12px 40px rgba(18, 59, 42, 0.1);
  --shadow-sm: 0 6px 20px rgba(18, 59, 42, 0.07);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1180px;
  --header-h: 92px;
  --font: "Manrope", system-ui, sans-serif;
  --ease: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

body.nav-open { overflow: hidden; }
body.has-mobile-bar { padding-bottom: 5.5rem; }

img { max-width: 100%; display: block; height: auto; }
svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; color: var(--forest); line-height: 1.15; font-weight: 800; letter-spacing: -0.025em; }
p { margin: 0; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--forest); color: #fff; padding: 0.75rem 1rem; border-radius: 10px;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  min-height: 50px; padding: 0.85rem 1.55rem; border-radius: 999px;
  font-family: var(--font); font-weight: 700; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer;
  transition: transform var(--ease), background var(--ease), color var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible,
.nav a:focus-visible,
.footer a:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.btn-primary {
  background: var(--green); color: #fff;
  box-shadow: 0 10px 28px rgba(47, 125, 74, 0.28);
}
.btn-primary:hover { background: #276a3e; }

.btn-secondary {
  background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.24); border-color: #fff; }

.btn-outline {
  background: transparent; color: var(--forest); border-color: var(--border);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }

.btn-light { background: #fff; color: var(--forest); }
.btn-light:hover { background: var(--sage); }

.btn-ghost { background: var(--sage); color: var(--forest); }
.btn-ghost:hover { background: #dcefe1; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid transparent;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.site-header.is-scrolled,
.site-header.header-solid {
  background: rgba(255,255,255,0.98);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(18, 59, 42, 0.06);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
}
.logo {
  display: flex; align-items: center; flex-shrink: 0;
  line-height: 0;
}
.logo img {
  width: auto; height: 72px; max-width: min(240px, 42vw);
  display: block; object-fit: contain; object-position: center;
}

.nav { display: flex; align-items: center; gap: 0.2rem 1.15rem; }
.nav > a:not(.btn) {
  font-weight: 600; font-size: 0.92rem; color: var(--muted);
  transition: color var(--ease); position: relative;
}
.nav > a:not(.btn):hover,
.nav > a.is-active { color: var(--forest); }
.nav > a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--green); border-radius: 2px;
}

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  padding: 10px; cursor: pointer; z-index: 220;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--forest); margin: 5px 0;
  border-radius: 2px; transition: var(--ease);
}

/* Page hero (inner pages + home) */
.page-hero {
  position: relative; min-height: clamp(340px, 48vh, 520px);
  display: grid; align-items: end; color: #fff; overflow: hidden;
}
.page-hero--tall { min-height: clamp(520px, 88vh, 760px); align-items: center; }
.page-hero > img,
.page-hero .hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.page-hero .hero-video { pointer-events: none; }

.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; transition: opacity 1.1s ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.04); transition: transform 7s ease;
}
.hero-slide.is-active img { transform: scale(1); }
.hero-slider-dots {
  position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%);
  z-index: 2; display: flex; gap: 0.45rem;
}
.hero-slider-dots button {
  width: 10px; height: 10px; border-radius: 999px; border: 0;
  padding: 0; cursor: pointer; background: rgba(255,255,255,0.45);
  transition: background var(--ease), transform var(--ease), width var(--ease);
}
.hero-slider-dots button.is-active {
  width: 28px; background: #fff; transform: none;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,59,42,0.25) 0%, rgba(18,59,42,0.55) 45%, rgba(18,59,42,0.82) 100%);
}
.page-hero-content {
  position: relative; z-index: 1; padding: 5.5rem 0 3.5rem;
  width: min(100% - 2.5rem, var(--max)); margin-inline: auto;
}
.page-hero--tall .page-hero-content { padding: 7rem 0 4rem; max-width: 720px; margin-left: max(1.25rem, calc((100% - var(--max)) / 2)); }

.eyebrow {
  display: inline-block; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.85rem;
}
.page-hero .eyebrow { color: #b8e0c2; }
.page-hero h1 {
  color: #fff; font-size: clamp(2.4rem, 5.2vw, 4.2rem); margin-bottom: 1rem; max-width: 16ch;
}
.page-hero .lead {
  color: rgba(255,255,255,0.9); font-size: 1.12rem; max-width: 48ch; margin-bottom: 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.trust-pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem;
}
.trust-pills span {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  padding: 0.45rem 0.85rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.85rem;
  color: rgba(255,255,255,0.7); margin-bottom: 1rem;
}
.breadcrumb a { color: #fff; font-weight: 600; }
.breadcrumb span { opacity: 0.7; }

/* Sections */
.section { padding: 5.5rem 0; }
.section-mint { background: var(--mint); }
.section-sage { background: var(--sage); }
.section-dark {
  background: var(--forest); color: rgba(255,255,255,0.9);
}
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { max-width: 640px; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 0.75rem; }
.section-desc { color: var(--muted); font-size: 1.05rem; }
.section-dark .section-desc { color: rgba(255,255,255,0.75); }

/* Feature mosaic / image-rich grids */
.mosaic {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.1rem;
}
.mosaic-main, .mosaic-side article {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 280px;
  box-shadow: var(--shadow-sm);
}
.mosaic-main { min-height: 520px; }
.mosaic-side { display: grid; gap: 1.1rem; }
.mosaic-side > a { display: block; min-height: 240px; }
.mosaic-side > a article { height: 100%; min-height: 240px; }
.mosaic-main img, .mosaic-side img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.mosaic-main:hover img, .mosaic-side article:hover img { transform: scale(1.05); }
.mosaic-caption {
  position: absolute; inset: auto 0 0 0; padding: 3.5rem 1.4rem 1.35rem;
  background: linear-gradient(180deg, transparent, rgba(18,59,42,0.9));
  color: #fff;
}
.mosaic-caption h3 { color: #fff; font-size: 1.35rem; margin-bottom: 0.35rem; }
.mosaic-caption p { color: rgba(255,255,255,0.88); font-size: 0.95rem; }

/* Cards */
.card-grid { display: grid; gap: 1.25rem; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.media-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease); height: 100%;
  display: flex; flex-direction: column;
}
.media-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.media-card .media {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.media-card .media img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.media-card:hover .media img { transform: scale(1.06); }
.media-card .body { padding: 1.35rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.media-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.media-card p { color: var(--muted); font-size: 0.98rem; }
.media-card .link {
  margin-top: auto; padding-top: 1rem; font-weight: 700; color: var(--green); font-size: 0.92rem;
}

/* Split */
.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-visual {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4;
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }
.split-copy .eyebrow { color: var(--green); }
.split-copy h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.split-copy p { color: var(--muted); margin-bottom: 1rem; }
.split-list { display: grid; gap: 0.7rem; margin: 1.25rem 0 1.75rem; }
.split-list li {
  display: flex; gap: 0.7rem; align-items: flex-start; font-weight: 600; color: var(--forest);
}
.split-list li::before {
  content: ""; width: 10px; height: 10px; margin-top: 0.45rem; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.step {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform var(--ease);
}
.step:hover { transform: translateY(-4px); }
.step-num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--forest); color: #fff;
  display: grid; place-items: center; font-weight: 800; margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* Activity showcase */
.activity-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.activity-tile {
  position: relative; min-height: 420px; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.activity-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.activity-tile:hover img { transform: scale(1.06); }
.activity-tile .overlay {
  position: absolute; inset: auto 0 0 0; padding: 5rem 1.4rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(18,59,42,0.92));
  color: #fff;
}
.activity-tile h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.4rem; }
.activity-tile p { color: rgba(255,255,255,0.9); margin-bottom: 0.9rem; }
.activity-tile .btn { min-height: 42px; padding: 0.55rem 1.1rem; font-size: 0.88rem; }

/* Gallery */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; justify-content: center;
}
.filter-btn {
  min-height: 42px; padding: 0.5rem 1.1rem; border-radius: 999px; border: 1px solid var(--border);
  background: #fff; font-family: var(--font); font-weight: 700; font-size: 0.88rem;
  color: var(--muted); cursor: pointer; transition: var(--ease);
}
.filter-btn:hover, .filter-btn.is-active {
  background: var(--forest); color: #fff; border-color: var(--forest);
}

.gallery-masonry {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem;
}
.gallery-masonry figure {
  margin: 0; border-radius: var(--radius-sm); overflow: hidden; position: relative;
  aspect-ratio: 1; cursor: zoom-in; box-shadow: var(--shadow-sm);
}
.gallery-masonry figure.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-masonry figure.tall { aspect-ratio: 3/4; }
.gallery-masonry img,
.gallery-masonry video {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease;
}
.gallery-masonry figure:hover img,
.gallery-masonry figure:hover video { transform: scale(1.05); }
.gallery-masonry figure.gallery-video { cursor: pointer; }
.gallery-masonry .play-badge {
  position: absolute; top: 0.85rem; right: 0.85rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(18, 59, 42, 0.85); color: #fff;
  font-size: 0.75rem; font-weight: 700; padding: 0.4rem 0.7rem; border-radius: 999px;
}
.video-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.video-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-sm); cursor: pointer; border: 0; padding: 0;
  background: var(--forest);
}
.video-card video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.video-card .play-badge { left: 0.85rem; right: auto; }
.video-card-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(18,59,42,0.9));
  color: #fff; font-weight: 700; font-size: 0.95rem; text-align: left;
}
@media (max-width: 1024px) {
  .video-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .video-strip { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
}
.gallery-masonry figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.5rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: #fff; font-size: 0.85rem; font-weight: 600; opacity: 0; transition: opacity var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .gallery-masonry figure:hover figcaption { opacity: 1; }
}
@media (hover: none) {
  .gallery-masonry figcaption { opacity: 1; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(10, 24, 18, 0.92);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img,
.lightbox video {
  max-width: min(1100px, 100%); max-height: 85vh; border-radius: 12px; object-fit: contain;
  background: #000;
}
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.25rem; width: 44px; height: 44px;
  border: 0; border-radius: 50%; background: rgba(255,255,255,0.15); color: #fff;
  font-size: 1.4rem; cursor: pointer;
}

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.blog-card .media { aspect-ratio: 16/10; }
.blog-meta {
  display: flex; gap: 0.75rem; flex-wrap: wrap; font-size: 0.82rem; font-weight: 600;
  color: var(--green); margin-bottom: 0.55rem;
}
.article {
  max-width: 760px; margin: 0 auto; padding: 3.5rem 0 5rem;
}
.article .meta { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.5rem; }
.article h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.article .cover {
  border-radius: var(--radius); overflow: hidden; margin: 1.5rem 0 2rem; aspect-ratio: 16/9;
}
.article .cover img { width: 100%; height: 100%; object-fit: cover; }
.article .content p { color: var(--muted); margin-bottom: 1.15rem; font-size: 1.05rem; }
.article .content h2 { font-size: 1.45rem; margin: 2rem 0 0.75rem; }
.article .content ul { margin: 0 0 1.25rem 1.2rem; list-style: disc; color: var(--muted); }
.article .content li { margin-bottom: 0.4rem; }
.article-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem;
}
.section-cta-center { text-align: center; margin-top: 2.5rem; }
.note-center { text-align: center; margin-top: 1.5rem; color: var(--muted); }
.breadcrumb-light { color: var(--muted); }
.breadcrumb-light a { color: var(--green); }

/* Contact */
.contact-layout {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 2rem; align-items: start;
}
.contact-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
}
.contact-list { display: grid; gap: 1rem; margin: 1.5rem 0; }
.contact-list li {
  display: grid; gap: 0.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.contact-list strong {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--green);
}
.contact-list a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.contact-list a:hover { color: var(--green); }
.map-box {
  border-radius: var(--radius); min-height: 420px; border: 1px solid var(--border);
  background:
    linear-gradient(145deg, var(--sage), var(--mint)),
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(47,125,74,0.05) 28px, rgba(47,125,74,0.05) 29px);
  display: grid; place-items: center; text-align: center; color: var(--forest);
  overflow: hidden; position: relative;
}
.map-box svg { width: 48px; height: 48px; color: var(--green); margin: 0 auto 0.75rem; }
.map-box--live {
  padding: 0; display: block; background: #dfe8e2;
}
.map-box--live iframe {
  display: block; width: 100%; height: 420px; border: 0;
}
.map-open-btn {
  position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0.65rem 1.15rem; border-radius: 999px;
  background: #fff; color: var(--forest); font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(18,59,42,0.18); white-space: nowrap;
}
.map-open-btn:hover { background: var(--forest); color: #fff; }

.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field label {
  display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--forest);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; min-height: 48px; border: 1px solid var(--border); border-radius: 12px;
  padding: 0.75rem 0.95rem; font-family: var(--font); font-size: 0.98rem; background: var(--mint);
  color: var(--ink); transition: border-color var(--ease), box-shadow var(--ease);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(47,125,74,0.15);
}
.form-note { font-size: 0.88rem; color: var(--muted); margin-top: 0.75rem; }

/* CTA band */
.cta-band {
  position: relative; overflow: hidden; padding: 4.5rem 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(89,169,106,0.2), transparent 40%),
    var(--forest);
  color: #fff; text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.2vw, 2.5rem); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 1.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: -3rem; position: relative; z-index: 2;
}
.stat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.35rem; box-shadow: var(--shadow); text-align: center;
}
.stat strong {
  display: block; font-size: 1.15rem; color: var(--forest); margin-bottom: 0.25rem;
}
.stat span { color: var(--muted); font-size: 0.9rem; font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--forest); color: rgba(255,255,255,0.82); padding: 3.25rem 0 1.35rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 1.1fr 1.15fr;
  gap: 2rem 2.5rem;
  margin-bottom: 2rem;
  align-items: start;
}
.footer-brand p {
  margin: 0.85rem 0 0;
  max-width: 32ch;
  line-height: 1.55;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
}
.logo-footer {
  display: block; width: auto; height: 84px; max-width: 200px;
  object-fit: contain;
}
.footer h3 {
  color: #fff; font-size: 0.82rem; margin: 0 0 0.75rem;
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 800;
}
.footer-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col a {
  color: rgba(255,255,255,0.75); font-weight: 500; font-size: 0.95rem;
  transition: color var(--ease); line-height: 1.35;
}
.footer-col a:hover { color: #fff; }

.footer-contact { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-chip {
  display: grid; gap: 0.15rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  transition: background var(--ease), border-color var(--ease);
}
.footer-chip:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.footer-chip-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: rgba(184, 224, 194, 0.95);
}
.footer-chip-value {
  font-size: 0.92rem; font-weight: 600; line-height: 1.4;
  color: rgba(255,255,255,0.92);
}
.footer-chip--address .footer-chip-value { font-size: 0.86rem; font-weight: 500; }
.btn-footer {
  margin-top: 0.35rem;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0.7rem 1.1rem; border-radius: 999px;
  background: var(--green); color: #fff; font-weight: 700; font-size: 0.92rem;
  border: 0; transition: background var(--ease), transform var(--ease);
}
.btn-footer:hover { background: #3f9a5c; color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.1rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 1rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
.footer-bottom p { margin: 0; }

/* Mobile reserve */
.mobile-reserve-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 180;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.97); border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(18,59,42,0.08);
  transform: translateY(110%); transition: transform 0.3s ease;
  gap: 0.65rem;
}
.mobile-reserve-bar.is-visible { transform: translateY(0); }
.mobile-reserve-bar .btn { flex: 1; width: auto; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed; right: 1.15rem; bottom: 1.25rem; z-index: 220;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.06); box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55); color: #fff; }
.whatsapp-float svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.whatsapp-float-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37, 211, 102, 0.55);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
.whatsapp-float-pulse--delay { animation-delay: 1.1s; }
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}
body.has-mobile-bar .whatsapp-float {
  bottom: calc(5.6rem + env(safe-area-inset-bottom));
}

.nav-phone {
  font-weight: 700 !important;
  color: var(--forest) !important;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--green) !important; }
.footer-chip-value { word-break: normal; overflow-wrap: anywhere; }

/* SEO text block */
.seo-block {
  max-width: 820px; margin: 0 auto; color: var(--muted);
}
.seo-block h2 { margin-bottom: 1rem; }
.seo-block p { margin-bottom: 1rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1100px) {
  .nav { gap: 0.15rem 0.75rem; }
  .nav > a:not(.btn) { font-size: 0.86rem; }
  .nav .btn { min-height: 44px; padding: 0.7rem 1.1rem; font-size: 0.88rem; }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .nav-phone { display: none; }
}

@media (max-width: 1024px) {
  .mosaic, .split, .contact-layout { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split { gap: 2rem; }
  .mosaic-main { min-height: 360px; }
  .steps, .stats { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3, .card-grid-4, .activity-showcase, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry figure.wide { grid-column: span 2; }
  .gallery-masonry figure.tall { aspect-ratio: 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .page-hero--tall .page-hero-content {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    width: min(100% - 2.5rem, var(--max));
  }
}

@media (max-width: 768px) {
  :root { --header-h: 80px; }

  .logo img { height: 58px; max-width: min(200px, 48vw); }

  .nav-toggle { display: block; position: relative; z-index: 260; }
  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%;
    width: 100vw;
    height: 100%;
    height: 100dvh;
    max-width: none;
    margin: 0;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.35rem;
    padding: calc(var(--header-h) + 1.25rem) 1.5rem calc(2rem + env(safe-area-inset-bottom));
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s ease, visibility 0.3s ease;
    z-index: 250;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
    box-shadow: none;
  }
  .nav.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav > a:not(.btn) {
    font-size: 1.15rem; color: var(--forest);
    min-height: 48px; display: flex; align-items: center;
    border-bottom: 1px solid var(--border); padding: 0.35rem 0;
  }
  .nav > a.is-active { color: var(--green); }
  .nav > a.is-active::after { display: none; }
  .nav-phone {
    display: flex !important;
    font-size: 1.05rem !important;
  }
  .nav .btn {
    width: 100%; max-width: none; margin-top: 1rem;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  body.nav-open .site-header { z-index: 260; }
  body.nav-open .whatsapp-float { opacity: 0; pointer-events: none; }

  .page-hero {
    min-height: clamp(300px, 52vh, 420px);
  }
  .page-hero--tall {
    min-height: min(78vh, 640px);
    align-items: flex-end;
  }
  .page-hero-content,
  .page-hero--tall .page-hero-content {
    width: min(100% - 1.5rem, var(--max));
    margin-inline: auto;
    padding: 4.5rem 0 2.25rem;
  }
  .page-hero h1 {
    max-width: none;
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }
  .page-hero .lead { font-size: 1rem; margin-bottom: 1.25rem; }
  .trust-pills { gap: 0.4rem; }
  .trust-pills span { font-size: 0.78rem; padding: 0.4rem 0.7rem; }

  .stats {
    margin-top: -1.75rem;
    gap: 0.75rem;
  }
  .stat { padding: 1rem 0.85rem; }
  .stat strong { font-size: 1rem; }
  .stat span { font-size: 0.82rem; }

  .section { padding: 3.25rem 0; }
  .section-head { margin-bottom: 1.75rem; }
  .section-desc { font-size: 1rem; }

  .card-grid-3,
  .card-grid-4,
  .activity-showcase,
  .blog-grid,
  .steps,
  .stats { grid-template-columns: 1fr; }

  .mosaic-main { min-height: 280px; }
  .mosaic-side > a,
  .mosaic-side > a article { min-height: 200px; }

  .activity-tile { min-height: 300px; }
  .activity-tile .overlay { padding: 3.5rem 1.15rem 1.25rem; }
  .activity-tile h3 { font-size: 1.3rem; }

  .gallery-masonry { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .gallery-masonry figure.wide { grid-column: span 2; aspect-ratio: 16/10; }
  .gallery-masonry figure.tall { aspect-ratio: 1; }

  .gallery-filters { justify-content: flex-start; gap: 0.4rem; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.25rem; -webkit-overflow-scrolling: touch; }
  .filter-btn { flex: 0 0 auto; white-space: nowrap; }

  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 1.25rem; }
  .map-box { min-height: 260px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    margin-bottom: 1.35rem;
  }
  .footer-brand { text-align: center; }
  .footer-brand p {
    margin: 0.65rem auto 0;
    max-width: 34ch;
    font-size: 0.9rem;
  }
  .logo-footer {
    height: 72px;
    max-width: 170px;
    margin-inline: auto;
  }
  .footer-links {
    gap: 1rem 1.25rem;
  }
  .footer-col { gap: 0.35rem; }
  .footer-col a {
    font-size: 0.9rem;
    min-height: 36px;
    display: flex;
    align-items: center;
  }
  .footer h3 { margin-bottom: 0.55rem; font-size: 0.75rem; }
  .footer-contact { gap: 0.45rem; }
  .footer-chip { padding: 0.65rem 0.8rem; }
  .footer-chip-value { font-size: 0.88rem; }
  .footer-chip--address .footer-chip-value { font-size: 0.82rem; }
  .btn-footer { width: 100%; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    padding-top: 1rem;
    font-size: 0.8rem;
  }
  .site-footer { padding: 2.25rem 0 calc(1.25rem + env(safe-area-inset-bottom)); }

  .mobile-reserve-bar { display: none; }
  .mobile-reserve-bar.is-visible { display: flex; }
  .map-box--live iframe { height: 280px; }
  .nav-phone { font-size: 0.95rem !important; }
  .hero-actions { width: 100%; }
  .hero-actions .btn,
  .cta-actions .btn,
  .article-actions .btn { width: 100%; }
  .cta-actions .btn { max-width: none; }
  .cta-band { padding: 3.25rem 0; }
  .cta-band .container { width: min(100% - 1.5rem, var(--max)); }

  .article {
    width: min(100% - 1.5rem, 760px);
    padding: 2.25rem 0 4rem;
  }
  .article .content h2 { font-size: 1.25rem; }
  .article .content p { font-size: 1rem; }

  .lightbox { padding: 1rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; }

  /* iOS zoom önleme */
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; }

  .media-card:hover,
  .activity-tile:hover,
  .step:hover { transform: none; }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.25rem, var(--max));
  }
  .page-hero-content,
  .page-hero--tall .page-hero-content {
    width: min(100% - 1.25rem, var(--max));
    padding-top: 4rem;
    padding-bottom: 1.75rem;
  }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-masonry figure.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .logo img { height: 52px; max-width: min(170px, 52vw); }
  .header-inner { min-height: 78px; }
  .stats { margin-top: -1.25rem; }
  .step { padding: 1.2rem; }
  .mosaic-caption h3 { font-size: 1.15rem; }
  .mosaic-caption { padding: 2.75rem 1.1rem 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
