/* =========================================================
   Zahrady Pokorná — organic botanical art direction
   ========================================================= */

:root {
  /* palette */
  --forest-900: #1c2a1e;
  --forest-800: #253524;
  --forest-700: #2f4030;
  --sage-600:   #5f7256;
  --sage-500:   #7d8f6f;
  --sage-400:   #9aac89;
  --sage-200:   #c7d2b8;
  --cream:      #f5f1e6;
  --cream-100:  #efe9d9;
  --cream-200:  #e6dfca;
  --terracotta: #c0674a;
  --terra-dark: #a5563c;
  --clay:       #d8a488;
  --ink:        #26302326;
  --text:       #2b3327;
  --text-soft:  #58614f;
  --on-dark:    #eef0e6;
  --on-dark-soft:#c3cbb6;

  /* type */
  --serif: "Fraunces", Georgia, serif;
  --sans:  "Manrope", -apple-system, "Segoe UI", system-ui, sans-serif;

  /* rhythm */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 22px;
  --radius-lg: 40px;

  --shadow-sm: 0 6px 20px rgba(31, 42, 30, .08);
  --shadow-md: 0 18px 46px rgba(31, 42, 30, .14);
  --shadow-lg: 0 34px 80px rgba(31, 42, 30, .22);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2.5px solid var(--terracotta); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--forest-700); color: var(--on-dark); padding: .6rem 1rem;
  border-radius: 8px; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- headings ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -.01em; }
em { font-style: italic; }

/* ============ SECTION SCAFFOLDING ============ */
.section { padding-block: var(--section-y); position: relative; }
.section--cream { background: var(--cream-100); }
.section--sage { background: var(--sage-600); color: var(--on-dark); }
.section--forest { background: var(--forest-800); color: var(--on-dark); }

.section-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4.5rem); text-align: center; }
.section-head--left { text-align: left; margin-inline: 0; }

.section-kicker {
  display: inline-block; font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 600; color: var(--terracotta); margin-bottom: 1.1rem;
}
.section-kicker--light { color: var(--clay); }

.section-title { font-size: clamp(2rem, 4.6vw, 3.5rem); color: var(--forest-800); }
.section-title em { color: var(--sage-600); }
.section-title--light { color: var(--on-dark); }
.section-title--light em { color: var(--clay); }

.section-intro { margin-top: 1.4rem; font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--text-soft); }
.section-intro--light { color: var(--on-dark-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.9rem; border-radius: 100px; font-weight: 600; font-size: .98rem;
  letter-spacing: .01em; transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .35s;
  will-change: transform;
}
.btn--solid { background: var(--terracotta); color: #fff; box-shadow: 0 12px 26px rgba(165, 86, 60, .32); }
.btn--solid:hover { background: var(--terra-dark); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(165, 86, 60, .4); }
.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: #fff; color: var(--forest-800); transform: translateY(-3px); }

/* ============ NAV ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s, padding .4s;
  padding-block: 1.15rem;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav__brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--on-dark); z-index: 2; }
.nav__leaf { color: var(--clay); flex: none; transition: transform .5s var(--ease); }
.nav__brand:hover .nav__leaf { transform: rotate(-12deg); }
.nav__name { font-family: var(--serif); font-size: 1.4rem; letter-spacing: .01em; }
.nav__name em { color: var(--clay); font-style: italic; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { color: var(--on-dark); font-size: .95rem; font-weight: 500; position: relative; transition: color .25s; }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 0;
  background: var(--clay); transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--terracotta); color: #fff !important; padding: .6rem 1.25rem; border-radius: 100px;
  font-weight: 600; transition: background .3s, transform .3s;
}
.nav__cta:hover { background: var(--terra-dark); transform: translateY(-2px); }

/* scrolled state */
.nav.is-scrolled { background: var(--forest-800); box-shadow: 0 10px 30px rgba(20,28,20,.28); padding-block: .75rem; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 2; }
.nav__burger span { width: 26px; height: 2px; background: var(--on-dark); border-radius: 2px; transition: transform .35s var(--ease), opacity .3s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,28,20,.5) 0%, rgba(20,28,20,.28) 40%, rgba(28,34,28,.72) 100%),
    radial-gradient(80% 60% at 20% 30%, rgba(47,64,48,.35), transparent 70%);
}
.hero__content { padding-block: 8rem 6rem; max-width: 900px; }
.hero__eyebrow { font-size: .82rem; letter-spacing: .26em; text-transform: uppercase; font-weight: 600; color: var(--sage-200); margin-bottom: 1.5rem; }
.hero__title { font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: 1.02; letter-spacing: -.02em; text-shadow: 0 4px 40px rgba(0,0,0,.3); }
.hero__title em { color: var(--clay); }
.hero__lead { margin-top: 1.8rem; max-width: 560px; font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: rgba(255,255,255,.9); }
.hero__actions { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll { position: absolute; left: 50%; bottom: 2.4rem; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 20px; z-index: 2; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: #fff; border-radius: 3px; transform: translateX(-50%); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* organic wave divider */
.section-wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(60px, 8vw, 120px); z-index: 1; }

/* ============ FILOZOFIE ============ */
.philosophy { background: var(--cream); }
.philosophy__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.philo-card {
  background: #fff; border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  border: 1px solid rgba(95,114,86,.12); transition: transform .5s var(--ease), box-shadow .5s;
}
.philo-card::before { content: ""; position: absolute; right: -40px; top: -40px; width: 130px; height: 130px; border-radius: 50%; background: radial-gradient(circle, rgba(199,210,184,.5), transparent 70%); }
.philo-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.philo-card__num { font-family: var(--serif); font-size: 2.6rem; color: var(--sage-400); font-style: italic; }
.philo-card h3 { font-size: 1.55rem; margin: .4rem 0 .7rem; color: var(--forest-800); }
.philo-card p { color: var(--text-soft); }

/* ============ SLUŽBY ============ */
.services__grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.service {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: clamp(1.6rem, 2.6vw, 2.2rem);
  transition: transform .5s var(--ease), background .4s, border-color .4s;
  backdrop-filter: blur(2px);
}
.service:hover { transform: translateY(-6px); background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.4); }
.service--wide { grid-column: span 2; }
.service__icon { width: 40px; height: 40px; color: var(--clay); margin-bottom: 1rem; }
.service h3 { font-size: 1.4rem; margin-bottom: .5rem; color: #fff; }
.service p { color: var(--on-dark-soft); font-size: .98rem; }

/* ============ GALERIE / MASONRY ============ */
.gallery { background: var(--cream); }
.masonry { column-count: 3; column-gap: clamp(.9rem, 2vw, 1.4rem); }
.masonry__item {
  break-inside: avoid; margin-bottom: clamp(.9rem, 2vw, 1.4rem); position: relative;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer;
}
.masonry__item img { width: 100%; transition: transform .8s var(--ease), filter .5s; }
.masonry__item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(24,32,24,.72));
  opacity: 0; transition: opacity .45s;
}
.masonry__item figcaption {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 2; color: #fff; font-family: var(--serif);
  font-size: 1.05rem; font-style: italic; opacity: 0; transform: translateY(8px); transition: opacity .45s, transform .45s;
}
.masonry__item:hover img { transform: scale(1.07); }
.masonry__item:hover::after, .masonry__item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ============ BEFORE / AFTER ============ */
.beforeafter { background: var(--forest-800); }
.ba { max-width: 980px; margin-inline: auto; }
.ba__frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10; user-select: none; touch-action: pan-y;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__clip { position: absolute; inset: 0; width: 50%; overflow: hidden; will-change: width; }
/* before image keeps the frame's full width (set via JS) so it doesn't squash */
.ba__clip .ba__img--before { width: var(--ba-frame-w, 100%); max-width: none; }
.ba__tag {
  position: absolute; top: 1rem; padding: .35rem .95rem; border-radius: 100px; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: #fff; backdrop-filter: blur(4px);
}
.ba__tag--before { left: 1rem; background: rgba(26,34,26,.6); }
.ba__tag--after { right: 1rem; background: rgba(192,103,74,.85); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: rgba(255,255,255,.9);
  transform: translateX(-50%); cursor: ew-resize; z-index: 5;
}
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: #fff; color: var(--forest-700);
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.28); transition: transform .25s var(--ease);
}
.ba__handle:hover .ba__grip, .ba__handle:focus-visible .ba__grip { transform: translate(-50%, -50%) scale(1.08); }

/* ============ POSTUP ============ */
.process { background: var(--cream); }
.process__list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.4vw, 2rem); counter-reset: step; }
.process__step { position: relative; padding-top: 2.6rem; }
.process__step::before {
  content: ""; position: absolute; top: 1.35rem; left: 0; right: 0; height: 2px;
  background: repeating-linear-gradient(90deg, var(--sage-400) 0 8px, transparent 8px 16px);
}
.process__step:last-child::before { background: none; }
.process__num {
  position: relative; z-index: 2; display: grid; place-items: center; width: 2.7rem; height: 2.7rem;
  border-radius: 50%; background: var(--forest-700); color: var(--cream); font-family: var(--serif);
  font-size: 1.3rem; margin-bottom: 1.1rem;
}
.process__step h3 { font-size: 1.35rem; color: var(--forest-800); margin-bottom: .5rem; }
.process__step p { color: var(--text-soft); font-size: .98rem; }

/* ============ O MNĚ ============ */
.about { background: var(--cream-100); }
.about__grid { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg) var(--radius-lg) 120px var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }
.about__badge {
  position: absolute; right: -1rem; bottom: -1.4rem; background: var(--terracotta); color: #fff;
  border-radius: 50%; width: 130px; height: 130px; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md); padding: 1rem;
}
.about__badge strong { font-family: var(--serif); font-size: 2.4rem; line-height: 1; }
.about__badge span { font-size: .74rem; line-height: 1.3; margin-top: .3rem; }
.about__role { color: var(--terracotta); font-weight: 600; margin: .3rem 0 1.4rem; }
.about__text p { color: var(--text-soft); margin-bottom: 1.1rem; }
.about__sign { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--sage-600); }

/* ============ REFERENCE ============ */
.reviews { background: var(--cream); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.review {
  background: #fff; border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(95,114,86,.12); display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform .5s var(--ease), box-shadow .5s;
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review__stars { color: var(--terracotta); letter-spacing: .18em; font-size: 1.05rem; }
.review blockquote { font-family: var(--serif); font-size: 1.22rem; line-height: 1.5; color: var(--forest-800); font-style: italic; }
.review figcaption { margin-top: auto; }
.review figcaption strong { display: block; color: var(--text); }
.review figcaption span { font-size: .9rem; color: var(--text-soft); }

/* ============ FAQ ============ */
.faq__wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq .section-head { margin-bottom: 0; }
.faq__list { display: flex; flex-direction: column; gap: .8rem; }
.faq__item {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 16px;
  padding: 0 1.4rem; transition: background .3s;
}
.faq__item[open] { background: rgba(255,255,255,.14); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.25rem 0; font-family: var(--serif); font-size: 1.2rem;
  color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; flex: none; width: 20px; height: 20px; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--clay); }
.faq__plus::before { width: 16px; height: 2px; }
.faq__plus::after { width: 2px; height: 16px; transition: transform .3s var(--ease); }
.faq__item[open] .faq__plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__answer { overflow: hidden; }
.faq__answer p { padding-bottom: 1.3rem; color: var(--on-dark-soft); }

/* ============ KONTAKT ============ */
.contact { background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact__intro p { color: var(--text-soft); margin-top: 1.2rem; max-width: 46ch; }
.contact__details { list-style: none; padding: 0; margin-top: 2.2rem; display: grid; gap: 1.3rem; }
.contact__details li { display: grid; gap: .2rem; }
.contact__label { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; }
.contact__details a { font-size: 1.15rem; color: var(--forest-800); transition: color .25s; }
.contact__details a:hover { color: var(--terracotta); }
.contact__details span { color: var(--text-soft); }

/* form */
.form { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-md); border: 1px solid rgba(95,114,86,.1); }
.form__row { margin-bottom: 1.1rem; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--forest-800); }
.field input, .field select, .field textarea {
  font: inherit; padding: .8rem .95rem; border-radius: 12px; border: 1.5px solid var(--cream-200);
  background: var(--cream); color: var(--text); transition: border-color .25s, background .25s, box-shadow .25s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage-500); background: #fff; box-shadow: 0 0 0 3px rgba(125,143,111,.16);
}
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--terracotta); }
.field__error { color: var(--terra-dark); font-size: .78rem; min-height: 1em; }
.form__submit { width: 100%; margin-top: .6rem; }
.form__status { margin-top: 1rem; font-weight: 600; text-align: center; min-height: 1.3em; }
.form__status.is-success { color: var(--sage-600); }
.form__status.is-error { color: var(--terra-dark); }

.contact__map { margin-top: clamp(2.5rem, 5vw, 4rem); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); max-width: var(--container); margin-inline: auto; }
.contact__map iframe { display: block; filter: saturate(.92) contrast(1.02); }

/* ============ FOOTER ============ */
.footer { background: var(--forest-900); color: var(--on-dark-soft); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.nav__name--footer { color: var(--on-dark); font-size: 1.7rem; }
.footer__brand p { margin-top: 1rem; max-width: 34ch; }
.footer__col h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--clay); margin-bottom: 1rem; font-weight: 700; }
.footer__col p { margin-bottom: .7rem; }
.footer__col a:hover { color: var(--clay); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-block: 1.8rem; font-size: .85rem; }

/* ============ STICKY CTA ============ */
.sticky-cta {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.4rem; border-radius: 100px;
  background: var(--terracotta); color: #fff; font-weight: 600; box-shadow: 0 14px 30px rgba(165,86,60,.4);
  transform: translateY(150%); transition: transform .5s var(--ease), background .3s;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta:hover { background: var(--terra-dark); }
.sticky-cta svg { color: var(--clay); }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(18,24,18,.92); display: none;
  align-items: center; justify-content: center; flex-direction: column; gap: 1rem; padding: 2rem;
  opacity: 0; transition: opacity .3s;
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox img { max-width: min(1000px, 92vw); max-height: 80vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__cap { color: var(--on-dark-soft); font-family: var(--serif); font-style: italic; }
.lightbox__close { position: absolute; top: 1.5rem; right: 2rem; color: #fff; font-size: 2.6rem; line-height: 1; }

/* ============ REVEAL ANIMATION ============ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 940px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px); flex-direction: column; justify-content: center;
    align-items: flex-start; gap: 1.6rem; padding: 2rem clamp(1.5rem, 6vw, 2.5rem); background: var(--forest-800);
    box-shadow: -20px 0 60px rgba(0,0,0,.4); transform: translateX(100%); transition: transform .5s var(--ease);
  }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav__links a { font-size: 1.15rem; }
  .nav__burger { display: flex; }
  .nav.is-open { background: var(--forest-800); }

  .philosophy__grid, .services__grid, .process__list, .reviews__grid { grid-template-columns: 1fr 1fr; }
  .service--wide { grid-column: span 2; }
  .masonry { column-count: 2; }
  .about__grid, .contact__grid, .faq__wrap { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .philosophy__grid, .services__grid, .process__list, .reviews__grid { grid-template-columns: 1fr; }
  .service--wide { grid-column: span 1; }
  .masonry { column-count: 1; }
  .form__row--2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; }
  .hero__actions .btn { flex: 1 1 auto; }
  .about__media img { border-radius: var(--radius-lg); }
  .sticky-cta span { display: none; }
  .sticky-cta { padding: .95rem; }
}
