/* =========================================================
   TERRA METHOD — Mind-Body Coaching & Individualna vadba
   Design system: editorial / wellness / premium / feminine
   ========================================================= */

:root{
  --terracotta: #B86F52;
  --deep-terracotta: #8E4F3A;
  --sand: #D9C0A7;
  --cream: #F7F1E9;
  --beige: #E8DDD0;
  --earth-brown: #6D5447;
  --text: #302A27;
  --olive: #8B8A6A;
  --gold: #B79A62;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --font-script: 'Petit Formal Script', 'Segoe Script', cursive;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: 700ms;

  color-scheme: light;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
input, textarea, select{ font-family: inherit; font-size: inherit; }

h1, h2, h3, h4{
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--deep-terracotta);
  margin: 0;
  line-height: 1.15;
}

.accent{
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  color: var(--terracotta);
}

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

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
}
.eyebrow::before{
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-number{
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

section{ position: relative; }

/* skip link */
.skip-link{
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--deep-terracotta);
  color: var(--cream);
  padding: 12px 18px;
  z-index: 999;
  transition: top .25s var(--ease);
  border-radius: 2px;
  font-size: 14px;
}
.skip-link:focus{ top: 12px; }

:focus-visible{
  outline: 2px solid var(--deep-terracotta);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 1px;
  border: 1px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform .35s var(--ease);
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: var(--deep-terracotta);
  color: var(--cream);
}
.btn-primary:hover{ background: var(--terracotta); }
.btn-secondary{
  background: transparent;
  color: var(--deep-terracotta);
  border-color: var(--deep-terracotta);
}
.btn-secondary:hover{ background: var(--deep-terracotta); color: var(--cream); }
.btn-inverse{
  background: var(--cream);
  color: var(--deep-terracotta);
}
.btn-inverse:hover{ background: var(--sand); }
.btn-ghost{
  background: transparent;
  color: var(--cream);
  border-color: rgba(247,241,233,.5);
}
.btn-ghost:hover{ border-color: var(--cream); }

.text-link{
  position: relative;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-terracotta);
  padding-bottom: 4px;
  font-weight: 500;
}
.text-link::after{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.text-link:hover::after{ transform: scaleX(1); }

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 26px 0;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.is-scrolled{
  background: rgba(247,241,233,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  padding: 16px 0;
  border-color: rgba(141,90,71,0.12);
}
.brand{
  font-family: var(--font-serif);
  font-size: 21px;
  letter-spacing: 0.14em;
  color: var(--deep-terracotta);
}
.brand small{
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 2px;
  white-space: nowrap;
}
@media (max-width: 420px){
  .brand{ font-size: 17px; }
  .brand small{ font-size: 7.5px; letter-spacing: 0.16em; }
}

.main-nav{ display: none; }
@media (min-width: 900px){
  .main-nav{
    display: flex;
    gap: 48px;
    align-items: center;
  }
  .main-nav a{
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--deep-terracotta);
    position: relative;
    padding-bottom: 3px;
    transition: color var(--dur) var(--ease);
  }
  .main-nav a::after{
    content: "";
    position: absolute; left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease);
  }
  .main-nav a:hover::after{ transform: scaleX(1); transform-origin: left; }
}

.header-actions{ display: flex; align-items: center; gap: 24px; }
.header-actions .btn{ display: none; }
@media (min-width: 700px){
  .header-actions .btn{ display: inline-flex; }
}

/* ---------- Language switch ---------- */
.lang-switch{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
}
.lang-btn{
  background: none;
  border: none;
  padding: 4px 2px;
  color: var(--olive);
  font-weight: 500;
  transition: color .3s var(--ease);
}
.lang-btn.is-active{ color: var(--deep-terracotta); text-decoration: underline; text-underline-offset: 3px; }
.lang-btn:hover{ color: var(--deep-terracotta); }
.lang-sep{ color: var(--sand); font-size: 11px; }
.lang-switch-mobile{
  margin-top: 8px;
  font-size: 14px;
}
.lang-switch-mobile .lang-btn{ font-family: var(--font-sans); }
.menu-toggle{
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin: -8px;
}
@media (min-width: 900px){ .menu-toggle{ display: none; } }
.menu-toggle span{
  width: 24px; height: 1px;
  background: var(--deep-terracotta);
  transition: transform .35s var(--ease), opacity .35s var(--ease), background .3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.mobile-nav{
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 480;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 120px var(--gutter) 40px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.mobile-nav.is-open{ transform: translateY(0); }
.mobile-nav a{
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--deep-terracotta);
}
.mobile-nav .btn{ margin-top: 12px; align-self: flex-start; }

/* ---------- Reveal animation ---------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible{ transition-delay: .12s; }
.reveal-delay-2.is-visible{ transition-delay: .24s; }
.reveal-delay-3.is-visible{ transition-delay: .36s; }

/* ---------- Grain overlay utility ---------- */
.grain{ position: relative; }
.grain::before{
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--beige) 0%, var(--cream) 60%);
  padding-top: 110px;
  overflow: hidden;
}
.hero .container{
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px){
  .hero .container{
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }
}
.hero-copy{ position: relative; z-index: 2; }
.hero-copy .eyebrow{ margin-bottom: 26px; }
.hero-title{
  font-size: clamp(40px, 6.4vw, 78px);
  letter-spacing: -0.01em;
}
.hero-title em{
  font-style: italic;
  color: var(--terracotta);
}
.hero-subtitle{
  max-width: 46ch;
  margin: 28px 0 40px;
  font-size: 17px;
  color: var(--earth-brown);
  font-weight: 300;
}
.hero-ctas{ display: flex; flex-wrap: wrap; gap: 16px; }

.hero-media{
  position: relative;
  z-index: 1;
}
.hero-media-frame{
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin-inline: auto;
  border-radius: 320px 320px 8px 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(110,70,50,0.35);
}
.hero-media-frame img{
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media::before{
  content: "";
  position: absolute;
  top: -26px; left: -26px;
  width: 100%; height: 100%;
  max-width: 480px;
  border: 1px solid var(--gold);
  border-radius: 320px 320px 8px 8px;
  z-index: -1;
  opacity: 0.6;
}
.hero-media::after{
  content: "";
  position: absolute;
  bottom: -30px; right: 6%;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.18;
  z-index: -1;
}

.hero-scroll-cue{
  position: absolute;
  left: var(--gutter);
  bottom: 32px;
  display: none;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth-brown);
  z-index: 2;
}
@media (min-width: 700px){ .hero-scroll-cue{ display: flex; } }
.hero-scroll-cue .line{
  width: 1px; height: 40px;
  background: linear-gradient(var(--earth-brown), transparent);
  animation: scrollcue 2.4s var(--ease) infinite;
}
@keyframes scrollcue{
  0%{ transform: scaleY(0); transform-origin: top; }
  50%{ transform: scaleY(1); transform-origin: top; }
  50.1%{ transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Intro statement ---------- */
.intro-statement{
  padding: 140px 0;
  text-align: center;
}
.intro-statement blockquote{
  margin: 0 auto;
  max-width: 18ch;
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.35;
  color: var(--deep-terracotta);
}
.intro-statement blockquote span{ display: block; }
.intro-statement blockquote .soft{ color: var(--olive); }

/* ---------- Generic section spacing ---------- */
.section{ padding: 120px 0; }
.section-head{
  max-width: 720px;
  margin-bottom: 64px;
}
.section-head.centered{ margin-inline: auto; text-align: center; }
.section-head h2{
  font-size: clamp(32px, 4.4vw, 48px);
  margin-top: 16px;
}
.section-head p{
  margin-top: 20px;
  color: var(--earth-brown);
  font-size: 16.5px;
  max-width: 58ch;
}
.section-head.centered p{ margin-inline: auto; }

.bg-beige{ background: var(--beige); }
.bg-sand{ background: var(--sand); }

/* ---------- Coaching cards ---------- */
.coaching-intro{ max-width: 64ch; color: var(--earth-brown); font-size: 17px; margin-bottom: 64px; }
.coaching-note{
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--olive);
  font-style: italic;
}
.cards-grid{
  display: grid;
  gap: 28px;
}
@media (min-width: 760px){
  .cards-grid.two{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px){
  .cards-grid.three{ grid-template-columns: repeat(3, 1fr); }
}
.card{
  background: var(--cream);
  border: 1px solid rgba(141,90,71,0.14);
  padding: 44px 36px;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -30px rgba(110,70,50,0.3);
  border-color: rgba(141,90,71,0.3);
}
.card .icon-line{
  width: 44px; height: 44px;
  margin-bottom: 26px;
  color: var(--terracotta);
}
.card h3{ font-size: 24px; margin-bottom: 6px; }
.card .card-tag{
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.card p{ color: var(--earth-brown); font-size: 15px; }
.card ul{ margin: 18px 0 26px; display: grid; gap: 10px; }
.card ul li{
  font-size: 14.5px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.card ul li::before{
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 10px; height: 1px;
  background: var(--terracotta);
}

/* ---------- Problems / needs ---------- */
.needs-grid{
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(141,90,71,0.18);
}
@media (min-width: 760px){
  .needs-grid{ grid-template-columns: repeat(2, 1fr); }
}
.needs-item{
  padding: 30px 6px;
  border-bottom: 1px solid rgba(141,90,71,0.18);
  display: flex;
  gap: 20px;
  align-items: baseline;
}
@media (min-width: 760px){
  .needs-item:nth-child(odd){ border-right: 1px solid rgba(141,90,71,0.18); padding-right: 40px; }
  .needs-item:nth-child(even){ padding-left: 40px; }
}
.needs-item .num{
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--sand);
  font-size: 22px;
  flex-shrink: 0;
}
.needs-item p{ font-size: 17px; color: var(--text); margin: 0; }

/* ---------- Approach (Mind + Body) ---------- */
.approach-grid{
  display: grid;
  gap: 0;
  position: relative;
}
@media (min-width: 860px){
  .approach-grid{ grid-template-columns: 1fr auto 1fr; align-items: center; }
}
.approach-col{ padding: 44px 8px; }
.approach-col h3{
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--deep-terracotta);
  margin-bottom: 28px;
}
.approach-col ul{ display: grid; gap: 16px; }
.approach-col li{
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--earth-brown);
}
.approach-col.mind{ text-align: left; }
.approach-col.body{ text-align: left; }
@media (min-width: 860px){
  .approach-col.body{ text-align: right; }
  .approach-col.body ul{ justify-items: end; }
}
.approach-divider{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.approach-divider .plus{
  width: 68px; height: 68px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
}
@media (min-width: 860px){
  .approach-divider{
    writing-mode: vertical-rl;
  }
  .approach-divider .plus{ writing-mode: horizontal-tb; }
}

/* ---------- 1:1 vadba split ---------- */
.split{
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px){
  .split{ grid-template-columns: 1fr 1fr; gap: 72px; }
  .split.reverse{ direction: rtl; }
  .split.reverse > *{ direction: ltr; }
}
.split-media{ position: relative; }
.split-media img{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.split-media::after{
  content: "";
  position: absolute;
  bottom: -22px; left: -22px;
  width: 64%; height: 64%;
  border: 1px solid var(--terracotta);
  opacity: 0.55;
  z-index: -1;
}
.split-body ul{ display: grid; gap: 14px; margin: 28px 0 34px; }
.split-body ul li{
  padding-left: 26px;
  position: relative;
  font-size: 15.5px;
  color: var(--earth-brown);
}
.split-body ul li::before{
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 14px; height: 1px;
  background: var(--gold);
}

/* ---------- Online / V živo comparison ---------- */
.compare-grid{
  display: grid;
  gap: 1px;
  background: rgba(141,90,71,0.18);
  border: 1px solid rgba(141,90,71,0.18);
}
@media (min-width: 760px){
  .compare-grid{ grid-template-columns: 1fr 1fr; }
}
.compare-col{
  background: var(--cream);
  padding: 56px 44px;
}
.compare-col h3{
  font-size: 28px;
  margin-bottom: 22px;
}
.compare-col ul{ display: grid; gap: 14px; margin-bottom: 36px; }
.compare-col ul li{
  padding-left: 22px;
  position: relative;
  color: var(--earth-brown);
  font-size: 15px;
}
.compare-col ul li::before{
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 12px; height: 1px;
  background: var(--terracotta);
}
.compare-cta{ text-align: center; margin-top: 48px; }

/* ---------- Process timeline ---------- */
.timeline{
  display: grid;
  gap: 48px;
  position: relative;
}
@media (min-width: 860px){
  .timeline{ grid-template-columns: repeat(4, 1fr); gap: 0; }
  .timeline::before{
    content: "";
    position: absolute;
    top: 22px; left: 0; right: 0;
    height: 1px;
    background: rgba(141,90,71,0.25);
  }
}
.timeline-step{ position: relative; padding-right: 24px; }
.timeline-step .step-num{
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--cream);
  background: var(--terracotta);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.timeline-step h3{ font-size: 20px; margin-bottom: 10px; }
.timeline-step p{ font-size: 14.5px; color: var(--earth-brown); margin: 0; }

/* ---------- About ---------- */
.about-grid{
  display: grid;
  gap: 56px;
  align-items: start;
}
@media (min-width: 980px){
  .about-grid{ grid-template-columns: 0.85fr 1.15fr; gap: 80px; }
}
.about-media{
  position: relative;
}
.about-media img{
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px 120px 4px 4px;
}
.about-body h2{ font-size: clamp(30px, 4vw, 42px); margin-bottom: 28px; }
.about-body p{ color: var(--earth-brown); font-size: 16px; margin: 0 0 20px; }
.about-subsections{
  margin-top: 48px;
  display: grid;
  gap: 32px;
}
.about-subsections .sub h4{
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 10px;
}
.about-subsections .sub p{ font-size: 15px; }
.placeholder-note{
  margin-top: 40px;
  padding: 18px 22px;
  border-left: 2px solid var(--gold);
  background: var(--beige);
  font-size: 13.5px;
  color: var(--earth-brown);
  font-style: italic;
}

/* ---------- Gallery strip (temporary photo set) ---------- */
.gallery-strip{ padding: 60px 0 120px; }
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery-grid img{
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
}
@media (min-width: 760px){
  .gallery-grid{ grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Philosophy ---------- */
.philosophy{
  background: var(--deep-terracotta);
  color: var(--cream);
  padding: 160px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.philosophy blockquote{
  max-width: 20ch;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.6vw, 50px);
  line-height: 1.4;
  font-style: italic;
}
.philosophy cite{
  display: block;
  margin-top: 32px;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
}
.philosophy .ring{
  position: absolute;
  border: 1px solid rgba(247,241,233,0.18);
  border-radius: 50%;
}
.philosophy .ring-1{ width: 500px; height: 500px; top: -180px; right: -160px; }
.philosophy .ring-2{ width: 300px; height: 300px; bottom: -120px; left: -100px; }

/* ---------- Services overview ---------- */
.services-grid{ display: grid; gap: 1px; background: rgba(141,90,71,0.18); border: 1px solid rgba(141,90,71,0.18); }
@media (min-width: 860px){ .services-grid{ grid-template-columns: repeat(3, 1fr); } }
.service-col{ background: var(--cream); padding: 48px 36px; display: flex; flex-direction: column; }
.service-col .section-number{ margin-bottom: 22px; }
.service-col h3{ font-size: 23px; margin-bottom: 14px; }
.service-col p{ color: var(--earth-brown); font-size: 14.5px; flex-grow: 1; margin: 0 0 28px; }
.service-col .format{
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 20px;
}

/* ---------- For who (editorial) ---------- */
.forwho{
  display: grid;
  gap: 48px;
}
@media (min-width: 980px){
  .forwho{ grid-template-columns: 0.9fr 1.1fr; gap: 90px; align-items: center; }
}
.forwho-lead{ font-family: var(--font-serif); font-size: clamp(26px, 3.4vw, 36px); color: var(--deep-terracotta); line-height: 1.4; }
.forwho-list{ display: grid; gap: 24px; }
.forwho-list li{
  font-size: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(141,90,71,0.18);
  color: var(--text);
}
.forwho-list li:last-child{ border-bottom: none; }

/* ---------- Testimonials (prepared, hidden) ---------- */
.testimonials[hidden]{ display: none; }

/* ---------- Discovery call CTA ---------- */
.discovery{
  background: var(--beige);
  padding: 130px 0;
  text-align: center;
}
.discovery h2{ font-size: clamp(34px, 5vw, 56px); }
.discovery p{
  max-width: 52ch;
  margin: 24px auto 40px;
  color: var(--earth-brown);
  font-size: 17px;
}

/* ---------- Contact ---------- */
.contact-grid{
  display: grid;
  gap: 56px;
}
@media (min-width: 980px){
  .contact-grid{ grid-template-columns: 0.8fr 1.2fr; gap: 90px; }
}
.contact-info h2{ font-size: clamp(30px, 4vw, 42px); margin-bottom: 20px; }
.contact-info p{ color: var(--earth-brown); font-size: 15.5px; margin-bottom: 32px; }
.contact-detail{ margin-bottom: 22px; }
.contact-detail span{ display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.contact-detail a, .contact-detail p{ font-size: 16px; margin: 0; }

.form-grid{ display: grid; gap: 22px; }
@media (min-width: 620px){
  .form-row-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
}
.field label{
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth-brown);
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea{
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(141,90,71,0.35);
  background: transparent;
  padding: 12px 2px;
  color: var(--text);
  transition: border-color .3s var(--ease);
}
.field textarea{ resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--deep-terracotta);
  outline: none;
}
.field-radio-group{ display: grid; gap: 10px; }
.field-radio-group .legend{
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth-brown);
  margin-bottom: 4px;
}
.radio-option{ display: flex; align-items: center; gap: 10px; font-size: 14.5px; }
.radio-option input{ accent-color: var(--deep-terracotta); width: 16px; height: 16px; }
.checkbox-row{ display: flex; align-items: flex-start; gap: 12px; margin-top: 8px; }
.checkbox-row input{ accent-color: var(--deep-terracotta); width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; }
.checkbox-row label{ font-size: 13px; color: var(--earth-brown); line-height: 1.5; }
.checkbox-row a{ text-decoration: underline; }
.form-submit{ margin-top: 8px; }
.form-note{ font-size: 12.5px; color: var(--olive); margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--earth-brown);
  color: var(--beige);
  padding: 72px 0 32px;
}
.footer-grid{
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247,241,233,0.15);
}
@media (min-width: 760px){
  .footer-grid{ grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}
.footer-brand{ font-family: var(--font-serif); font-size: 24px; color: var(--cream); margin-bottom: 14px; }
.footer-tagline{ font-size: 14px; color: var(--sand); max-width: 30ch; }
.footer-col h4{ font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand); margin-bottom: 18px; font-weight: 500; }
.footer-col ul{ display: grid; gap: 10px; }
.footer-col a{ font-size: 14px; color: var(--beige); transition: color .3s; }
.footer-col a:hover{ color: var(--cream); }
.footer-bottom{
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--sand);
}

/* ---------- Utility ---------- */
.visually-hidden{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
