/* ═══════════════════════════════════════════════════════════════════════
   North Hill Country Club · style.css
   Palette: Forest Green #1a3a28 | Gold #b89a45 | Cream #f7f3ed | White #fff
   Type: Cormorant Garamond (headings) · Raleway (body/ui)
═══════════════════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --green:        #1a3a28;
  --green-light:  #2a5240;
  --green-mid:    #1e4430;
  --gold:         #b89a45;
  --gold-light:   #d4b96a;
  --cream:        #f7f3ed;
  --cream-dark:   #ede7db;
  --text:         #1c1c1c;
  --text-muted:   #5a5a5a;
  --white:        #ffffff;
  --radius:       6px;
  --transition:   0.25s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
}

img { max-width: 100%; display: block; }

/* ── Shared Section Helpers ── */
.section-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.section-heading.light { color: var(--white); }

.section-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.section-body.light { color: rgba(255,255,255,0.82); }

/* ═══════════════════════════════ NAVBAR ═══════════════════════════════ */
.site-nav {
  background: rgba(26, 58, 40, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: padding var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid rgba(184,154,69,0.2);
}
.site-nav.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  background: rgba(26, 58, 40, 0.98);
}

.nav-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.navbar-nav .nav-link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82) !important;
  padding: 0.4rem 0.6rem;
  transition: color var(--transition);
}
.navbar-nav .nav-link:hover { color: var(--gold-light) !important; }

.btn-book {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white) !important;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.45rem 1.1rem;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn-book:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white) !important;
}

.navbar-toggler { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════ HERO ═══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('img/northhill-home-hdr-1.webp') center 40% / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 55% at 50% 46%, rgba(6,20,12,0.52) 0%, rgba(6,20,12,0.04) 100%),
    linear-gradient(
      to bottom,
      rgba(6,20,12,0.55) 0%,
      rgba(6,20,12,0.08) 30%,
      rgba(6,20,12,0.04) 55%,
      rgba(6,20,12,0.50) 100%
    );
  z-index: 1;
}

/* Full-viewport stage — keeps content vertically centered */
.hero-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: 5rem 1.5rem 6rem;
}

/* Text area — no visible card, backdrop is functional only */
.hero-content {
  text-align: center;
  max-width: 740px;
  width: 100%;
  padding: 3rem 2.5rem;
  background: rgba(6,20,12,0.18);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* ── Eyebrow flanked by thin gold rules ── */
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.hero-rule-line {
  flex: 0 0 48px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.55;
  display: block;
}
.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
  white-space: nowrap;
  text-shadow: 0 0 3px rgba(0,0,0,1), 0 1px 12px rgba(0,0,0,0.95), 0 0 30px rgba(0,0,0,0.8);
}

/* ── Title: italic display + tracked lightweight ── */
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.0;
  color: var(--white);
  margin: 0 0 0.1rem;
}
.hero-title-em {
  display: block;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(3.4rem, 9vw, 6.2rem);
  text-shadow: 0 0 4px rgba(0,0,0,1), 0 2px 20px rgba(0,0,0,0.95), 0 0 60px rgba(0,0,0,0.8);
}
.hero-title-light {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.6rem, 4.2vw, 2.8rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 0 4px rgba(0,0,0,1), 0 2px 20px rgba(0,0,0,0.95), 0 0 60px rgba(0,0,0,0.8);
  margin-top: 0.15em;
}

/* ── Thin gold separator ── */
.hero-title-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 1.4rem auto 1.3rem;
  opacity: 0.75;
}

.hero-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 0;
  text-shadow: 0 0 3px rgba(0,0,0,1), 0 2px 16px rgba(0,0,0,0.95), 0 0 40px rgba(0,0,0,0.85);
}

/* ── Hero CTAs ── */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn-hero-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.1rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-hero-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.38);
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.1rem;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-hero-ghost:hover {
  border-color: rgba(255,255,255,0.75);
  color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

/* ── Animated scroll indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-word {
  font-family: 'Raleway', sans-serif;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.scroll-line-anim {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 100%);
  animation: line-drop 2.2s cubic-bezier(0.22,1,0.36,1) infinite;
  transform-origin: top;
}
@keyframes line-drop {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  70%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ═══════════════════════════════ COURSE ═══════════════════════════════ */
.section-course {
  padding: 6rem 0;
  background: var(--cream);
}

.course-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26,58,40,0.15);
}
.course-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.course-badges { margin-top: 0.5rem; }
.badge-pill {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.resource-link:hover { color: var(--gold); border-color: var(--green); }

/* ── Scorecard ── */
.scorecard { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 4px 20px rgba(26,58,40,0.08); }
.scorecard-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.scorecard-title span { font-weight: 400; }

.scorecard-table {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  margin-bottom: 0;
}
.scorecard-table thead th {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 2px solid var(--gold);
  padding: 0.5rem 0.75rem;
  background: transparent;
}
.scorecard-table tbody td {
  padding: 0.5rem 0.75rem;
  vertical-align: middle;
  color: var(--text);
  border-color: var(--cream-dark);
}
.scorecard-table tbody tr:hover td { background: var(--cream); }

.tee-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  border: 1.5px solid rgba(0,0,0,0.15);
}
.tee-blue  { background: #1e6fd1; }
.tee-white { background: #fff; border-color: #999; }
.tee-red   { background: #c62828; }

/* ═══════════════════════════════ STATS BAR ═══════════════════════════════ */
.stats-bar {
  background: var(--green);
  padding: 3rem 0;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.stat-item:not(.stat-item--last)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: rgba(184,154,69,0.3);
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-unit {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--gold-light);
}
.stat-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.4rem;
}

/* ═══════════════════════════════ POND SECTION ═══════════════════════════════ */
.pond-section {
  display: flex;
  min-height: 520px;
}
.pond-img-col {
  flex: 0 0 50%;
  overflow: hidden;
}
.pond-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pond-text-col {
  flex: 0 0 50%;
  background: var(--green-mid);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn-gold-solid {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.btn-gold-solid:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--white); }

.btn-outline-cream {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 2px solid rgba(255,255,255,0.4);
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline-cream:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); color: var(--white); }

@media (max-width: 767.98px) {
  .pond-section { flex-direction: column; }
  .pond-img-col, .pond-text-col { flex: none; width: 100%; }
  .pond-img-col { height: 280px; }
  .pond-text-col { padding: 3rem 1.5rem; }
}

/* ═══════════════════════════════ OUTINGS ═══════════════════════════════ */
.section-outings {
  padding: 6rem 0;
  background: var(--white);
}

.outings-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26,58,40,0.12);
}
.outings-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.amenities-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
}
.amenities-list li {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.amenities-list li i {
  color: var(--green);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.btn-green {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.btn-green:hover { background: var(--green-light); border-color: var(--green-light); color: var(--white); }

/* ═══════════════════════════════ GALLERY ═══════════════════════════════ */
.section-gallery {
  padding: 6rem 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item {
  overflow: hidden;
  background: var(--cream-dark);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 200px);
  }
}

/* ═══════════════════════════════ THREE COLUMN SERVICES ═══════════════════════════════ */
.section-three-col {
  padding: 6rem 0;
  background: var(--white);
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--green);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: 0 10px 30px rgba(26,58,40,0.12);
  transform: translateY(-3px);
}
.service-card--gold { border-top-color: var(--gold); }

.service-icon {
  width: 48px; height: 48px;
  background: rgba(26,58,40,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  color: var(--green);
}
.service-icon.gold { background: rgba(184,154,69,0.12); color: var(--gold); }

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.service-body {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.btn-green-outline {
  display: inline-block;
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  align-self: flex-start;
}
.btn-green-outline:hover { background: var(--green); color: var(--white); }

/* ═══════════════════════════════ LESSONS BANNER ═══════════════════════════════ */
.lessons-banner {
  background: var(--green);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.lessons-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.lessons-img {
  width: 100%;
  max-width: 460px;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid rgba(184,154,69,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════ CONTACT ═══════════════════════════════ */
.section-contact {
  padding: 6rem 0;
  background: var(--cream);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: 0 6px 30px rgba(26,58,40,0.08);
  border-left: 4px solid var(--gold);
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--cream);
}
.contact-block:last-of-type { border-bottom: none; }

.contact-icon {
  width: 36px; height: 36px;
  background: rgba(26,58,40,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--green);
  flex-shrink: 0;
}

.contact-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-value {
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}
.contact-value a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}
.contact-value a:hover { color: var(--gold); text-decoration: underline; }

.contact-social { padding-top: 1rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  border: 2px solid var(--green);
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--green); color: var(--white); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(26,58,40,0.12);
  border: 3px solid var(--white);
}
.map-wrap iframe {
  display: block;
  width: 100%;
}

/* ═══════════════════════════════ FOOTER ═══════════════════════════════ */
.site-footer {
  background: var(--green);
  padding: 4rem 0 2rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  opacity: 0.9;
}
.footer-tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}
.footer-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-body {
  font-family: 'Raleway', sans-serif;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

.btn-book-sm {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}
.btn-book-sm:hover { background: var(--gold-light); color: var(--white); }

.footer-divider {
  border-color: rgba(255,255,255,0.12);
  margin: 2.5rem 0 1.5rem;
}
.footer-bottom {}
.footer-copy {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.powered-by {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.powered-by:hover { color: var(--gold-light); }
.powered-by strong { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════ RESPONSIVE ═══════════════════════════════ */
@media (max-width: 991.98px) {
  .brand-name { font-size: 0.9rem; }
  .navbar-collapse {
    background: rgba(26,58,40,0.98);
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 0.5rem;
  }
  .navbar-nav .nav-link { padding: 0.5rem 0.5rem; }
  .btn-book { width: 100%; text-align: center; margin-top: 0.5rem; }
}

@media (max-width: 767.98px) {
  .section-course,
  .section-outings,
  .section-gallery,
  .section-three-col,
  .section-contact { padding: 4rem 0; }
  .lessons-banner { padding: 4rem 0; }
  .outings-img { height: 300px; }
  .course-img { height: 240px; }
  .amenities-list { grid-template-columns: 1fr; }
  .lessons-img { max-width: 100%; height: 220px; }
}

@media (max-width: 575.98px) {
  .hero-content {
    padding: 2rem 1rem;
    max-width: calc(100vw - 2rem);
  }
  .hero-eyebrow-row { gap: 0.5rem; }
  .hero-rule-line { flex: 0 0 24px; }
  .hero-eyebrow { letter-spacing: 0.1em; font-size: 0.6rem; white-space: normal; text-align: center; }
  .hero-title-light { letter-spacing: 0.12em; }
  .hero-ctas { flex-direction: column; gap: 0.65rem; align-items: center; }
  .btn-hero-primary, .btn-hero-ghost {
    padding: 0.8rem 1.5rem;
    font-size: 0.68rem;
    width: 100%;
    max-width: 240px;
    text-align: center;
    display: block;
  }
  .contact-card { padding: 1.5rem; }
  .site-footer { padding: 3rem 0 1.5rem; }
  .gallery-grid { grid-template-rows: repeat(4, 160px); }
  .lessons-img { height: 180px; }
}
