
:root {
  --black: #0a0c10;
  --navy: #0d1626;
  --blue: #1e6be6;
  --blue-bright: #2f80ff;
  --blue-court: #1a56cc;
  --white: #ffffff;
  --off-white: #f0f2f5;
  --gray: #8a8f9a;
  --light-gray: #c8cbd4;
  --gold: #c8a96e;
  --silver: #9ca3af;
  --premium: #e2c97b;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(10,12,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-logo span { color: var(--blue-bright); }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a, .nav-links > li > .nav-btn-text {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
  user-select: none;
}
.nav-links > li > a:hover, .nav-links > li > .nav-btn-text:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.chevron {
  width: 10px; height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: rgba(13,22,38,0.98);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  min-width: 200px;
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.nav-links > li:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.03em;
  cursor: default;
  transition: color 0.15s, background 0.15s;
}
.dropdown a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.dropdown a .coming-soon {
  font-size: 10px;
  color: var(--blue-bright);
  margin-left: 6px;
  letter-spacing: 0.04em;
}

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  cursor: default !important;
  opacity: 0.7;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85 !important; background: var(--blue) !important; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,12,16,0.35) 0%,
    rgba(10,12,16,0.1) 40%,
    rgba(10,12,16,0.8) 80%,
    rgba(10,12,16,0.95) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  padding: 60px 80px;
  max-width: 900px;
  animation: fadeUp 1s ease-out 0.3s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--blue-bright);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 36px;
  font-weight: 300;
}

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

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: default;
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-primary .arrow { font-size: 18px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: default;
  opacity: 0.75;
  text-decoration: none;
}

/* ─── SECTION SHARED ─── */
section { padding: 100px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--blue);
}

.section-body {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5060;
  max-width: 560px;
  font-weight: 300;
}

/* ─── CLUBS SECTION ─── */
.clubs-section {
  background: var(--black);
  padding: 100px 0;
}

.clubs-section .section-title,
.clubs-section .section-label {
  color: var(--white);
}

.clubs-section .section-title em { color: var(--blue-bright); }

.clubs-section .section-body { color: rgba(255,255,255,0.55); }

.clubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.club-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.club-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47,128,255,0.3);
}

.club-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.club-card-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, rgba(30,107,230,0.2) 0%, rgba(10,12,16,0.8) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-align: center;
  flex-direction: column; gap: 8px;
}

.club-card-img-placeholder .placeholder-icon {
  font-size: 36px; opacity: 0.3;
}

.club-card-img-aerial {
  background-image: url('../images/club-aerial.jpg');
  background-size: cover;
  background-position: center top;
}

.club-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
}

.club-badge.construction { background: #d97706; }

.club-card-body {
  padding: 24px;
}

.club-city {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 8px;
  font-weight: 600;
}

.club-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.club-address {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.club-courts {
  margin-top: 16px;
  display: flex; gap: 8px; flex-wrap: wrap;
}

.court-tag {
  background: rgba(30,107,230,0.15);
  border: 1px solid rgba(30,107,230,0.25);
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ─── AMENITIES ─── */
.amenities-section { background: var(--off-white); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: #d0d4dc;
  border-radius: 16px;
  overflow: hidden;
}

.amenity-item {
  background: var(--white);
  padding: 40px 32px;
  display: flex; align-items: flex-start; gap: 20px;
  transition: background 0.2s;
}

.amenity-item:hover { background: #fafbff; }

.amenity-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.amenity-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.amenity-text p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── PROGRAMS ─── */
.programs-section {
  background: var(--white);
}

.programs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.programs-image {
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
}

.programs-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.program-list {
  display: flex; flex-direction: column; gap: 0;
}

.program-item {
  padding: 28px 0;
  border-bottom: 1px solid #e8eaf0;
}

.program-item:first-child { padding-top: 0; }
.program-item:last-child { border-bottom: none; }

.program-num {
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.program-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--black);
  margin-bottom: 8px;
}

.program-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── MEMBERSHIP ─── */
.membership-section {
  background: var(--navy);
  padding: 100px 0;
}

.membership-section .section-title,
.membership-section .section-label {
  color: var(--white);
}
.membership-section .section-title em { color: var(--blue-bright); }
.membership-section .section-body { color: rgba(255,255,255,0.5); max-width: 620px; }

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.mem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
}

.mem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}

.mem-card.featured {
  background: var(--blue);
  border-color: var(--blue);
}

.mem-card-header {
  padding: 36px 32px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mem-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tier-silver { color: var(--silver); }
.tier-gold { color: var(--gold); }
.tier-premium { color: var(--premium); }

.mem-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: var(--white);
  margin-bottom: 10px;
}

.mem-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  font-weight: 300;
}
.mem-card.featured .mem-tagline { color: rgba(255,255,255,0.75); }

.mem-card-body {
  padding: 28px 32px 36px;
}

.mem-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  margin-top: 22px;
}

.mem-section-title:first-child { margin-top: 0; }

.mem-feature {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px;
}

.mem-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.mem-card.featured .mem-check { background: rgba(255,255,255,0.25); }

.mem-check::after {
  content: '';
  width: 6px; height: 4px;
  border-left: 1.5px solid rgba(255,255,255,0.8);
  border-bottom: 1.5px solid rgba(255,255,255,0.8);
  transform: rotate(-45deg) translateY(-1px);
}

.mem-feature-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.mem-card.featured .mem-feature-text { color: rgba(255,255,255,0.9); }

.mem-cta {
  display: block;
  text-align: center;
  margin: 28px 32px 32px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: not-allowed;
  background: rgba(255,255,255,0.04);
}

.mem-card.featured .mem-cta {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}

.badge-popular {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ─── GALLERY STRIP ─── */
.gallery-strip {
  height: 360px;
  background-image: url('../images/gallery-strip.jpg');
  background-size: cover;
  background-position: center 25%;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.gallery-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,12,16,0.8) 0%, rgba(10,12,16,0.2) 60%);
  display: flex; align-items: center;
}

.gallery-strip-text {
  padding: 0 80px;
}

.gallery-strip-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 54px);
  color: var(--white);
  max-width: 500px;
  line-height: 1.15;
}

.gallery-strip-text h2 em {
  color: var(--blue-bright);
  font-style: italic;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-brand .footer-logo span { color: var(--blue-bright); }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  cursor: default;
  transition: color 0.15s;
}

.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
}

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-social {
  display: flex; gap: 16px;
}

.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}

.social-link:hover {
  background: var(--blue);
  color: var(--white);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ─── WORDPRESS + RESPONSIVE EXTENSIONS ─── */
body.admin-bar nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar nav { top: 46px; } }

.mobile-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.mobile-nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
  display: block;
}

.hero-bg.has-inline-bg,
.club-card-img.has-inline-bg,
.gallery-strip.has-inline-bg {
  background-size: cover;
  background-position: center;
}

.sp-screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  nav { padding: 0 24px; }
  .clubs-grid, .membership-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .programs-layout { grid-template-columns: 1fr; gap: 54px; }
}

@media (max-width: 900px) {
  nav { height: 68px; }
  .mobile-nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(68px + 12px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    background: rgba(13,22,38,0.98);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.42);
    max-height: calc(100svh - 92px);
    overflow-y: auto;
  }
  body.admin-bar .nav-links { top: 112px; }
  body.nav-open .nav-links { display: flex; }
  .nav-links > li > a, .nav-links > li > .nav-btn-text { justify-content: space-between; padding: 12px 14px; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: 0;
    margin: 4px 0 8px;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
  }

  /* Mobile hero safety: the location/tag line can wrap into 2–3 lines.
     Keep the full tag below the fixed header instead of letting the first
     lines sit behind the logo/hamburger bar. */
  .hero {
    height: auto;
    min-height: 100svh;
    align-items: flex-start;
    padding-top: calc(68px + env(safe-area-inset-top, 0px));
    padding-bottom: 48px;
  }
  .hero-content {
    width: 100%;
    max-width: none;
    padding: 28px 24px 0;
  }
  .hero-tag {
    display: block;
    max-width: 100%;
    line-height: 1.8;
    margin-bottom: 18px;
    overflow-wrap: normal;
    white-space: normal;
  }
  .hero h1 { font-size: clamp(48px, 12vw, 86px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .container { padding-left: 24px; padding-right: 24px; }
  .section-title { font-size: clamp(38px, 9vw, 64px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 420px) {
  .hero-tag {
    font-size: 10px;
    letter-spacing: 0.2em;
  }
}

@media (max-width: 700px) {
  .clubs-grid, .membership-grid, .amenities-grid { grid-template-columns: 1fr; }
  .club-card, .mem-card { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
  .programs-image { min-height: 360px; }
  .gallery-strip { height: 260px; }
}

/* Additional controlled WordPress pages */
.sp-page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 80px;
  background: linear-gradient(180deg, var(--black), var(--navy));
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.sp-page-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(10,12,16,.82));
  pointer-events: none;
}

.sp-page-hero-inner {
  position: relative;
  z-index: 1;
}

.sp-page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 100px);
  line-height: .94;
  letter-spacing: -0.04em;
  max-width: 900px;
  margin: 12px 0 20px;
}

.sp-page-hero p {
  max-width: 660px;
  color: rgba(255,255,255,.74);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.sp-page-hero-landing {
  min-height: 560px;
}

.sp-page-main {
  background: var(--white);
  padding: 90px 0;
}

.sp-page-content-wrap {
  max-width: 980px;
}

.sp-page-simple-title h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 78px);
  margin: 0 0 28px;
}

.sp-page-content {
  color: #20242c;
  font-size: 18px;
  line-height: 1.75;
}

.sp-page-content h2,
.sp-page-content h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.05;
  margin: 1.6em 0 .55em;
}

.sp-page-content h2 { font-size: 46px; }
.sp-page-content h3 { font-size: 34px; }
.sp-page-content p { margin: 0 0 1.15em; }
.sp-page-content a { color: var(--blue); font-weight: 600; }
.sp-page-content img { max-width: 100%; height: auto; border-radius: 18px; }

@media (max-width: 900px) {
  .sp-page-hero { padding: 120px 0 60px; min-height: 360px; }
  .sp-page-main { padding: 60px 0; }
}
