/* ═══════════════════════════════════════════════
   CAC Kentish Town — Stylesheet
   Quiet Luxury · Sacred Space · Multi-generational
   ═══════════════════════════════════════════════ */

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

:root {
  /* Brand Palette */
  --navy:         #0c1a4e;
  --navy-mid:     #152265;
  --navy-light:   #1e2f7a;
  --gold:         #c4973a;
  --gold-light:   #ddb96a;
  --gold-pale:    #f5e9cc;

  /* Neutrals */
  --bg:           #faf9f6;
  --surface:      #ffffff;
  --border:       #e8e4dc;
  --text:         #1a1a2e;
  --text-soft:    #4a4a6a;
  --text-muted:   #8a8aaa;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  /* Spacing */
  --section-pad:  clamp(70px, 9vw, 130px);
  --container:    1200px;
  --radius:       10px;
  --radius-lg:    20px;

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Base ─── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Container ─── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ─── Typography ─── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.0;
  font-weight: 600;
  letter-spacing: -0.02em;
}
h1 em { font-style: italic; font-weight: 300; color: var(--gold-light); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
}
h2 em { font-style: italic; font-weight: 300; color: var(--gold); }

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  line-height: 1.2;
}

h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-soft);
  line-height: 1.8;
}

/* ─── Eyebrow Labels ─── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.eyebrow--gold { color: var(--gold-light); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-full { width: 100%; justify-content: center; }

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-hero {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-hero.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.7s; }

/* ─── Section header ─── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}
.section-intro {
  margin-top: 1.25rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-soft);
}
.section-header--light h2 { color: #fff; }
.section-header--light .section-intro { color: rgba(255,255,255,0.7); }


/* ═══════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
#navbar.scrolled {
  background: var(--surface);
  padding: 0.85rem 0;
  box-shadow: 0 2px 20px rgba(12,26,78,0.1);
}

.nav-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-cross {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  transition: color 0.3s;
}
#navbar.scrolled .logo-cross { color: var(--gold); }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
#navbar.scrolled .logo-main { color: var(--navy); }
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}
#navbar.scrolled .logo-sub { color: var(--text-soft); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.85rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
#navbar.scrolled .nav-links a { color: var(--text-soft); }
#navbar.scrolled .nav-links a:hover { color: var(--navy); background: var(--bg); }

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger */
.nav-toggle { display: none; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
#navbar.scrolled .nav-hamburger span { background: var(--navy); }

@media (max-width: 767px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }
  .nav-links a {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85) !important;
    padding: 0.75rem 2rem;
  }
  .nav-links a:hover { color: #fff !important; background: rgba(255,255,255,0.08) !important; }
  .nav-cta { background: var(--gold) !important; }
  .nav-toggle:checked ~ .nav-links { opacity: 1; pointer-events: all; }
  .nav-toggle:checked ~ label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ label span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}


/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Real photo background */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Dark overlay — navy tint over the photo for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 14, 50, 0.88) 0%,
    rgba(8, 14, 50, 0.75) 55%,
    rgba(8, 14, 50, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  /* Top padding = nav height (~70px) + breathing room; bottom for scroll hint */
  padding-top: clamp(7rem, 18vw, 11rem);
  padding-bottom: clamp(5rem, 10vw, 7rem);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 2vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  display: block;
}

.hero h1 {
  color: #fff;
  max-width: 12ch;
  margin-bottom: 1.5rem;
}

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  max-width: 44ch;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.br-desk { display: none; }
@media (min-width: 768px) { .br-desk { display: block; } }

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}


.hero-scroll-hint {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  left: clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}


/* ═══════════════════════════════════
   WELCOME STRIP
   ═══════════════════════════════════ */
.welcome-strip {
  background: var(--navy);
  padding-block: clamp(3rem, 5vw, 5rem);
}

.welcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}

.welcome-item {
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: background 0.3s;
}
.welcome-item:hover { background: rgba(255,255,255,0.06); }

.welcome-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: block;
}

.welcome-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.welcome-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.7;
}


/* ═══════════════════════════════════
   ABOUT
   ═══════════════════════════════════ */
.about {
  padding-block: var(--section-pad);
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
}

.image-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.img-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
}

.img-pattern--cross {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, var(--gold) 40px, var(--gold) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, var(--gold) 40px, var(--gold) 41px);
}

.img-label {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.about-image-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  bottom: -1.5rem;
  right: -1.5rem;
  opacity: 0.25;
  z-index: -1;
}

.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.25rem; }
.about-text .btn { margin-top: 0.5rem; }


/* ═══════════════════════════════════
   SERVICE TIMES
   ═══════════════════════════════════ */
.service-times {
  padding-block: var(--section-pad);
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover {
  box-shadow: 0 8px 30px rgba(12,26,78,0.1);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-day {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.service-time {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.service-card p { font-size: 0.9rem; margin-bottom: 1rem; }

.service-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  background: var(--gold-pale);
  color: #7a5a14;
  border-radius: 50px;
}

.services-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.services-note a { color: var(--navy); border-bottom: 1px solid var(--border); }
.services-note a:hover { border-color: var(--navy); }


/* ═══════════════════════════════════
   WATCH SECTION
   ═══════════════════════════════════ */
.watch-section {
  position: relative;
  padding-block: var(--section-pad);
  color: #fff;
}

.watch-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #060d25 0%, #0c1a4e 50%, #0f2060 100%);
  z-index: 0;
}

.watch-section .container { position: relative; z-index: 1; }

/* Live feature */
.live-feature {
  margin-bottom: 4rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,68,68,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(255,68,68,0); }
}

.live-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}

#yt-live {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  border: none;
  background: #000;
}

.live-note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255,255,255,0.4) !important;
}
.live-note a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(196,151,58,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.live-note a:hover { color: #fff; border-color: #fff; }

/* "We're Live Now" state — added by JS on Sunday mornings */
.live-badge.is-live {
  background: rgba(255,68,68,0.15);
  border: 1px solid rgba(255,68,68,0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
}
.live-badge.is-live .live-dot { background: #ff4444; }

/* Videos grid */
.videos-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.75rem;
  font-weight: 400;
  font-style: italic;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.video-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background 0.3s, transform 0.3s var(--ease), border-color 0.3s;
}
.video-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
  border-color: rgba(196,151,58,0.3);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.4s var(--ease);
}
.video-card:hover .thumb-img { opacity: 0.85; transform: scale(1.04); }

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }

.video-info {
  padding: 1.25rem;
}
.video-date {
  font-size: 0.76rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}
.video-info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 0.25rem;
  letter-spacing: 0;
  text-transform: none;
}
.video-info p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

.watch-cta { text-align: center; }


/* ═══════════════════════════════════
   LEADERSHIP / TEAM
   ═══════════════════════════════════ */
.team-section {
  padding-block: var(--section-pad);
  background: var(--bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.team-card:hover {
  box-shadow: 0 12px 40px rgba(12,26,78,0.12);
  transform: translateY(-4px);
}

.team-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s var(--ease);
}
.team-card:hover .team-img { transform: scale(1.03); }

.team-info { padding: 1.5rem; }
.team-info h3 { color: var(--navy); margin-bottom: 0.25rem; font-size: 1.3rem; }
.team-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.team-info p { font-size: 0.9rem; }


/* ═══════════════════════════════════
   SCRIPTURE
   ═══════════════════════════════════ */
.scripture {
  padding-block: clamp(4rem, 7vw, 8rem);
  background: var(--navy);
  text-align: center;
}

.scripture blockquote {
  max-width: 700px;
  margin-inline: auto;
}

.scripture blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.scripture cite {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}


/* ═══════════════════════════════════
   CONTACT
   ═══════════════════════════════════ */
.contact-section {
  padding-block: var(--section-pad);
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info > p { margin-bottom: 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details strong {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-details a, .contact-details span {
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
}
.contact-details a:hover { color: var(--navy); }

.service-reminder {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
}
.service-reminder strong {
  font-weight: 600;
  color: #7a5a14;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-reminder span { color: var(--text-soft); }

/* Form */
.contact-form {
  background: var(--bg);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

input, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus, textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12,26,78,0.08);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  gap: 1rem;
  color: var(--navy);
}
.form-success.visible { display: flex; }
.form-success svg { color: var(--gold); }
.form-success p { color: var(--text-soft); font-size: 1rem; }


/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.site-footer {
  background: #07112e;
  color: rgba(255,255,255,0.65);
  padding-block: clamp(3rem, 5vw, 5rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  max-width: 28ch;
  line-height: 1.7;
}

.footer-logo .logo-main { color: rgba(255,255,255,0.9); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.4); }

.site-footer h4 {
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.site-footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.site-footer ul a:hover { color: rgba(255,255,255,0.9); }

.footer-contact p, .footer-services p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.35rem;
}
.footer-contact a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-contact a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.sitebound-credit a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.sitebound-credit a:hover { color: rgba(255,255,255,0.7); }


/* ═══════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   ═══════════════════════════════════ */

/* ── 375px (iPhone SE) ── */
@media (max-width: 480px) {

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content {
    padding-top: 6.5rem;   /* nav (~60px) + 44px breathing */
    padding-bottom: 4rem;
  }
  .hero h1 { font-size: 2.8rem; max-width: none; }
  .hero-sub { font-size: 0.95rem; max-width: none; }
  .hero-scroll-hint { display: none; } /* hide on small screens */

  /* Welcome strip — single column */
  .welcome-grid { grid-template-columns: 1fr; gap: 0; }
  .welcome-item { padding: 1.75rem 1.5rem; }

  /* About — stack, image first */
  .about-grid { gap: 2rem; }
  .about-image-accent { display: none; }
  .image-placeholder { aspect-ratio: 3/2; border-radius: var(--radius); }

  /* Services grid — single column */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.5rem; }
  .service-time { font-size: 1.6rem; }

  /* Watch — video grid single column */
  .videos-grid { grid-template-columns: 1fr; }

  /* Team — single column */
  .team-grid { grid-template-columns: 1fr; }
  .team-photo { aspect-ratio: 3/2; }

  /* Contact */
  .contact-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-grid { gap: 2.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-brand p { max-width: none; }
}

/* ── 768px (Tablet) ── */
@media (min-width: 768px) {
  .hero-content {
    padding-top: clamp(8.5rem, 15vw, 11rem);
    padding-bottom: clamp(6rem, 10vw, 8rem);
  }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 1024px (Desktop) ── */
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
