@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --color-bg: #f5f0e8;
  --color-bg-alt: #ede7d9;
  --color-bg-dark: #2c2416;
  --color-surface: #faf7f2;
  --color-surface-warm: #f0e9db;
  --color-text: #2c2416;
  --color-text-muted: #6b5e48;
  --color-text-light: #f5f0e8;
  --color-primary: #5c3d1e;
  --color-primary-hover: #7a5230;
  --color-accent: #a0522d;
  --color-accent-light: #d4956a;
  --color-accent-muted: #c8a882;
  --color-border: #d6c9b4;
  --color-border-light: #e8dfd0;
  --color-green: #4a6741;
  --color-green-light: #e8f0e7;

  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(44,36,22,0.08), 0 1px 2px rgba(44,36,22,0.05);
  --shadow-md: 0 4px 12px rgba(44,36,22,0.10), 0 2px 4px rgba(44,36,22,0.07);
  --shadow-lg: 0 12px 32px rgba(44,36,22,0.13), 0 4px 8px rgba(44,36,22,0.08);
  --shadow-xl: 0 24px 64px rgba(44,36,22,0.16), 0 8px 16px rgba(44,36,22,0.10);

  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --transition-slow: 0.45s ease;

  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);

  &:hover {
    color: var(--color-primary);
  }
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p {
  margin-bottom: 1rem;
  color: var(--color-text);

  &:last-child { margin-bottom: 0; }
}

.c-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), filter var(--transition-base);

  &.is-menu-open {
    transform: translateX(-280px) scale(0.95);
    filter: brightness(0.85);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
}

.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background var(--transition-base), box-shadow var(--transition-base);

  &.is-scrolled {
    background: var(--color-surface);
    box-shadow: var(--shadow-md);

    & .c-nav__links a {
      color: var(--color-text);
    }

    & .c-nav__hamburger span {
      background: var(--color-text);
    }
  }

  & .c-nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
  }

  & .c-nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;

    & .c-nav__logo-img {
      height: 40px;
      width: auto;
    }
  }

  & .c-nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-md);

    & li a {
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--color-text);
      padding: 0.35rem 0;
      position: relative;
      transition: color var(--transition-fast);

      &::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-accent);
        border-radius: var(--radius-pill);
        transition: width var(--transition-base);
      }

      &:hover::after,
      &.is-active::after {
        width: 100%;
      }

      &.is-active {
        color: var(--color-accent);
      }
    }
  }

  & .c-nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;

    & span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--color-text);
      border-radius: var(--radius-pill);
      transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base);
    }
  }
}

.c-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--color-bg-dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;

  &.is-open {
    transform: translateX(0);
  }

  & .c-mobile-menu__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1.4rem;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);

    &:hover {
      background: rgba(255,255,255,0.1);
    }
  }

  & .c-mobile-menu__links {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);

    & li a {
      display: block;
      font-family: var(--font-heading);
      font-size: 1.1rem;
      color: var(--color-text-light);
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: color var(--transition-fast), padding-left var(--transition-fast);

      &:hover {
        color: var(--color-accent-light);
        padding-left: 0.5rem;
      }
    }
  }

  & .c-mobile-menu__contact {
    margin-top: auto;
    padding-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);

    & a {
      color: var(--color-accent-muted);
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: color var(--transition-fast);

      &:hover { color: var(--color-accent-light); }
    }
  }
}

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  text-decoration: none;
  white-space: nowrap;

  &:hover {
    transform: translateY(-2px);
  }

  &:active {
    transform: translateY(0);
  }

  &.c-btn--primary {
    background: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: var(--shadow-md);

    &:hover {
      background: var(--color-primary-hover);
      box-shadow: var(--shadow-lg);
      color: var(--color-text-light);
    }
  }

  &.c-btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);

    &:hover {
      background: var(--color-primary);
      color: var(--color-text-light);
    }
  }

  &.c-btn--ghost {
    background: rgba(255,255,255,0.15);
    color: var(--color-text-light);
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);

    &:hover {
      background: rgba(255,255,255,0.25);
      color: var(--color-text-light);
    }
  }
}

.c-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-accent);
  transition: gap var(--transition-fast), color var(--transition-fast);

  &:hover {
    gap: 0.7rem;
    color: var(--color-primary);
  }
}

.s-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-bg-alt);
  overflow: hidden;
  padding-top: var(--nav-height);

  & .s-hero__bg-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 120%;
    background: linear-gradient(135deg, var(--color-surface-warm) 0%, var(--color-bg) 60%, transparent 100%);
    border-radius: 40% 0 0 60% / 50% 0 0 50%;
    z-index: 0;
  }

  & .s-hero__grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    pointer-events: none;
  }

  & .s-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
    width: 100%;
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: var(--space-xl);
    align-items: end;
    min-height: calc(100vh - var(--nav-height));
  }

  & .s-hero__heading-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding-bottom: var(--space-xl);
  }

  & .s-hero__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    padding: 0.35rem 0.9rem;
    background: rgba(160,82,45,0.1);
    border-radius: var(--radius-pill);
    width: fit-content;
  }

  & .s-hero__title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.1;
    color: var(--color-text);
    max-width: 720px;

    & em {
      font-style: italic;
      color: var(--color-accent);
    }
  }

  & .s-hero__image-wrap {
    position: relative;
    max-width: 480px;

    &::before {
      content: '';
      position: absolute;
      bottom: -12px;
      left: -12px;
      right: 12px;
      top: 12px;
      border: 2px solid var(--color-accent-muted);
      border-radius: var(--radius-xl);
      z-index: -1;
    }
  }

  & .s-hero__img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
  }

  & .s-hero__cta-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-bottom: var(--space-xl);
    align-self: end;
  }

  & .s-hero__desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 340px;
  }

  & .s-hero__ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
  }

  & .s-hero__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--color-green);
    background: var(--color-green-light);
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-pill);
    width: fit-content;
    border: 1px solid rgba(74,103,65,0.2);
  }

  & .s-hero__scroll-hint {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
    animation: scrollBounce 2.2s ease-in-out infinite;
  }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.s-intro {
  background: var(--color-surface);
  padding: var(--space-3xl) 0;

  & .s-intro__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  & .s-intro__text {
    & h2 {
      margin-bottom: var(--space-md);
    }

    & p {
      color: var(--color-text-muted);
      margin-bottom: var(--space-md);
    }
  }

  & .s-intro__image {
    position: relative;
  }

  & .s-intro__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 40% 12px 28px 12px / 12px 28px 12px 40%;
    box-shadow: var(--shadow-xl);
  }

  & .s-intro__img-caption {
    margin-top: var(--space-sm);
    font-size: 0.82rem;
    color: var(--color-text-muted);
    text-align: center;
    font-style: italic;
  }
}

.s-timeline {
  background: var(--color-bg);
  padding: var(--space-3xl) 0;

  & .s-timeline__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
  }

  & .s-timeline__header {
    text-align: center;
    margin-bottom: var(--space-2xl);

    & .s-timeline__title {
      margin-bottom: var(--space-sm);
    }

    & .s-timeline__subtitle {
      color: var(--color-text-muted);
      font-size: 1.05rem;
    }
  }

  & .s-timeline__track {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
  }

  & .s-timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-border) 10%, var(--color-border) 90%, transparent);
    transform: translateX(-50%);
  }

  & .s-timeline__entry {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: center;
    gap: var(--space-md);

    &.s-timeline__entry--left {
      & .s-timeline__card {
        grid-column: 1;
        text-align: right;
      }
      & .s-timeline__dot {
        grid-column: 2;
      }
    }

    &.s-timeline__entry--right {
      & .s-timeline__dot {
        grid-column: 2;
      }
      & .s-timeline__card {
        grid-column: 3;
      }
    }
  }

  & .s-timeline__dot {
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border: 3px solid var(--color-bg);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--color-accent);
    justify-self: center;
    flex-shrink: 0;
  }

  & .s-timeline__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base), transform var(--transition-base);

    &:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-3px);
    }

    & .s-timeline__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: rgba(160,82,45,0.1);
      color: var(--color-accent);
      border-radius: var(--radius-md);
      font-size: 1.1rem;
      margin-bottom: var(--space-sm);
    }

    & .s-timeline__step {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--color-accent-muted);
      text-transform: uppercase;
      margin-bottom: 0.3rem;
    }

    & h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    & p {
      font-size: 0.9rem;
      color: var(--color-text-muted);
      margin: 0;
    }
  }

  & .s-timeline__entry--left .s-timeline__card {
    & .s-timeline__icon {
      margin-left: auto;
    }
  }
}

.s-services-accordion {
  background: var(--color-bg-alt);
  padding: var(--space-3xl) 0;

  & .s-services-accordion__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
  }

  & .s-services-accordion__header {
    text-align: center;
    margin-bottom: var(--space-2xl);

    & h2 { margin-bottom: var(--space-sm); }
    & p { color: var(--color-text-muted); }
  }

  & .s-services-accordion__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }
}

.c-accordion-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base);

  &:hover {
    box-shadow: var(--shadow-md);
  }

  &.is-open {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent-muted);
  }

  & .c-accordion-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition-fast);

    &:hover {
      background: var(--color-surface-warm);
    }
  }

  & .c-accordion-item__icon-wrap {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160,82,45,0.1);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    font-size: 1rem;
    transition: background var(--transition-base), color var(--transition-base);
  }

  &.is-open .c-accordion-item__icon-wrap {
    background: var(--color-accent);
    color: white;
  }

  & .c-accordion-item__label {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
  }

  & .c-accordion-item__arrow {
    color: var(--color-text-muted);
    transition: transform var(--transition-base);
    font-size: 0.85rem;
  }

  &.is-open .c-accordion-item__arrow {
    transform: rotate(180deg);
  }

  & .c-accordion-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;

    & > p {
      padding: 0 var(--space-lg) var(--space-md) calc(var(--space-lg) + 40px + var(--space-md));
      color: var(--color-text-muted);
      font-size: 0.95rem;
      line-height: 1.7;
      margin: 0;
    }

    & .c-accordion-item__img {
      margin: 0 var(--space-lg) var(--space-md) calc(var(--space-lg) + 40px + var(--space-md));
      border-radius: var(--radius-md);
      max-height: 200px;
      object-fit: cover;
      width: calc(100% - var(--space-lg) - 40px - var(--space-md) - var(--space-lg));
    }
  }

  &.is-open .c-accordion-item__body {
    max-height: 600px;
  }
}

.s-why {
  background: var(--color-surface);
  padding: var(--space-3xl) 0;

  & .s-why__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  & .s-why__image-side {
    position: relative;
  }

  & .s-why__img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px 40px 12px 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
  }

  & .s-why__img-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60%;
    height: 60%;
    background: var(--color-surface-warm);
    border-radius: 12px 40px 12px 40px;
    z-index: 0;
    border: 2px solid var(--color-border);
  }

  & .s-why__text-side {
    & h2 { margin-bottom: var(--space-md); }

    & p {
      color: var(--color-text-muted);
      margin-bottom: var(--space-md);
    }
  }

  & .s-why__list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: var(--space-lg);

    & li {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.95rem;
      color: var(--color-text);

      & i {
        color: var(--color-green);
        font-size: 0.85rem;
        flex-shrink: 0;
      }
    }
  }
}

.s-faq {
  background: var(--color-bg);
  padding: var(--space-3xl) 0;

  & .s-faq__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
  }

  & .s-faq__header {
    text-align: center;
    margin-bottom: var(--space-2xl);

    & h2 { margin-bottom: var(--space-sm); }
    & p { color: var(--color-text-muted); }
  }

  & .s-faq__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }
}

.c-faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base);

  &:hover {
    box-shadow: var(--shadow-md);
  }

  & .c-faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text);
    transition: background var(--transition-fast);

    &:hover {
      background: var(--color-surface-warm);
    }
  }

  & .c-faq-item__icon {
    color: var(--color-accent);
    transition: transform var(--transition-base);
    flex-shrink: 0;
  }

  &.is-open .c-faq-item__icon {
    transform: rotate(45deg);
  }

  & .c-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;

    & p {
      padding: 0 var(--space-lg) var(--space-md);
      color: var(--color-text-muted);
      font-size: 0.95rem;
      line-height: 1.7;
      margin: 0;
    }
  }

  &.is-open .c-faq-item__answer {
    max-height: 400px;
  }
}

.s-cta-band {
  background: var(--color-bg-dark);
  padding: var(--space-2xl) 0;

  & .s-cta-band__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
  }

  & .s-cta-band__text {
    & h2 {
      color: var(--color-text-light);
      margin-bottom: 0.5rem;
    }

    & p {
      color: var(--color-accent-muted);
      margin: 0;
    }
  }

  & .s-cta-band__actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
  }
}

.c-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding-top: var(--space-2xl);
  margin-top: auto;

  & .c-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg) var(--space-xl);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: var(--space-xl);
  }

  & .c-footer__logo {
    height: 36px;
    width: auto;
    margin-bottom: var(--space-md);
    filter: brightness(10);
    opacity: 0.9;
  }

  & .c-footer__brand {
    & p {
      font-size: 0.9rem;
      color: var(--color-accent-muted);
      line-height: 1.6;
      margin-bottom: 0.5rem;
    }

    & address {
      font-size: 0.85rem;
      color: var(--color-accent-muted);
    }
  }

  & h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-muted);
    margin-bottom: var(--space-md);
  }

  & .c-footer__nav ul,
  & .c-footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    & li a {
      font-size: 0.9rem;
      color: rgba(245,240,232,0.7);
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: color var(--transition-fast);

      &:hover { color: var(--color-accent-light); }
    }
  }

  & .c-footer__legal {
    & p {
      font-size: 0.8rem;
      color: rgba(245,240,232,0.5);
      line-height: 1.8;
      margin-bottom: var(--space-sm);
    }
  }

  & .c-footer__legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;

    & li a {
      font-size: 0.82rem;
      color: rgba(245,240,232,0.5);
      transition: color var(--transition-fast);

      &:hover { color: var(--color-accent-light); }
    }
  }

  & .c-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-md) var(--space-lg);
    max-width: 1280px;
    margin: 0 auto;

    & p {
      font-size: 0.8rem;
      color: rgba(245,240,232,0.4);
      margin: 0;
    }
  }
}

.s-page-hero {
  background: var(--color-bg-alt);
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  text-align: center;

  & .s-page-hero__inner {
    max-width: 700px;
    margin: 0 auto;
  }

  & .s-page-hero__eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
  }

  & h1 {
    margin-bottom: var(--space-md);
  }

  & p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin: 0;
  }

  &.s-page-hero--eredi {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-surface-warm) 100%);
  }
}

.s-exp-intro {
  background: var(--color-surface);
  padding: var(--space-3xl) 0;

  & .s-exp-intro__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  & .s-exp-intro__text {
    & h2 { margin-bottom: var(--space-md); }
    & p { color: var(--color-text-muted); margin-bottom: var(--space-md); }
  }

  & .s-exp-intro__img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
  }
}

.s-exp-values {
  background: var(--color-bg);
  padding: var(--space-3xl) 0;

  & .s-exp-values__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);

    & > h2 {
      margin-bottom: var(--space-2xl);
      text-align: center;
    }
  }

  & .s-exp-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
}

.c-value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);

  &:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  & .c-value-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160,82,45,0.1);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
  }

  & h3 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
  }

  & p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
  }
}

.s-exp-process {
  background: var(--color-bg-alt);
  padding: var(--space-3xl) 0;

  & .s-exp-process__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
  }

  & .s-exp-process__header {
    margin-bottom: var(--space-xl);

    & h2 { margin-bottom: 0.5rem; }
    & p { color: var(--color-text-muted); }
  }

  & .s-exp-process__img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-xl);
  }

  & .s-exp-process__text-block {
    & p {
      color: var(--color-text-muted);
      margin-bottom: var(--space-md);
    }
  }
}

.s-exp-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  padding: var(--space-2xl) 0;

  & .s-exp-cta__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;

    & h2 {
      color: white;
      margin-bottom: var(--space-sm);
    }

    & p {
      color: rgba(255,255,255,0.8);
      margin-bottom: var(--space-lg);
    }

    & .c-btn--primary {
      background: white;
      color: var(--color-primary);

      &:hover {
        background: var(--color-surface);
        color: var(--color-primary);
      }
    }
  }
}

.s-services-detail {
  background: var(--color-surface);
  padding: var(--space-3xl) 0;

  & .s-services-detail__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
  }
}

.c-service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;

  &.c-service-block--reverse {
    & .c-service-block__visual {
      order: 2;
    }
    & .c-service-block__content {
      order: 1;
    }
  }

  & .c-service-block__img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);

    &:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-xl);
    }
  }

  & .c-service-block__num {
    display: block;
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--color-border);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  & h2 {
    margin-bottom: var(--space-md);
  }

  & p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
  }
}

.s-services-extra {
  background: var(--color-bg-alt);
  padding: var(--space-3xl) 0;

  & .s-services-extra__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);

    & > h2 {
      text-align: center;
      margin-bottom: var(--space-2xl);
    }
  }

  & .s-services-extra__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
}

.c-extra-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);

  &:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  & i {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    display: block;
  }

  & h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  & p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin: 0;
  }
}

.s-eredi-intro {
  background: var(--color-surface);
  padding: var(--space-3xl) 0;

  & .s-eredi-intro__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  & .s-eredi-intro__text {
    & h2 { margin-bottom: var(--space-md); }
    & p { color: var(--color-text-muted); margin-bottom: var(--space-md); }
  }

  & .s-eredi-intro__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
  }
}

.s-eredi-steps {
  background: var(--color-bg-alt);
  padding: var(--space-3xl) 0;

  & .s-eredi-steps__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);

    & > h2 {
      margin-bottom: var(--space-2xl);
      text-align: center;
    }
  }

  & .s-eredi-steps__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }
}

.c-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;

  & .c-step__num {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  & .c-step__content {
    & h3 {
      margin-bottom: 0.4rem;
      font-size: 1.05rem;
    }

    & p {
      font-size: 0.92rem;
      color: var(--color-text-muted);
      margin: 0;
    }
  }
}

.s-eredi-faq {
  background: var(--color-bg);
  padding: var(--space-3xl) 0;

  & .s-eredi-faq__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);

    & > h2 {
      margin-bottom: var(--space-2xl);
    }
  }
}

.s-contact-main {
  background: var(--color-surface);
  padding: var(--space-3xl) 0;

  & .s-contact-main__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-2xl);
    align-items: start;
  }

  & .s-contact-main__info {
    & h2 { margin-bottom: var(--space-lg); }
  }
}

.c-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);

  & > i {
    width: 40px;
    height: 40px;
    background: rgba(160,82,45,0.1);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
  }

  & div {
    & strong {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      margin-bottom: 0.2rem;
    }

    & a, & address {
      font-size: 1rem;
      color: var(--color-text);
      transition: color var(--transition-fast);

      &:hover { color: var(--color-accent); }
    }
  }
}

.c-consultation-box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);

  & h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
  }

  & p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);

    &:last-child { margin-bottom: 0; }
  }
}

.c-contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.c-contact-form__section {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);

  &.is-open {
    border-color: var(--color-accent-muted);
    box-shadow: var(--shadow-md);
  }

  & .c-contact-form__section-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition-fast);

    &:hover {
      background: var(--color-surface-warm);
    }
  }

  & .c-contact-form__section-num {
    width: 28px;
    height: 28px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  &:not(.is-open) .c-contact-form__section-num {
    background: var(--color-border);
    color: var(--color-text-muted);
  }

  & .c-contact-form__section-header span:nth-child(2) {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
  }

  & .c-contact-form__section-header i {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    transition: transform var(--transition-base);
  }

  &.is-open .c-contact-form__section-header i {
    transform: rotate(180deg);
  }

  & .c-contact-form__section-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 var(--space-lg);
  }

  &.is-open .c-contact-form__section-body {
    max-height: 600px;
    padding: 0 var(--space-lg) var(--space-md);
  }
}

.c-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-md);

  & label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
  }

  & input, & textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--color-bg);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;

    &:focus {
      border-color: var(--color-accent);
      box-shadow: 0 0 0 3px rgba(160,82,45,0.12);
    }

    &::placeholder {
      color: var(--color-accent-muted);
    }
  }

  & textarea {
    resize: vertical;
    min-height: 120px;
  }
}

.c-contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-top: 0.5rem;

  & input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--color-accent);
    margin-top: 2px;
    cursor: pointer;
  }

  & label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    cursor: pointer;

    & a {
      color: var(--color-accent);
      text-decoration: underline;
    }
  }
}

.c-contact-form__submit {
  align-self: flex-start;
  margin-top: var(--space-sm);
}

.s-map {
  background: var(--color-bg-alt);
  padding: var(--space-3xl) 0;

  & .s-map__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-lg);

    & h2 { margin-bottom: var(--space-xl); }
  }

  & .s-map__embed {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);

    & iframe {
      display: block;
    }
  }
}

.s-thanks {
  flex: 1;

  & .s-thanks__hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 60%, var(--color-accent-light) 100%);
    padding: calc(var(--nav-height) + var(--space-3xl)) var(--space-lg) var(--space-3xl);
    text-align: center;
  }

  & .s-thanks__hero-inner {
    max-width: 600px;
    margin: 0 auto;
  }

  & .s-thanks__icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto var(--space-lg);
    border: 2px solid rgba(255,255,255,0.4);
  }

  & .s-thanks__hero h1 {
    color: white;
    margin-bottom: var(--space-md);
  }

  & .s-thanks__hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin: 0;
  }

  & .s-thanks__body {
    background: var(--color-surface);
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
  }

  & .s-thanks__body-inner {
    max-width: 600px;
    margin: 0 auto;

    & h2 { margin-bottom: var(--space-md); }
    & p { color: var(--color-text-muted); margin-bottom: var(--space-md); }
  }

  & .s-thanks__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-lg);
    flex-wrap: wrap;
  }
}

.s-legal {
  padding-top: var(--nav-height);
  flex: 1;

  & .s-legal__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg) var(--space-3xl);
  }

  & .s-legal__header {
    border-bottom: 2px solid var(--color-border);
    padding-bottom: var(--space-xl);
    margin-bottom: var(--space-xl);

    & h1 { margin-bottom: var(--space-md); }
  }

  & .s-legal__meta {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin: 0;
  }

  & .s-legal__body {
    & > p {
      color: var(--color-text-muted);
      margin-bottom: var(--space-lg);
    }
  }

  & .s-legal__section {
    margin-bottom: var(--space-xl);

    & h2 {
      font-size: 1.2rem;
      margin-bottom: var(--space-md);
      color: var(--color-primary);
    }

    & h3 {
      font-size: 1rem;
      margin-bottom: var(--space-sm);
      margin-top: var(--space-md);
    }

    & p {
      color: var(--color-text-muted);
      margin-bottom: var(--space-sm);
    }

    & ul {
      list-style: disc;
      padding-left: var(--space-lg);
      margin-bottom: var(--space-md);

      & li {
        color: var(--color-text-muted);
        margin-bottom: 0.4rem;
        font-size: 0.95rem;
      }
    }
  }
}

.c-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
  font-size: 0.88rem;

  & th, & td {
    padding: 0.7rem 1rem;
    border: 1px solid var(--color-border);
    text-align: left;
    vertical-align: top;
  }

  & th {
    background: var(--color-bg-alt);
    font-weight: 600;
    color: var(--color-text);
  }

  & td {
    color: var(--color-text-muted);
  }

  & tbody tr:nth-child(even) td {
    background: var(--color-surface);
  }

  &.c-legal-table--wide {
    font-size: 0.82rem;
  }
}

.c-legal-dl {
  & dt {
    font-weight: 600;
    color: var(--color-text);
    margin-top: var(--space-sm);
    font-size: 0.95rem;
  }

  & dd {
    color: var(--color-text-muted);
    padding-left: var(--space-md);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    border-left: 2px solid var(--color-border);
  }
}

.c-cookie-consent {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  width: 360px;
  max-width: calc(100vw - 2 * var(--space-lg));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
  overflow: hidden;

  &.is-visible {
    transform: translateY(0);
    opacity: 1;
  }

  &.u-hidden {
    display: none;
  }

  & .c-cookie-consent__header {
    padding: var(--space-md) var(--space-md) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);

    & i {
      color: var(--color-accent);
      font-size: 1.1rem;
      margin-top: 2px;
      flex-shrink: 0;
    }
  }

  & .c-cookie-consent__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.3rem;
    display: block;
  }

  & .c-cookie-consent__text {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    padding: 0 var(--space-md);
    margin: 0.5rem 0 0;

    & a {
      color: var(--color-accent);
      text-decoration: underline;
    }
  }

  & .c-cookie-consent__expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 var(--space-md);

    &.is-open {
      max-height: 300px;
    }
  }

  & .c-cookie-consent__category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 0.82rem;

    & span {
      color: var(--color-text-muted);
    }

    & input[type="checkbox"] {
      accent-color: var(--color-accent);
    }

    &:last-child { border-bottom: none; }
  }

  & .c-cookie-consent__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: var(--space-sm) var(--space-md) var(--space-md);
  }

  & .c-cookie-consent__btn {
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);

    &--accept {
      background: var(--color-primary);
      color: white;
      border-color: var(--color-primary);

      &:hover { background: var(--color-primary-hover); }
    }

    &--reject {
      background: transparent;
      color: var(--color-text-muted);
      border-color: var(--color-border);

      &:hover {
        background: var(--color-bg-alt);
        color: var(--color-text);
      }
    }

    &--customize {
      background: transparent;
      color: var(--color-accent);
      border-color: transparent;
      font-size: 0.8rem;
      padding: 0.4rem;

      &:hover {
        text-decoration: underline;
      }
    }
  }
}

@media (max-width: 1024px) {
  .c-nav__links { display: none; }
  .c-nav__hamburger { display: flex; }

  .s-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: start;
    padding-top: var(--space-xl);
  }

  .s-hero__cta-col {
    align-self: auto;
    padding-bottom: var(--space-lg);
  }

  .s-hero__desc { max-width: 100%; }

  .s-intro__inner,
  .s-why__inner,
  .s-exp-intro__inner,
  .s-eredi-intro__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .s-intro__image { order: -1; }

  .s-timeline__entry {
    grid-template-columns: 1fr 32px;

    &.s-timeline__entry--left {
      & .s-timeline__card { grid-column: 1; text-align: left; }
      & .s-timeline__dot { grid-column: 2; }
    }

    &.s-timeline__entry--right {
      & .s-timeline__dot { grid-column: 2; }
      & .s-timeline__card { grid-column: 1; grid-row: 1; }
    }
  }

  .s-timeline__line { left: auto; right: 16px; }

  .c-accordion-item__body > p,
  .c-accordion-item__body .c-accordion-item__img {
    padding-left: var(--space-lg);
    margin-left: 0;
    width: calc(100% - var(--space-lg) * 2);
  }

  .s-exp-values__grid { grid-template-columns: repeat(2, 1fr); }
  .s-services-extra__grid { grid-template-columns: repeat(2, 1fr); }

  .c-service-block {
    grid-template-columns: 1fr;

    &.c-service-block--reverse .c-service-block__visual { order: 0; }
    &.c-service-block--reverse .c-service-block__content { order: 0; }
  }

  .c-footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }

  .s-contact-main__inner { grid-template-columns: 1fr; }

  .s-cta-band__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }
}

@media (max-width: 640px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 6rem;
  }

  .s-hero__title { font-size: clamp(2rem, 8vw, 2.8rem); }

  .s-hero__ctas { flex-direction: column; }

  .s-exp-values__grid { grid-template-columns: 1fr; }
  .s-services-extra__grid { grid-template-columns: 1fr 1fr; }

  .s-timeline__entry {
    grid-template-columns: 1fr;

    &.s-timeline__entry--left .s-timeline__dot,
    &.s-timeline__entry--right .s-timeline__dot {
      display: none;
    }

    &.s-timeline__entry--left .s-timeline__card,
    &.s-timeline__entry--right .s-timeline__card {
      grid-column: 1;
      grid-row: auto;
      text-align: left;
    }
  }

  .s-timeline__line { display: none; }

  .c-footer__inner { grid-template-columns: 1fr; gap: var(--space-lg); }

  .s-cta-band__actions { flex-direction: column; width: 100%; }

  .s-thanks__actions { flex-direction: column; align-items: center; }

  .c-cookie-consent { left: var(--space-sm); right: var(--space-sm); width: auto; }

  .s-services-extra__grid { grid-template-columns: 1fr; }
}