:root{
  /* =========================
     BRAND PALETTE
  ========================== */

  /* Base backgrounds */
  --bg-warm: #FDF6F3;

  /* Brand greens */
  --brand-950: #061F19;/*
  --brand-900: #0A2F26;
  --brand-800: #17463B;
  --brand-700: #1B5E45;
  --brand-600: #1E7F4E;*/

  /* Accent */
  --accent-500: #C99735;
  --accent-400: #D8B15A;
  --accent-soft: rgba(201, 151, 53, .14);
  
  --bg-soft: #F6FAF6;
  --brand-900: #073A2E;
  --brand-800: #0A4A38;
  --brand-600: #1E8B55;
  --brand-500: #27A765;
  --accent-gold: #C99735;
  /* Text */
  --text: #0A2F26;
  --text-strong: #061F19;
  --text-muted: #536760;
  --text-soft: #6F7E78;
  --text-inverse: #FFFFFF;
  --text-inverse-muted: rgba(255,255,255,.72);

  /* Surfaces */
  --surface: #FFFFFF;
  --surface-soft: #FDF6F3;
  --surface-green: #17463B;
  --surface-dark: #0A2F26;
  --surface-deep: #061F19;

  /* Borders */
  --border-soft: rgba(10, 47, 38, .10);
  --border-medium: rgba(10, 47, 38, .18);
  --border-inverse: rgba(255,255,255,.14);
  --border-accent: rgba(201,151,53,.42);

  /* Buttons */
  --btn-primary-bg: #1E7F4E;
  --btn-primary-hover: #17463B;
  --btn-primary-text: #FFFFFF;

  --btn-secondary-text: #17463B;
  --btn-secondary-border: rgba(23, 70, 59, .38);
  --btn-secondary-hover-bg: #FDF6F3;

  --btn-dark-bg: #0A2F26;
  --btn-dark-hover: #17463B;
  --btn-dark-text: #FFFFFF;

  /* Chips / pills */
  --chip-bg: rgba(30, 127, 78, .10);
  --chip-text: #17463B;
  --chip-border: rgba(30, 127, 78, .22);

  --chip-active-bg: #1E7F4E;
  --chip-active-text: #FFFFFF;

  --chip-premium-bg: rgba(201, 151, 53, .16);
  --chip-premium-text: #7D5A16;
  --chip-premium-border: rgba(201, 151, 53, .34);

  /* Header */
  --header-bg: rgba(253, 246, 243, .88);
  --header-bg-solid: #FDF6F3;
  --header-border: rgba(10, 47, 38, .10);
  --nav-link: #0A2F26;
  --nav-link-muted: #17463B;
  --nav-active: #1E7F4E;

  /* Footer */
  --footer-bg: #0A2F26;
  --footer-text: rgba(255,255,255,.82);
  --footer-muted: rgba(255,255,255,.62);
  --footer-border: rgba(255,255,255,.12);

  /* Effects */
  --shadow-xs: 0 4px 14px rgba(10, 47, 38, .06);
  --shadow-sm: 0 10px 24px rgba(10, 47, 38, .08);
  --shadow-md: 0 18px 45px rgba(10, 47, 38, .12);
  --shadow-lg: 0 28px 70px rgba(10, 47, 38, .18);

  --shadow-dark: 0 24px 60px rgba(0,0,0,.22);

  /* Radius */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 14px;
  --radius-md: 18px;
  --radius-lg: 16px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  /* Layout */
  --container: 1180px;
  --container-wide: 1320px;
  --nav-h: 80px;

  /* Spacing */
  --section-y: 96px;
  --section-y-sm: 72px;
  --section-y-lg: 128px;

  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: var(--font-sans);

  --h1: clamp(48px, 7vw, 92px);
  --h2: clamp(34px, 4.5vw, 58px);
  --h3: clamp(24px, 3vw, 34px);
  --lead: clamp(18px, 2vw, 22px);
  --body: 16px;
  --small: 14px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --transition: 180ms var(--ease);
  --transition-slow: 320ms var(--ease);

  /* Decorative overlays */
  --overlay-dark: rgba(10, 47, 38, .62);
  --overlay-deep: rgba(6, 31, 25, .72);
  --overlay-soft: rgba(253, 246, 243, .78);

  /* Focus */
  --focus-ring: 0 0 0 4px rgba(30, 127, 78, .18);
}



*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

html,
body{
  margin: 0;
  padding: 0;
}

body{
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Solo páginas internas sin hero overlay */
body.page-inner{
  padding-top: var(--nav-h);
}

/* Home con hero debajo de navbar */
body.has-hero-overlay{
  padding-top: 0;
}

img,
picture,
video,
canvas,
svg{
  display: block;
  max-width: 100%;
}

a{
  color: inherit;
}

button,
input,
textarea,
select{
  font: inherit;
}

.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section{
  padding: var(--section-py, var(--section-y)) 0;
  background: var(--section-bg, transparent);
}


/* =========================================================
   Buttons
========================================================= */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 38px;
  padding: 12px 20px;

  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: transparent;
  color: inherit;

  text-decoration: none;
  font-size: 14px;
  font-weight: 740;
  letter-spacing: .01em;
  line-height: 1;

  cursor: pointer;

  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.btn:hover{
  transform: translateY(-1px);
}

.btn:focus-visible{
  outline: none;
  box-shadow: var(--focus-ring);
}


/* Primary button */

.btn--primary{
  background: var(--brand-600);
  color: #FFFFFF;
  border-color: var(--brand-600);
}

.btn--primary:hover{
  background: var(--brand-800);
  border-color: var(--brand-800);
  color: #FFFFFF;
}


/* Secondary button for light backgrounds */

.btn--secondary{
  background: transparent;
  color: var(--brand-800);
  border-color: rgba(23,70,59,.36);
}

.btn--secondary:hover{
  background: var(--bg-warm);
  color: var(--brand-900);
  border-color: var(--brand-800);
}


/* Dark button */

.btn--dark{
  background: var(--brand-900);
  color: #FFFFFF;
  border-color: var(--brand-900);
}

.btn--dark:hover{
  background: var(--brand-800);
  border-color: var(--brand-800);
  color: #FFFFFF;
}


/* Light button for dark backgrounds */

.btn--light{
  background: #FFFFFF;
  color: var(--brand-900);
  border-color: #FFFFFF;
}

.btn--light:hover{
  background: var(--bg-warm);
  color: var(--brand-900);
  border-color: var(--bg-warm);
}


/* Ghost button for dark backgrounds */

.btn--ghost-light{
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,.48);
}

.btn--ghost-light:hover{
  background: rgba(255,255,255,.10);
  color: #FFFFFF;
  border-color: rgba(255,255,255,.86);
}


/* Text button */

.btn--text{
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand-600);
  font-weight: 780;
}

.btn--text:hover{
  background: transparent;
  color: var(--brand-900);
  transform: none;
}


/* Reusable premium fill effect */

.btn--fill{
  --fill-text: #FFFFFF;
  --fill-border: transparent;

  position: relative;
  overflow: hidden;

  background-color:  var(--brand-600);
  background-size: 0% 100%;

  color: #FFF;
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(5, 45, 35, .22);

}

.btn--fill:hover{
  background-color:  #27A96A;
  border-color: #27A96A;
  color: var(--fill-text);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(5, 45, 35, .30);
}


/* Button sizes */

.btn--sm{
  min-height: 38px;
  padding: 10px 16px;
  font-size: 13px;
}

.btn--lg{
  min-height: 54px;
  padding: 15px 24px;
  font-size: 15px;
}


.btn--textArrow{
  min-height: auto;
  padding: 0;

  border: 0;
  border-radius: 0;
  background: transparent;

  color: var(--brand-600);
  font-size: 14px;
  font-weight: 820;
  letter-spacing: .01em;

  box-shadow: none;
}

.btn--textArrow span{
  display: inline-flex;
  transition: transform var(--transition);
}

.btn--textArrow:hover{
  color: var(--brand-900);
  transform: none;
}

.btn--textArrow:hover span{
  transform: translateX(4px);
}
/* =========================================================
   Header / Navigation
========================================================= */

.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);

  background: transparent;
  border-bottom: 1px solid transparent;

  transition:
    background var(--transition-slow),
    border-color var(--transition-slow),
    box-shadow var(--transition-slow),
    backdrop-filter var(--transition-slow);
}

.site-header.is-scrolled{
  background: #fff;
  border-bottom-color: var(--header-border);
  box-shadow: 0 10px 30px rgba(10, 47, 38, .06);
}

.nav-wrap{
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}


/* Brand / Logo */

.brand{
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;

  width: 198px;
  height: 60px;

  text-decoration: none;
}

.brand__logo{
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: contain;

  transition: opacity var(--transition-slow);
}

/* Use this if you have two logos */
.brand__logo--dark{
  opacity: 0;
}

.brand__logo--light{
  opacity: 1;
}

.site-header.is-scrolled .brand__logo--dark{
  opacity: 1;
}

.site-header.is-scrolled .brand__logo--light{
  opacity: 0;
}


/* Nav links */

.nav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1;
}

.nav__link{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 10px 8px;

  color: rgba(255,255,255,.88);
  text-decoration: none;

  font-size: 14px;
  font-weight: 650;
  letter-spacing: .005em;
  line-height: 1;

  transition: color var(--transition);
}

.site-header.is-scrolled .nav__link{
  color: var(--brand-900);
}

.nav__link::after{
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 3px;

  height: 2px;
  background: var(--accent-500);
  border-radius: var(--radius-pill);

  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms var(--ease);
}

.nav__link:hover{
  color: #FFFFFF;
}

.site-header.is-scrolled .nav__link:hover{
  color: var(--brand-600);
}

.nav__link:hover::after,
.nav__link.is-active::after{
  transform: scaleX(1);
}

.nav__link.is-active{
  color: #FFFFFF;
}

.site-header.is-scrolled .nav__link.is-active{
  color: var(--brand-600);
}


/* Nav CTA */

.nav__cta{
  margin-left: 10px;
  min-height: 36px;
  padding: 12px 28px;

  --fill-base: var(--brand-600);
  --fill-hover: var(--brand-800);
  --fill-text: #FFFFFF;
  --fill-border: rgba(255,255,255,.18);

  border: 1px solid var(--fill-border);
  border-radius: var(--radius-pill);

  font-size: 14px;
  font-weight: 740;
  line-height: 1;

  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.nav__cta:hover{
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}

.site-header.is-scrolled .nav__cta{
  --fill-border: transparent;

  border-color: transparent;
  box-shadow: 0 10px 24px rgba(30,127,78,.15);
}

.site-header.is-scrolled .nav__cta:hover{
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(23,70,59,.18);
}

/* =========================================================
   Header Variant — Solid from start
   Use body class: page-header-solid
========================================================= */

.page-header-solid .site-header{
  background: #FFFFFF;
  border-bottom-color: var(--header-border);
  box-shadow: 0 10px 30px rgba(10,47,38,.06);
}


/* Logo state */

.page-header-solid .site-header .brand__logo--dark{
  opacity: 1;
}

.page-header-solid .site-header .brand__logo--light{
  opacity: 0;
}


/* Nav links */

.page-header-solid .site-header .nav__link{
  color: var(--brand-900);
}

.page-header-solid .site-header .nav__link:hover,
.page-header-solid .site-header .nav__link.is-active{
  color: var(--brand-600);
}


/* CTA */

.page-header-solid .site-header .nav__cta{
  --fill-border: transparent;

  border-color: transparent;
  box-shadow: 0 10px 24px rgba(30,127,78,.15);
}

.page-header-solid .site-header .nav__cta:hover{
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(23,70,59,.18);
}
/* =========================================================
   Mobile navigation toggle
========================================================= */

.navToggle{
  display: none;
  position: relative;
  z-index: 3;

  width: 46px;
  height: 46px;
  padding: 0;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;

  background: rgba(255,255,255,.08);
  color: #FFFFFF;

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;

  transition:
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.navToggle:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.34);
}

.navToggle:focus-visible{
  outline: 3px solid rgba(201,151,53,.45);
  outline-offset: 3px;
}

.navToggle__line{
  position: absolute;

  width: 20px;
  height: 2px;

  background: currentColor;
  border-radius: var(--radius-pill);

  transition:
    transform 260ms var(--ease),
    opacity 180ms var(--ease);
}

.navToggle__line:nth-child(1){
  transform: translateY(-6px);
}

.navToggle__line:nth-child(2){
  transform: translateY(0);
}

.navToggle__line:nth-child(3){
  transform: translateY(6px);
}


/* Open state */

.navToggle.is-active .navToggle__line:nth-child(1){
  transform: rotate(45deg);
}

.navToggle.is-active .navToggle__line:nth-child(2){
  opacity: 0;
}

.navToggle.is-active .navToggle__line:nth-child(3){
  transform: rotate(-45deg);
}


/* Scrolled and solid header states */

.site-header.is-scrolled .navToggle,
.page-header-solid .site-header .navToggle{
  color: var(--brand-900);

  background: rgba(10,47,38,.04);
  border-color: rgba(10,47,38,.12);
}

.site-header.is-scrolled .navToggle:hover,
.page-header-solid .site-header .navToggle:hover{
  color: var(--brand-600);

  background: rgba(30,127,78,.08);
  border-color: rgba(30,127,78,.18);
}

/* =========================================================
   Responsive navigation
========================================================= */

@media (max-width: 960px){

  .nav-wrap{
    position: relative;
    gap: 20px;
  }


  /* Logo */

  .brand{
    width: 172px;
    height: 52px;
  }


  /* Toggle */

  .navToggle{
    display: inline-flex;
    flex: 0 0 auto;
  }


  /* Navigation panel */

  .nav{
    position: fixed;
    z-index: 2;

    top: var(--nav-h);
    left: 16px;
    right: 16px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;

    max-height: calc(100dvh - var(--nav-h) - 24px);
    padding: 14px;

    overflow-y: auto;
    overscroll-behavior: contain;

    background: rgba(253,246,243,.98);
    border: 1px solid rgba(10,47,38,.10);
    border-radius: 22px;

    box-shadow:
      0 24px 70px rgba(10,47,38,.18),
      0 8px 24px rgba(10,47,38,.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-12px) scale(.985);
    transform-origin: top center;

    transition:
      opacity 200ms var(--ease),
      visibility 200ms var(--ease),
      transform 240ms var(--ease);
  }

  .nav.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0) scale(1);
  }


  /* Navigation links */

  .nav__link{
    justify-content: flex-start;

    width: 100%;
    min-height: 50px;
    padding: 14px 16px;

    color: var(--brand-900);

    font-size: 16px;
    font-weight: 650;
    line-height: 1.2;

    border-radius: 12px;
  }

  .nav__link:hover{
    color: var(--brand-600);
    background: rgba(30,127,78,.07);
  }

  .nav__link::after{
    display: none;
  }

  .site-header.is-scrolled .nav__link,
  .page-header-solid .site-header .nav__link{
    color: var(--brand-900);
  }

  .site-header.is-scrolled .nav__link:hover,
  .page-header-solid .site-header .nav__link:hover{
    color: var(--brand-600);
  }

  .nav__link.is-active,
  .site-header.is-scrolled .nav__link.is-active,
  .page-header-solid .site-header .nav__link.is-active{
    color: var(--brand-600);
    background: rgba(30,127,78,.08);
  }


  /* Contact CTA */

  .nav__cta{
    width: 100%;
    min-height: 50px;
    margin: 10px 0 0;
    padding: 15px 22px;

    justify-content: center;

    font-size: 15px;

    box-shadow: 0 10px 24px rgba(30,127,78,.16);
  }


  /* Prevent page scroll while menu is open */

  body.nav-open{
    overflow: hidden;
  }
}


@media (max-width: 560px){

  .nav-wrap{
    gap: 14px;
  }

  .brand{
    width: 148px;
    height: 46px;
  }

  .navToggle{
    width: 44px;
    height: 44px;
  }

  .nav{
    left: 10px;
    right: 10px;

    padding: 12px;
    border-radius: 18px;
  }

  .nav__link{
    min-height: 48px;
    padding: 13px 14px;

    font-size: 15px;
  }
}

/* =========================================================
   Footer
========================================================= */

.siteFooter{
  position: relative;
  overflow: hidden;

  padding: clamp(46px, 6vw, 70px) 0 24px;

  background:
    radial-gradient(circle at 12% 0%, rgba(30, 127, 78, .20) 0%, rgba(30, 127, 78, .06) 28%, transparent 58%), linear-gradient(180deg, var(--brand-900) 0%, var(--brand-900)100%);
  color: rgba(255,255,255,.78);
}

.siteFooter::before{
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,.025) 1px,
      transparent 1px
    );

  background-size: 56px 56px;
  opacity: .12;
  pointer-events: none;
}

.siteFooter > .container{
  position: relative;
  z-index: 1;
}

.siteFooter__top{
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: start;

  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}


/* Brand */

.siteFooter__brand{
  max-width: 460px;
}

.siteFooter__logoLink{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.siteFooter__logo{
  display: block;
  width: 210px;
  height: auto;
}

.siteFooter__tagline{
  margin: 24px 0 0;

  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 760;
  letter-spacing: -.015em;
}

.siteFooter__text{
  margin: 14px 0 0;

  max-width: 52ch;

  color: rgba(255,255,255,.64);
  font-size: 15px;
  line-height: 1.7;
}


/* Nav columns */

.siteFooter__nav{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 46px);
}

.siteFooter__col{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.siteFooter__col h4{
  margin: 0 0 8px;

  color: var(--accent-400);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.siteFooter__col a{
  position: relative;

  color: rgba(255,255,255,.72);
  text-decoration: none;

  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;

  transition:
    color var(--transition),
    transform var(--transition);
}

.siteFooter__col a:hover{
  color: #FFFFFF;
  transform: translateX(3px);
}

.siteFooter__col a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 100%;
  height: 1px;

  background: rgba(201,151,53,.72);

  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
}

.siteFooter__col a:hover::after{
  transform: scaleX(1);
}


/* Bottom */

.siteFooter__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;

  padding-top: 22px;
}

.siteFooter__bottom small{
  color: rgba(255,255,255,.52);
  font-size: 13px;
}

.siteFooter__legal{
  display: flex;
  align-items: center;
  gap: 16px;
}

.siteFooter__legal a{
  color: rgba(255,255,255,.56);
  text-decoration: none;

  font-size: 13px;
  font-weight: 650;

  transition: color var(--transition);
}

.siteFooter__legal a:hover{
  color: #FFFFFF;
}


@media (max-width: 900px){
  .siteFooter__top{
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .siteFooter__brand{
    max-width: 560px;
  }

  .siteFooter__nav{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px){
  .siteFooter{
    padding-top: 44px;
  }

  .siteFooter__nav{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .siteFooter__col:last-child{
    grid-column: 1 / -1;
  }

  .siteFooter__logo{
    width: 180px;
  }

  .siteFooter__tagline{
    margin-top: 20px;
    font-size: 17px;
  }

  .siteFooter__text{
    font-size: 14px;
    line-height: 1.65;
  }

  .siteFooter__bottom{
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 440px){
  .siteFooter__nav{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .siteFooter__col:last-child{
    grid-column: auto;
  }
}
/* =========================================================
   Section system
========================================================= */

.section{
  position: relative;
  overflow: hidden;
  padding: var(--section-py, var(--section-y)) 0;
  background: var(--section-bg, transparent);
  color: var(--section-color, var(--text));
}

/* Content above decorative backgrounds */
.section > .container{
  position: relative;
  z-index: 1;
}

/* Background variants */
.section--white{
  --section-bg: #FFFFFF;
  --section-color: var(--text);
}

.section--soft{
  --section-bg: var(--bg-warm);
  --section-color: var(--text);
}

.section--warm{
  --section-bg: var(--bg-warm);
  --section-color: var(--text);
}

.section--muted{
  --section-bg: var(--bg-muted);
  --section-color: var(--text);
}

.section--dark{
  --section-bg: var(--brand-900);
  --section-color: #FFFFFF;
}

.section--deep{
  --section-bg: var(--brand-950);
  --section-color: #FFFFFF;
}

.section--green{
  --section-bg: var(--brand-800);
  --section-color: #FFFFFF;
}

/* Premium dark gradient, reusable */
.section--darkGradient{
  --section-bg:
    radial-gradient(
      circle at 18% 18%,
      rgba(57,168,108,.16) 0%,
      transparent 36%
    ),
    radial-gradient(
      circle at 84% 82%,
      rgba(201,151,53,.08) 0%,
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #0E4939 0%,
      #0A3D31 100%
    );

  --section-color: #FFFFFF;
}

/* Reusable decorative glow */
.section--glow{
  isolation: isolate;
}

.section--glow::before,
.section--glow::after{
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.section--glow::before{
  top: var(--glow-a-top, -180px);
  left: var(--glow-a-left, -180px);
  width: var(--glow-a-size, 420px);
  height: var(--glow-a-size, 420px);
  background: radial-gradient(
    circle,
    var(--glow-a-color, rgba(30,127,78,.10)) 0%,
    var(--glow-a-mid, rgba(30,127,78,.04)) 42%,
    transparent 72%
  );
}

.section--glow::after{
  right: var(--glow-b-right, -180px);
  bottom: var(--glow-b-bottom, -220px);
  width: var(--glow-b-size, 520px);
  height: var(--glow-b-size, 520px);
  background: radial-gradient(
    circle,
    var(--glow-b-color, rgba(201,151,53,.12)) 0%,
    var(--glow-b-mid, rgba(201,151,53,.04)) 42%,
    transparent 72%
  );
}

/* =========================================================
   Section heading system
========================================================= */
.sectionToolbar{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;

  margin-bottom: 30px;
}



.sectionHead{
  --head-max: 720px;
  --title-max: 18ch;
  --lead-max: 680px;

  max-width: var(--head-max);
  margin-bottom: clamp(34px, 4vw, 54px);
  text-align: left;
}
.sectionHead--flush{
  margin-bottom: 0;
}

.sectionHead--text{
  margin-bottom: 20px;
}

.sectionHead--center{
  margin-inline: auto;
  text-align: center;
    --title-max: 19ch;
}

.sectionHead--right{
  margin-left: auto;
  text-align: right;
}

.sectionHead--narrow{
  --head-max: 620px;
  --title-max: 14ch;
  --lead-max: 580px;
}

.sectionHead--wide{
  --head-max: 920px;
  --title-max: 26ch;
  --lead-max: 820px;
}

.sectionKicker{
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin: 0 0 18px;

  color: var(--kicker-color, var(--brand-600));
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sectionKicker::before,
.sectionKicker::after{
  content: "";
  width: 38px;
  height: 2px;
  background: var(--kicker-line, var(--accent-500));
  border-radius: var(--radius-pill);
}

.sectionKicker::after{
  display: none;
}

.sectionHead--center .sectionKicker::after{
  display: inline-block;
}

.sectionHead--right .sectionKicker{
  flex-direction: row-reverse;
}

.sectionTitle{
  max-width: var(--title-max);
  margin: 0;

  color: var(--title-color, var(--brand-900));
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 780;
}

.sectionTitle--bg{
  max-width: 24ch !important;
}


.sectionLead{

  margin: 22px 0 0;

  color: var(--lead-color, var(--text-muted));
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.72;
}

.textAccent{
  color: var(--brand-600);
  font-weight: 760;
}
/* Center/right alignment behavior */
.sectionHead--center .sectionTitle,
.sectionHead--center .sectionLead{
  margin-inline: auto;
}

.sectionHead--right .sectionTitle,
.sectionHead--right .sectionLead{
  margin-left: auto;
}

/* Size modifiers */
.sectionTitle--sm{
  font-size: clamp(28px, 3vw, 40px);
}

.sectionTitle--lg{
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1;
}

/* Dark sections */
.sectionHead--dark{
  --kicker-color: rgba(255,255,255,.84);
  --title-color: #FFFFFF;
  --lead-color: rgba(255,255,255,.72);
}


.pillKicker{
  display: inline-flex;
    align-items: center;
    margin-bottom: 0px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 820;
    letter-spacing: .12em;
    text-transform: uppercase;
    line-height: 1;
    background: var(--accent-gold);
    padding: 8px 14px;
    border-radius: 20px;
}

.catalogGrid{
  --grid-cols: 2;
  --grid-gap: 10px;

  display: grid;
  grid-template-columns: repeat(var(--grid-cols), minmax(0, 1fr));
  gap: var(--grid-gap);
}

.catalogGrid--3{
  --grid-cols: 3;
}

.catalogGrid--4{
  --grid-cols: 4;
}

.catalogGrid--roomy{
  --grid-gap: 18px;
}

@media (max-width: 900px){
  .catalogGrid,
  .catalogGrid--3,
  .catalogGrid--4{
    --grid-cols: 2;
  }
}

@media (max-width: 620px){
  .catalogGrid,
  .catalogGrid--3,
  .catalogGrid--4{
    --grid-cols: 1;
  }
}

