/* =========================================================================
   SA Lawn & Grounds Maintenance — styles (LIGHT theme)
   White / light-olive base, brand gold + green accents, graphite text.
   Palette derived from the brand logo.
   ========================================================================= */

:root {
  --gold-logo:   #D6B25E;   /* brand gold */
  --gold-bright: #E7CD86;
  --gold-deep:   #927214;   /* readable gold for small text on light */
  --green-olive: #3E6B3A;
  --green-deep:  #1E4D33;
  --brand-green: #556B2F;   /* logo olive green */
  --brand-green-dark: #43541F;

  --ink:         #14201A;   /* primary text — near black green */
  --text-muted:  #566258;
  --text-soft:   #6C7870;

  --bg:          #FFFFFF;   /* clean white */
  --bg-olive:    #EEF2F0;   /* light cool grey-green section */
  --cream:       #F4F7F5;   /* alt light section */
  --card:        #FFFFFF;
  --line:        #E3EAE6;
  --line-soft:   #EDF1EF;

  --maxw: 1200px;
  --radius: 12px;
  --radius-lg: 20px;

  --ff-display: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --shadow: 0 24px 60px -30px rgba(20,40,28,.30);
  --shadow-sm: 0 10px 28px -20px rgba(20,40,28,.28);
  --ease: cubic-bezier(.22,1,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.intro-lock { overflow: hidden; height: 100vh; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

/* -------------------------------------------------------------------------
   Typography helpers
   ------------------------------------------------------------------------- */
.eyebrow {
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 800; color: var(--gold-deep); margin: 0 0 .9rem;
}
.section__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.05rem);
  line-height: 1.1; letter-spacing: -.02em; color: var(--ink);
  margin: 0 0 1rem;
}
.section__sub { color: var(--text-muted); font-size: 1.08rem; max-width: 62ch; margin: 0 auto; }
.gold { color: var(--gold-deep); }

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--ff-body); font-weight: 600; font-size: .98rem; letter-spacing: .005em;
  padding: .9rem 1.6rem; border-radius: 10px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .22s var(--ease), box-shadow .22s, background .22s, color .22s, border-color .22s;
  will-change: transform;
}
.btn--gold {
  background: linear-gradient(180deg, #6d8542 0%, #556B2F 52%, #45571f 100%);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(85,107,47,.7), inset 0 1px 0 rgba(255,255,255,.3), inset 0 -2px 5px rgba(0,0,0,.22);
}
.btn--gold:hover { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 18px 36px -14px rgba(85,107,47,.75), inset 0 1px 0 rgba(255,255,255,.3), inset 0 -2px 5px rgba(0,0,0,.22); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(20,40,28,.24); }
.btn--ghost:hover { border-color: var(--brand-green); color: var(--brand-green); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* =========================================================================
   INTRO / SPLASH — modern focus-in reveal, then a curtain slide-up
   ========================================================================= */
.intro {
  position: fixed; inset: 0; z-index: 1000; overflow: hidden;
  background: radial-gradient(75% 60% at 50% 45%, #4a6330 0%, #2c3c1c 45%, #161f0d 100%);
  display: grid; place-items: center; cursor: pointer;
  transition: transform .9s cubic-bezier(.76,0,.24,1), opacity .5s ease .35s, visibility .9s;
}
.intro.is-hidden { transform: translateY(-100%); opacity: 0; visibility: hidden; pointer-events: none; }
.intro::before, .intro::after {
  content: ""; position: absolute; left: 0; right: 0; height: 7px; z-index: 4;
  background: linear-gradient(90deg, var(--brand-green) 0%, var(--gold-logo) 34%, #fff3d4 50%, var(--gold-logo) 66%, var(--brand-green) 100%);
  background-size: 220% 100%; background-position: 110% 0;
  box-shadow: 0 0 14px rgba(214,178,94,.45);
  transform: scaleX(0);
  animation: lineWipe .9s var(--ease) .15s forwards, barShimmer 2.8s linear .9s infinite;
}
.intro::before { top: 0; transform-origin: left; }
.intro::after { bottom: 0; transform-origin: right; }

.intro__inner { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2rem; }

/* Logo directly on the green splash, with a soft glow + moving sheen */
.intro__badge {
  position: relative; display: inline-block; line-height: 0;
  opacity: 0; transform: translateY(16px) scale(.96);
  animation: cardIn 1s cubic-bezier(.22,1,.36,1) .2s forwards;
}
/* A light ray that sweeps across the logo only (masked to its shape, no box) */
.intro__badge::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen;
  background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,.9) 50%, transparent 58%);
  background-size: 250% 100%; background-repeat: no-repeat;
  -webkit-mask: url(../../image/logo-intro.png?r=2) center / contain no-repeat;
          mask: url(../../image/logo-intro.png?r=2) center / contain no-repeat;
  animation: logoSheen 4s ease-in-out 1.1s infinite;
}
.intro__logo-img {
  display: block; width: min(58vw, 350px); height: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

.intro__line {
  width: 0; height: 2px; margin: 1.7rem 0 0; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-green), var(--gold-logo));
  animation: introLineGrow .7s var(--ease) 1.3s forwards;
}
.intro__welcome {
  font-family: var(--ff-display); font-weight: 500;
  color: var(--gold-bright); font-size: clamp(.95rem, .85rem + .5vw, 1.2rem);
  letter-spacing: .24em; text-transform: uppercase; margin: 1.3rem 0 0;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp .8s var(--ease) 1.55s forwards;
}

@keyframes cardIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes logoSheen { 0% { background-position: 150% 0; } 45%, 100% { background-position: -50% 0; } }
@keyframes barShimmer { from { background-position: 110% 0; } to { background-position: -110% 0; } }
@keyframes introLineGrow { to { width: min(46vw, 220px); } }
@keyframes lineWipe { to { transform: scaleX(1); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(252,251,245,.85);
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: .5rem 0; }
.brand__logo { height: 74px; width: auto; }

.nav { display: flex; align-items: center; }
.nav__menu { list-style: none; display: flex; align-items: center; gap: 2rem; margin: 0; padding: 0; }
.nav__menu a { font-weight: 600; font-size: .96rem; color: var(--ink); transition: color .2s; position: relative; }
.nav__menu a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold-logo); transition: width .25s var(--ease);
}
.nav__menu a:not(.nav__cta):hover { color: var(--gold-deep); }
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: linear-gradient(180deg, #6d8542 0%, #556B2F 55%, #47591f 100%);
  color: #fff !important; padding: .62rem 1.3rem; border-radius: 10px;
  box-shadow: 0 10px 20px -12px rgba(85,107,47,.6), inset 0 1px 0 rgba(255,255,255,.28), inset 0 -2px 4px rgba(0,0,0,.2);
  transition: transform .2s, filter .2s;
}
.nav__cta:hover { transform: translateY(-2px); filter: brightness(1.07); }

.nav__menu a.nav__social {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  color: var(--brand-green); border: 1px solid rgba(85,107,47,.32);
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.nav__menu a.nav__social svg { width: 18px; height: 18px; fill: currentColor; }
.nav__menu a.nav__social::after { display: none; }
.nav__social-label { display: none; }
.nav__menu a.nav__social:hover {
  background: var(--brand-green); color: #fff; border-color: var(--brand-green);
  transform: translateY(-2px);
}

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s; border-radius: 2px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; overflow: hidden;
  min-height: min(92vh, 880px); display: flex; align-items: center;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(6rem, 12vw, 9rem);
}
.hero__img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15,19,13,.92) 0%, rgba(15,19,13,.78) 40%, rgba(15,19,13,.45) 66%, rgba(15,19,13,.12) 100%),
    linear-gradient(0deg, rgba(15,19,13,.62) 0%, rgba(15,19,13,0) 52%);
}
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 660px; margin-right: auto; text-align: left; color: #F4F1E6; }
.hero .eyebrow { color: var(--gold-bright); }
.hero__title {
  font-family: var(--ff-display); font-weight: 600; color: #fff;
  font-size: clamp(2.6rem, 1.4rem + 5.4vw, 5.2rem); line-height: 1.02;
  letter-spacing: -.02em; margin: 0 0 1.3rem; text-shadow: 0 2px 26px rgba(0,0,0,.4);
}
.hero__title .gold { color: var(--gold-bright); }
.hero__lead { font-size: clamp(1.05rem, .98rem + .5vw, 1.3rem); color: rgba(244,241,230,.92); max-width: 60ch; text-shadow: 0 1px 14px rgba(0,0,0,.4); }
.hero__lead em { color: var(--gold-bright); font-style: italic; font-weight: 500; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 2.6rem; }
.hero__actions .btn { min-width: 220px; justify-content: center; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.hero .btn--ghost:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; margin: 0; padding: 1.4rem 0 0; border-top: 1px solid rgba(255,255,255,.22); color: rgba(244,241,230,.85); font-size: .95rem; }
.hero__badges li { display: flex; align-items: center; gap: .6rem; }
.badge__k { font-weight: 800; color: var(--gold-bright); font-size: .8rem; letter-spacing: .05em; padding: .25rem .6rem; border: 1px solid rgba(231,205,134,.55); border-radius: 6px; }

/* Scroll cue: a modern line arrow with a light travelling down it */
.hero__scroll {
  position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%); z-index: 2; padding: 8px;
}
.hero__arrow { display: block; width: 22px; height: auto; overflow: visible; filter: drop-shadow(0 2px 5px rgba(0,0,0,.45)); }
.arr-line { stroke: rgba(255,255,255,.28); stroke-width: 1.6; stroke-linecap: round; }
.arr-dot {
  fill: url(#arrG); filter: drop-shadow(0 0 3px rgba(231,205,134,.85));
  animation: arrDot 1.7s cubic-bezier(.45,0,.55,1) infinite;
}
.arr-head {
  fill: none; stroke: url(#arrG); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
  transform-box: fill-box; transform-origin: 50% 40%;
  animation: arrHead 1.7s cubic-bezier(.45,0,.55,1) infinite;
}
.hero__scroll:hover .arr-line { stroke: rgba(255,255,255,.55); }
.hero__scroll:hover .arr-dot { fill: #fff; }
.hero__scroll:hover .arr-head { stroke: #fff; }
@keyframes arrDot {
  0%   { cy: 6px; opacity: 0; }
  16%  { opacity: 1; }
  64%  { cy: 28px; opacity: 1; }
  76%  { cy: 28px; opacity: 0; }
  100% { cy: 28px; opacity: 0; }
}
@keyframes arrHead {
  0%, 52% { opacity: .3; transform: scale(1); filter: drop-shadow(0 0 0 rgba(231,205,134,0)); }
  66%     { opacity: 1; transform: scale(1.18); filter: drop-shadow(0 0 8px rgba(231,205,134,.95)); }
  80%     { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 3px rgba(231,205,134,.55)); }
  100%    { opacity: .3; transform: scale(1); filter: drop-shadow(0 0 0 rgba(231,205,134,0)); }
}

/* =========================================================================
   SECTIONS (generic)
   ========================================================================= */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section__head .section__title::after { content: ""; display: block; width: 56px; height: 3px; border-radius: 3px; margin: 1.1rem auto .2rem; background: linear-gradient(90deg, var(--brand-green), var(--gold-logo)); }

/* Services — white */
.services { background: var(--bg); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; }
.card {
  position: relative; overflow: hidden;
  background: linear-gradient(162deg, #435324 0%, #33421c 46%, #26320f 100%);
  border: 1px solid rgba(255,255,255,.10); border-radius: 18px;
  padding: 2.1rem 1.8rem; transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
  box-shadow: 0 26px 50px -28px rgba(20,40,28,.7), inset 0 1px 0 rgba(255,255,255,.10);
  color: #E9ECE0; perspective: 900px;
}
.card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 60% at 15% -10%, rgba(255,255,255,.10), transparent 55%);
}
.card:hover { transform: translateY(-6px); border-color: rgba(214,178,94,.55); box-shadow: 0 34px 60px -26px rgba(20,40,28,.8), inset 0 1px 0 rgba(255,255,255,.14); }
.card__icon {
  position: relative; overflow: hidden;
  width: 82px; height: 82px; display: grid; place-items: center; border-radius: 20px; margin-bottom: 1.4rem;
  background: linear-gradient(150deg, #f6e4b0 0%, var(--gold-bright) 42%, var(--gold-logo) 78%, var(--gold-deep) 100%);
  border: 1px solid rgba(146,114,20,.45);
  box-shadow:
    0 20px 32px -14px rgba(0,0,0,.55),
    0 6px 14px -8px rgba(0,0,0,.5),
    inset 0 2px 0 rgba(255,255,255,.7),
    inset 0 -5px 12px rgba(120,90,10,.4);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card__icon::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(125% 75% at 22% -12%, rgba(255,255,255,.6), transparent 55%);
}
.card__icon svg { position: relative; width: 44px; height: 44px; fill: none; stroke: #2a3711; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 1px 1px rgba(255,255,255,.4)); }
.card:hover .card__icon {
  transform: translateY(-3px) rotateX(7deg) scale(1.05);
  box-shadow:
    0 28px 44px -16px rgba(0,0,0,.6),
    0 10px 20px -10px rgba(0,0,0,.55),
    inset 0 2px 0 rgba(255,255,255,.8),
    inset 0 -5px 12px rgba(120,90,10,.4);
}
.card h3 { position: relative; font-family: var(--ff-display); font-weight: 600; font-size: 1.28rem; margin: 0 0 .6rem; color: #fff; }
.card p { position: relative; color: #C2D0C4; margin: 0; font-size: .98rem; }
.card strong { color: var(--gold-bright); }

.capabilities { margin-top: clamp(3rem, 6vw, 5rem); }
.capabilities__head { text-align: center; max-width: 60ch; margin: 0 auto clamp(1.8rem, 3vw, 2.6rem); }
.capabilities__title { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem); letter-spacing: -.02em; color: var(--ink); margin: .35rem 0 .55rem; }
.cap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); column-gap: clamp(2rem, 4vw, 3.5rem); }
.cap {
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto;
  column-gap: 1.1rem; row-gap: .3rem; align-items: start;
  padding: 1.35rem 0; border-top: 1px solid var(--line);
}
.cap__ico {
  grid-row: 1 / span 2; align-self: start;
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px;
  background: rgba(85,107,47,.09); border: 1px solid rgba(85,107,47,.24); color: var(--brand-green);
  transition: background .3s, color .3s, transform .35s var(--ease), border-color .3s;
}
.cap__ico svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cap:hover .cap__ico { background: linear-gradient(145deg, #6d8542, var(--brand-green-dark)); border-color: transparent; color: #fff; transform: translateY(-2px) scale(1.05); }
.cap h4 { grid-column: 2; font-family: var(--ff-display); font-weight: 600; font-size: 1.06rem; margin: .1rem 0 0; color: var(--ink); }
.cap p { grid-column: 2; margin: 0; color: var(--text-muted); font-size: .93rem; line-height: 1.55; }

/* Sectors — light olive */
.sectors { background: var(--bg-olive); color: var(--ink); }
.sectors .eyebrow { color: var(--green-olive); }
.sectors .section__sub { color: var(--text-muted); }
.sectors__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; }
.sector { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 0; position: relative; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s; }
.sector::before { content: ""; position: absolute; z-index: 2; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, var(--gold-logo), var(--green-olive)); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.sector:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.sector:hover::before { transform: scaleY(1); }
.sector__img { overflow: hidden; }
.sector__img img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.sector:hover .sector__img img { transform: scale(1.05); }
.sector__body { padding: 1.5rem 1.7rem 1.9rem; }
.sector__num { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--gold-deep); }
.sector h3 { font-family: var(--ff-display); font-weight: 600; font-size: 1.24rem; margin: .5rem 0 .6rem; color: var(--ink); }
.sector p { color: var(--text-muted); margin: 0; font-size: .97rem; }

/* =========================================================================
   PHOTO REEL — continuous horizontal marquee of finished projects
   ========================================================================= */
.reel {
  position: relative; isolation: isolate;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: #10160b;
  overflow: hidden;
}
.reel__glow { display: none; }
/* Gold bar along the base of the band */
.reel__bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; height: 4px; pointer-events: none;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold-logo) 30%, var(--gold-bright) 50%, var(--gold-logo) 70%, var(--gold-deep) 100%);
  box-shadow: 0 -2px 16px rgba(214,178,94,.45);
}
.reel__viewport {
  position: relative; z-index: 1; width: 100%;
  overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.reel__viewport::-webkit-scrollbar { display: none; }
.reel__track {
  display: flex; gap: 1.5rem; width: max-content;
}
.reel__item {
  position: relative; flex: 0 0 auto; margin: 0; overflow: hidden;
  width: clamp(300px, 33vw, 440px); height: clamp(210px, 22vw, 300px);
  border-radius: 22px;
  box-shadow: 0 30px 55px -26px rgba(0,0,0,.9);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.reel__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.reel__item::after {
  content: ""; position: absolute; inset: 0; border-radius: 22px; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}
.reel__item:hover { transform: translateY(-8px); box-shadow: 0 40px 66px -26px rgba(0,0,0,.95); }
.reel__item:hover img { transform: scale(1.08); }

/* Full-width grass watermark at the foot of a section */
.sectors { position: relative; overflow: hidden; padding-bottom: clamp(8rem, 12vw, 11rem); }
.sectors > .container { position: relative; z-index: 2; }
.section-grass {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; pointer-events: none;
  height: clamp(80px, 11vw, 140px);
  background: linear-gradient(180deg, var(--gold-logo) 0%, var(--brand-green) 50%, #10160b 100%);
  -webkit-mask-image: url("../../image/grass.png"); mask-image: url("../../image/grass.png");
  -webkit-mask-repeat: repeat-x; mask-repeat: repeat-x;
  -webkit-mask-position: center bottom; mask-position: center bottom;
  -webkit-mask-size: auto 100%; mask-size: auto 100%;
  opacity: 1;
}

/* Why — deep green feature band */
.why { background: linear-gradient(160deg, #3f4f22 0%, #2b3717 100%); color: #E9ECE0; }
.why .eyebrow { color: var(--gold-bright); }
.why .section__title { color: #fff; }
.why .section__sub { color: #AFBFB2; }
.why__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.why__list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.1rem; }
.why__list li { display: flex; gap: 1rem; align-items: flex-start; }
.why__check {
  position: relative; overflow: hidden; flex: none;
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(150deg, #f4e0aa 0%, var(--gold-bright) 40%, var(--gold-logo) 72%, var(--gold-deep) 100%);
  color: #143024; border: 1px solid rgba(146,114,20,.5);
  box-shadow:
    0 10px 18px -8px rgba(0,0,0,.6),
    0 3px 6px -3px rgba(0,0,0,.5),
    inset 0 2px 0 rgba(255,255,255,.65),
    inset 0 -3px 6px rgba(120,90,10,.45);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.why__check::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: 50%;
  background: radial-gradient(120% 80% at 28% -10%, rgba(255,255,255,.55), transparent 55%);
}
.why__check svg { position: relative; width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2.7; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 1px 1px rgba(255,255,255,.4)); }
.why__list li:hover .why__check { transform: translateY(-2px) scale(1.08); box-shadow: 0 14px 22px -8px rgba(0,0,0,.65), inset 0 2px 0 rgba(255,255,255,.7), inset 0 -3px 6px rgba(120,90,10,.45); }
.why__list strong { color: var(--gold-bright); font-weight: 700; }
.why__list div { color: #B9C7BC; }
.why__stats { display: grid; gap: 1.3rem; perspective: 1100px; }
.stat {
  position: relative; overflow: hidden;
  padding: 1.6rem 1.6rem 1.6rem 2rem; border-radius: 16px;
  background: linear-gradient(158deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.06) 42%, rgba(0,0,0,.10) 100%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 20px 38px -20px rgba(0,0,0,.7),
    0 6px 14px -8px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.38),
    inset 0 -4px 10px rgba(0,0,0,.30);
  transform: translateZ(0);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
/* gold edge accent */
.stat::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 0 12px rgba(214,178,94,.55);
}
/* soft top sheen */
.stat::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(130% 70% at 12% -20%, rgba(255,255,255,.28), transparent 55%);
}
.stat:hover {
  transform: translateY(-5px) rotateX(5deg);
  box-shadow:
    0 30px 52px -20px rgba(0,0,0,.75),
    0 10px 20px -10px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -4px 10px rgba(0,0,0,.30);
}
.stat__num {
  display: block; font-family: var(--ff-display); font-weight: 800; line-height: 1;
  font-size: clamp(2.4rem, 2rem + 1.4vw, 3rem); letter-spacing: -.01em;
  background: linear-gradient(180deg, #ffffff 0%, var(--gold-bright) 52%, var(--gold-logo) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.4));
}
.stat__label { display: block; margin-top: .55rem; color: #C6D3C8; font-size: .96rem; line-height: 1.45; }

/* About — light olive */
.about { background: var(--bg-olive); color: var(--ink); }
.about__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about .eyebrow { color: var(--green-olive); }
.about__photo img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); display: block; }
.about__text h2 { color: var(--ink); }
.about__text p { color: var(--text-muted); font-size: 1.05rem; }
.about__text strong { color: var(--green-deep); }
.about__text .btn { margin-top: 1rem; }

/* Contact — cream */
.contact { background: var(--cream); }
.contact__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__details { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1rem; }
.contact__details li { display: flex; align-items: center; gap: .9rem; font-size: 1.02rem; }
.contact__details a { color: var(--ink); transition: color .2s; }
.contact__details a:hover { color: var(--gold-deep); }
.contact__ico { flex: none; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(85,107,47,.14); border: 1px solid rgba(85,107,47,.34); color: var(--brand-green); }
.contact__ico svg { width: 20px; height: 20px; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.contact__form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; box-shadow: var(--shadow-sm); }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 700; color: var(--text-muted); letter-spacing: .02em; }
.field .opt { color: var(--text-soft); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--ff-body); font-size: 1rem; color: var(--ink);
  background: #FBFAF3; border: 1px solid var(--line); border-radius: 10px;
  padding: .8rem .9rem; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-logo); box-shadow: 0 0 0 3px rgba(214,178,94,.25); }
.form__note { color: var(--text-muted); font-size: .86rem; margin: .8rem 0 0; text-align: center; }

/* =========================================================================
   FOOTER — light olive
   ========================================================================= */
.site-footer { position: relative; background: #29331a; color: #CAD2BC; }
.site-footer .container { position: relative; z-index: 2; }
/* Grass sprouting from the very top edge of the footer */
.footer__grass {
  position: absolute; left: 0; right: 0; bottom: 100%; height: clamp(58px, 6vw, 80px); z-index: 3; pointer-events: none;
  background: linear-gradient(180deg, #4a5c28 0%, #38471f 45%, #29331a 100%);
  -webkit-mask: url("../../image/grass.png") repeat-x center bottom / auto 100%;
          mask: url("../../image/grass.png") repeat-x center bottom / auto 100%;
}
.footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1.5fr; gap: 2.6rem; padding: 4.2rem 0 2.6rem; align-items: start; }
.footer__wordmark { font-family: var(--ff-display); font-weight: 700; font-size: 1.6rem; color: #fff; letter-spacing: -.01em; margin-bottom: 1rem; }
.footer__wordmark .fw-sa { color: var(--gold-logo); }
.footer__brand p { color: #A4AF95; font-size: .95rem; max-width: 42ch; margin: 0 0 1.2rem; line-height: 1.7; }
.footer__badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.footer__badges span { font-size: .74rem; font-weight: 600; letter-spacing: .04em; color: var(--gold-bright); padding: .34rem .8rem; border: 1px solid rgba(231,205,134,.35); border-radius: 999px; }
.footer__social { margin-top: 1.2rem; display: flex; gap: .6rem; }
.footer__social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: #E9ECE0; border: 1px solid rgba(255,255,255,.22); transition: background .25s, color .25s, border-color .25s, transform .25s; }
.footer__social a svg { width: 19px; height: 19px; fill: currentColor; }
.footer__social a:hover { background: var(--gold-logo); color: #1c2410; border-color: var(--gold-logo); transform: translateY(-2px); }
.footer__col { display: flex; flex-direction: column; gap: .7rem; }
.footer__h { font-family: var(--ff-body); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-bright); margin: 0 0 .5rem; }
.footer__col a { color: #B9C3A9; font-size: .95rem; font-weight: 500; transition: color .2s, transform .2s; width: fit-content; }
.footer__col a:hover { color: #fff; transform: translateX(4px); }
.footer__cta { margin-top: .7rem; align-self: start; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.10); padding: 1.5rem 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem 1.5rem; align-items: center; }
.footer__bar p { margin: 0; color: #83907A; font-size: .85rem; }
.footer__maker { color: #83907A !important; }
.footer__maker a { color: #E7CD86; font-weight: 600; border-bottom: 1px solid rgba(231,205,134,.4); transition: color .2s, border-color .2s; }
.footer__maker a:hover { color: #fff; border-color: #fff; }

/* =========================================================================
   OUR WORK — before/after
   ========================================================================= */
.work { background: var(--bg); }
.work__subhead { font-family: var(--ff-display); font-weight: 700; font-size: 1.35rem; color: var(--ink); margin: 3rem 0 1.3rem; display: flex; align-items: center; gap: .8rem; }
.work__subhead::before { content: ""; width: 28px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--brand-green), var(--gold-logo)); }

/* Before & After — cross-fading pair slider */
.baslider { position: relative; max-width: var(--maxw); margin-inline: auto; }
.baslider__stage { display: grid; }
.bapair {
  grid-area: 1 / 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.7rem, 1.5vw, 1.1rem);
  opacity: 0; visibility: hidden;
  transition: opacity 1.2s ease, visibility 0s linear 1.2s;
}
.bapair.is-active { opacity: 1; visibility: visible; z-index: 1; transition: opacity 1.2s ease; }
.ba__item { position: relative; margin: 0; border-radius: 20px; overflow: hidden; box-shadow: 0 26px 50px -26px rgba(20,40,28,.55); }
.ba__item img { width: 100%; height: clamp(300px, 40vw, 460px); object-fit: cover; display: block; transition: transform .8s var(--ease); }
.baslider:hover .bapair.is-active img { transform: scale(1.03); }
.ba__tag {
  position: absolute; top: .9rem; left: .9rem; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .4rem .8rem; border-radius: 999px; color: #fff; backdrop-filter: blur(8px);
}
.ba__tag--before { background: rgba(18,32,24,.55); border: 1px solid rgba(255,255,255,.25); }
.ba__tag--after { background: rgba(85,107,47,.75); border: 1px solid rgba(231,205,134,.5); box-shadow: 0 8px 20px -8px rgba(85,107,47,.6); }

.baslider__controls { display: flex; align-items: center; justify-content: center; gap: 1.9rem; margin-top: 2rem; }
.baslider__nav {
  position: relative; overflow: hidden; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; color: var(--brand-green);
  background: #fff; border: none;
  box-shadow: 0 10px 26px -12px rgba(20,40,28,.4), inset 0 0 0 1px rgba(20,40,28,.12);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), color .3s;
}
.baslider__nav::before {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: 50%;
  background: linear-gradient(145deg, #6d8542 0%, var(--brand-green) 55%, var(--brand-green-dark) 100%);
  transform: scale(0); transition: transform .38s var(--ease);
}
.baslider__nav svg { position: relative; z-index: 1; width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.baslider__nav:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(85,107,47,.6), 0 0 0 1px rgba(231,205,134,.5); }
.baslider__nav:hover::before { transform: scale(1); }
#baPrev:hover svg { transform: translateX(-3px); }
#baNext:hover svg { transform: translateX(3px); }
.baslider__dots { display: flex; align-items: center; gap: .6rem; }
.baslider__dots button { width: 38px; height: 5px; padding: 0; border: none; border-radius: 3px; cursor: pointer; background: rgba(20,40,28,.15); transition: background .35s, width .35s; }
.baslider__dots button.is-active { width: 72px; background: linear-gradient(90deg, var(--brand-green), var(--gold-logo)); }

/* =========================================================================
   REVIEWS — cross-fading testimonial slider
   ========================================================================= */
.reviews { background: var(--bg-olive); }
.reviews .section__head { position: relative; }
.reviews__badge {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.1rem;
  font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #143024;
  padding: .55rem 1.1rem; border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-logo));
  box-shadow: 0 12px 24px -12px rgba(214,178,94,.7), inset 0 1px 0 rgba(255,255,255,.6);
}
.reviews__badge svg { width: 16px; height: 16px; fill: none; stroke: #143024; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

.reviews__slider { position: relative; margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.reviews__quote { display: none; }
.reviews__stage { position: relative; z-index: 1; overflow: hidden; padding: 2.2rem 0; }
.reviews__track { display: flex; align-items: stretch; gap: clamp(1rem, 2.4vw, 1.6rem); will-change: transform; transition: transform .7s var(--ease); }
/* Each review is its own card; the centred one scales up and comes forward */
.review {
  flex: 0 0 clamp(258px, 68vw, 360px); box-sizing: border-box; margin: 0;
  background: var(--card); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm);
  padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1.3rem, 2.5vw, 1.9rem);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .85rem; text-align: center;
  transform: scale(.84); opacity: .45;
  transition: transform .6s var(--ease), opacity .6s var(--ease), box-shadow .6s var(--ease);
}
.review.is-center { transform: scale(1.05); opacity: 1; box-shadow: var(--shadow); border-color: rgba(214,178,94,.4); z-index: 2; }
.review__stars { display: inline-flex; gap: .2rem; }
.review__stars svg { width: 18px; height: 18px; fill: var(--gold-logo); filter: drop-shadow(0 2px 3px rgba(146,114,20,.3)); }
.review__text { font-size: clamp(.95rem, .9rem + .3vw, 1.08rem); line-height: 1.5; color: var(--ink); font-weight: 500; margin: 0; }
.review__by { display: flex; align-items: center; gap: .5rem; font-family: var(--ff-display); font-weight: 700; color: var(--gold-deep); font-size: .98rem; margin-top: .2rem; }
.review__by::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--brand-green), var(--gold-logo)); }

.reviews__controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.6rem; }
.reviews__controls .baslider__nav { width: 46px; height: 46px; }
.reviews__controls .baslider__nav svg { width: 19px; height: 19px; }
.reviews__dots { display: flex; align-items: center; gap: .5rem; }
.reviews__dots button { width: 10px; height: 10px; padding: 0; border: none; border-radius: 50%; cursor: pointer; background: rgba(20,40,28,.16); transition: background .3s, transform .3s; }
.reviews__dots button.is-active { background: linear-gradient(145deg, var(--brand-green), var(--gold-logo)); transform: scale(1.3); }
.reviews__links { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: clamp(1.8rem, 3.5vw, 2.6rem); }
.reviews__link { gap: .55rem; min-width: 232px; justify-content: center; }
.reviews__link svg { width: 18px; height: 18px; }
.reviews__link-star { fill: var(--gold-logo); }
.reviews__link-fb { fill: currentColor; }


/* =========================================================================
   CTA BAND — full bleed photo background
   ========================================================================= */
.cta-band { position: relative; overflow: hidden; padding: clamp(4rem, 9vw, 7rem) 0; text-align: center; }
.cta-band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-band__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,32,23,.86), rgba(15,32,23,.72)); }
.cta-band__inner { position: relative; z-index: 2; color: #fff; max-width: 720px; }
.cta-band__inner h2 { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.8rem); letter-spacing: -.02em; margin: 0 0 1rem; }
.cta-band__inner p { color: rgba(255,255,255,.86); font-size: 1.1rem; margin: 0 auto 1.9rem; max-width: 54ch; }
.cta-band .btn--gold, .site-footer .btn--gold {
  background: linear-gradient(180deg, #efd695 0%, #D6B25E 55%, #b98f2e 100%);
  color: var(--ink);
  box-shadow: 0 12px 26px -12px rgba(148,105,15,.6), inset 0 1px 0 rgba(255,255,255,.55), inset 0 -2px 5px rgba(0,0,0,.16);
}
.cta-band .btn--gold:hover, .site-footer .btn--gold:hover { transform: translateY(-2px); filter: brightness(1.05); }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 900px) {
  .why__inner, .about__inner, .contact__inner { grid-template-columns: 1fr; }
  .about__photo { order: 2; max-width: 420px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .bapair { grid-template-columns: 1fr; }
  /* Compact, grouped slider controls on mobile so arrows do not spread out */
  .baslider__controls, .reviews__controls { gap: .9rem; flex-wrap: nowrap; }
  .baslider__nav, .reviews__controls .baslider__nav { width: 42px; height: 42px; }
  .baslider__nav svg { width: 18px; height: 18px; }
  .baslider__dots { gap: .4rem; }
  .baslider__dots button { width: 18px; height: 4px; }
  .baslider__dots button.is-active { width: 34px; }
  .reviews__dots { gap: .4rem; }
  .reviews__dots button { width: 9px; height: 9px; }
}
@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(252,251,245,.98); backdrop-filter: blur(14px);
    padding: 1rem 1.5rem 1.5rem; border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .35s var(--ease); align-items: stretch;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu li { border-bottom: 1px solid var(--line-soft); }
  .nav__menu a { display: block; padding: 1rem 0; }
  .nav__cta { text-align: center; margin-top: 1.6rem; }
  /* Grass fringe growing up directly under the Facebook row */
  .nav__social-li { position: relative; border-bottom: none; }
  .nav__social-li::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 17px;
    background-color: var(--brand-green); pointer-events: none;
    -webkit-mask: url("../../image/grass.png") repeat-x center bottom / auto 100%;
            mask: url("../../image/grass.png") repeat-x center bottom / auto 100%;
  }
  /* Facebook becomes a normal labelled row inside the hamburger menu */
  .nav__menu a.nav__social {
    display: flex; align-items: center; justify-content: flex-start; gap: .7rem;
    width: auto; height: auto; padding: 1rem 0; border: none; border-radius: 0;
    color: var(--ink);
  }
  .nav__menu a.nav__social svg { width: 20px; height: 20px; color: var(--brand-green); }
  .nav__menu a.nav__social:hover { background: none; color: var(--gold-deep); transform: none; }
  .nav__menu a.nav__social:hover svg { color: var(--gold-deep); }
  .nav__social-label { display: inline; font-weight: 600; font-size: .96rem; }
  .contact__form { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .intro__logo-img, .intro__welcome { opacity: 1; filter: none; transform: none; }
  .intro__line { width: min(46vw, 220px); }
}

/* =========================================================================
   LEGAL PAGES (privacy, terms)
   ========================================================================= */
.legal-header { border-bottom: 1px solid var(--line); background: rgba(252,251,245,.9); backdrop-filter: blur(10px); }
.legal-header__inner { display: flex; align-items: center; justify-content: space-between; padding: .5rem 0; }
.legal-header .brand__logo { height: 60px; width: auto; }
.legal-back { font-weight: 600; font-size: .95rem; color: var(--brand-green); display: inline-flex; align-items: center; gap: .4rem; }
.legal-back:hover { color: var(--gold-deep); }
.legal { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem); }
.legal__wrap { max-width: 760px; margin-inline: auto; }
.legal h1 { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.8rem); color: var(--ink); margin: 0 0 .4rem; letter-spacing: -.02em; }
.legal__updated { color: var(--text-muted); font-size: .95rem; margin: 0 0 2.2rem; }
.legal h2 { font-family: var(--ff-display); font-weight: 600; font-size: 1.25rem; color: var(--ink); margin: 2.2rem 0 .7rem; }
.legal p, .legal li { color: var(--text-muted); font-size: 1.02rem; line-height: 1.7; }
.legal p { margin: 0 0 1rem; }
.legal ul { margin: 0 0 1rem; padding-left: 1.2rem; }
.legal li { margin: 0 0 .4rem; }
.legal a { color: var(--brand-green); font-weight: 600; }
.legal a:hover { color: var(--gold-deep); }
.legal strong { color: var(--ink); }
.form__consent { font-size: .82rem; color: var(--text-soft); line-height: 1.55; margin: .2rem 0 0; }
.form__consent a { color: var(--brand-green); font-weight: 600; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer__legal a { color: #A4AF95; font-size: .88rem; }
.footer__legal a:hover { color: #fff; }
