:root {
  --c-bg: #FBF2E4;
  --c-bg-alt: #F5E7D0;
  --c-surface: #FFFCF6;
  --c-ink: #3A2E22;
  --c-ink-soft: #6E5B49;
  --c-terracotta: #C1622B;
  --c-terracotta-dark: #9B4A1D;
  --c-green: #5B6E3F;
  --c-green-dark: #42502D;
  --c-amber: #E2A24E;
  --c-rose: #C67B6E;
  --c-line: rgba(58, 46, 34, 0.14);
  --c-line-strong: rgba(58, 46, 34, 0.22);

  --shadow-sm: 0 1px 2px rgba(58, 46, 22, 0.08), 0 1px 1px rgba(58, 46, 22, 0.05);
  --shadow-md: 0 8px 20px -6px rgba(58, 46, 22, 0.20), 0 3px 8px rgba(58, 46, 22, 0.08);
  --shadow-lg: 0 24px 48px -14px rgba(58, 46, 22, 0.30), 0 10px 20px -6px rgba(58, 46, 22, 0.14);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  --space-3xs: .25rem;
  --space-2xs: .5rem;
  --space-xs: .875rem;
  --space-sm: 1.25rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --ff-head: 'Merriweather', serif;
  --ff-body: 'Outfit', sans-serif;

  --ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--ff-head);
  color: var(--c-ink);
  line-height: 1.25;
  margin: 0 0 var(--space-sm);
}

p { margin: 0 0 var(--space-sm); color: var(--c-ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding: 0; margin: 0; list-style: none; }

.u-hidden { display: none !important; }
.u-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.u-reveal.is-visible { opacity: 1; transform: translateY(0); }


.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.9rem;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);

  &.c-btn--primary {
    background: var(--c-terracotta);
    color: #FFF9F1;
    box-shadow: var(--shadow-md);
    &:hover { background: var(--c-terracotta-dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  }
  &.c-btn--ghost {
    background: transparent;
    color: var(--c-ink);
    border-color: var(--c-line-strong);
    &:hover { border-color: var(--c-terracotta); color: var(--c-terracotta-dark); transform: translateY(-3px); }
  }
  &.c-btn--block { width: 100%; }
}


.c-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-line);
  box-shadow: 0 1px 0 rgba(58,46,22,0.02);
  transition: box-shadow .4s var(--ease);
  perspective: 1400px;

  &.is-scrolled { box-shadow: 0 10px 30px -12px rgba(58,46,22,0.22); }

  .c-header__flip {
    position: relative;
    transform-style: preserve-3d;
    transition: transform .65s var(--ease);
    min-height: 74px;
    &.is-flipped { transform: rotateX(180deg); }
  }

  .c-header__front, .c-header__back {
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    min-height: 74px;
  }

  .c-header__front { justify-content: space-between; position: relative; }

  .c-header__back {
    position: absolute;
    inset: 0;
    transform: rotateX(180deg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--c-green-dark);
    display: none;
  }

  .c-header__brand {
    display: flex; align-items: center; gap: .6rem;
    font-family: var(--ff-head); font-weight: 700; font-size: 1.15rem; color: var(--c-ink);
    .c-header__logo { width: 34px; height: 34px; }
  }

  .c-nav {
    display: flex; align-items: center; gap: var(--space-md);
    a {
      font-weight: 500; color: var(--c-ink-soft); position: relative; padding: .3rem 0;
      transition: color .3s var(--ease);
      &::after {
        content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
        background: var(--c-terracotta); transition: width .35s var(--ease);
      }
      &:hover, &.is-active { color: var(--c-ink); }
      &:hover::after, &.is-active::after { width: 100%; }
    }
    .c-nav__cta {
      background: var(--c-terracotta); color: #FFF9F1 !important; padding: .6rem 1.3rem;
      border-radius: var(--radius-pill);
      &::after { display: none; }
      &:hover { background: var(--c-terracotta-dark); }
    }
  }

  .c-header__toggle, .c-header__close {
    display: none;
    background: none; border: none; font-size: 1.4rem; color: var(--c-ink);
    width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer;
    transition: color .3s var(--ease), transform .3s var(--ease);
    &:hover { color: var(--c-terracotta); }
  }

  .c-nav--flip {
    display: flex; flex-direction: column; align-items: center; gap: var(--space-sm);
    a {
      color: #FBF2E4; font-family: var(--ff-head); font-size: 1.25rem; font-weight: 700;
      padding: .3rem .6rem; border-bottom: 2px solid transparent; transition: border-color .3s var(--ease), color .3s var(--ease);
      &:hover { border-color: var(--c-amber); color: var(--c-amber); }
    }
  }

  .c-header__close { position: absolute; top: 14px; right: var(--space-md); color: #FBF2E4; }
}

@media (max-width: 860px) {
  .c-header {
    .u-hidden-mobile { display: none; }
    .c-header__toggle, .c-header__close { display: flex; }
    .c-header__back { display: flex; }
  }
}


.s-hero {
  padding: calc(74px + var(--space-lg)) var(--space-md) var(--space-lg);
  max-width: 1240px; margin: 0 auto;

  .s-hero__inner { text-align: center; max-width: 900px; margin: 0 auto var(--space-md); }
  .s-hero__eyebrow {
    display: inline-block; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    font-size: .8rem; color: var(--c-terracotta-dark); background: rgba(193,98,43,0.1);
    padding: .45rem 1rem; border-radius: var(--radius-pill); margin-bottom: var(--space-sm);
  }
  .s-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; margin: 0;
    .char { display: inline-block; opacity: 0; transform: translateY(.6em) rotate(3deg); animation: charIn .7s var(--ease) forwards; }
  }
  .s-hero__strip {
    margin: var(--space-lg) 0; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 6px solid var(--c-surface);
    img { width: 100%; height: clamp(220px, 38vw, 460px); object-fit: cover; transition: transform 1s var(--ease); }
    &:hover img { transform: scale(1.04); }
  }
  .s-hero__footer {
    max-width: 780px; margin: 0 auto; text-align: center;
    p { font-size: 1.08rem; }
  }
  .s-hero__actions { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; margin-top: var(--space-sm); }
}

@keyframes charIn { to { opacity: 1; transform: translateY(0) rotate(0); } }


main section { padding: var(--space-xl) var(--space-md); max-width: 1240px; margin: 0 auto; }


.s-topics {
  .s-topics__head { text-align: center; max-width: 640px; margin: 0 auto var(--space-lg); }
  .s-topics__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
  .c-topic {
    background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-md);
    padding: var(--space-md); box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
    .c-topic__icon {
      width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
      border-radius: var(--radius-sm); background: rgba(91,110,63,0.12); color: var(--c-green-dark);
      font-size: 1.4rem; margin-bottom: var(--space-sm); transition: background .4s var(--ease), transform .4s var(--ease);
    }
    h3 { font-size: 1.15rem; margin-bottom: .5rem; }
    p { font-size: .95rem; margin-bottom: 0; }
    &:hover {
      transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--c-terracotta);
      .c-topic__icon { background: var(--c-terracotta); color: #fff; transform: rotate(-6deg); }
    }
  }
}


.s-features {
  background: var(--c-bg-alt);
  border-radius: var(--radius-lg);
  h2 { text-align: center; margin-bottom: var(--space-lg); }
  .s-features__grid {
    counter-reset: feature;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md);
  }
  .c-feature {
    counter-increment: feature;
    background: var(--c-surface); border-radius: var(--radius-md); padding: var(--space-md);
    border-left: 4px solid var(--c-terracotta); box-shadow: var(--shadow-sm); position: relative;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    .c-feature__num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 42px; height: 42px; border-radius: 50%; background: var(--c-green-dark); color: #fff;
      font-family: var(--ff-head); font-weight: 700; margin-bottom: var(--space-sm);
      &::before { content: counter(feature, decimal-leading-zero); }
    }
    h3 { font-size: 1.08rem; }
    p { font-size: .93rem; margin-bottom: 0; }
    &:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-left-color: var(--c-amber); }
  }
}


.s-process {
  h2 { text-align: center; margin-bottom: var(--space-lg); max-width: 720px; margin-left: auto; margin-right: auto; }
  .s-process__row {
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center;
    margin-bottom: var(--space-lg);
    &:last-child { margin-bottom: 0; }
    &.s-process__row--reverse { direction: rtl; > * { direction: ltr; } }
  }
  .s-process__img img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); width: 100%; height: 300px; object-fit: cover; }
  .s-process__step {
    display: inline-block; font-weight: 600; color: var(--c-terracotta-dark); text-transform: uppercase;
    letter-spacing: .05em; font-size: .8rem; margin-bottom: .4rem;
  }
  .s-process__text h3 { font-size: 1.4rem; }
}


.s-faq { h2 { text-align: center; margin-bottom: var(--space-lg); } }
.c-accordion {
  max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-sm);
  .c-accordion__item {
    background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
    &:hover { border-color: var(--c-line-strong); }
  }
  .c-accordion__trigger {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: var(--space-sm);
    padding: 1.2rem 1.5rem; font-family: var(--ff-body); font-weight: 600; font-size: 1rem; color: var(--c-ink);
    i { transition: transform .4s var(--ease); color: var(--c-terracotta); }
  }
  .c-accordion__panel {
    max-height: 0; overflow: hidden; transition: max-height .5s var(--ease), padding .5s var(--ease);
    padding: 0 1.5rem;
    p { margin: 0 0 1.2rem; font-size: .95rem; }
  }
  .c-accordion__item.is-open {
    .c-accordion__panel { max-height: 400px; padding: 0 1.5rem 1.2rem; }
    .c-accordion__trigger i { transform: rotate(180deg); }
  }
}

.c-faq-group {
  margin-bottom: var(--space-lg);
  &:last-child { margin-bottom: 0; }
  h2 { font-size: 1.4rem; margin-bottom: var(--space-sm); color: var(--c-green-dark); }
}


.s-cta {
  .s-cta__box {
    background: linear-gradient(135deg, var(--c-terracotta), var(--c-rose));
    border-radius: var(--radius-lg); padding: var(--space-lg) var(--space-md); text-align: center;
    box-shadow: var(--shadow-lg);
    h2 { color: #FFF8EF; }
    p { color: rgba(255,248,239,0.9); max-width: 560px; margin-left: auto; margin-right: auto; }
    .c-btn--primary { background: #FFF8EF; color: var(--c-terracotta-dark); box-shadow: var(--shadow-md);
      &:hover { background: #fff; } }
  }
}


.s-page-hero {
  padding: calc(74px + var(--space-lg)) var(--space-md) var(--space-md); max-width: 900px; margin: 0 auto; text-align: center;
  .s-page-hero__eyebrow {
    display: inline-block; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    font-size: .8rem; color: var(--c-green-dark); background: rgba(91,110,63,0.12);
    padding: .45rem 1rem; border-radius: var(--radius-pill); margin-bottom: var(--space-sm);
  }
  h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
  &.s-page-hero--legal { max-width: 720px; text-align: left; }
}


.s-story {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-lg); align-items: center;
  .s-story__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); height: 380px; width: 100%; object-fit: cover; }
}

.s-values {
  h2 { text-align: center; margin-bottom: var(--space-lg); }
  .s-values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
  .c-value {
    text-align: center; padding: var(--space-md); border-radius: var(--radius-md); background: var(--c-surface);
    border-top: 3px solid var(--c-green); box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    .c-value__icon {
      width: 54px; height: 54px; margin: 0 auto var(--space-sm); border-radius: 50%; background: rgba(226,162,78,0.18);
      display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--c-terracotta-dark);
    }
    h3 { font-size: 1.05rem; }
    p { font-size: .92rem; margin-bottom: 0; }
    &:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-top-color: var(--c-terracotta); }
  }
}

.s-audience {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--space-lg); align-items: center;
  .s-audience__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); height: 340px; width: 100%; object-fit: cover; }
  .c-list li {
    display: flex; gap: .8rem; align-items: flex-start; padding: .7rem 0; border-bottom: 1px dashed var(--c-line);
    color: var(--c-ink-soft); font-size: .96rem;
    i { color: var(--c-green-dark); margin-top: .2rem; }
    &:last-child { border-bottom: none; }
  }
}


.s-formats {
  .s-formats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
  .c-format {
    background: var(--c-surface); border-radius: var(--radius-md); padding: var(--space-md);
    box-shadow: var(--shadow-sm); border: 1px solid var(--c-line);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
    .c-format__icon {
      width: 52px; height: 52px; border-radius: var(--radius-sm); background: rgba(193,98,43,0.12);
      display: flex; align-items: center; justify-content: center; color: var(--c-terracotta-dark); font-size: 1.3rem;
      margin-bottom: var(--space-sm);
    }
    h3 { font-size: 1.1rem; }
    p { font-size: .93rem; margin-bottom: 0; }
    &:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--c-bg-alt); }
  }
}

.s-timeline {
  h2 { text-align: center; margin-bottom: var(--space-lg); }
  .c-timeline {
    max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-md);
    li {
      display: flex; gap: var(--space-md); align-items: flex-start; padding-bottom: var(--space-md);
      border-bottom: 1px solid var(--c-line);
      &:last-child { border-bottom: none; padding-bottom: 0; }
    }
    .c-timeline__num {
      flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--c-green-dark); color: #fff;
      display: flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-weight: 700;
    }
    h3 { font-size: 1.05rem; margin-bottom: .3rem; }
    p { font-size: .93rem; margin-bottom: 0; }
  }
}

.s-format-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 380px; object-fit: cover; }


.s-faq-full { max-width: 900px; }


.s-contact { padding-top: 74px; }
.s-contact__form-wrap {
  max-width: 680px; margin: 0 auto; padding: var(--space-lg) var(--space-md);
  .s-contact__head { text-align: center; margin-bottom: var(--space-lg); }
}
.c-form {
  display: flex; flex-direction: column; gap: var(--space-md);
  .c-form__field {
    display: flex; flex-direction: column; gap: .4rem;
    label { font-weight: 600; font-size: .95rem; }
    input, textarea {
      font-family: var(--ff-body); font-size: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm);
      border: 1.5px solid var(--c-line-strong); background: var(--c-surface); color: var(--c-ink);
      transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
      &:focus { outline: none; border-color: var(--c-terracotta); box-shadow: 0 0 0 4px rgba(193,98,43,0.14); }
    }
    textarea { resize: vertical; min-height: 130px; }
  }
  .c-form__help { font-size: .82rem; color: var(--c-ink-soft); }
  .c-form__field--checkbox { flex-direction: row; }
  .c-checkbox {
    display: flex; align-items: flex-start; gap: .7rem; font-size: .9rem; color: var(--c-ink-soft); cursor: pointer;
    input { width: 20px; height: 20px; margin-top: .1rem; accent-color: var(--c-terracotta); flex-shrink: 0; }
    a { color: var(--c-terracotta-dark); text-decoration: underline; }
  }
}

.s-service-area {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center;
  .s-service-area__map iframe { border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
}

.s-contact-info {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md);
  .c-info-card {
    background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-md);
    padding: var(--space-md); text-align: center; box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    i { font-size: 1.5rem; color: var(--c-terracotta); margin-bottom: .6rem; display: block; }
    p { margin: 0; font-weight: 500; color: var(--c-ink); }
    &:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
  }
}


.s-legal__body {
  max-width: 780px; margin: 0 auto var(--space-lg); display: flex; flex-direction: column; gap: var(--space-md);
  .c-legal-block {
    padding-bottom: var(--space-md); border-bottom: 1px solid var(--c-line);
    &:last-child { border-bottom: none; }
    h2 { font-size: 1.2rem; color: var(--c-green-dark);
      span { color: var(--c-terracotta); margin-right: .3rem; }
    }
    p { font-size: .96rem; }
  }
  &.s-legal__body--plain h2 { font-weight: 700; }
}


.s-thanks-hero {
  background: linear-gradient(135deg, var(--c-green-dark), var(--c-terracotta));
  padding: calc(74px + var(--space-xl)) var(--space-md) var(--space-xl); text-align: center;
  .s-thanks-hero__inner { max-width: 620px; margin: 0 auto; }
  i { font-size: 2.4rem; color: #FCEBD8; margin-bottom: var(--space-sm); display: inline-block; }
  h1 { color: #FFF8EF; font-size: clamp(2.2rem, 5vw, 3.2rem); }
  p { color: rgba(255,248,239,0.92); font-size: 1.1rem; margin-bottom: 0; }
}
.s-thanks-next {
  max-width: 620px; margin: 0 auto; text-align: center; padding: var(--space-xl) var(--space-md);
  h2 { margin-bottom: var(--space-sm); }
}


.c-footer {
  border-top: 1px solid var(--c-line); padding: var(--space-md); background: var(--c-bg-alt);
  .c-footer__row {
    max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-md); flex-wrap: wrap;
  }
  .c-footer__brand {
    display: flex; align-items: center; gap: .5rem; font-family: var(--ff-head); font-weight: 700;
    img { width: 26px; height: 26px; }
  }
  .c-footer__links { display: flex; gap: var(--space-sm); flex-wrap: wrap;
    a { font-size: .88rem; color: var(--c-ink-soft); transition: color .3s var(--ease);
      &:hover { color: var(--c-terracotta-dark); } }
  }
  .c-footer__copy { font-size: .82rem; color: var(--c-ink-soft); margin: 0; }
}


.c-cookie {
  position: fixed; bottom: 20px; left: 20px; z-index: 900; max-width: 360px; width: calc(100% - 40px);
  background: var(--c-surface); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-line); padding: var(--space-sm) var(--space-sm) var(--space-sm);
  transform: translateY(30px); opacity: 0; pointer-events: none;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
  &.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }

  h3 { font-size: 1rem; margin-bottom: .4rem; display: flex; align-items: center; gap: .5rem;
    i { color: var(--c-terracotta); } }
  p { font-size: .84rem; margin-bottom: var(--space-sm); }

  .c-cookie__actions { display: flex; flex-direction: column; gap: .55rem; }
  .c-cookie__btn {
    width: 100%; padding: .7rem 1rem; border-radius: var(--radius-pill); font-weight: 600; font-size: .88rem;
    cursor: pointer; border: 1.5px solid transparent; transition: all .3s var(--ease); font-family: var(--ff-body);
  }
  .c-cookie__btn--accept { background: var(--c-terracotta); color: #fff;
    &:hover { background: var(--c-terracotta-dark); } }
  .c-cookie__btn--reject { background: transparent; border-color: var(--c-line-strong); color: var(--c-ink);
    &:hover { border-color: var(--c-ink); } }
  .c-cookie__btn--custom { background: none; color: var(--c-green-dark); text-decoration: underline; padding: .3rem; }

  .c-cookie__panel {
    max-height: 0; overflow: hidden; transition: max-height .5s var(--ease), margin .5s var(--ease);
    &.is-open { max-height: 300px; margin-top: var(--space-sm); }
    .c-cookie__cat { display: flex; align-items: center; justify-content: space-between; padding: .5rem 0; border-bottom: 1px dashed var(--c-line);
      font-size: .85rem;
      &:last-child { border-bottom: none; }
      input { accent-color: var(--c-green); width: 18px; height: 18px; }
    }
    .c-cookie__save {
      margin-top: .6rem; width: 100%; padding: .6rem; border-radius: var(--radius-pill); border: none;
      background: var(--c-green-dark); color: #fff; font-weight: 600; cursor: pointer; font-family: var(--ff-body);
      transition: background .3s var(--ease);
      &:hover { background: var(--c-green); }
    }
  }
}


@media (max-width: 980px) {
  .s-topics__grid, .s-values__grid, .s-formats__grid { grid-template-columns: repeat(2, 1fr); }
  .s-features__grid { grid-template-columns: repeat(2, 1fr); }
  .s-story, .s-audience { grid-template-columns: 1fr; }
  .s-story__img img, .s-audience__img img { height: 260px; }
  .s-process__row, .s-process__row--reverse { grid-template-columns: 1fr; direction: ltr; }
  .s-service-area { grid-template-columns: 1fr; }
  .s-contact-info { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .s-topics__grid, .s-values__grid, .s-formats__grid, .s-features__grid { grid-template-columns: 1fr; }
  main section { padding: var(--space-lg) var(--space-sm); }
  .s-hero { padding-top: calc(74px + var(--space-md)); }
  .c-header .c-header__front, .c-header .c-header__back { padding: 0 var(--space-sm); }
  .c-cookie { left: 12px; right: 12px; width: auto; max-width: none; bottom: 12px; }
}