:root {
    --green: #2d3e1f;
    --green-dark: #243318;
    --cream: #f8f0e6;
    --cream-light: #fff9f3;
    --white: #ffffff;
    --shadow: 4px 4px 0 var(--green);
    --shadow-lg: 5px 5px 0 var(--green);
    --border: 2px solid var(--green);
    --pill-radius: 999px;
    --green-section-radius: clamp(1rem, 3vw, 1.25rem);
    --font: "DM Sans", system-ui, -apple-system, sans-serif;
    --page-padding: clamp(1rem, 4vw, 2.5rem);
    --content-max: min(94vw, 860px);
    --text-max: min(90vw, 700px);
    --nav-height: clamp(3.25rem, 9vw, 4.25rem);
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font);
    background: var(--cream);
    color: var(--green);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  
  /* ── Sticky header ── */
  
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: clamp(0.65rem, 2vw, 1rem) var(--page-padding);
    background: transparent;
  }
  
  .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(0.6rem, 1.8vw, 0.85rem) clamp(1.1rem, 3.5vw, 1.75rem);
    border-radius: 999px;
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    background: var(--cream-light);
    border: var(--border);
    box-shadow: var(--shadow-lg);
  }
  
  .suits {
    display: flex;
    gap: clamp(0.35rem, 1.4vw, 0.65rem);
    font-size: clamp(1.35rem, 4.5vw, 1.85rem);
    line-height: 1;
  }
  
  .lang-switcher {
    display: flex;
    align-items: center;
    gap: clamp(0.3rem, 1.2vw, 0.5rem);
  }
  
  .lang-btn {
    background: none;
    border: none;
    font-family: var(--font);
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
    color: var(--green);
    cursor: pointer;
    padding: 0.2rem 0.35rem;
    letter-spacing: 0.02em;
    transition: opacity 0.15s;
  }
  
  .lang-btn:hover {
    opacity: 0.65;
  }
  
  .lang-btn.active {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  
  .lang-sep {
    font-weight: 700;
    color: var(--green);
    font-size: clamp(0.95rem, 2.8vw, 1.1rem);
    user-select: none;
  }
  
  /* ── Hero ── */
  
  .hero {
    background: var(--green);
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding-top: calc(var(--nav-height) + clamp(0.5rem, 2vw, 1rem));
    border-bottom-left-radius: var(--green-section-radius);
    border-bottom-right-radius: var(--green-section-radius);
  }
  
  .hero-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: min(96vw, 1040px);
    margin: 0 auto;
    padding: 0 var(--page-padding) clamp(1.5rem, 4vw, 2.5rem);
  }
  
  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(1.5rem, 6vw, 4rem) clamp(0.5rem, 3vw, 2rem);
    gap: clamp(1.25rem, 4.5vw, 2.25rem);
  }
  
  .suit-badge {
    display: flex;
    gap: clamp(0.5rem, 1.8vw, 0.9rem);
    background: var(--cream-light);
    border-radius: clamp(10px, 2vw, 16px);
    padding: clamp(0.65rem, 2.2vw, 1rem) clamp(1rem, 3.5vw, 1.75rem);
    font-size: clamp(1.45rem, 5.5vw, 2.1rem);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
  }
  
  .hero-title {
    font-size: clamp(2.1rem, 8.5vw, 4rem);
    font-weight: 700;
    color: var(--cream-light);
    letter-spacing: 0.04em;
    line-height: 1.1;
    max-width: 18ch;
  }
  
  .hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.75rem);
    font-weight: 400;
    color: var(--cream-light);
    letter-spacing: 0.03em;
  }
  
  .hero-chevron {
    display: flex;
    justify-content: center;
    color: var(--cream-light);
    padding-bottom: clamp(0.5rem, 2vw, 1rem);
  }
  
  .hero-chevron svg {
    width: clamp(28px, 7vw, 42px);
    height: auto;
    animation: bounce 2s ease-in-out infinite;
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }
  
  /* ── Content sections ── */
  
  .content-section {
    background: var(--cream);
    padding: clamp(2.75rem, 8vw, 5rem) var(--page-padding);
    scroll-margin-top: calc(var(--nav-height) + 1rem);
  }
  
  .content-section--contact {
    padding-bottom: clamp(3rem, 10vw, 6rem);
  }
  
  .section-body {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    text-align: center;
  }
  
  .section-label {
    display: inline-block;
    background: var(--cream);
    border: var(--border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--pill-radius);
    padding: clamp(0.6rem, 2.2vw, 0.85rem) clamp(1.75rem, 6.5vw, 3.25rem);
    font-size: clamp(1.3rem, 4.5vw, 1.85rem);
    font-weight: 700;
    margin-bottom: clamp(1.5rem, 4.5vw, 2.5rem);
  }
  
  .section-text {
    font-size: clamp(1.15rem, 3.8vw, 1.45rem);
    max-width: var(--text-max);
    margin: 0 auto;
    line-height: 1.65;
  }
  
  .section-text--follow {
    margin-top: clamp(1rem, 3.5vw, 1.75rem);
  }
  
  /* ── Phone numbers ── */
  
  .phone-list {
    display: flex;
    flex-direction: column;
    gap: clamp(0.15rem, 0.6vw, 0.4rem);
    margin-top: clamp(0.35rem, 1.5vw, 0.85rem);
  }
  
  .phone-link {
    color: var(--green);
    text-decoration: none;
    font-size: clamp(1.15rem, 3.8vw, 1.45rem);
    font-weight: 500;
    transition: opacity 0.15s;
  }
  
  .phone-link:hover {
    opacity: 0.65;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  
  /* ── Footer ── */
  
  .site-footer {
    background: var(--green);
    border-top-left-radius: var(--green-section-radius);
    border-top-right-radius: var(--green-section-radius);
    padding: clamp(1.1rem, 3.5vw, 1.5rem) var(--page-padding);
    text-align: center;
  }
  
  .footer-link {
    color: var(--cream-light);
    text-decoration: none;
    font-size: clamp(1.05rem, 3.2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: opacity 0.15s;
  }
  
  .footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  
  /* ── Mobile hero ── */
  
  @media (max-width: 767px) {
    :root {
      --nav-height: 2.85rem;
    }
  
    .site-header {
      padding: 0.4rem var(--page-padding);
    }
  
    .nav-bar {
      padding: 0.45rem 0.9rem;
    }
  
    .hero {
      min-height: auto;
      padding-top: calc(var(--nav-height) + 0.55rem);
    }
  
    .hero-inner {
      padding-bottom: 1rem;
    }
  
    .hero-content {
      flex: 0 0 auto;
      justify-content: flex-start;
      padding: 0.85rem 0.5rem 1.25rem;
      gap: 1rem;
    }
  
    .hero-chevron {
      padding-bottom: 0.85rem;
    }
  }
  
  /* ── Large screens ── */
  
  @media (min-width: 900px) {
    :root {
      --content-max: 900px;
      --text-max: 740px;
    }
  
    .hero-title {
      max-width: none;
    }
  }
  
  @media (min-width: 1200px) {
    :root {
      --content-max: 960px;
      --text-max: 780px;
    }
  }
  