
/* =====================================================
   DIETETYK PREMIUM v2 — MAIN CSS
   ===================================================== */

:root {
  --white:       #FAFAF8;
  --cream-50:    #F7F3EC;
  --cream-100:   #EDE5D8;
  --cream-200:   #DDD3C4;
  --sage-50:     #EEF3EB;
  --sage-100:    #D4E4CC;
  --sage-300:    #9FBF99;
  --sage-500:    #7A9E7E;
  --sage-600:    #5E8562;
  --sage-700:    #4A6B4D;
  --earth-300:   #C4A882;
  --earth-500:   #8B7259;
  --earth-600:   #6F5A45;
  --charcoal:    #1C1C1C;
  --charcoal-2:  #2A2A2A;
  --gray-400:    #8B8B8B;
  --gray-500:    #6B6B6B;
  --gray-600:    #4B4B4B;
  --border:      #E5DDD3;
  --border-lt:   #F0EAE1;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w:   1280px;
  --pad-x:   clamp(1.5rem, 5vw, 4rem);

  --section-py:    clamp(5rem, 9vw, 8rem);
  --section-py-sm: clamp(3rem, 5vw, 4.5rem);

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 2px 8px rgba(20,15,5,.05), 0 1px 3px rgba(20,15,5,.04);
  --shadow-md: 0 6px 28px rgba(20,15,5,.08), 0 2px 8px rgba(20,15,5,.04);
  --shadow-lg: 0 12px 48px rgba(20,15,5,.10), 0 4px 16px rgba(20,15,5,.05);
  --shadow-xl: 0 20px 64px rgba(20,15,5,.12), 0 8px 24px rgba(20,15,5,.06);
  --shadow-photo: 0 24px 72px rgba(20,15,5,.18), 0 8px 24px rgba(20,15,5,.10);

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-2xl:  48px;
  --r-full: 9999px;
}

/* ---- 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-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; border: none; background: none; outline: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: calc(var(--max-w) + var(--pad-x) * 2);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container--narrow { max-width: calc(900px + var(--pad-x) * 2); }
.container--sm     { max-width: calc(680px + var(--pad-x) * 2); }
.section-pad    { padding: var(--section-py) 0; }
.section-pad--sm{ padding: var(--section-py-sm) 0; }
.text-center    { text-align: center; }
.sr-only        { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }

/* ---- Label ---- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin-bottom: 1.25rem;
}
.label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--sage-500);
  display: block;
}
.label--dark  { color: var(--gray-400); }
.label--dark::before  { background: var(--gray-400); }
.label--white { color: rgba(255,255,255,.7); }
.label--white::before { background: rgba(255,255,255,.5); }

/* ---- Section headings ---- */
.section-header { margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.section-header--center { text-align: center; }
.section-header--center .label { justify-content: center; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.025em;
}
.section-title em { font-style: italic; color: var(--sage-600); }
.section-subtitle {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--gray-500);
  max-width: 52ch;
  line-height: 1.75;
}
.section-header--center .section-subtitle { margin: 1.25rem auto 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 1.0625rem 2.375rem; font-size: 1rem; }
.btn--sm { padding: 0.625rem 1.25rem;   font-size: 0.875rem; }
.btn--primary {
  background: var(--sage-600);
  color: #fff;
  box-shadow: 0 4px 24px rgba(94,133,98,.32);
}
.btn--primary:hover {
  background: var(--sage-700);
  box-shadow: 0 6px 32px rgba(94,133,98,.44);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid rgba(28,28,28,.2);
}
.btn--ghost:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}
.btn--outline-sage {
  background: transparent;
  color: var(--sage-600);
  border: 1.5px solid var(--sage-300);
}
.btn--outline-sage:hover { background: var(--sage-50); border-color: var(--sage-600); }
.btn--white {
  background: #fff;
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn svg { width: 15px; height: 15px; transition: transform 0.2s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

/* ---- NAV ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.3s;
  padding: 1.5rem 0;
}
.site-header.scrolled {
  background: rgba(250,250,248,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(20,15,5,.04);
  padding: 0.875rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo { display:flex;flex-direction:column;line-height:1;gap:.15rem; }
.nav-logo__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.nav-logo__sub {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.nav-menu { display:flex;align-items:center;gap:.125rem; }
.nav-item  { position: relative; }
.nav-link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-500);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-link:hover,
.nav-item.current-menu-item > .nav-link,
.nav-item.current-page-ancestor > .nav-link {
  color: var(--charcoal);
  background: var(--cream-50);
}
.nav-item--dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.875rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  z-index: 50;
}
.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem 1rem;
  font-size: .875rem;
  color: var(--gray-500);
  border-radius: var(--r-sm);
  transition: background .15s, color .15s;
}
.nav-dropdown a svg {
  width: 15px; height: 15px;
  color: var(--sage-500);
  stroke: var(--sage-500);
  flex-shrink: 0;
  transition: color .15s;
}
.nav-dropdown a:hover svg { color: var(--sage-600); stroke: var(--sage-600); }
.nav-dropdown a:hover { background: var(--cream-50); color: var(--charcoal); }
.nav-cta { margin-left: .75rem; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  border-radius: var(--r-sm);
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--charcoal);
  transition: all .25s var(--ease);
  transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--cream-50);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
  z-index: 1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__content { position: relative; z-index: 1; }
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 7.5vw, 6.5rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--charcoal);
  margin-bottom: 1.625rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--sage-600);
  font-weight: 400;
}
.hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--gray-500);
  line-height: 1.82;
  max-width: 42ch;
  margin-bottom: 2.5rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.25rem;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hero__stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero__stat__label { font-size: 0.78rem; color: var(--gray-400); }

/* Hero photo collage */
.hero__photos {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  height: 580px;
}
.hero__photo {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow-photo);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.hero__photo:hover img { transform: scale(1.04); }
.hero__photo--main {
  top: 0; left: 0;
  width: 60%; height: 68%;
  border-radius: 2.5rem 2.5rem 1.5rem 2.5rem;
  transform: rotate(-2.5deg);
  z-index: 1;
}
.hero__photo--sec {
  top: 6%; right: 0;
  width: 46%; height: 54%;
  border-radius: 2.5rem 2.5rem 2.5rem 1.5rem;
  transform: rotate(2.5deg);
  z-index: 2;
}
.hero__photo--sm {
  bottom: 0; left: 12%;
  width: 52%; height: 36%;
  border-radius: 1.5rem 2.5rem 2.5rem 1.5rem;
  transform: rotate(-1.5deg);
  z-index: 3;
}
.hero__badge {
  position: absolute;
  bottom: 10%; right: -4%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  z-index: 4;
  min-width: 190px;
  backdrop-filter: blur(8px);
}
.hero__badge-icon {
  width: 42px; height: 42px;
  background: var(--sage-50);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
}
.hero__badge-name { font-size: .8rem; font-weight: 600; color: var(--charcoal); display:block; line-height:1.2; }
.hero__badge-title { font-size: .68rem; color: var(--gray-400); display:block; margin-top:.15rem; }

/* Floating leaf decoration */
.hero__deco {
  position: absolute;
  top: 15%; right: 42%;
  width: 56px; height: 56px;
  background: var(--sage-50);
  border: 1px solid var(--sage-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  z-index: 5;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__item:hover { background: var(--cream-50); }
.trust-bar__icon {
  width: 48px; height: 48px;
  background: var(--sage-50);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-bar__icon svg {
  width: 22px; height: 22px;
  color: var(--sage-600);
  stroke: var(--sage-600);
}
.trust-bar__num {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  display: block;
}
.trust-bar__label { font-size: .8rem; color: var(--gray-400); display: block; margin-top: .2rem; }

/* ---- ABOUT TEASER ---- */
.about-teaser { background: var(--cream-50); }
.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.about-teaser__image-wrap {
  position: relative;
  opacity: 1;
}
.about-teaser__image,
.about-teaser__image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  display: block;
}
.about-teaser__image-placeholder {
  background: linear-gradient(160deg, var(--sage-100) 0%, var(--cream-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-600);
  font-family: var(--font-serif);
}
.about-teaser__overlay {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--sage-600);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 1.75rem;
  text-align: center;
  min-width: 160px;
  box-shadow: var(--shadow-lg);
}
.about-teaser__overlay-num {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1;
  display: block;
}
.about-teaser__overlay-label { font-size: .75rem; opacity: .85; line-height: 1.4; display: block; margin-top: .3rem; }
.about-teaser__content { display: flex; flex-direction: column; gap: 1.5rem; }
.about-teaser__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.about-teaser__title em { font-style: italic; color: var(--sage-600); }
.about-teaser__text { color: var(--gray-500); line-height: 1.82; }
.about-teaser__quals {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.about-teaser__qual {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.about-teaser__qual::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage-500);
  flex-shrink: 0;
}

/* ---- SERVICE CARDS WITH PHOTOS ---- */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.32s var(--ease);
  display: flex;
  flex-direction: column;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card__photo {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: var(--sage-100);
  flex-shrink: 0;
}
.service-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card__photo img { transform: scale(1.07); }
.service-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(28,28,28,.35) 100%);
  pointer-events: none;
}
.service-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  flex: 1;
}
.service-card__num {
  font-family: var(--font-serif);
  font-size: .8rem;
  color: var(--sage-300);
  font-weight: 400;
  letter-spacing: .05em;
}
.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.22;
}
.service-card__desc { font-size: .875rem; color: var(--gray-500); line-height: 1.72; flex: 1; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--sage-600);
  margin-top: .5rem;
  transition: gap .2s;
}
.service-card:hover .service-card__link { gap: .625rem; }

/* ---- WHY ME ---- */
.why-me { background: var(--sage-50); }
.why-me__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.why-me__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.why-me__feature { display: flex; flex-direction: column; gap: .875rem; }
.why-me__feature-icon {
  width: 54px; height: 54px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.why-me__feature-icon svg {
  width: 24px; height: 24px;
  color: var(--sage-600);
  stroke: var(--sage-600);
}
.why-me__feature:hover .why-me__feature-icon {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.why-me__feature-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; color: var(--charcoal); }
.why-me__feature-text  { font-size: .875rem; color: var(--gray-500); line-height: 1.75; }

/* ---- PHOTO STRIP ---- */
.photo-strip {
  overflow: hidden;
  height: 200px;
  background: var(--cream-100);
  position: relative;
}
.photo-strip__track {
  display: flex;
  gap: 1rem;
  height: 100%;
  padding: 1rem 0;
  animation: strip-scroll 35s linear infinite;
  width: max-content;
}
.photo-strip:hover .photo-strip__track { animation-play-state: paused; }
.photo-strip__track img {
  height: 100%;
  width: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-lg);
  flex-shrink: 0;
  display: block;
  pointer-events: none;
}
@keyframes strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -1.5rem; right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 9rem;
  line-height: 1;
  color: var(--sage-100);
  pointer-events: none;
  user-select: none;
}
.testimonial-card__stars { display:flex;gap:.2rem;font-size:.9rem; }
.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.68;
  flex: 1;
  position: relative;
  z-index: 1;
}
.testimonial-card__author { display:flex;align-items:center;gap:1rem; }
.testimonial-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--sage-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--sage-600);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-card__avatar img { width:100%;height:100%;object-fit:cover; }
.testimonial-card__name   { font-weight:500;font-size:.9rem;color:var(--charcoal);display:block; }
.testimonial-card__result { font-size:.78rem;color:var(--sage-600);display:block;margin-top:.1rem; }

/* ---- CTA SECTION ---- */
.cta-section {
  position: relative;
  overflow: hidden;
  background-color: var(--sage-700);
  background-image: url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?w=1800&h=700&fit=crop&q=80&auto=format');
  background-size: cover;
  background-position: center 65%;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,107,77,.93) 0%, rgba(28,28,28,.87) 100%);
  pointer-events: none;
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-section__text { flex: 1; min-width: 280px; }
.cta-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.cta-section__title em { font-style: italic; opacity: .75; }
.cta-section__sub { color: rgba(255,255,255,.72); font-size: 1.0625rem; line-height: 1.75; max-width: 44ch; }
.cta-section__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- BLOG GRID ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.blog-card__thumb { overflow: hidden; aspect-ratio: 16/10; position: relative; background: var(--sage-100); }
.blog-card__thumb img { width:100%;height:100%;object-fit:cover;transition:transform .55s var(--ease); }
.blog-card:hover .blog-card__thumb img { transform: scale(1.06); }
.blog-card__thumb-placeholder {
  width:100%;height:100%;
  background: linear-gradient(135deg, var(--sage-100) 0%, var(--cream-200) 100%);
  display:flex;align-items:center;justify-content:center;font-size:2.5rem;
}
.blog-card__body { padding: 1.75rem; flex:1; display:flex; flex-direction:column; gap:.875rem; }
.blog-card__cat { font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;font-weight:500;color:var(--sage-600); }
.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}
.blog-card__excerpt { font-size:.875rem;color:var(--gray-500);line-height:1.72;flex:1; }
.blog-card__meta {
  display:flex;align-items:center;justify-content:space-between;
  font-size:.78rem;color:var(--gray-400);
  padding-top:1rem;border-top:1px solid var(--border-lt);
}
.blog-card__read-more { color:var(--sage-600);font-weight:500;font-size:.78rem;display:inline-flex;align-items:center;gap:.25rem; }

/* ---- PROCESS STEPS ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sage-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sage-600);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.step__title { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 500; margin-bottom: .5rem; }
.step__desc  { font-size: .8rem; color: var(--gray-500); line-height: 1.7; }

/* ---- SINGLE POST ---- */
.post-header {
  background: var(--cream-50);
  padding: clamp(6rem,12vw,8rem) 0 clamp(3rem,5vw,4rem);
  border-bottom: 1px solid var(--border);
}
.post-header__cat { font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;color:var(--sage-600);font-weight:500;margin-bottom:1.25rem;display:block; }
.post-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem,5vw,4.5rem);
  font-weight: 500; line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  max-width: 22ch;
}
.post-header__meta { display:flex;align-items:center;gap:1.5rem;font-size:.875rem;color:var(--gray-400); }
.post-featured-image { width:100%;aspect-ratio:2/1;object-fit:cover;border-radius:var(--r-2xl);margin-bottom:3rem; }
.prose {
  font-size: 1.0625rem;
  line-height: 1.875;
  color: var(--gray-600);
}
.prose h2 { font-family:var(--font-serif);font-size:clamp(1.75rem,3vw,2.5rem);font-weight:500;color:var(--charcoal);margin:2.5rem 0 1rem;line-height:1.2; }
.prose h3 { font-family:var(--font-serif);font-size:1.375rem;font-weight:500;color:var(--charcoal);margin:2rem 0 .75rem; }
.prose p  { margin-bottom:1.5rem; }
.prose ul,.prose ol { margin:1.25rem 0 1.5rem 1.5rem; display:flex;flex-direction:column;gap:.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose blockquote {
  border-left: 3px solid var(--sage-500);
  padding: 1.375rem 2rem;
  background: var(--cream-50);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.prose strong { color: var(--charcoal); font-weight: 600; }
.prose a { color: var(--sage-600); text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: var(--r-xl); margin: 2rem 0; }

/* ---- ABOUT PAGE ---- */
.about-hero { background: var(--cream-50); padding: clamp(6rem,12vw,10rem) 0 0; }
.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: end;
}
.about-hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem,6vw,5.25rem);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.03em;
}
.about-hero__headline em { font-style: italic; color: var(--sage-600); }
.about-hero__sub { margin-top:1.5rem;font-size:1.0625rem;color:var(--gray-500);line-height:1.8;max-width:42ch; }
.about-hero__image,
.about-hero__image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  display: block;
}
.about-hero__image-placeholder {
  background: linear-gradient(160deg, var(--sage-100) 0%, var(--cream-200) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-600); font-family: var(--font-serif);
}
.certs-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:2rem; }
.cert-item { background:var(--cream-50);border:1px solid var(--border);border-radius:var(--r-lg);padding:1.5rem 1.25rem;display:flex;flex-direction:column;gap:.5rem;transition:box-shadow .2s,transform .2s; }
.cert-item:hover { box-shadow:var(--shadow-md);transform:translateY(-2px); }
.cert-item__icon {
  display:flex; align-items:center; justify-content:center;
  width:38px; height:38px;
  background:var(--sage-50);
  border:1px solid var(--sage-100);
  border-radius:var(--r-md);
}
.cert-item__icon svg {
  width:18px; height:18px;
  stroke:var(--sage-600); color:var(--sage-600);
  flex-shrink:0;
}
.cert-item__title { font-weight:500;font-size:.875rem;color:var(--charcoal);line-height:1.35; }
.cert-item__org   { font-size:.78rem;color:var(--gray-400); }

/* ---- SUCCESS STORIES ---- */
.stories-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:2rem; }
.story-card { background:var(--cream-50);border:1px solid var(--border);border-radius:var(--r-xl);padding:2.5rem;display:flex;flex-direction:column;gap:1.5rem;transition:box-shadow .3s; }
.story-card:hover { box-shadow:var(--shadow-md); }
.story-card__result { display:inline-flex;align-items:center;gap:.5rem;background:var(--sage-50);border:1px solid var(--sage-100);color:var(--sage-700);font-size:.78rem;font-weight:500;padding:.375rem .875rem;border-radius:var(--r-full);letter-spacing:.02em; }
.story-card__quote { font-family:var(--font-serif);font-size:1.175rem;font-style:italic;color:var(--charcoal);line-height:1.65; }
.story-card__person { display:flex;align-items:center;gap:1rem; }
.story-card__avatar { width:48px;height:48px;border-radius:50%;background:var(--sage-100);display:flex;align-items:center;justify-content:center;font-family:var(--font-serif);font-size:1.25rem;color:var(--sage-600);overflow:hidden;flex-shrink:0; }
.story-card__avatar img { width:100%;height:100%;object-fit:cover; }
.story-card__name   { font-weight:600;font-size:.9rem;color:var(--charcoal);display:block; }
.story-card__detail { font-size:.78rem;color:var(--gray-400);display:block;margin-top:.1rem; }

/* ---- SERVICES PAGE ---- */
.service-full { background:var(--white);border:1px solid var(--border);border-radius:var(--r-xl);overflow:hidden;margin-bottom:2rem; }
.service-full__header { background:var(--cream-50);padding:3rem;display:flex;align-items:flex-start;gap:2rem;border-bottom:1px solid var(--border); }
.service-full__icon { width:64px;height:64px;background:var(--white);border:1px solid var(--border);border-radius:var(--r-md);display:flex;align-items:center;justify-content:center;font-size:2rem;flex-shrink:0;box-shadow:var(--shadow-sm); }
.service-full__title { font-family:var(--font-serif);font-size:clamp(1.75rem,3vw,2.5rem);font-weight:500;color:var(--charcoal);line-height:1.2;margin-bottom:.75rem; }
.service-full__subtitle { color:var(--gray-500);line-height:1.75; }
.service-full__body    { padding:3rem; }
.service-full__benefits { display:flex;flex-direction:column;gap:.75rem;margin-top:1.5rem; }
.service-full__benefit { display:flex;align-items:flex-start;gap:.875rem;font-size:.9375rem;color:var(--gray-600);line-height:1.62; }
.service-full__benefit-dot { width:20px;height:20px;background:var(--sage-50);border:1.5px solid var(--sage-300);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:.2rem; }
.service-full__benefit-dot::after { content:'';width:6px;height:6px;border-radius:50%;background:var(--sage-600); }

/* ---- CONTACT ---- */
.contact-layout { display:grid;grid-template-columns:1fr 1.5fr;gap:clamp(3rem,6vw,5rem);align-items:start; }
.contact-info { display:flex;flex-direction:column;gap:2rem; }
.contact-info__item { display:flex;align-items:flex-start;gap:1rem; }
.contact-info__icon {
  width:44px; height:44px;
  background:var(--sage-50);
  border:1px solid var(--sage-100);
  border-radius:var(--r-md);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.contact-info__icon svg {
  width:20px; height:20px;
  stroke:var(--sage-600); color:var(--sage-600);
}
.contact-info__label { font-size:.72rem;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:var(--gray-400);display:block;margin-bottom:.25rem; }
.contact-info__value { font-size:.9375rem;color:var(--charcoal); }
.contact-form-wrap { background:var(--white);border:1px solid var(--border);border-radius:var(--r-xl);padding:clamp(2rem,4vw,3rem); }
.contact-form { display:flex;flex-direction:column;gap:1.25rem; }
.form-group { display:flex;flex-direction:column;gap:.5rem; }
.form-row { display:grid;grid-template-columns:1fr 1fr;gap:1.25rem; }
.form-label { font-size:.78rem;font-weight:500;color:var(--gray-600);letter-spacing:.04em; }
.form-input,.form-select,.form-textarea {
  width:100%;background:var(--cream-50);border:1.5px solid var(--border);border-radius:var(--r-md);
  padding:.875rem 1.125rem;font-size:.9375rem;color:var(--charcoal);
  transition:border-color .2s,box-shadow .2s;
}
.form-input:focus,.form-select:focus,.form-textarea:focus {
  border-color:var(--sage-500);box-shadow:0 0 0 3px rgba(122,158,126,.12);background:var(--white);
}
.form-textarea { resize:vertical;min-height:140px;line-height:1.6; }
.form-input::placeholder,.form-textarea::placeholder { color:var(--gray-400); }
.form-msg { padding:.875rem 1.125rem;border-radius:var(--r-md);font-size:.9rem;display:none; }
.form-msg--success { background:var(--sage-50);border:1px solid var(--sage-100);color:var(--sage-700);display:block; }
.form-msg--error   { background:#FEF2F2;border:1px solid #FCA5A5;color:#DC2626;display:block; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--cream-50);
  padding: clamp(6rem,12vw,9rem) 0 clamp(3rem,5vw,4.5rem);
  border-bottom: 1px solid var(--border);
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem,6vw,4.75rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  max-width: 18ch;
}
.page-hero__title em { font-style: italic; color: var(--sage-600); }
.page-hero__sub { margin-top:1.5rem;font-size:1.0625rem;color:var(--gray-500);line-height:1.8;max-width:50ch; }

/* ---- FAQ ---- */
.faq-list { display:flex;flex-direction:column; }
.faq-item  { border-bottom:1px solid var(--border); }
.faq-question {
  display:flex;align-items:center;justify-content:space-between;
  width:100%;padding:1.5rem 0;cursor:pointer;text-align:left;
  font-family:var(--font-serif);font-size:1.1rem;font-weight:500;color:var(--charcoal);
  gap:1rem;transition:color .2s;
}
.faq-question:hover { color:var(--sage-600); }
.faq-icon {
  width:28px;height:28px;border:1.5px solid var(--border);border-radius:50%;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  transition:all .25s var(--ease);color:var(--gray-400);font-size:1rem;
}
.faq-item.open .faq-icon { background:var(--sage-600);border-color:var(--sage-600);color:#fff;transform:rotate(45deg); }
.faq-answer { overflow:hidden;max-height:0;transition:max-height .4s var(--ease); }
.faq-answer-inner { padding:0 0 1.5rem;font-size:.9375rem;color:var(--gray-500);line-height:1.8; }

/* ---- FOOTER ---- */
.site-footer { background:var(--charcoal);color:rgba(255,255,255,.75);padding:clamp(4rem,7vw,6rem) 0 2rem; }
.footer-grid { display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand { display:flex;flex-direction:column;gap:1.25rem; }
.footer-logo__name { font-family:var(--font-serif);font-size:1.5rem;color:#fff;font-weight:500; }
.footer-logo__sub  { font-size:.65rem;color:rgba(255,255,255,.35);letter-spacing:.12em;text-transform:uppercase;margin-top:.2rem; }
.footer-desc       { font-size:.875rem;line-height:1.75;max-width:30ch; }
.footer-social     { display:flex;gap:.75rem; }
.footer-social-link {
  width:38px;height:38px;border:1px solid rgba(255,255,255,.1);border-radius:var(--r-sm);
  display:flex;align-items:center;justify-content:center;font-size:1rem;
  color:rgba(255,255,255,.55);transition:all .2s;
}
.footer-social-link:hover { background:rgba(255,255,255,.08);color:#fff;border-color:rgba(255,255,255,.2); }
.footer-col-title { font-size:.65rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.35);margin-bottom:1.25rem; }
.footer-links { display:flex;flex-direction:column;gap:.75rem; }
.footer-links a { font-size:.875rem;color:rgba(255,255,255,.6);transition:color .2s; }
.footer-links a:hover { color:#fff; }
.footer-newsletter { display:flex;flex-direction:column;gap:1rem; }
.footer-newsletter-form { display:flex;gap:.5rem; }
.footer-newsletter-input { flex:1;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:var(--r-full);padding:.625rem 1rem;font-size:.875rem;color:#fff; }
.footer-newsletter-input::placeholder { color:rgba(255,255,255,.3); }
.footer-newsletter-btn { background:var(--sage-500);color:#fff;border-radius:var(--r-full);padding:.625rem 1.125rem;font-size:.875rem;font-weight:500;cursor:pointer;transition:background .2s;white-space:nowrap; }
.footer-newsletter-btn:hover { background:var(--sage-600); }
.footer-bottom { display:flex;align-items:center;justify-content:space-between;padding-top:2rem;font-size:.78rem;color:rgba(255,255,255,.3);flex-wrap:wrap;gap:1rem; }

/* ---- PAGINATION ---- */
.pagination { display:flex;justify-content:center;align-items:center;gap:.5rem;margin-top:3rem; }
.pagination .page-numbers { display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:var(--r-sm);font-size:.875rem;color:var(--gray-600);border:1px solid var(--border);transition:all .2s; }
.pagination .current { background:var(--sage-600);color:#fff;border-color:var(--sage-600); }
.pagination .page-numbers:hover:not(.current) { background:var(--cream-50); }

/* ---- MOBILE MENU ---- */
.nav-overlay { position:fixed;inset:0;background:rgba(28,28,28,.5);z-index:90;opacity:0;pointer-events:none;transition:opacity .3s;backdrop-filter:blur(4px); }
.nav-overlay.active { opacity:1;pointer-events:auto; }
.nav-mobile-menu { position:fixed;top:0;right:0;bottom:0;width:min(360px,90vw);background:var(--white);z-index:95;padding:2rem;transform:translateX(100%);transition:transform .35s var(--ease);overflow-y:auto; }
.nav-mobile-menu.active { transform:translateX(0); }
.nav-mobile-header { display:flex;align-items:center;justify-content:space-between;margin-bottom:2.5rem; }
.nav-mobile-close { width:36px;height:36px;background:var(--cream-50);border-radius:var(--r-sm);display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:1.25rem;color:var(--gray-600);transition:background .2s; }
.nav-mobile-close:hover { background:var(--cream-100); }
.nav-mobile-links { display:flex;flex-direction:column;gap:.25rem; }
.nav-mobile-links a { display:block;padding:.875rem 1rem;font-size:1rem;color:var(--gray-600);border-radius:var(--r-sm);transition:background .15s,color .15s; }
.nav-mobile-links a:hover { background:var(--cream-50);color:var(--charcoal); }
.nav-mobile-sub { padding-left:1rem; }
.nav-mobile-sub a { font-size:.9rem; }
.nav-mobile-cta { margin-top:2rem; }
.nav-mobile-contact { margin-top:2.5rem;padding-top:2rem;border-top:1px solid var(--border);display:flex;flex-direction:column;gap:.5rem;font-size:.875rem;color:var(--gray-500); }

/* ---- SCROLL ANIMATIONS ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-up.visible { opacity:1;transform:translateY(0); }
.reveal-up:nth-child(1){ transition-delay:.05s; }
.reveal-up:nth-child(2){ transition-delay:.12s; }
.reveal-up:nth-child(3){ transition-delay:.19s; }
.reveal-up:nth-child(4){ transition-delay:.26s; }
.reveal-up:nth-child(5){ transition-delay:.33s; }
.reveal-up:nth-child(6){ transition-delay:.40s; }
.reveal-fade { opacity:0;transition:opacity .85s var(--ease); }
.reveal-fade.visible { opacity:1; }
.reveal-left { opacity:0;transform:translateX(-32px);transition:opacity .7s var(--ease),transform .7s var(--ease); }
.reveal-left.visible { opacity:1;transform:translateX(0); }


/* ---- Admin bar ---- */
.admin-bar .site-header { top:32px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* ---- 1200px: large tablet / small laptop tweaks ---- */
@media(max-width:1200px) {
  .hero { padding:8rem 0 4.5rem; }
}

/* ---- 1024px: tablet landscape ---- */
@media(max-width:1024px) {
  /* Hero → single column, centered */
  .hero { padding:7.5rem 0 4rem; }
  .hero__grid { grid-template-columns:1fr; gap:3.5rem; }
  .hero__content { text-align:center; }
  .hero__ctas  { justify-content:center; }
  .hero__stats { justify-content:center; }
  .hero__desc  { margin-left:auto; margin-right:auto; }
  .hero__photos { max-width:440px; margin:0 auto; }

  /* About teaser → single column */
  .about-teaser__grid { grid-template-columns:1fr; }
  .about-teaser__image-wrap { max-width:520px; margin:0 auto; padding-bottom:2.5rem; }
  .about-teaser__overlay { bottom:.5rem; right:1rem; min-width:140px; }
  .about-teaser__content { max-width:600px; margin:0 auto; }

  /* Why-me */
  .why-me__grid { grid-template-columns:1fr; gap:3rem; }
  .why-me__features { grid-template-columns:1fr 1fr; }
  .why-me__grid > .reveal-up { text-align:center; display:flex; flex-direction:column; align-items:center; }

  /* Service grid */
  .services-grid { grid-template-columns:repeat(2,1fr); }

  /* Service page full blocks */
  .service-full__header { padding:2rem; }
  .service-full__body   { padding:2rem; }

  /* Process */
  .process-steps { grid-template-columns:repeat(2,1fr); gap:2.5rem; }
  .process-steps::before { display:none; }

  /* Certs */
  .certs-grid { grid-template-columns:repeat(2,1fr); }

  /* Footer */
  .footer-grid { grid-template-columns:1fr 1fr; gap:2.5rem; }

  /* Contact */
  .contact-layout { grid-template-columns:1fr; }

  /* About page hero */
  .about-hero { padding:7rem 0 0; }
  .about-hero__grid { grid-template-columns:1fr; }
  .about-hero__image, .about-hero__image-placeholder { max-height:380px; aspect-ratio:auto; }

  /* Page hero */
  .page-hero { padding:6rem 0 3rem; }
}

/* ---- 768px: tablet portrait / large phone ---- */
@media(max-width:768px) {
  /* NAV */
  .nav-menu, .nav-cta { display:none; }
  .nav-hamburger { display:flex; }
  .site-header { padding:.875rem 0; }

  /* HERO */
  .hero { padding:5.5rem 0 3.5rem; min-height:auto; }
  .hero__headline { font-size:clamp(2.5rem,7.5vw,3.5rem); letter-spacing:-.03em; }
  .hero__photos { height:340px; max-width:380px; }
  .hero__badge  { right:0; bottom:4%; padding:.75rem 1rem; min-width:150px; }
  .hero__badge-icon { width:34px; height:34px; font-size:1rem; }
  .hero__deco   { display:none; }
  .hero__stat__num { font-size:1.625rem; }
  .hero__stats { gap:1.25rem 2rem; }

  /* TRUST BAR — 2 × 2 grid */
  .trust-bar__grid { grid-template-columns:repeat(2,1fr); }
  .trust-bar__item {
    padding:1.25rem 1.25rem;
    border-right:1px solid var(--border);
    border-bottom:1px solid var(--border);
  }
  .trust-bar__item:nth-child(2n)       { border-right:none; }
  .trust-bar__item:nth-last-child(-n+2) { border-bottom:none; }

  /* ABOUT TEASER overlay */
  .about-teaser__overlay { bottom:.75rem; right:.75rem; min-width:130px; padding:1.1rem; }
  .about-teaser__overlay-num { font-size:2.5rem; }

  /* WHY-ME */
  .why-me__features { grid-template-columns:1fr 1fr; }

  /* PROCESS */
  .process-steps { grid-template-columns:repeat(2,1fr); gap:2rem; }

  /* SERVICES */
  .services-grid { grid-template-columns:1fr; }
  .service-full__header { padding:1.5rem; flex-direction:column; gap:1.25rem; }
  .service-full__body   { padding:1.5rem; }

  /* PHOTO STRIP */
  .photo-strip { height:130px; }

  /* TESTIMONIALS */
  .testimonials-grid { grid-template-columns:1fr; }

  /* CTA */
  .cta-section__inner { flex-direction:column; text-align:center; align-items:center; }
  .cta-section__actions { justify-content:center; flex-wrap:wrap; }

  /* BLOG + STORIES */
  .blog-grid    { grid-template-columns:1fr; }
  .stories-grid { grid-template-columns:1fr; }

  /* FOOTER */
  .footer-grid   { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom { flex-direction:column; text-align:center; gap:.75rem; }

  /* FORMS — font-size 16px prevents iOS auto-zoom on focus */
  .form-row { grid-template-columns:1fr; }
  .form-input, .form-select, .form-textarea { font-size:16px; padding:.9375rem 1rem; }

  /* PAGE HERO */
  .page-hero { padding:5.5rem 0 2.5rem; }
  .page-hero__title { font-size:clamp(2rem,7vw,3rem); }

  /* ABOUT PAGE */
  .about-hero { padding:5.5rem 0 0; }
  .about-hero__headline { font-size:clamp(2.5rem,7vw,4rem); }

  /* POST / SINGLE */
  .post-header { padding:5.5rem 0 2rem; }
  .post-featured-image { border-radius:var(--r-xl); }

  /* ADMIN BAR */
  .admin-bar .site-header { top:46px; }
}

/* ---- 480px: phones ---- */
@media(max-width:480px) {
  /* CSS variable overrides for tighter section spacing */
  :root {
    --section-py:    clamp(3.5rem,10vw,5rem);
    --section-py-sm: clamp(2.5rem,7vw,3.5rem);
  }

  /* HERO */
  .hero { padding:5rem 0 3rem; }
  .hero__headline { font-size:2.25rem; line-height:1.07; }
  .hero__ctas { flex-direction:column; align-items:stretch; }
  .hero__ctas .btn { justify-content:center; }
  .hero__photos { height:260px; max-width:280px; }
  .hero__stat__num { font-size:1.5rem; }
  /* Hide 3rd photo on very small screens */
  .hero__photo--sm { display:none; }

  /* TRUST BAR → 1 column */
  .trust-bar__grid { grid-template-columns:1fr; }
  .trust-bar__item { border-right:none; border-bottom:1px solid var(--border); }
  .trust-bar__item:nth-child(2n) { border-right:none; }
  .trust-bar__item:last-child { border-bottom:none; }
  .trust-bar__item:nth-last-child(-n+2) { border-bottom:1px solid var(--border); }
  .trust-bar__item:last-child { border-bottom:none; }

  /* ABOUT TEASER */
  .about-teaser__overlay { bottom:.25rem; right:.25rem; min-width:110px; padding:.875rem; }
  .about-teaser__overlay-num { font-size:1.875rem; }
  .about-teaser__overlay-label { font-size:.68rem; }

  /* WHY-ME → 1 column */
  .why-me__features { grid-template-columns:1fr; }

  /* PROCESS → 1 column, horizontal card layout */
  .process-steps { grid-template-columns:1fr; gap:1.25rem; }
  .step {
    display:grid;
    grid-template-columns:56px 1fr;
    grid-template-rows:auto auto;
    column-gap:1.25rem;
    row-gap:.3rem;
    align-items:start;
    text-align:left;
    padding:1.25rem;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--r-lg);
  }
  .step__num {
    grid-column:1;
    grid-row:1 / 3;
    margin-bottom:0;
    width:48px;
    height:48px;
    font-size:1rem;
    align-self:start;
  }
  .step__title { grid-column:2; grid-row:1; font-size:1rem; margin-bottom:0; }
  .step__desc  { grid-column:2; grid-row:2; }

  /* SERVICE full */
  .service-full__header { padding:1.25rem; }
  .service-full__body   { padding:1.25rem; }
  .service-full__icon   { width:50px; height:50px; font-size:1.5rem; }

  /* CERTS → 1 column */
  .certs-grid { grid-template-columns:1fr; }

  /* CTA actions */
  .cta-section__actions { flex-direction:column; align-items:center; width:100%; }
  .cta-section__actions .btn { width:100%; max-width:320px; justify-content:center; }

  /* FOOTER newsletter */
  .footer-newsletter-form { flex-direction:column; }
  .footer-newsletter-form input,
  .footer-newsletter-form button { width:100%; }

  /* BLOG card */
  .blog-card__body { padding:1.25rem; }

  /* TESTIMONIAL card */
  .testimonial-card { padding:1.75rem 1.25rem; }
  .testimonial-card::before { font-size:6rem; top:-1rem; right:1rem; }

  /* CONTACT */
  .contact-info { gap:1.25rem; }
  .contact-info__icon { width:40px; height:40px; }

  /* SECTION TITLES */
  .section-title { font-size:clamp(1.875rem,7.5vw,2.5rem); }
  .about-hero__headline { font-size:clamp(2rem,8vw,3rem); }
  .page-hero__title { font-size:clamp(1.875rem,7vw,2.75rem); }
  .about-teaser__title { font-size:clamp(1.75rem,6vw,2.5rem); }

  /* BUTTON min touch target */
  .btn { min-height:44px; }
}

/* ---- 360px: very small phones ---- */
@media(max-width:360px) {
  .hero__headline { font-size:2rem; }
  .hero__photos { height:220px; max-width:240px; }
  .hero__photo--sec { display:none; }
  .nav-logo__name { font-size:1.15rem; }
}


/* =====================================================
   ELEMENTOR COMPATIBILITY LAYER
   ===================================================== */

/* When Elementor renders a page inside our theme */
.elementor-page .site-main,
.elementor-page #content {
  padding: 0;
  margin: 0;
}

/* Elementor section spacing to match our system */
.elementor-section {
  position: relative;
}

/* Elementor typography inherits our fonts */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}
.elementor-widget-text-editor {
  font-family: var(--font-sans);
  line-height: 1.75;
  color: var(--gray-500);
}

/* Elementor button override — use our style */
.elementor-button {
  border-radius: var(--r-full) !important;
  font-family: var(--font-sans) !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  transition: all 0.25s var(--ease) !important;
}
.elementor-button-wrapper .elementor-button:hover {
  transform: translateY(-2px);
}

/* Elementor image widget */
.elementor-widget-image img {
  border-radius: var(--r-xl);
}

/* Elementor inner section as container */
.elementor-container {
  max-width: var(--max-w);
}

/* Page built with Elementor — no default page-hero */
.elementor-page .page-hero { display: none; }
.elementor-page .page-content { padding: 0; }
