/*
Theme Name: Cypress Hollow Golf Club
Description: Luxury forest green + gold home template (Playfair Display + Montserrat). No Elementor required.
Author: Custom
Version: 1.2
License: GNU General Public License v2 or later
Text Domain: cypress-hollow
*/

:root {
  --ch-green: #1b3022;
  --ch-green-dark: #14261a;
  /* Contact + footer band (mockup) */
  --ch-green-band: #1d2b1a;
  --ch-green-overlay: rgba(27, 48, 34, 0.92);
  --ch-gold: #d4af37;
  --ch-gold-hover: #e4c04d;
  /* Header member CTA (gold fill) */
  --ch-btn-member-bg: var(--ch-gold);
  --ch-btn-member-bg-hover: var(--ch-gold-hover);
  --ch-white: #ffffff;
  --ch-cream: #f6f4ef;
  --ch-text-muted: rgba(255, 255, 255, 0.82);
  --ch-text-dark: #1a2e22;
  --ch-max: 1200px;
  --ch-wide: 1320px;
  --ch-page-edge: clamp(1.25rem, 4vw, 3rem);
  --ch-font-display: "Playfair Display", Georgia, serif;
  --ch-font-body: "Montserrat", system-ui, sans-serif;
  /* Gold rule before kicker labels (footer, contact, etc.) — body text aligns after rule + gap */
  --ch-kicker-line-width: 2rem;
  --ch-kicker-line-gap: 0.65rem;
}

body {
  margin: 0;
  background: var(--ch-cream);
  color: var(--ch-text-dark);
  font-family: var(--ch-font-body);
  line-height: 1.65;
  font-size: 1rem;
}

/* Full-bleed (native theme — body.ch-home) */
body.ch-home .ch-root .ch-hero,
body.ch-home .ch-root .ch-facilities,
body.ch-home .ch-root .ch-discover-section,
body.ch-home .ch-root .ch-exp-section,
body.ch-home .ch-root .ch-section--why,
body.ch-home .ch-root #contact,
body.ch-home .ch-footer--full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  position: relative;
}

.ch-root {
  font-family: var(--ch-font-body);
  color: var(--ch-text-dark);
  line-height: 1.65;
  font-size: 1rem;
}

.ch-root *,
.ch-root *::before,
.ch-root *::after {
  box-sizing: border-box;
}

.ch-root img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ch-root a {
  color: inherit;
  text-decoration: none;
}

.ch-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem var(--ch-page-edge, clamp(1.25rem, 4vw, 3rem));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  flex-wrap: wrap;
}

.ch-header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.ch-header__end {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.35rem);
  flex-wrap: wrap;
  margin-left: auto;
}

.ch-header__end .ch-header__nav {
  margin-left: 0;
}

.ch-header__logo {
  font-family: var(--ch-font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ch-white);
  letter-spacing: 0.02em;
}

.ch-header__logo span {
  color: var(--ch-gold);
}

.ch-header__logo .custom-logo,
.ch-header__logo .ch-asset-logo {
  max-height: clamp(58px, 10vw, 80px);
  width: auto;
  height: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.5))
    drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}

.ch-header--inner .ch-header__logo .ch-asset-logo,
.ch-header--inner .ch-header__logo .custom-logo {
  max-height: clamp(52px, 8vw, 68px);
}

.ch-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.65rem, 1.8vw, 1.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.ch-nav > li {
  position: relative;
}

.ch-nav a {
  color: var(--ch-white);
  font-family: var(--ch-font-body);
  font-size: clamp(0.88rem, 1.15vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: none;
  transition: color 0.2s;
}

.ch-nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.ch-nav .menu-item-has-children > a::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.15rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.9;
}

.ch-nav a:hover {
  color: var(--ch-gold);
}

.ch-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  min-width: 12.5rem;
  background: #ffffff;
  border: 1px solid rgba(26, 46, 34, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  z-index: 200;
}

.ch-nav .sub-menu a {
  display: block;
  padding: 0.55rem 1.15rem;
  font-family: var(--ch-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ch-text-dark);
}

.ch-nav .sub-menu a:hover {
  color: var(--ch-gold);
  background: rgba(212, 175, 55, 0.12);
}

@media (min-width: 901px) {
  .ch-nav .sub-menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s ease;
  }

  .ch-nav li.menu-item-has-children:hover > .sub-menu,
  .ch-nav li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .ch-header__nav {
    margin-left: 0;
    flex-basis: 100%;
    order: 3;
  }

  .ch-header .ch-btn-contact {
    order: 2;
    margin-left: auto;
  }

  .ch-nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.15rem;
  }

  .ch-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    margin: 0.25rem 0 0.5rem 0.5rem;
    padding: 0.25rem 0;
    border: 1px solid rgba(26, 46, 34, 0.1);
    border-left: 3px solid var(--ch-gold);
    background: #ffffff;
  }

  .ch-nav .menu-item-has-children > a::after {
    display: none;
  }

  .ch-header--inner .ch-header__end {
    flex-basis: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .ch-header--inner .ch-header__end .ch-btn-contact {
    align-self: flex-end;
    order: 2;
    margin-left: 0;
  }

  .ch-header--inner .ch-header__end .ch-header__nav {
    order: 3;
  }
}

.ch-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.62rem clamp(1.65rem, 3.5vw, 2.15rem);
  background: var(--ch-btn-member-bg);
  color: var(--ch-white) !important;
  font-family: var(--ch-font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 4px 14px rgba(0, 0, 0, 0.2);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.ch-btn-contact:hover {
  background: var(--ch-btn-member-bg-hover);
  color: var(--ch-white) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 6px 22px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(20, 38, 26, 0.2);
  transform: translateY(-1px);
}

.ch-btn-contact:focus-visible {
  outline: 2px solid var(--ch-white);
  outline-offset: 3px;
}

.ch-btn-contact:active {
  transform: translateY(0);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 2px 8px rgba(0, 0, 0, 0.18);
}

.ch-hero {
  min-height: min(100vh, 920px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(5rem, 11vh, 7rem) clamp(1.25rem, 4vw, 3rem) clamp(0.65rem, 1.5vw, 1.1rem);
  background: var(--ch-green) center/cover no-repeat;
  color: var(--ch-white);
  position: relative;
  overflow: hidden;
}

.ch-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.ch-hero--video .ch-hero__video {
  opacity: 0.8;
  filter: brightness(1.1) saturate(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .ch-hero__video {
    display: none;
  }

  .ch-hero--video {
    background-image: var(--ch-hero-poster-url);
    background-size: cover;
    background-position: center;
  }
}

.ch-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 48, 34, 0.92) 0%,
    rgba(27, 48, 34, 0.45) 45%,
    rgba(27, 48, 34, 0.35) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Video hero: softer, lighter blend into Discover (no heavy solid band) */
.ch-hero.ch-hero--video::before {
  background: linear-gradient(
    to top,
    rgba(27, 48, 34, 0.78) 0%,
    rgba(27, 48, 34, 0.62) 14%,
    rgba(27, 48, 34, 0.42) 38%,
    rgba(27, 48, 34, 0.28) 62%,
    rgba(27, 48, 34, 0.2) 100%,
    rgba(27, 48, 34, 0.14) 1000%
  );
}

/* Gentle overlap — Discover still meets the lighter tail */
.ch-root .ch-hero.ch-hero--video + .ch-discover-section {
  margin-top: clamp(-2.25rem, -5.5vh, -1.1rem);
  padding-top: calc(clamp(0.65rem, 1.5vw, 1.1rem) + clamp(2.1rem, 5vh, 3.35rem));
  position: relative;
  z-index: 1;
}

.ch-hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  max-width: var(--ch-wide);
  margin: 0 auto;
  width: 100%;
  min-height: 0;
  padding-top: clamp(4.5rem, 13vh, 8.5rem);
}

.ch-hero__copy {
  /* Exact relative gaps: line = 1 subhead line box; block = 3 lines */
  --ch-hero-lead-fs: clamp(1.02rem, 1.9vw, 1.22rem);
  --ch-hero-lead-lh: 1.58;
  --ch-hero-line: calc(var(--ch-hero-lead-fs) * var(--ch-hero-lead-lh));
  --ch-hero-block: calc(3 * var(--ch-hero-line));
  --ch-hero-scroll-size: 48px;
  --ch-hero-gap-scroll-to-about: calc(0.9 * var(--ch-hero-block));

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: var(--ch-wide);
  margin-inline: auto;
  gap: 0;
  padding: clamp(0.2rem, 1vh, 0.65rem) 0 var(--ch-hero-gap-scroll-to-about);
}

.ch-hero__title {
  font-family: var(--ch-font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1.12;
  margin: 0;
  margin-block-end: calc(1.5 * var(--ch-hero-line));
  color: var(--ch-white);
  text-align: center;
  width: 100%;
  max-width: min(52rem, 100%);
  margin-inline: auto;
}

.ch-hero__title .ch-dot {
  color: var(--ch-gold);
}

.ch-hero__lead {
  max-width: min(38rem, 100%);
  margin: 0;
  margin-inline: auto;
  margin-block-end: var(--ch-hero-scroll-size);
  font-family: var(--ch-font-display);
  font-size: var(--ch-hero-lead-fs);
  font-weight: 300;
  color: var(--ch-white);
  line-height: var(--ch-hero-lead-lh);
  letter-spacing: 0.01em;
  text-align: center;
}

.ch-hero__lead .ch-hero__pick {
  text-decoration: underline;
  text-decoration-color: var(--ch-gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  text-decoration-skip-ink: none;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.ch-hero__scroll {
  display: inline-flex;
  width: var(--ch-hero-scroll-size, 48px);
  height: var(--ch-hero-scroll-size, 48px);
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: var(--ch-white);
  background: rgba(29, 43, 26, 0.82);
  border-radius: 50%;
  margin: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ch-hero__scroll:hover {
  background: var(--ch-gold);
  border-color: var(--ch-gold);
  color: var(--ch-green-dark);
}

.ch-section {
  padding: clamp(3.5rem, 8vw, 6rem) var(--ch-page-edge);
}

.ch-section--dark {
  background: var(--ch-green-band);
  color: var(--ch-white);
}

.ch-section--light {
  background: var(--ch-cream);
  color: var(--ch-text-dark);
}

.ch-shell {
  width: 100%;
  max-width: var(--ch-wide);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.ch-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ch-gold);
  margin-bottom: 0.75rem;
}

.ch-section--light .ch-kicker {
  color: var(--ch-green);
  opacity: 0.85;
}

.ch-heading {
  font-family: var(--ch-font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.ch-section--dark .ch-heading {
  color: var(--ch-white);
}

.ch-section--dark .ch-heading .ch-dot {
  color: var(--ch-gold);
}

.ch-prose {
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 36rem;
}

.ch-section--dark .ch-prose {
  color: var(--ch-text-muted);
}

/* —— Discover: About + Legacy headline, intro right, 4 stat cards —— */
.ch-discover-section {
  background: var(--ch-green);
  color: #ffffff;
  padding: clamp(0.65rem, 1.5vw, 1.1rem) 0 clamp(1.75rem, 4vw, 3rem);
}

.ch-discover-section__inner {
  width: 100%;
  max-width: var(--ch-wide);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.ch-discover-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(0.9rem, 2.2vw, 1.85rem);
  row-gap: 0;
  grid-template-areas:
    "kicker icon"
    "line1 ."
    "line2 intro";
  align-items: start;
  margin-bottom: clamp(1.2rem, 2.8vw, 2rem);
}

.ch-discover-kicker {
  grid-area: kicker;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 clamp(1.1rem, 2.2vw, 1.65rem);
  font-family: var(--ch-font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ch-gold);
}

.ch-discover-kicker__line {
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: var(--ch-gold);
  flex-shrink: 0;
}

.ch-discover-head__mark {
  grid-area: icon;
  justify-self: end;
  align-self: start;
  line-height: 0;
}

.ch-discover-head__clubs {
  color: #ffffff;
  opacity: 0.92;
}

.ch-discover-title--grid {
  display: contents;
}

.ch-discover-title__line1 {
  grid-area: line1;
  margin: 0;
  font-family: var(--ch-font-display);
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
  font-weight: 500;
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.ch-discover-title__line2 {
  grid-area: line2;
  margin: 0;
  font-family: var(--ch-font-display);
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
  font-weight: 500;
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.ch-discover-title__word {
  border-bottom: 2px solid var(--ch-gold);
  padding-bottom: 0.06em;
}

.ch-discover-title__dot {
  color: #ffffff;
}

.ch-discover-intro {
  grid-area: intro;
  margin: 0;
  min-width: 0;
  max-width: none;
  text-align: left;
  font-size: clamp(0.94rem, 1.35vw, 1.05rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 400;
  align-self: start;
}

@media (max-width: 768px) {
  .ch-discover-head {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "kicker icon"
      "line1 line1"
      "line2 line2"
      "intro intro";
  }

  .ch-discover-intro {
    grid-column: 1 / -1;
    margin-top: 0.55rem;
  }
}

.ch-discover-section__inner > .ch-discover-track--stats {
  width: 100%;
  box-sizing: border-box;
}

.ch-discover-track--stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1.35rem);
  align-items: stretch;
}

@media (max-width: 900px) {
  .ch-discover-track--stats {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(0.65rem, 1.6vw, 1.05rem);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: rgba(212, 175, 55, 0.5) transparent;
  }

  .ch-discover-track--stats::-webkit-scrollbar {
    height: 6px;
  }

  .ch-discover-track--stats::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.45);
    border-radius: 999px;
  }

  .ch-discover-card--stat {
    flex: 0 0 min(72vw, 280px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

.ch-discover-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  min-height: 260px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.ch-discover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ch-discover-card--stat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 28, 20, 0.92) 0%,
    rgba(15, 28, 20, 0.45) 38%,
    transparent 62%
  );
  pointer-events: none;
}

.ch-discover-stat {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(1.15rem, 2.5vw, 1.65rem) clamp(1rem, 2vw, 1.35rem);
  text-align: left;
}

.ch-discover-stat__num {
  display: block;
  font-family: var(--ch-font-display);
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.ch-discover-stat__label {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--ch-font-body);
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  max-width: 12rem;
}

.ch-center-block {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.ch-center-block .ch-prose {
  margin: 0 auto;
}

.ch-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .ch-mosaic {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
  }
  .ch-mosaic__side {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .ch-mosaic__side--left {
    margin-right: -1.5rem;
    z-index: 1;
  }
  .ch-mosaic__side--right {
    margin-left: -1.5rem;
    z-index: 1;
  }
  .ch-mosaic__center {
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }
}

.ch-mosaic__side img,
.ch-mosaic__center img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 4px;
}

@media (min-width: 900px) {
  .ch-mosaic__center img {
    min-height: 380px;
    border-radius: 6px;
  }
  .ch-mosaic__side img {
    min-height: 320px;
  }
}

.ch-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  background: var(--ch-gold);
  color: var(--ch-green-dark) !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.ch-btn-gold:hover {
  background: var(--ch-gold-hover);
  transform: translateY(-2px);
}

.ch-cta-row {
  text-align: center;
}

.ch-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .ch-split {
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
  }
}

.ch-big-num {
  font-family: var(--ch-font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 1;
  color: rgba(27, 48, 34, 0.12);
  margin: 0.5rem 0 1rem;
}

.ch-subhead {
  font-family: var(--ch-font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--ch-green);
}

.ch-section--light .ch-prose {
  color: #3d4f42;
}

.ch-split__media {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(27, 48, 34, 0.15);
}

.ch-split__media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* —— Experience More: split background + center-mode carousel —— */
.ch-exp-section {
  position: relative;
  overflow: hidden;
}

.ch-exp-section__split-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ch-cream);
}

.ch-exp-section__intro-wrap {
  position: relative;
  z-index: 2;
  padding: clamp(3.25rem, 7vw, 5.75rem) clamp(1.25rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  color: var(--ch-text-dark);
}

.ch-exp-section__intro {
  margin: 0 auto;
}

.ch-exp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ch-gold);
}

.ch-exp-kicker__line {
  display: block;
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--ch-gold), rgba(212, 175, 55, 0.25));
}

.ch-exp-title {
  font-family: var(--ch-font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 4.2vw, 3.1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1.35rem;
  color: var(--ch-green);
}

.ch-exp-title__mark {
  display: inline;
  border-bottom: 2px solid var(--ch-gold);
  padding-bottom: 0.04em;
  margin-left: 0.35em;
}

.ch-exp-lead {
  margin: 0 auto;
  max-width: 40rem;
  font-size: clamp(0.9rem, 1.35vw, 1.02rem);
  line-height: 1.75;
  color: rgba(26, 46, 34, 0.82);
  font-weight: 400;
}

.ch-exp-carousel {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.ch-exp-carousel__viewport {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.ch-exp-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(27, 48, 34, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
  color: var(--ch-green);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.ch-exp-carousel__nav:hover,
.ch-exp-carousel__nav:focus-visible {
  background: var(--ch-gold);
  border-color: var(--ch-gold);
  color: var(--ch-green-dark);
  outline: none;
}

.ch-exp-carousel__nav--prev {
  left: clamp(0.35rem, 2.5vw, 1.75rem);
}

.ch-exp-carousel__nav--next {
  right: clamp(0.35rem, 2.5vw, 1.75rem);
}

.ch-exp-carousel__cards {
  display: grid;
  grid-template-columns: minmax(64px, 14vw) minmax(200px, 1fr) minmax(64px, 14vw);
  gap: clamp(0.35rem, 1.2vw, 1rem);
  align-items: center;
  width: 100%;
  max-width: min(100vw, 1540px);
  margin: 0 auto;
  padding: 0 clamp(2.75rem, 8vw, 5rem);
}

@media (min-width: 768px) {
  .ch-exp-carousel__cards {
    grid-template-columns: minmax(100px, 20vw) minmax(260px, 50vw) minmax(100px, 20vw);
    gap: clamp(0.65rem, 1.8vw, 1.35rem);
    padding: 0 clamp(3.25rem, 9vw, 5.5rem);
  }
}

@media (min-width: 1200px) {
  .ch-exp-carousel__cards {
    grid-template-columns: minmax(140px, 22vw) minmax(360px, 48vw) minmax(140px, 22vw);
  }
}

.ch-exp-carousel__card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  aspect-ratio: 16 / 10;
  max-height: min(42vw, 340px);
}

.ch-exp-carousel__card--center {
  border-radius: 12px;
  z-index: 2;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 10;
  max-height: min(48vw, 420px);
  transform: scale(1);
}

.ch-exp-carousel__card--side {
  opacity: 0.9;
  transform: scale(0.94);
  filter: brightness(0.97);
}

.ch-exp-carousel__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ch-exp-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.35rem;
  padding: 0 1rem;
}

.ch-exp-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 2px solid rgba(27, 48, 34, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: width 0.35s ease, border-color 0.2s, background 0.2s;
}

.ch-exp-dot:hover,
.ch-exp-dot:focus-visible {
  border-color: var(--ch-gold);
  outline: none;
}

.ch-exp-dot.is-active {
  width: 2rem;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ch-gold), #b8941f);
  border-color: transparent;
}

.ch-exp-section__cta {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 6vw, 4.25rem);
  background: var(--ch-cream);
}

/* —— Why Cypress Hollow slider (full-bleed, left / right edge layout) —— */
.ch-section--why {
  padding: clamp(3.5rem, 8vw, 6.75rem) 0;
  background: var(--ch-cream);
}

.ch-why-slider__wrap {
  width: 100%;
  padding-left: clamp(1.25rem, 5vw, 3.75rem);
}

@media (max-width: 959px) {
  .ch-why-slider__wrap {
    padding-right: clamp(1.25rem, 4vw, 3rem);
  }
}

@media (min-width: 960px) {
  .ch-why-slider__wrap {
    padding-right: 0;
  }
}

.ch-why-slider {
  display: grid;
  grid-template-columns: minmax(260px, min(42vw, 540px)) 1fr;
  grid-template-rows: auto 1fr;
  column-gap: clamp(1.75rem, 4.5vw, 3.5rem);
  row-gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
  outline: none;
}

@media (max-width: 959px) {
  .ch-why-slider {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .ch-why-slider__head {
    grid-column: 1;
    grid-row: 1;
  }

  .ch-why-slider__fig {
    grid-column: 1;
    grid-row: 2;
  }

  .ch-why-slider__panel {
    grid-column: 1;
    grid-row: 3;
  }
}

@media (min-width: 960px) {
  .ch-why-slider__head {
    grid-column: 1;
    grid-row: 1;
  }

  .ch-why-slider__panel {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
  }

  .ch-why-slider__fig {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
    justify-self: stretch;
  }
}

.ch-why-slider:focus-visible {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.4);
  border-radius: 6px;
}

.ch-why-slider__head {
  margin: 0;
  max-width: none;
  text-align: left;
}

.ch-why-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ch-gold);
}

.ch-why-kicker__line {
  display: block;
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--ch-gold), rgba(212, 175, 55, 0.35));
}

.ch-why-heading {
  font-family: var(--ch-font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ch-green);
  margin: 0;
}

.ch-why-heading__mark {
  border-bottom: 2px solid var(--ch-gold);
  padding-bottom: 0.05em;
}

.ch-why-rail-wrap {
  display: flex;
  align-items: stretch;
  gap: clamp(1.1rem, 2.8vw, 1.65rem);
}

.ch-why-rail-track {
  flex: 0 0 4px;
  width: 4px;
  min-height: 200px;
  align-self: stretch;
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.35),
    rgba(27, 48, 34, 0.1)
  );
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(27, 48, 34, 0.06);
}

.ch-why-rail-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 33.33%;
  background: linear-gradient(180deg, var(--ch-green-dark), var(--ch-green));
  border-radius: 4px;
  transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 16px rgba(27, 48, 34, 0.2);
}

.ch-why-slider__slides {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template: 1fr / 1fr;
}

.ch-why-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.ch-why-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.ch-why-slide__num {
  font-family: var(--ch-font-display);
  font-size: clamp(3.25rem, 10vw, 6.25rem);
  font-weight: 400;
  line-height: 1;
  color: rgba(27, 48, 34, 0.09);
  margin: 0 0 0.4rem;
  letter-spacing: -0.03em;
}

.ch-why-slide__body {
  padding-left: 1.15rem;
  border-left: 3px solid var(--ch-green);
  box-shadow: -1px 0 0 rgba(212, 175, 55, 0.2);
}

.ch-why-slide__title {
  font-family: var(--ch-font-display);
  font-size: clamp(1.28rem, 2.4vw, 1.7rem);
  font-weight: 500;
  color: var(--ch-green);
  margin: 0 0 1rem;
  line-height: 1.22;
}

.ch-why-slide__text {
  margin: 0 0 1.65rem;
  font-size: 0.96rem;
  line-height: 1.78;
  color: #3a4d40;
  max-width: 38rem;
}

.ch-btn-inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.4rem;
  background: linear-gradient(180deg, #e0bc4a, var(--ch-gold));
  color: #ffffff !important;
  font-family: var(--ch-font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(27, 48, 34, 0.12);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.ch-btn-inquire:hover {
  filter: brightness(1.05);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(27, 48, 34, 0.16);
}

.ch-why-slider__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  margin-top: 1.85rem;
  padding-left: calc(4px + clamp(1.1rem, 2.8vw, 1.65rem));
}

.ch-why-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ch-why-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 2px solid rgba(27, 48, 34, 0.22);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width 0.35s ease, border-color 0.2s, background 0.2s;
}

.ch-why-dot:hover,
.ch-why-dot:focus-visible {
  border-color: var(--ch-gold);
  outline: none;
}

.ch-why-dot.is-active {
  width: 2.15rem;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ch-gold), #b8941f);
  border-color: transparent;
}

.ch-why-slider__arrows {
  display: flex;
  gap: 0.45rem;
  margin-left: auto;
}

@media (max-width: 959px) {
  .ch-why-slider__arrows {
    margin-left: 0;
  }
}

.ch-why-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(27, 48, 34, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--ch-green);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(27, 48, 34, 0.06);
}

.ch-why-arrow:hover,
.ch-why-arrow:focus-visible {
  border-color: var(--ch-gold);
  background: var(--ch-green);
  color: var(--ch-white);
  outline: none;
  box-shadow: 0 8px 24px rgba(27, 48, 34, 0.15);
}

.ch-why-slider__fig {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template: 1fr / 1fr;
  min-height: min(58vw, 320px);
  border-radius: 18px;
  box-shadow:
    0 32px 64px rgba(27, 48, 34, 0.18),
    0 0 0 1px rgba(27, 48, 34, 0.05);
}

@media (min-width: 960px) {
  .ch-why-slider__fig {
    min-height: clamp(440px, 58vh, 680px);
    border-radius: 28px 0 0 28px;
    box-shadow:
      -12px 28px 56px rgba(27, 48, 34, 0.12),
      0 40px 80px rgba(27, 48, 34, 0.16),
      inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }
}

.ch-why-slider__fig .ch-why-slider__img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.06);
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease,
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.ch-why-slider__fig .ch-why-slider__img.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transform: scale(1);
}

.ch-facilities {
  --ch-facilities-bg-image: none;
  min-height: min(78vh, 760px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 8vw, 5.5rem)
    clamp(1.25rem, 12vw, 9rem);
  background-color: var(--ch-green);
  background-image: var(--ch-facilities-bg-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 30% 42%;
  position: relative;
}

.ch-facilities::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Light wash on the left for type; photo stays visible full-width. */
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.22) 38%,
    rgba(0, 0, 0, 0.08) 65%,
    rgba(0, 0, 0, 0.04) 100%
  );
  z-index: 0;
}

.ch-facilities__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.ch-facilities__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: min(28rem, 100%);
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

/* Gold rule + label — same pattern as footer (Explore / Visit) & contact (Booking). */
.ch-kicker-row {
  display: flex;
  align-items: center;
  gap: var(--ch-kicker-line-gap);
  margin: 0;
  font-family: var(--ch-font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ch-gold);
}

.ch-kicker-row__line {
  display: block;
  width: var(--ch-kicker-line-width);
  height: 2px;
  flex-shrink: 0;
  background: var(--ch-gold);
}

.ch-kicker-row__text {
  color: var(--ch-gold);
}

.ch-facilities__kicker {
  margin: 0 0 clamp(1rem, 2vw, 1.35rem);
}

.ch-contact__kicker {
  margin: 0 0 1rem;
}

.ch-facilities__title {
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  font-family: var(--ch-font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ch-facilities__title-line1 {
  display: block;
}

.ch-facilities__title-line2 {
  display: block;
}

.ch-facilities__title-word {
  border-bottom: 1px solid var(--ch-gold);
  padding-bottom: 0.1em;
  display: inline;
}

.ch-facilities__title-dot {
  color: #ffffff;
}

.ch-fac-list {
  list-style: none;
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.35rem);
  padding: 0;
}

.ch-fac-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: clamp(0.95rem, 2vw, 1.2rem);
  color: #ffffff;
  font-family: var(--ch-font-body);
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  font-weight: 500;
  line-height: 1.55;
}

.ch-fac-list li:last-child {
  margin-bottom: 0;
}

.ch-fac-list li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 0.48em;
  border-radius: 50%;
  background: transparent;
  box-sizing: border-box;
}

.ch-fac-list li:first-child::before {
  background: var(--ch-gold);
}

.ch-facilities__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.15rem;
  background: transparent;
  color: #ffffff !important;
  font-family: var(--ch-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.ch-facilities__cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff !important;
}

@media (max-width: 600px) {
  .ch-facilities {
    background-position: 50% 40%;
  }
}

.ch-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .ch-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4.5vw, 3.5rem);
  }
}

#contact.ch-section {
  padding-top: clamp(3.75rem, 8vw, 6.5rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  padding-left: var(--ch-page-edge);
  padding-right: var(--ch-page-edge);
}

.ch-contact-grid .ch-heading {
  margin-bottom: 1.5rem;
}

.ch-contact__title {
  line-height: 1.18;
}

.ch-contact__title-under {
  border-bottom: 1px solid var(--ch-gold);
  padding-bottom: 0.06em;
}

.ch-contact-lines {
  margin-bottom: 2rem;
}

.ch-contact-line {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--ch-text-muted);
  font-size: 0.95rem;
}

.ch-contact-line svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 2px;
}

.ch-contact-line strong {
  display: block;
  color: var(--ch-white);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.ch-btn-call {
  display: inline-flex;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 2.25rem;
  background: var(--ch-gold);
  color: #ffffff !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  transition: background 0.2s;
}

.ch-btn-call:hover {
  background: var(--ch-gold-hover);
}

.ch-contact-grid__img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.ch-contact-grid__img img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
}

.ch-footer {
  box-sizing: border-box;
  background: var(--ch-green-band);
  color: var(--ch-white);
  padding: clamp(2rem, 4vw, 3.25rem) var(--ch-page-edge) 2rem;
}

.ch-footer *,
.ch-footer *::before,
.ch-footer *::after {
  box-sizing: border-box;
}

.ch-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 900px) {
  .ch-footer__top {
    /* ~45% map | two text columns */
    grid-template-columns: minmax(0, 9fr) minmax(0, 5.5fr) minmax(0, 5.5fr);
    /* Wider gutter map → Quick Links than between the two text columns */
    column-gap: clamp(1.5rem, 2.5vw, 2.35rem);
    row-gap: 2rem;
    align-items: start;
  }

  .ch-footer__map {
    margin-inline-end: clamp(1.25rem, 2.5vw, 2.75rem);
  }

  /* Nudge Quick Links + Reach Us right for separation from the map */
  .ch-footer__top .ch-footer__col {
    padding-inline-start: clamp(2.65rem, 6.85vw, 5.85rem);
  }
}

.ch-footer__map {
  border-radius: 4px;
  overflow: hidden;
  min-height: min(320px, 55vw);
  background: rgba(255, 255, 255, 0.06);
  align-self: start;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.ch-footer__map iframe {
  flex: 1 1 auto;
  width: 100%;
  min-height: 280px;
  height: 320px;
  border: 0;
  display: block;
}

.ch-footer__col .ch-kicker-row {
  margin: 0 0 1rem;
}

.ch-footer__col .ch-footer__links,
.ch-footer__col .ch-footer__reach,
.ch-footer__col .ch-footer__social {
  padding-inline-start: calc(var(--ch-kicker-line-width) + var(--ch-kicker-line-gap));
}

.ch-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ch-footer__links a {
  display: block;
  padding: 0.5rem 0;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.ch-footer__reach {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.ch-footer__reach-line {
  margin: 0 0 0.85rem;
}

.ch-footer__reach-line:last-of-type {
  margin-bottom: 0;
}

.ch-footer__reach-line a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.ch-footer__reach-line a:hover {
  color: var(--ch-gold);
}

.ch-footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.35rem;
}

.ch-footer__social a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s;
}

.ch-footer__social a:hover {
  color: var(--ch-gold);
}

.ch-footer__social-note {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0.72;
  cursor: default;
}

.ch-footer__links a:hover {
  color: var(--ch-gold);
}

.ch-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.ch-footer__bar a {
  color: rgba(255, 255, 255, 0.55);
  margin-right: 1.25rem;
  transition: color 0.2s;
}

.ch-footer__bar a:hover {
  color: var(--ch-gold);
}

.ch-footer__toplink {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--ch-gold);
  color: var(--ch-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.ch-footer__toplink:hover {
  background: var(--ch-gold);
  color: var(--ch-green-dark);
}

/* Inner pages: sticky bar */
.ch-header--inner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ch-green-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
}

.ch-header--inner .ch-header__row {
  max-width: var(--ch-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ch-header--inner .ch-header__logo {
  color: var(--ch-white);
}

.ch-header--inner .ch-nav a {
  color: rgba(255, 255, 255, 0.92);
}

.ch-page-inner {
  max-width: var(--ch-wide);
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 4vw, 3rem);
  min-height: 40vh;
}

.ch-page-inner h1,
.ch-page-inner h2 {
  font-family: var(--ch-font-display);
  color: var(--ch-green);
}

.ch-footer__map-placeholder {
  flex: 1;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.ch-footer__map-placeholder strong {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* —— Membership inner page —— */
.ch-membership {
  background: var(--ch-cream);
  color: var(--ch-text-dark);
}

/* MembershipBG: fixed + cover = viewport-wide (no side gaps). Break out to 100vw like home full-bleed sections. */
.ch-membership.ch-membership--page-bg {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  position: relative;
  box-sizing: border-box;
  background-color: transparent;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.ch-membership--page-bg .ch-membership-hero {
  background: transparent;
}

.ch-membership--page-bg .ch-membership-grid {
  background: transparent;
}

.ch-membership-hero {
  position: relative;
  min-height: 720px;
  background: transparent;
  color: var(--ch-white);
  overflow: hidden;
}

.ch-membership-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ch-membership-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 11vw, 6.5rem) var(--ch-page-edge)
    clamp(7rem, 18vw, 12rem);
}

.ch-membership-hero__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  column-gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  width: 100%;
  max-width: 1360px;
  margin-top: clamp(3rem, 6vh, 4.5rem);
  box-sizing: border-box;
}

.ch-membership-hero__title {
  font-family: var(--ch-font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.ch-membership-hero__lead {
  margin: 0;
  font-family: var(--ch-font-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  color: var(--ch-text-muted);
  max-width: 32rem;
}

.ch-membership-grid {
  /* Section background stays in place; only inner shell overlaps hero */
  padding: 0 var(--ch-page-edge) clamp(3rem, 7vw, 4.5rem);
  background: var(--ch-cream);
}

.ch-membership-grid__shell {
  max-width: var(--ch-wide);
  margin: -190px auto 0; /* pull only the cards up to overlap hero */
  position: relative;
  z-index: 3;
}

.ch-membership-grid__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

.ch-membership-grid__row + .ch-membership-grid__row {
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}

@media (max-width: 800px) {
  .ch-membership-grid__row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.ch-membership-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 2.25rem 2.25rem;
  background: #f0ebe1;            /* base for lower cards */
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.ch-membership-card--full {
  background: #2b3d2f; /* richer dark green like mock */
  color: #ffffff;
}

.ch-membership-card--full .ch-membership-card__age {
  color: rgba(255, 255, 255, 0.85);
}

.ch-membership-card--full .ch-membership-card__list li {
  color: rgba(255, 255, 255, 0.98);
}

.ch-membership-card--exec {
  background: #fbf5e6; /* light cream block on the right */
}

.ch-membership-card__head {
  margin-bottom: 1.25rem;
  text-align: left;
}

.ch-membership-card__eyebrow {
  position: relative;
  margin: 0 0 0.75rem;
  font-family: var(--ch-font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ch-membership-card__eyebrow::before,
.ch-membership-card__eyebrow::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  opacity: 0.7;
}

.ch-membership-card__eyebrow::before {
  margin-right: 0.75rem;
}

.ch-membership-card__eyebrow::after {
  margin-left: 0.75rem;
}

.ch-membership-card__age {
  margin: 0;
  font-family: var(--ch-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 46, 34, 0.9);
}

.ch-membership-card__list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #3d4f42;
}

.ch-membership-card__list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}

.ch-membership-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
  color: var(--ch-gold);
}

.ch-membership-card__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(26, 46, 34, 0.8);
  background: transparent;
  color: var(--ch-text-dark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ch-membership-card__cta:hover {
  background: var(--ch-green-dark);
  color: #ffffff;
  border-color: var(--ch-green-dark);
}

.ch-membership-card__cta--gold {
  border-color: var(--ch-gold);
  background: var(--ch-gold);
  color: var(--ch-green-dark);
}

.ch-membership-card__cta--gold:hover {
  background: var(--ch-gold-hover);
  border-color: var(--ch-gold-hover);
}

.ch-membership-notes {
  padding: clamp(3rem, 6vw, 4rem) var(--ch-page-edge)
    clamp(3.5rem, 7vw, 4.75rem);
  background: #f7f3ec;
  color: var(--ch-text-dark);
}

.ch-membership-notes__shell {
  max-width: var(--ch-wide);
  margin: 0 auto;
  text-align: center;
}

.ch-membership-notes__title {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 0 1.75rem;
  font-family: var(--ch-font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.ch-membership-notes__rule {
  display: block;
  width: 4rem;
  height: 1px;
  background: var(--ch-green);
}

.ch-membership-notes__body {
  max-width: 44rem;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.8;
}

.ch-membership-notes__body p {
  margin: 0 0 0.9rem;
}

.ch-membership-notes__small {
  font-size: 0.8rem;
  font-style: italic;
}

/* --- Figma-aligned Membership hero + cards refinements --- */

/* Hero: heading left column (Figma: title centered in column); body top-right */
.ch-membership-hero__title {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 5.375rem);
  line-height: 1.17;
  letter-spacing: -0.01em;
}

/* Figma: 680px max width, Abhaya Libre Medium — right column, top, right-aligned */
.ch-membership-hero__lead {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 2;
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: 680px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Abhaya Libre', 'Times New Roman', Times, serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.25rem, 3.5vw, 32px);
  line-height: 1.1875; /* 38px / 32px */
  text-align: right;
  letter-spacing: -0.01em;
  color: #ffffff;
}

@media (max-width: 800px) {
  .ch-membership-hero__copy {
    grid-template-columns: minmax(0, 1fr);
    row-gap: clamp(1.25rem, 3vw, 2rem);
  }

  .ch-membership-hero__title {
    grid-column: 1;
    grid-row: 1;
  }

  .ch-membership-hero__lead {
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
    max-width: none;
    text-align: center;
  }
}

/* TOP LEFT – Full Golf card (rgba(33,54,32,0.6)) */
.ch-membership-card--full {
  background: rgba(33, 54, 32, 0.6);
  color: #ffffff;
}

/* TOP RIGHT – Executive card (solid white) */
.ch-membership-card--exec {
  background: #ffffff;
  color: #213620;
}

/* BOTTOM ROW – Junior + Social cards (same semi-transparent green) */
.ch-membership-grid__row:nth-child(2) .ch-membership-card {
  background: rgba(33, 54, 32, 0.6);
  color: #ffffff;
}

.ch-membership-card--full .ch-membership-card__list,
.ch-membership-grid__row:nth-child(2) .ch-membership-card__list {
  color: rgba(255, 255, 255, 0.95);
}

/* Buttons */
.ch-membership-card--full .ch-membership-card__cta,
.ch-membership-grid__row:nth-child(2) .ch-membership-card__cta {
  background: rgba(33, 54, 32, 0.25);
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
}

.ch-membership-card--exec .ch-membership-card__cta {
  background: #e8a600;
  border-color: #e8a600;
  color: #213620;
}

/* Membership page nav: no underline (hero overlay header — white text) */
.ch-membership .ch-membership-hero .ch-header:not(.ch-header--membership-bar) .ch-nav a,
.ch-membership .ch-membership-hero .ch-header:not(.ch-header--membership-bar) .ch-nav a:hover,
.ch-membership .ch-membership-hero .ch-header:not(.ch-header--membership-bar) .ch-nav a:focus,
.ch-membership .ch-membership-hero .ch-header:not(.ch-header--membership-bar) .ch-nav .current-menu-item > a,
.ch-membership .ch-membership-hero .ch-header:not(.ch-header--membership-bar) .ch-nav .current_page_item > a {
  text-decoration: none;
  border-bottom: none;
  font-weight: 600;
  color: inherit;
}

/* —— Membership Figma: white top bar — fixed so nav does not scroll away —— */
.ch-membership-hero > .ch-header--membership-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  min-height: 120px;
  height: auto;
  padding-left: max(var(--ch-page-edge), calc((100vw - 1600px) / 2));
  padding-right: max(var(--ch-page-edge), calc((100vw - 1600px) / 2));
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: 0;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  opacity: 1;
  transform: none;
}

body.admin-bar .ch-membership-hero > .ch-header--membership-bar {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .ch-membership-hero > .ch-header--membership-bar {
    top: 46px;
  }
}

@media (min-width: 960px) {
  .ch-membership-hero > .ch-header--membership-bar {
    height: 120px;
    flex-wrap: nowrap;
  }
}

.ch-membership-hero > .ch-header--membership-bar .ch-header__logo,
.ch-membership-hero > .ch-header--membership-bar .ch-header__logo a {
  color: #336331;
}

.ch-membership-hero > .ch-header--membership-bar .ch-asset-logo,
.ch-membership-hero > .ch-header--membership-bar .custom-logo {
  filter: none;
}

.ch-membership-hero > .ch-header--membership-bar .ch-nav a,
.ch-membership-hero > .ch-header--membership-bar .ch-nav a:hover,
.ch-membership-hero > .ch-header--membership-bar .ch-nav a:focus,
.ch-membership-hero > .ch-header--membership-bar .ch-nav .current-menu-item > a,
.ch-membership-hero > .ch-header--membership-bar .ch-nav .current_page_item > a {
  font-family: 'Abhaya Libre', 'Times New Roman', Times, serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #336331;
  text-decoration: none !important;
  border-bottom: none;
  text-transform: none;
}

.ch-membership-hero > .ch-header--membership-bar .ch-btn-contact {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: 2px;
  border: none;
  background: #336331;
  color: #ffffff !important;
}

.ch-membership-hero > .ch-header--membership-bar .ch-btn-contact:hover,
.ch-membership-hero > .ch-header--membership-bar .ch-btn-contact:focus {
  background: #2a5228;
  color: #ffffff !important;
}

/* Clear fixed header (120px desktop; more when nav wraps on small screens) */
.ch-membership .ch-membership-hero__inner {
  padding-top: calc(
    env(safe-area-inset-top, 0px) + clamp(5.5rem, 22vw, 8rem) + clamp(1.25rem, 3vw, 2.5rem)
  );
}

@media (min-width: 960px) {
  .ch-membership .ch-membership-hero__inner {
    padding-top: calc(env(safe-area-inset-top, 0px) + 120px + clamp(1.25rem, 3vw, 2.5rem));
  }
}

/* WP admin bar height: 46px ≤782px, else 32px */
body.admin-bar .ch-membership .ch-membership-hero__inner {
  padding-top: calc(46px + clamp(5.5rem, 22vw, 8rem) + clamp(1.25rem, 3vw, 2.5rem));
}

@media screen and (min-width: 783px) {
  body.admin-bar .ch-membership .ch-membership-hero__inner {
    padding-top: calc(32px + clamp(5.5rem, 22vw, 8rem) + clamp(1.25rem, 3vw, 2.5rem));
  }
}

@media screen and (min-width: 960px) {
  body.admin-bar .ch-membership .ch-membership-hero__inner {
    padding-top: calc(32px + 120px + clamp(1.25rem, 3vw, 2.5rem));
  }
}

.ch-membership .ch-membership-grid__shell {
  max-width: 1360px;
}

.ch-membership .ch-membership-grid__row {
  gap: 2rem;
}

.ch-membership .ch-membership-card {
  min-height: 466px;
  border-radius: 2px;
  text-align: center;
  align-items: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.ch-membership .ch-membership-card__head {
  text-align: center;
  width: 100%;
}

.ch-membership .ch-membership-card__eyebrow {
  font-family: 'Abhaya Libre', 'Times New Roman', Times, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.ch-membership .ch-membership-card__eyebrow::before,
.ch-membership .ch-membership-card__eyebrow::after {
  width: 30px;
}

.ch-membership .ch-membership-card__age {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: -0.01em;
  text-transform: none;
}

.ch-membership .ch-membership-card--exec .ch-membership-card__age {
  color: rgba(33, 54, 32, 0.88);
}

.ch-membership .ch-membership-card__list {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-align: center;
  width: 100%;
  max-width: 34rem;
}

.ch-membership .ch-membership-card__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0.65rem;
}

.ch-membership .ch-membership-card__list li::before {
  position: static;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.ch-membership .ch-membership-card--exec .ch-membership-card__list {
  color: #213620;
}

.ch-membership .ch-membership-card--exec .ch-membership-card__list li::before {
  color: #e8a600;
}

.ch-membership .ch-membership-card__cta {
  align-self: center;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  padding: 0.65rem 1.75rem;
  min-width: 206px;
  justify-content: center;
}

.ch-membership .ch-membership-card__list--social {
  font-weight: 400;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.5;
}

.ch-membership-notes {
  background: #fffcf3;
}

.ch-membership-notes__shell {
  max-width: 1360px;
  background: #fffcf3;
  border-radius: 2px;
  padding: clamp(2.25rem, 5vw, 3.25rem) clamp(1.25rem, 4vw, 2.5rem);
  box-sizing: border-box;
}

.ch-membership-notes__title {
  font-family: 'Abhaya Libre', 'Times New Roman', Times, serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.ch-membership-notes__rule {
  background: #213620;
}

.ch-membership-notes__body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #213620;
  max-width: 77.5rem;
}

.ch-membership-booking {
  background: #213620 !important;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.ch-membership-booking .ch-shell {
  max-width: 1360px;
}

.ch-membership-booking__grid {
  align-items: center;
}

.ch-membership-booking__copy .ch-kicker-row__text {
  color: #e8a600;
}

.ch-membership-booking__title {
  font-family: 'Abhaya Libre', 'Times New Roman', Times, serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
}

.ch-membership-booking__title::before {
  content: "";
  display: block;
  width: 300px;
  max-width: 100%;
  height: 8px;
  margin: 0 0 1.25rem;
  background: rgba(232, 166, 0, 0.4);
  border-radius: 1px;
}

.ch-membership-booking__lines {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.ch-membership-booking__line {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.ch-membership-booking__line svg {
  flex-shrink: 0;
  opacity: 0.7;
  color: #ffffff;
}

.ch-membership-booking__line a {
  color: inherit;
  text-decoration: none;
}

.ch-membership-booking__line a:hover {
  text-decoration: underline;
}

.ch-membership-booking__cta.ch-btn-call {
  max-width: 540px;
  width: 100%;
  min-height: 58px;
  border-radius: 3px;
  background: #e8a600 !important;
  color: #ffffff !important;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.ch-membership-booking__cta.ch-btn-call:hover {
  background: #d99800 !important;
}

.ch-membership-booking__img img,
.ch-membership-booking__img-placeholder {
  width: 100%;
  min-height: clamp(400px, 55vw, 799px);
  object-fit: cover;
  border-radius: 5px;
}

.ch-membership-booking__img-placeholder {
  background: rgba(255, 255, 255, 0.08);
}

/* Global header nav links: never underlined (override UA styles) */
.ch-header .ch-nav a,
.ch-header .ch-nav a:hover,
.ch-header .ch-nav a:focus {
  text-decoration: none !important;
}

