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

@layer reset, tokens, layout, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
  body { min-height: 100vh; display: flex; flex-direction: column; }
  img, video { max-width: 100%; display: block; }
  ul { list-style: none; }
  a { text-decoration: none; color: inherit; }
  button { cursor: pointer; border: none; background: none; font: inherit; }
  input, textarea, select { font: inherit; }
  address { font-style: normal; }
}

@layer tokens {
  :root {
    --clr-bg: #F7F4EF;
    --clr-bg-alt: #EDE8DF;
    --clr-dark: #1A1208;
    --clr-dark-2: #2C1F0E;
    --clr-accent: #8B3A2A;
    --clr-accent-hover: #7A3024;
    --clr-gold: #C4A265;
    --clr-gold-light: #D4B882;
    --clr-muted: #6B5B4E;
    --clr-muted-light: #9A8A7E;
    --clr-border: #DDD5C8;
    --clr-white: #FDFAF6;
    --clr-text: #2C1F0E;
    --clr-text-light: #5C4A3A;

    --ff-head: 'DM Serif Display', Georgia, serif;
    --ff-body: 'DM Sans', system-ui, sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: clamp(2rem, 4vw, 3rem);
    --fs-4xl: clamp(2.5rem, 5vw, 4rem);
    --fs-hero: clamp(3rem, 7vw, 5.5rem);

    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;
    --sp-32: 8rem;

    --rad-sm: 4px;
    --rad-md: 8px;
    --rad-lg: 16px;
    --rad-xl: 24px;
    --rad-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(26,18,8,0.06), 0 1px 2px rgba(26,18,8,0.04);
    --shadow-md: 0 4px 12px rgba(26,18,8,0.08), 0 2px 4px rgba(26,18,8,0.05);
    --shadow-lg: 0 8px 24px rgba(26,18,8,0.10), 0 4px 8px rgba(26,18,8,0.06);
    --shadow-xl: 0 16px 48px rgba(26,18,8,0.12), 0 8px 16px rgba(26,18,8,0.07);
    --shadow-accent: 0 4px 16px rgba(139,58,42,0.25), 0 2px 4px rgba(139,58,42,0.15);

    --transition: 0.25s ease;
    --transition-slow: 0.4s ease;

    --nav-h: 72px;
  }
}

@layer layout {
  body {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.6;
  }

  main { flex: 1; }

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-6);
  }

  .sec {
    padding: var(--sp-24) 0;
  }

  .full-width-sec {
    width: 100%;
  }

  .alt-bg {
    background-color: var(--clr-bg-alt);
  }
}

@layer components {

  
  :focus-visible {
    outline: 2px solid var(--clr-accent);
    outline-offset: 3px;
    border-radius: var(--rad-sm);
  }

  
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-8);
    background: var(--clr-accent);
    color: var(--clr-white);
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--rad-full);
    border: 2px solid var(--clr-accent);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    box-shadow: var(--shadow-accent);
    white-space: nowrap;
  }
  .btn-primary:hover {
    background: var(--clr-accent-hover);
    border-color: var(--clr-accent-hover);
    box-shadow: 0 6px 20px rgba(139,58,42,0.35);
    transform: translateY(-1px);
  }
  .btn-primary.btn-lg {
    padding: var(--sp-4) var(--sp-10);
    font-size: var(--fs-base);
  }
  .btn-primary.btn-full {
    width: 100%;
    justify-content: center;
  }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-8);
    background: transparent;
    color: var(--clr-accent);
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--rad-full);
    border: 2px solid var(--clr-accent);
    transition: background var(--transition), color var(--transition), transform var(--transition);
  }
  .btn-outline:hover {
    background: var(--clr-accent);
    color: var(--clr-white);
    transform: translateY(-1px);
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-8);
    background: rgba(253,250,246,0.15);
    color: var(--clr-white);
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--rad-full);
    border: 2px solid rgba(253,250,246,0.5);
    backdrop-filter: blur(4px);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
  }
  .btn-ghost:hover {
    background: rgba(253,250,246,0.25);
    border-color: var(--clr-white);
    transform: translateY(-1px);
  }

  .btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-8);
    background: transparent;
    color: var(--clr-white);
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--rad-full);
    border: 2px solid rgba(253,250,246,0.6);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
  }
  .btn-ghost-light:hover {
    background: rgba(253,250,246,0.15);
    border-color: var(--clr-white);
    transform: translateY(-1px);
  }

  
  .sec-label {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: var(--sp-4);
  }
  .sec-label.light { color: var(--clr-gold-light); }
  .sec-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    flex-shrink: 0;
  }

  .sec-title {
    font-family: var(--ff-head);
    font-size: var(--fs-3xl);
    font-weight: 400;
    line-height: 1.15;
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-6);
  }
  .sec-title.light { color: var(--clr-white); }

  .sec-head {
    margin-bottom: var(--sp-12);
  }
  .sec-head.centered {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--sp-12);
  }

  .sec-sub {
    font-size: var(--fs-md);
    color: var(--clr-text-light);
    line-height: 1.7;
    max-width: 600px;
  }
  .sec-sub.light-sub { color: rgba(253,250,246,0.75); max-width: 680px; margin: 0 auto; }

  .eyebrow-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-gold);
    margin-right: var(--sp-2);
  }

  
  .hdr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--clr-dark);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 20px rgba(26,18,8,0.3);
  }
  .hdr.hdr-visible,
  .hdr.is-visible {
    transform: translateY(0);
  }
  .hdr-inner {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
    height: var(--nav-h);
    padding: 0 var(--sp-6);
    max-width: 1280px;
    margin: 0 auto;
  }
  .hdr-logo { flex-shrink: 0; }
  .hdr-logo-img { height: 36px; width: auto; }
  .hdr-nav {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
    margin-left: auto;
  }
  .hdr-link {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: rgba(253,250,246,0.75);
    padding: var(--sp-2) var(--sp-3);
    border-radius: var(--rad-md);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
  }
  .hdr-link:hover,
  .hdr-link.active {
    color: var(--clr-white);
    background: rgba(253,250,246,0.08);
  }
  .hdr-cta {
    margin-left: var(--sp-4);
    flex-shrink: 0;
  }
  .hdr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--sp-2);
    margin-left: auto;
  }
  .hdr-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-white);
    border-radius: var(--rad-full);
    transition: transform var(--transition), opacity var(--transition);
  }

  
  .mob-menu {
    position: fixed;
    inset: 0;
    z-index: 950;
    background: linear-gradient(135deg, var(--clr-dark) 0%, #2C1A08 60%, var(--clr-accent) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .mob-menu.is-open {
    opacity: 1;
    visibility: visible;
  }
  .mob-close {
    position: absolute;
    top: var(--sp-6);
    right: var(--sp-6);
    color: var(--clr-white);
    font-size: var(--fs-xl);
    padding: var(--sp-3);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rad-md);
    transition: background var(--transition);
  }
  .mob-close:hover { background: rgba(253,250,246,0.1); }
  .mob-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-4);
    text-align: center;
  }
  .mob-link {
    font-family: var(--ff-head);
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: rgba(253,250,246,0.85);
    transition: color var(--transition);
    padding: var(--sp-2) var(--sp-4);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .mob-link:hover { color: var(--clr-white); }
  .mob-cta {
    margin-top: var(--sp-6);
  }

  
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(26,18,8,0.82) 0%,
      rgba(44,31,14,0.65) 50%,
      rgba(139,58,42,0.35) 100%
    );
  }
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--sp-32) var(--sp-6) var(--sp-24);
    width: 100%;
  }
  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-gold-light);
    margin-bottom: var(--sp-6);
  }
  .hero-title {
    font-family: var(--ff-head);
    font-size: var(--fs-hero);
    font-weight: 400;
    line-height: 1.05;
    color: var(--clr-white);
    margin-bottom: var(--sp-6);
    max-width: 780px;
    text-shadow: 0 2px 20px rgba(26,18,8,0.4);
  }
  .hero-sub {
    font-size: var(--fs-md);
    color: rgba(253,250,246,0.82);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: var(--sp-10);
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    margin-bottom: var(--sp-12);
  }
  .hero-zones {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-3);
  }
  .zone-tag {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(253,250,246,0.65);
    padding: var(--sp-1) var(--sp-3);
    border: 1px solid rgba(253,250,246,0.2);
    border-radius: var(--rad-full);
    backdrop-filter: blur(4px);
  }
  .zone-sep {
    color: rgba(253,250,246,0.3);
  }
  .hero-scroll-hint {
    position: absolute;
    bottom: var(--sp-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    color: rgba(253,250,246,0.5);
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(253,250,246,0.5));
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }

  
  .page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--sp-16);
    overflow: hidden;
  }
  .page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .page-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,18,8,0.75) 0%, rgba(44,31,14,0.55) 100%);
  }
  .page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding-top: calc(var(--nav-h) + var(--sp-16));
  }
  .page-hero-title {
    font-family: var(--ff-head);
    font-size: var(--fs-4xl);
    font-weight: 400;
    line-height: 1.1;
    color: var(--clr-white);
    margin-bottom: var(--sp-4);
  }
  .page-hero-sub {
    font-size: var(--fs-md);
    color: rgba(253,250,246,0.8);
    line-height: 1.7;
    max-width: 560px;
  }
  .page-hero-plain .page-hero-overlay { display: none; }
  .page-hero-plain { padding-top: calc(var(--nav-h) + var(--sp-16)); }
  .page-hero-dark { color: var(--clr-dark-2); }
  .page-hero-sub-dark { color: var(--clr-text-light); }
  .page-hero-plain { background: transparent; }
  .page-hero.inner-hero.page-hero-short { min-height: 320px; }

  
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
  }
  .intro-text p {
    color: var(--clr-text-light);
    line-height: 1.8;
    margin-bottom: var(--sp-4);
  }
  .intro-lead {
    font-size: var(--fs-lg);
    color: var(--clr-text) !important;
    font-weight: 500;
    margin-bottom: var(--sp-6) !important;
  }
  .intro-img-wrap {
    position: relative;
    border-radius: var(--rad-xl);
    overflow: visible;
  }
  .intro-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--rad-xl);
    box-shadow: var(--shadow-xl);
  }
  .intro-badge {
    position: absolute;
    bottom: -var(--sp-6);
    left: -var(--sp-6);
    bottom: -24px;
    left: -24px;
    background: var(--clr-dark);
    color: var(--clr-white);
    padding: var(--sp-4) var(--sp-6);
    border-radius: var(--rad-lg);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
    font-weight: 500;
    box-shadow: var(--shadow-lg);
  }
  .intro-badge i { color: var(--clr-gold); font-size: var(--fs-lg); }

  
  .pillars-bg {
    background: linear-gradient(135deg, var(--clr-dark) 0%, #2C1A08 60%, #3D1F12 100%);
    padding: var(--sp-24) 0;
  }
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
  }
  .pillar-crd {
    background: rgba(253,250,246,0.05);
    border: 1px solid rgba(253,250,246,0.1);
    border-radius: var(--rad-lg);
    padding: var(--sp-8) var(--sp-6);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
  }
  .pillar-crd:hover {
    background: rgba(253,250,246,0.08);
    border-color: rgba(196,162,101,0.3);
    transform: translateY(-4px);
  }
  .pillar-crd .crd-ico {
    width: 48px;
    height: 48px;
    background: rgba(139,58,42,0.3);
    border-radius: var(--rad-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-gold);
    font-size: var(--fs-lg);
    margin-bottom: var(--sp-4);
    transition: background var(--transition);
  }
  .pillar-crd:hover .crd-ico { background: rgba(139,58,42,0.5); }
  .pillar-crd .crd-title {
    font-family: var(--ff-head);
    font-size: var(--fs-lg);
    color: var(--clr-white);
    margin-bottom: var(--sp-3);
  }
  .pillar-crd .crd-txt {
    font-size: var(--fs-sm);
    color: rgba(253,250,246,0.65);
    line-height: 1.7;
  }

  
  .zones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
  }
  .zone-crd {
    border-radius: var(--rad-lg);
    overflow: hidden;
    background: var(--clr-white);
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--transition), transform var(--transition);
  }
  .zone-crd:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
  }
  .zone-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  .zone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .zone-crd:hover .zone-img { transform: scale(1.05); }
  .zone-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,18,8,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--sp-4);
  }
  .zone-region {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(253,250,246,0.8);
  }
  .zone-body {
    padding: var(--sp-6);
  }
  .zone-name {
    font-family: var(--ff-head);
    font-size: var(--fs-xl);
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-3);
  }
  .zone-desc {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    line-height: 1.7;
    margin-bottom: var(--sp-4);
  }
  .zone-link {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--clr-accent);
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    transition: gap var(--transition), color var(--transition);
  }
  .zone-link:hover { gap: var(--sp-3); color: var(--clr-accent-hover); }

  
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
  }
  .services-text p {
    color: var(--clr-text-light);
    line-height: 1.8;
    margin-bottom: var(--sp-4);
  }
  .services-list {
    margin: var(--sp-8) 0;
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
  }
  .svc-item {
    display: flex;
    gap: var(--sp-4);
    padding: var(--sp-4);
    border-radius: var(--rad-md);
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    transition: border-color var(--transition), box-shadow var(--transition);
  }
  .svc-item:hover {
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-sm);
  }
  .svc-ico {
    width: 40px;
    height: 40px;
    background: var(--clr-accent);
    border-radius: var(--rad-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    flex-shrink: 0;
  }
  .svc-body h4 {
    font-weight: 700;
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-1);
  }
  .svc-body p {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    margin-bottom: 0 !important;
    line-height: 1.6;
  }
  .services-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--rad-xl);
    box-shadow: var(--shadow-xl);
  }

  
  .process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: var(--sp-12);
    flex-wrap: wrap;
  }
  .proc-step {
    flex: 1;
    min-width: 200px;
    padding: var(--sp-6);
    background: var(--clr-white);
    border-radius: var(--rad-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--clr-border);
    transition: box-shadow var(--transition), transform var(--transition);
  }
  .proc-step:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
  }
  .proc-num {
    font-family: var(--ff-head);
    font-size: var(--fs-3xl);
    color: var(--clr-accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--sp-4);
  }
  .proc-body h3 {
    font-family: var(--ff-head);
    font-size: var(--fs-lg);
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-2);
  }
  .proc-body p {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    line-height: 1.7;
  }
  .proc-connector {
    width: 40px;
    height: 2px;
    background: var(--clr-border);
    align-self: center;
    flex-shrink: 0;
    position: relative;
    top: -20px;
  }
  .process-cta { text-align: center; }

  
  .cta-bg {
    background: linear-gradient(135deg, var(--clr-accent) 0%, #6B2518 60%, var(--clr-dark) 100%);
  }
  .cta-block {
    text-align: center;
    padding: var(--sp-8) 0;
    max-width: 680px;
    margin: 0 auto;
  }
  .cta-icon {
    font-size: 3rem;
    color: rgba(253,250,246,0.4);
    margin-bottom: var(--sp-6);
  }
  .cta-title {
    font-family: var(--ff-head);
    font-size: var(--fs-3xl);
    color: var(--clr-white);
    margin-bottom: var(--sp-4);
    line-height: 1.2;
  }
  .cta-sub {
    font-size: var(--fs-md);
    color: rgba(253,250,246,0.8);
    line-height: 1.7;
    margin-bottom: var(--sp-8);
  }
  .cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-4);
  }
  .cta-bg .btn-primary {
    background: var(--clr-white);
    color: var(--clr-accent);
    border-color: var(--clr-white);
    box-shadow: 0 4px 16px rgba(253,250,246,0.2);
  }
  .cta-bg .btn-primary:hover {
    background: var(--clr-bg);
    border-color: var(--clr-bg);
  }

  
  .territory-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
  }
  .terr-img-stack {
    position: relative;
  }
  .terr-img-main {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--rad-xl);
    box-shadow: var(--shadow-xl);
  }
  .terr-img-small {
    position: absolute;
    bottom: -var(--sp-8);
    right: -var(--sp-8);
    bottom: -32px;
    right: -32px;
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--rad-lg);
    border: 4px solid var(--clr-bg);
    box-shadow: var(--shadow-lg);
  }
  .terr-text p {
    color: var(--clr-text-light);
    line-height: 1.8;
    margin-bottom: var(--sp-4);
  }
  .terr-features {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-top: var(--sp-6);
  }
  .terr-feat {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
  }
  .terr-feat i { color: var(--clr-accent); width: 16px; }

  
  .sidebar-cta {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 800;
  }
  .sidebar-btn {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    background: var(--clr-accent);
    color: var(--clr-white);
    padding: var(--sp-4) var(--sp-4);
    border-radius: var(--rad-lg) 0 0 var(--rad-lg);
    box-shadow: var(--shadow-lg);
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
    writing-mode: initial;
    min-height: 44px;
  }
  .sidebar-btn:hover {
    background: var(--clr-accent-hover);
    padding-left: var(--sp-6);
    box-shadow: var(--shadow-xl);
  }
  .sidebar-btn i { font-size: var(--fs-md); flex-shrink: 0; }
  .sidebar-label {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    max-width: 0;
    overflow: hidden;
    transition: max-width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    white-space: nowrap;
  }
  .sidebar-btn:hover .sidebar-label {
    max-width: 160px;
    opacity: 1;
  }

  
  .ftr {
    background: var(--clr-dark);
    color: rgba(253,250,246,0.7);
    margin-top: auto;
  }
  .ftr-main {
    padding: var(--sp-16) 0;
    border-bottom: 1px solid rgba(253,250,246,0.08);
  }
  .ftr-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--sp-10);
  }
  .ftr-logo-img { height: 32px; width: auto; margin-bottom: var(--sp-4); }
  .ftr-tagline {
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: var(--sp-6);
    color: rgba(253,250,246,0.6);
    max-width: 280px;
  }
  .ftr-addr p {
    font-size: var(--fs-sm);
    display: flex;
    align-items: flex-start;
    gap: var(--sp-2);
    margin-bottom: var(--sp-2);
    color: rgba(253,250,246,0.6);
  }
  .ftr-addr i { color: var(--clr-gold); margin-top: 3px; flex-shrink: 0; }
  .ftr-addr a { color: rgba(253,250,246,0.6); transition: color var(--transition); }
  .ftr-addr a:hover { color: var(--clr-white); }
  .ftr-col-title {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253,250,246,0.4);
    margin-bottom: var(--sp-4);
  }
  .ftr-links { display: flex; flex-direction: column; gap: var(--sp-2); }
  .ftr-links a {
    font-size: var(--fs-sm);
    color: rgba(253,250,246,0.6);
    transition: color var(--transition);
    padding: var(--sp-1) 0;
  }
  .ftr-links a:hover { color: var(--clr-white); }
  .ftr-legal-info {
    margin-top: var(--sp-6);
    padding-top: var(--sp-4);
    border-top: 1px solid rgba(253,250,246,0.06);
  }
  .ftr-legal-info p {
    font-size: var(--fs-xs);
    color: rgba(253,250,246,0.35);
    margin-bottom: var(--sp-1);
  }
  .ftr-bottom {
    padding: var(--sp-4) 0;
  }
  .ftr-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
  }
  .ftr-copy {
    font-size: var(--fs-xs);
    color: rgba(253,250,246,0.35);
  }
  .ftr-bottom-links {
    display: flex;
    gap: var(--sp-6);
  }
  .ftr-bottom-links a {
    font-size: var(--fs-xs);
    color: rgba(253,250,246,0.35);
    transition: color var(--transition);
  }
  .ftr-bottom-links a:hover { color: rgba(253,250,246,0.7); }

  
  .method-intro {
    max-width: 720px;
    margin-bottom: var(--sp-16);
  }
  .method-lead {
    font-size: var(--fs-lg);
    color: var(--clr-text-light);
    line-height: 1.7;
    margin-top: var(--sp-4);
  }
  .method-steps {
    display: flex;
    flex-direction: column;
    gap: var(--sp-16);
  }
  .mstep {
    display: flex;
    gap: var(--sp-8);
    align-items: flex-start;
  }
  .mstep-num {
    font-family: var(--ff-head);
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--clr-accent);
    opacity: 0.15;
    line-height: 1;
    flex-shrink: 0;
    min-width: 80px;
  }
  .mstep-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--sp-8);
    align-items: start;
    flex: 1;
  }
  .mstep-text h3 {
    font-family: var(--ff-head);
    font-size: var(--fs-2xl);
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-4);
  }
  .mstep-text p {
    color: var(--clr-text-light);
    line-height: 1.8;
    margin-bottom: var(--sp-4);
  }
  .mstep-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-top: var(--sp-4);
  }
  .mstep-list li {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
  }
  .mstep-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-accent);
    flex-shrink: 0;
  }
  .mstep-badge {
    background: var(--clr-dark);
    color: var(--clr-white);
    padding: var(--sp-4) var(--sp-6);
    border-radius: var(--rad-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:
var(--sp-3);
    text-align: center;
    min-width: 140px;
    box-shadow: var(--shadow-md);
  }
  .mstep-badge i { color: var(--clr-gold); font-size: var(--fs-xl); }
  .mstep-badge span { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(253,250,246,0.7); }

  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
  }
  .val-crd {
    background: rgba(253,250,246,0.05);
    border: 1px solid rgba(253,250,246,0.1);
    border-radius: var(--rad-lg);
    padding: var(--sp-8) var(--sp-6);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
  }
  .val-crd:hover {
    background: rgba(253,250,246,0.08);
    border-color: rgba(196,162,101,0.3);
    transform: translateY(-4px);
  }
  .val-ico {
    font-size: var(--fs-2xl);
    color: var(--clr-gold);
    margin-bottom: var(--sp-4);
    display: block;
  }
  .val-crd h3 {
    font-family: var(--ff-head);
    font-size: var(--fs-lg);
    color: var(--clr-white);
    margin-bottom: var(--sp-3);
  }
  .val-crd p {
    font-size: var(--fs-sm);
    color: rgba(253,250,246,0.65);
    line-height: 1.7;
  }

  
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--sp-16);
    align-items: start;
  }
  .faq-intro p {
    color: var(--clr-text-light);
    line-height: 1.8;
    margin-bottom: var(--sp-6);
  }
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
  }
  .faq-item {
    border: 1px solid var(--clr-border);
    border-radius: var(--rad-md);
    overflow: hidden;
    background: var(--clr-white);
    transition: box-shadow var(--transition);
  }
  .faq-item:hover { box-shadow: var(--shadow-sm); }
  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    padding: var(--sp-4) var(--sp-6);
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--clr-dark-2);
    text-align: left;
    transition: background var(--transition), color var(--transition);
    min-height: 44px;
  }
  .faq-q:hover { background: var(--clr-bg-alt); }
  .faq-q[aria-expanded="true"] { color: var(--clr-accent); }
  .faq-ico {
    color: var(--clr-accent);
    flex-shrink: 0;
    transition: transform var(--transition);
    font-size: var(--fs-sm);
  }
  .faq-q[aria-expanded="true"] .faq-ico { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition);
  }
  .faq-a.is-open { max-height: 300px; }
  .faq-a p {
    padding: 0 var(--sp-6) var(--sp-4);
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    line-height: 1.8;
  }

  
  .svc-types-intro {
    max-width: 720px;
    margin-bottom: var(--sp-12);
  }
  .sec-sub-text {
    font-size: var(--fs-md);
    color: var(--clr-text-light);
    line-height: 1.7;
    margin-top: var(--sp-4);
  }
  .svc-type-block {
    background: var(--clr-white);
    border-radius: var(--rad-xl);
    padding: var(--sp-10);
    margin-bottom: var(--sp-8);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--clr-border);
    transition: box-shadow var(--transition);
  }
  .svc-type-block:hover { box-shadow: var(--shadow-lg); }
  .svc-type-header {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    margin-bottom: var(--sp-8);
    padding-bottom: var(--sp-6);
    border-bottom: 1px solid var(--clr-border);
  }
  .svc-type-ico {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--clr-accent), #6B2518);
    border-radius: var(--rad-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: var(--fs-xl);
    flex-shrink: 0;
    box-shadow: var(--shadow-accent);
  }
  .svc-type-title {
    font-family: var(--ff-head);
    font-size: var(--fs-2xl);
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-1);
  }
  .svc-type-sub {
    font-size: var(--fs-sm);
    color: var(--clr-muted-light);
  }
  .svc-type-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
    align-items: center;
  }
  .svc-type-body-rev {
    direction: rtl;
  }
  .svc-type-body-rev > * { direction: ltr; }
  .svc-type-text p {
    color: var(--clr-text-light);
    line-height: 1.8;
    margin-bottom: var(--sp-4);
  }
  .svc-features {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-top: var(--sp-4);
  }
  .svc-feat {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
  }
  .svc-feat i { color: var(--clr-accent); width: 14px; }
  .svc-type-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--rad-lg);
    box-shadow: var(--shadow-md);
  }
  .svc-placeholder-img {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--clr-dark) 0%, #2C1A08 100%);
    border-radius: var(--rad-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-4);
    color: rgba(253,250,246,0.3);
  }
  .svc-placeholder-img i { font-size: 3rem; }
  .svc-placeholder-img span { font-size: var(--fs-sm); font-weight: 500; letter-spacing: 0.06em; }

  
  .dest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
  }
  .dest-crd {
    background: rgba(253,250,246,0.05);
    border: 1px solid rgba(253,250,246,0.1);
    border-radius: var(--rad-lg);
    padding: var(--sp-8);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
  }
  .dest-crd:hover {
    background: rgba(253,250,246,0.08);
    border-color: rgba(196,162,101,0.3);
    transform: translateY(-3px);
  }
  .dest-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: var(--sp-4);
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid rgba(253,250,246,0.1);
  }
  .dest-head h3 {
    font-family: var(--ff-head);
    font-size: var(--fs-2xl);
    color: var(--clr-white);
  }
  .dest-region {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-gold);
  }
  .dest-crd p {
    font-size: var(--fs-sm);
    color: rgba(253,250,246,0.65);
    line-height: 1.7;
    margin-bottom: var(--sp-3);
  }
  .dest-wines {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-top: var(--sp-4);
  }
  .wine-tag {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-gold);
    padding: var(--sp-1) var(--sp-3);
    border: 1px solid rgba(196,162,101,0.3);
    border-radius: var(--rad-full);
  }

  
  .included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
  }
  .inc-item {
    padding: var(--sp-8) var(--sp-6);
    background: var(--clr-white);
    border-radius: var(--rad-lg);
    border: 1px solid var(--clr-border);
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  }
  .inc-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--clr-accent);
  }
  .inc-ico {
    font-size: var(--fs-2xl);
    color: var(--clr-accent);
    margin-bottom: var(--sp-4);
    display: block;
  }
  .inc-item h4 {
    font-family: var(--ff-head);
    font-size: var(--fs-lg);
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-2);
  }
  .inc-item p {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    line-height: 1.7;
  }

  
  .guar-intro {
    max-width: 720px;
    margin-bottom: var(--sp-12);
  }
  .guar-lead {
    font-size: var(--fs-lg);
    color: var(--clr-text-light);
    line-height: 1.7;
    margin-top: var(--sp-4);
  }
  .guar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
  }
  .guar-crd {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--rad-lg);
    padding: var(--sp-8) var(--sp-6);
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  }
  .guar-crd:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--clr-accent);
  }
  .guar-ico-wrap {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(139,58,42,0.12), rgba(139,58,42,0.06));
    border-radius: var(--rad-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-4);
    transition: background var(--transition);
  }
  .guar-crd:hover .guar-ico-wrap { background: linear-gradient(135deg, rgba(139,58,42,0.2), rgba(139,58,42,0.1)); }
  .guar-ico {
    font-size: var(--fs-xl);
    color: var(--clr-accent);
  }
  .guar-crd h3 {
    font-family: var(--ff-head);
    font-size: var(--fs-lg);
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-3);
  }
  .guar-crd p {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    line-height: 1.7;
  }

  
  .commit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
  }
  .commit-text p {
    color: var(--clr-text-light);
    line-height: 1.8;
    margin-bottom: var(--sp-6);
  }
  .commit-phases {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    margin-top: var(--sp-8);
  }
  .commit-phase {
    display: flex;
    gap: var(--sp-4);
    align-items: flex-start;
  }
  .commit-phase-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--clr-accent);
    flex-shrink: 0;
    margin-top: 6px;
    box-shadow: 0 0 0 4px rgba(139,58,42,0.15);
  }
  .commit-phase h4 {
    font-weight: 700;
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-1);
  }
  .commit-phase p {
    font-size: var(--fs-sm);
    margin-bottom: 0 !important;
  }
  .commit-quote {
    background: var(--clr-dark);
    border-radius: var(--rad-xl);
    padding: var(--sp-10);
    position: relative;
    box-shadow: var(--shadow-xl);
  }
  .commit-quote-ico {
    font-size: var(--fs-2xl);
    color: var(--clr-gold);
    opacity: 0.4;
    margin-bottom: var(--sp-4);
    display: block;
  }
  .commit-quote p {
    font-family: var(--ff-head);
    font-size: var(--fs-lg);
    color: rgba(253,250,246,0.85);
    line-height: 1.6;
    margin-bottom: var(--sp-6) !important;
  }
  .commit-quote-attr {
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-gold);
  }

  
  .legal-note-block {
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: var(--rad-lg);
    padding: var(--sp-8);
    max-width: 800px;
  }
  .legal-note-block h3 {
    font-family: var(--ff-head);
    font-size: var(--fs-xl);
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-4);
  }
  .legal-note-block p {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    line-height: 1.8;
    margin-bottom: var(--sp-3);
  }
  .legal-note-block a {
    color: var(--clr-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--sp-16);
    align-items: start;
  }
  .contact-info h2 { margin-bottom: var(--sp-4); }
  .contact-info > p {
    color: var(--clr-text-light);
    line-height: 1.8;
    margin-bottom: var(--sp-8);
  }
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    margin-bottom: var(--sp-8);
  }
  .contact-detail {
    display: flex;
    gap: var(--sp-4);
    align-items: flex-start;
  }
  .contact-detail-ico {
    width: 40px;
    height: 40px;
    background: rgba(139,58,42,0.1);
    border-radius: var(--rad-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    flex-shrink: 0;
  }
  .contact-detail strong {
    display: block;
    font-weight: 700;
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-1);
    font-size: var(--fs-sm);
  }
  .contact-detail p {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    line-height: 1.6;
    margin: 0;
  }
  .contact-detail a {
    color: var(--clr-accent);
    transition: color var(--transition);
  }
  .contact-detail a:hover { color: var(--clr-accent-hover); }
  .contact-zones h4 {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-3);
  }
  .contact-zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
  }
  .zone-tag-dark {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-accent);
    padding: var(--sp-1) var(--sp-3);
    border: 1px solid rgba(139,58,42,0.3);
    border-radius: var(--rad-full);
    background: rgba(139,58,42,0.06);
  }

  
  .contact-form-wrap {
    background: var(--clr-white);
    border-radius: var(--rad-xl);
    padding: var(--sp-10);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border);
  }
  .frm { display: flex; flex-direction: column; gap: var(--sp-4); }
  .frm-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }
  .frm-group { display: flex; flex-direction: column; gap: var(--sp-2); }
  .frm-label {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--clr-dark-2);
    letter-spacing: 0.02em;
  }
  .frm-input {
    padding: var(--sp-3) var(--sp-4);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--rad-md);
    background: var(--clr-bg);
    color: var(--clr-text);
    font-size: var(--fs-base);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    min-height: 44px;
  }
  .frm-input:hover { border-color: var(--clr-muted-light); }
  .frm-input:focus {
    outline: none;
    border-color: var(--clr-accent);
    background: var(--clr-white);
    box-shadow: 0 0 0 3px rgba(139,58,42,0.1);
  }
  .frm-input::placeholder { color: var(--clr-muted-light); }
  .frm-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B5B4E' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
  .frm-textarea { resize: vertical; min-height: 120px; }
  .frm-check-group { }
  .frm-check-label {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    cursor: pointer;
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    line-height: 1.6;
  }
  .frm-check { position: absolute; opacity: 0; width: 0; height: 0; }
  .frm-check-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--clr-border);
    border-radius: var(--rad-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), background var(--transition);
    margin-top: 2px;
  }
  .frm-check:checked + .frm-check-custom {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
  }
  .frm-check:checked + .frm-check-custom::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
  }
  .frm-check-label a { color: var(--clr-accent); text-decoration: underline; text-underline-offset: 2px; }
  .frm-note {
    font-size: var(--fs-xs);
    color: var(--clr-muted-light);
    line-height: 1.6;
    text-align: center;
  }
  .frm-submit { margin-top: var(--sp-2); }

  
  .map-wrap {
    width: 100%;
    overflow: hidden;
    border-top: 4px solid var(--clr-accent);
  }
  .map-wrap iframe { display: block; }

  
  .thanks-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-h) + var(--sp-16)) var(--sp-6) var(--sp-16);
    min-height: 70vh;
  }
  .thanks-container {
    text-align: center;
    max-width: 560px;
  }
  .envelope-wrap {
    margin-bottom: var(--sp-10);
    display: flex;
    justify-content: center;
  }
  .envelope {
    width: 120px;
    height: 90px;
    position: relative;
  }
  .envelope-body {
    width: 120px;
    height: 90px;
    background: var(--clr-bg-alt);
    border: 2px solid var(--clr-border);
    border-radius: var(--rad-md);
    position: relative;
    overflow: hidden;
  }
  .envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--clr-accent);
    clip-path: polygon(0 0, 100% 0, 50% 60%);
    transform-origin: top center;
    animation: flapOpen 0.6s ease 0.3s forwards;
    z-index: 2;
  }
  @keyframes flapOpen {
    0% { transform: rotateX(0deg); }
    100% { transform: rotateX(-160deg); }
  }
  .envelope-letter {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 80px;
    height: 70px;
    background: var(--clr-white);
    border-radius: var(--rad-sm) var(--rad-sm) 0 0;
    border: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: var(--sp-3);
    animation: letterRise 0.5s ease 0.9s forwards;
    z-index: 1;
  }
  @keyframes letterRise {
    0% { transform: translateX(-50%) translateY(100%); }
    100% { transform: translateX(-50%) translateY(-20px); }
  }
  .letter-lines span {
    display: block;
    height: 2px;
    background: var(--clr-border);
    border-radius: var(--rad-full);
    width: 48px;
    margin-bottom: 6px;
  }
  .letter-lines span:first-child { width: 36px; }
  .letter-lines span:last-child { width: 42px; }
  .thanks-title {
    font-family: var(--ff-head);
    font-size: var(--fs-3xl);
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-4);
    animation: fadeInUp 0.5s ease 1.4s both;
  }
  .thanks-sub {
    font-size: var(--fs-md);
    color: var(--clr-text-light);
    line-height: 1.7;
    margin-bottom: var(--sp-4);
    animation: fadeInUp 0.5s ease 1.6s both;
  }
  .thanks-note {
    font-size: var(--fs-sm);
    color: var(--clr-muted-light);
    margin-bottom: var(--sp-8);
    animation: fadeInUp 0.5s ease 1.8s both;
  }
  .thanks-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-4);
    animation: fadeInUp 0.5s ease 2s both;
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  
  .legal-main {
    padding-top: calc(var(--nav-h) + var(--sp-12));
    padding-bottom: var(--sp-24);
    flex: 1;
  }
  .legal-doc { max-width: 820px; }
  .legal-header {
    margin-bottom: var(--sp-12);
    padding-bottom: var(--sp-8);
    border-bottom: 2px solid var(--clr-border);
  }
  .legal-header h1 {
    font-family: var(--ff-head);
    font-size: var(--fs-3xl);
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-4);
    line-height: 1.2;
  }
  .legal-meta {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    line-height: 1.7;
    margin-bottom: var(--sp-2);
  }
  .legal-date {
    font-size: var(--fs-sm);
    color: var(--clr-muted-light);
    font-weight: 500;
  }
  .legal-body { }
  .legal-sec {
    margin-bottom: var(--sp-10);
    padding-bottom: var(--sp-8);
    border-bottom: 1px solid var(--clr-border);
  }
  .legal-sec:last-child { border-bottom: none; }
  .legal-sec h2 {
    font-family: var(--ff-head);
    font-size: var(--fs-xl);
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-4);
  }
  .legal-sec p {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    line-height: 1.9;
    margin-bottom: var(--sp-4);
  }
  .legal-sec p:last-child { margin-bottom: 0; }
  .legal-sec a {
    color: var(--clr-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  
  .cookie-link-wrap {
    position: fixed;
    bottom: var(--sp-4);
    left: var(--sp-4);
    z-index: 700;
  }
  .cookie-link {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    color: var(--clr-muted);
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--rad-full);
    padding: var(--sp-2) var(--sp-3);
    box-shadow: var(--shadow-sm);
    transition: color var(--transition), border-color var(--transition), box-shadow var(--transition);
    min-height: 32px;
  }
  .cookie-link:hover {
    color: var(--clr-accent);
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-md);
  }
  .cookie-link i { font-size: var(--fs-sm); }
  .cookie-link.pulse {
    animation: cookiePulse 2s ease 1s 3;
  }
  @keyframes cookiePulse {
    0%, 100% { box-shadow: var(--shadow-sm); }
    50% { box-shadow: 0 0 0 4px rgba(139,58,42,0.15), var(--shadow-md); }
  }

  .cookie-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(26,18,8,0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .cookie-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
  .cookie-modal {
    background: var(--clr-white);
    border-radius: var(--rad-xl);
    padding: var(--sp-8);
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
  }
  .cookie-modal-overlay.is-open .cookie-modal {
    transform: translateY(0) scale(1);
  }
  .cookie-modal-close {
    position: absolute;
    top: var(--sp-4);
    right: var(--sp-4);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rad-md);
    color: var(--clr-muted);
    transition: background var(--transition), color var(--transition);
    font-size: var(--fs-md);
  }
  .cookie-modal-close:hover { background: var(--clr-bg-alt); color: var(--clr-dark-2); }
  .cookie-modal-head {
    text-align: center;
    margin-bottom: var(--sp-6);
    padding-right: var(--sp-8);
  }
  .cookie-modal-icon {
    font-size: 2.5rem;
    color: var(--clr-accent);
    margin-bottom: var(--sp-3);
    display: block;
  }
  .cookie-modal-head h2 {
    font-family: var(--ff-head);
    font-size: var(--fs-xl);
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-2);
  }
  .cookie-modal-head p {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    line-height: 1.6;
  }
  .cookie-modal-body {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-bottom: var(--sp-6);
  }
  .cookie-cat {
    background: var(--clr-bg-alt);
    border-radius: var(--rad-md);
    padding: var(--sp-4);
    border: 1px solid var(--clr-border);
  }
  .cookie-cat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
  }
  .cookie-cat-info strong {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--clr-dark-2);
    margin-bottom: var(--sp-1);
  }
  .cookie-cat-info p {
    font-size: var(--fs-xs);
    color: var(--clr-text-light);
    line-height: 1.5;
    margin: 0;
  }
  .disabled-toggle .toggle-on {
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--clr-muted-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
  .cookie-toggle-label { cursor: pointer; flex-shrink: 0; }
  .cookie-chk { position: absolute; opacity: 0; width: 0; height: 0; }
  .cookie-toggle-slider {
    display: block;
    width: 44px;
    height: 24px;
    background: var(--clr-border);
    border-radius: var(--rad-full);
    position: relative;
    transition: background var(--transition);
  }
  .cookie-toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transition: transform var(--transition);
    box-shadow: var(--shadow-sm);
  }
  .cookie-chk:checked + .cookie-toggle-slider { background: var(--clr-accent); }
  .cookie-chk:checked + .cookie-toggle-slider::after { transform: translateX(20px); }
  .cookie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    margin-bottom: var(--sp-4);
  }
  .cookie-modal-actions .btn-primary,
  .cookie-modal-actions .btn-outline { flex: 1; justify-content: center; font-size: var(--fs-xs); padding: var(--sp-3) var(--sp-4); }
  .cookie-reject-btn { color: var(--clr-muted); border-color: var(--clr-border); }
  .cookie-reject-btn:hover { background: var(--clr-bg-alt); color: var(--clr-dark-2); border-color: var(--clr-border); }
  .cookie-modal-note {
    font-size: var(--fs-xs);
    color: var(--clr-muted-light);
    text-align: center;
    line-height: 1.6;
  }
  .cookie-modal-note a { color: var(--clr-accent); text-decoration: underline; text-underline-offset: 2px; }

  
  .inner-hero .page-hero-img { filter: brightness(0.85); }

}

@layer utilities {

  
  @media (max-width: 1100px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .zones-grid { grid-template-columns: repeat(2, 1fr); }
    .guar-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .ftr-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-8); }
  }

  @media (max-width: 900px) {
    .hdr-nav { display: none; }
    .hdr-cta { display: none; }
    .hdr-burger { display: flex; }
    .intro-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
    .intro-img { height: 360px; }
    .intro-badge { left: 0; bottom: -16px; }
    .services-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
    .services-img { height: 360px; }
    .territory-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
    .terr-img-small { display: none; }
    .faq-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
    .contact-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
    .commit-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
    .svc-type-body { grid-template-columns: 1fr; }
    .svc-type-body-rev { direction: ltr; }
    .dest-grid { grid-template-columns: 1fr; }
    .included-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { flex-direction: column; }
    .proc-connector { width: 2px; height: 30px; align-self: flex-start; margin-left: calc(var(--sp-6) + 1px); top: 0; }
    .mstep-content { grid-template-columns: 1fr; }
    .mstep-badge { display: none; }
    .ftr-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
    .ftr-brand { grid-column: 1 / -1; }
  }

  @media (max-width: 640px) {
    .sec { padding: var(--sp-16) 0; }
    .pillars-grid { grid-template-columns: 1fr; }
    .zones-grid { grid-template-columns: 1fr; }
    .guar-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .included-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { width: 100%; justify-content: center; }
    .frm-row { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .thanks-actions { flex-direction: column; align-items: center; }
    .ftr-grid { grid-template-columns: 1fr; }
    .ftr-bottom-inner { flex-direction: column; text-align: center; }
    .cookie-modal-actions { flex-direction: column; }
    .sidebar-cta { display: none; }
    .mstep { flex-direction: column; gap: var(--sp-3); }
    .mstep-num { font-size: 2.5rem; }
    .page-hero-content { padding-top: calc(var(--nav-h) + var(--sp-8)); }
    .page-hero { min-height: 300px; }
    .svc-type-block { padding: var(--sp-6); }
    .contact-form-wrap { padding: var(--sp-6); }
    .proc-step { min-width: unset; }
    .process-steps { gap: var(--sp-4); }
  }

  @media (max-width: 400px) {
    .container { padding: 0 var(--sp-4); }
    .hero-content { padding: var(--sp-24) var(--sp-4) var(--sp-16); }
    .hdr-inner { padding: 0 var(--sp-4); }
  }

  
  .page-hero-plain + #heroEnd + .sec {
    padding-top: calc(var(--nav-h) + var(--sp-8));
  }

}