/* =====================================================
   WINTERS WEDDING MELODIES — styles.css
   Mobile-first. No framework. No build step.
   ===================================================== */

/* ── Custom Properties ─────────────────────────────── */
:root {
  --slate-blue:  #3a4f63;
  --dusty-blue:  #7a96ab;
  --cream:       #f4ede0;
  --honey:       #c89c5a;
  --honey-dark:  #b38848;
  --sage:        #a3b39a;
  --ink:         #1f2c3a;
  --ink-soft:    #4a5868;
  --white-warm:  #fbf8f2;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max-width:    1180px;
  --side-pad:     1.25rem;
  --section-pad:  4rem;
  --radius:       4px;
  --transition:   0.22s ease;

  --hairline: 1px solid rgba(200, 156, 90, 0.25);
}

@media (min-width: 720px)  { :root { --side-pad: 1.5rem; } }
@media (min-width: 1024px) { :root { --side-pad: 2rem; --section-pad: 6rem; } }


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

html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  overflow-x: hidden;
}

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

ul, ol { list-style: none; }

button { cursor: pointer; font-family: var(--font-body); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }


/* ── Accessibility helpers ──────────────────────────── */
.skip-link {
  position: absolute;
  top: -120%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1.25rem;
  background: var(--slate-blue);
  color: var(--white-warm);
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

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

:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 3px;
  border-radius: 2px;
}


/* ── Links ──────────────────────────────────────────── */
a {
  color: var(--slate-blue);
  text-decoration-skip-ink: auto;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
a:hover { color: var(--honey); }


/* ── Container ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}
.container--narrow { max-width: 720px; }


/* ── Section base ───────────────────────────────────── */
.section {
  padding-block: var(--section-pad);
}

/* Hairline dividers between adjacent sections */
.section + .section,
#about,
#repertoire,
#testimonials,
#booking {
  border-top: var(--hairline);
}

/* Soften the dark gallery → light booking transition */
#gallery + * + #booking,
#gallery + #booking {
  border-top: var(--hairline);
}


/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--slate-blue);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Eyebrow label */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--honey);
  margin-bottom: 0.6rem;
}

/* Ampersand signature treatment — display/heading contexts only.
   Default: subtle dusty-blue for on-cream contexts (About, etc.).
   On dark backgrounds (hero), use honey via .hero-content scope. */
.amp {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--dusty-blue);
  padding-inline: 0.02em;
}

/* Hero override: honey reads better on the dark gradient overlay */
.hero-content .amp {
  color: var(--honey);
}




/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}
.btn:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 3px;
}

/* Primary: honey fill */
.btn-primary {
  background-color: var(--honey);
  color: var(--ink);
  border-color: var(--honey);
}
.btn-primary:hover {
  background-color: var(--honey-dark);
  border-color: var(--honey-dark);
  color: var(--ink);
  transform: scale(1.02);
}

/* Secondary: outline only (white version — used on dark hero) */
.btn-secondary {
  background-color: transparent;
  color: var(--white-warm);
  border-color: rgba(251, 248, 242, 0.7);
}
.btn-secondary:hover {
  background-color: var(--slate-blue);
  border-color: var(--slate-blue);
  color: var(--white-warm);
  transform: scale(1.02);
}

/* Full-width on mobile, auto on larger */
.btn--submit { width: 100%; }
@media (min-width: 560px) { .btn--submit { width: auto; min-width: 180px; } }


/* ── Fade-up on scroll ──────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════════
   STICKY NAV
══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled state: cream bg + blur */
.site-header.scrolled {
  background-color: rgba(244, 237, 224, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(200, 156, 90, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo image */
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
  transition: filter var(--transition), opacity var(--transition);
}
/* On the cream nav (scrolled), darken the logo so white lettering stays visible */
.site-header.scrolled .logo img {
  filter: brightness(0.18);
}
.logo a:hover img { opacity: 0.75; }

/* ── Desktop nav links ── */
.nav-links {
  /* Hidden on mobile — toggled open by JS */
  display: none;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0; right: 0;
  background-color: rgba(244, 237, 224, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: var(--hairline);
  box-shadow: 0 6px 20px rgba(31, 44, 58, 0.1);
  padding-block: 0.75rem;
}
.nav-links.is-open { display: flex; }

.nav-links li a {
  display: block;
  padding: 0.7rem var(--side-pad);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-blue);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links li a:hover { color: var(--honey); }

.nav-links li a.nav-cta {
  color: var(--honey);
  font-weight: 600;
}

/* ── Hamburger button ── */
/* Base styles first; then the 720px block below hides it on desktop. */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: none;
  padding: 0;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--honey);
  border-radius: var(--radius);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px; height: 2px;
  background-color: var(--white-warm);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.3s ease;
}
.site-header.scrolled .hamburger,
.site-header.scrolled .hamburger::before,
.site-header.scrolled .hamburger::after { background-color: var(--ink); }

.hamburger { position: relative; }
.hamburger::before,
.hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after  { top:  7px; }

/* X state when open */
.nav-toggle[aria-expanded="true"] .hamburger { background-color: transparent !important; }
.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: var(--ink);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
  background-color: var(--ink);
}

/* ── Desktop nav (≥720px) ── */
@media (min-width: 720px) {
  .nav-toggle { display: none; }

  .nav-links {
    /* Override mobile panel, become inline row */
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 2.25rem;
    position: static;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .nav-links li a {
    padding: 0;
    color: var(--white-warm);
  }
  .site-header.scrolled .nav-links li a { color: var(--slate-blue); }
  .nav-links li a:hover,
  .site-header.scrolled .nav-links li a:hover { color: var(--honey); }

  /* CTA pill in nav */
  .nav-links li a.nav-cta {
    padding: 0.45rem 1.1rem;
    background-color: var(--honey);
    color: var(--ink);
    border-radius: var(--radius);
    font-weight: 500;
  }
  .nav-links li a.nav-cta:hover {
    background-color: var(--honey-dark);
    color: var(--ink);
  }
  .site-header.scrolled .nav-links li a.nav-cta { color: var(--ink); }
}


/* ══════════════════════════════════════════════════════
   §1 HERO
══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
}
@media (min-width: 720px) {
  #hero {
    min-height: 90vh;
    align-items: center;
    padding-bottom: 0;
  }
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-performance.jpg');
  background-size: cover;
  background-position: center 15%;
  z-index: 0;
}
/* On small phones, shift down a touch to keep both faces in frame */
@media (max-width: 719px) {
  .hero-bg { background-position: center 25%; }
}

/* Gradient overlay — darkens left + bottom for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Mobile: strong bottom-up gradient (portrait crop) */
  background: linear-gradient(
    to top,
    rgba(20, 30, 40, 0.90) 0%,
    rgba(20, 30, 40, 0.55) 50%,
    rgba(20, 30, 40, 0.20) 100%
  );
}
@media (min-width: 720px) {
  .hero-overlay {
    /* Desktop: left-to-right + bottom for the text panel */
    background:
      linear-gradient(
        to right,
        rgba(20, 30, 40, 0.85) 0%,
        rgba(20, 30, 40, 0.5)  50%,
        rgba(20, 30, 40, 0.1)  100%
      ),
      linear-gradient(
        to top,
        rgba(20, 30, 40, 0.5) 0%,
        transparent 40%
      );
  }
}

/* Text content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 80px; /* clear the fixed nav */
}
.hero-content .eyebrow { color: var(--honey); margin-bottom: 1rem; }
.hero-content h1 { color: var(--white-warm); margin-bottom: 0.875rem; }
.hero-sub {
  font-size: 1.125rem;
  font-style: italic;
  color: rgba(251, 248, 242, 0.82);
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* Scroll-cue chevron */
.scroll-cue {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(251, 248, 242, 0.5);
  animation: cue-bounce 2.2s ease-in-out infinite;
}
@keyframes cue-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}


/* ══════════════════════════════════════════════════════
   §2 MUSIC — Services + Samples
══════════════════════════════════════════════════════ */
#music .section-intro { max-width: 600px; margin-bottom: 2.5rem; }

.music-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 720px) {
  .music-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ── Services list ── */
.services-list ul { display: flex; flex-direction: column; }
.services-list li {
  padding-block: 1.1rem;
  border-bottom: var(--hairline);
}
.services-list li:first-child { border-top: var(--hairline); }

.service-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--slate-blue);
}

/* ── Audio samples panel ── */
.samples-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate-blue);
  margin-bottom: 0.75rem;
}
.samples-coming-soon {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.sample-card {
  background: var(--white-warm);
  border: 1px solid rgba(200, 156, 90, 0.22);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.sample-card:last-child { margin-bottom: 0; }
.sample-card h4 { margin-bottom: 0.15rem; }
.sample-credit {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}

/* Active audio player */
.sample-card.has-audio audio {
  width: 100%;
  display: block;
  margin-top: 0.6rem;
}

/* Pending card — no audio yet */
.sample-card.is-pending {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  opacity: 0.85;
}
.sample-pending-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.sample-pending-icon {
  color: var(--honey);
  flex-shrink: 0;
}
.sample-pending-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--honey);
  font-weight: 500;
  white-space: nowrap;
  margin-bottom: 0;
}

.music-note {
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
  padding-top: 1.5rem;
  border-top: var(--hairline);
}


/* ══════════════════════════════════════════════════════
   §3 ABOUT — Side-by-side photo + text
══════════════════════════════════════════════════════ */
#about {
  /* No standard section padding — full-bleed layout handles spacing */
  padding: 0;
  border-top: var(--hairline);
}

.about-inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .about-inner {
    flex-direction: row;
    min-height: 580px;
  }
}

/* Photo side */
.about-image {
  width: 100%;
  height: 420px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .about-image {
    width: 46%;
    height: auto;
  }
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
  display: block;
}
.about-image:hover img { transform: scale(1.025); }

/* Text side */
.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem var(--side-pad);
  background-color: var(--white-warm);
}
@media (min-width: 1024px) {
  .about-text { padding: 5rem 4.5rem 5rem 5rem; }
}

.about-text p { max-width: 52ch; }

.about-location {
  font-style: italic;
  color: var(--slate-blue);
  margin-top: 1.5rem !important;
  font-size: 0.9375rem;
}


/* ══════════════════════════════════════════════════════
   §4 REPERTOIRE — Three cards
══════════════════════════════════════════════════════ */
.repertoire-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 720px) {
  .repertoire-grid { grid-template-columns: repeat(3, 1fr); }
}

.repertoire-card {
  background: var(--white-warm);
  border: 1px solid rgba(200, 156, 90, 0.22);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}
.card-icon {
  color: var(--honey);
  margin-bottom: 1.1rem;
}
.repertoire-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
}
.repertoire-card p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.repertoire-note {
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
  padding-top: 1.5rem;
  border-top: var(--hairline);
}


/* ══════════════════════════════════════════════════════
   §5 GALLERY — CSS masonry columns
══════════════════════════════════════════════════════ */
#gallery {
  background-color: var(--ink);
  padding-block: var(--section-pad);
  border-top: none; /* dark bg handles visual separation */
}
#gallery .eyebrow { text-align: center; display: block; }
#gallery h2 {
  color: var(--white-warm);
  text-align: center;
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.gallery-grid {
  column-count: 2;
  column-gap: 0.5rem;
  margin-top: 2rem;
  padding-inline: var(--side-pad);
}
@media (min-width: 560px) {
  .gallery-grid { column-count: 3; column-gap: 0.625rem; }
}
@media (min-width: 1024px) {
  .gallery-grid { column-gap: 0.875rem; }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.5rem;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}
@media (min-width: 560px) { .gallery-item { margin-bottom: 0.625rem; } }
@media (min-width: 1024px) { .gallery-item { margin-bottom: 0.875rem; } }

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
  opacity: 0.88;
}


/* ══════════════════════════════════════════════════════
   §6 TESTIMONIALS — Hidden until reviews arrive
══════════════════════════════════════════════════════ */

/*
  TO REVEAL: remove the "testimonials--hidden" class from the
  <section id="testimonials"> element in index.html.
*/
.testimonials--hidden { display: none !important; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 720px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
  border-left: 3px solid var(--honey);
  padding-left: 1.5rem;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.testimonial footer {
  font-size: 0.875rem;
  color: var(--ink-soft);
}


/* ══════════════════════════════════════════════════════
   §7 BOOKING — Form
══════════════════════════════════════════════════════ */
#booking { background-color: var(--white-warm); }

.booking-lead {
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 58ch;
}

/* Netlify honeypot — must never be visible */
.honeypot { display: none !important; }

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group--full { grid-column: 1 / -1; }

/* Labels */
.form-group label,
.form-group legend {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.required { color: var(--honey); margin-left: 0.1em; }
.optional  { font-weight: 400; font-style: italic; color: var(--ink-soft); opacity: 0.8; }

/* Inputs, selects, textareas */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background-color: var(--cream);
  border: 1px solid rgba(58, 79, 99, 0.28);
  border-radius: var(--radius);
  padding: 0.65rem 0.875rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dusty-blue);
  box-shadow: 0 0 0 3px rgba(122, 150, 171, 0.2);
}

/* Custom select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%234a5868' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* Fieldset / checkboxes */
fieldset { border: none; }
fieldset legend { margin-bottom: 0.5rem; }

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  padding-top: 0.15rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9375rem;
  color: var(--ink);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 1rem; height: 1rem;
  accent-color: var(--honey);
  cursor: pointer;
  flex-shrink: 0;
}

.form-submit { padding-top: 0.5rem; }


/* ══════════════════════════════════════════════════════
   §8 FOOTER
══════════════════════════════════════════════════════ */
#contact.site-footer {
  background-color: var(--ink);
  color: rgba(251, 248, 242, 0.72);
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: none;
}
.site-footer a {
  color: rgba(251, 248, 242, 0.72);
  text-decoration: none;
}
.site-footer a:hover { color: var(--honey); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 5fr 3fr 3fr; gap: 3rem; }
}

/* Brand column */
.footer-wordmark {
  margin-bottom: 0.65rem;
}
.footer-wordmark img {
  height: 36px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-size: 0.9375rem;
  margin-bottom: 0.4rem;
}
.footer-faith {
  font-size: 0.825rem;
  color: rgba(251, 248, 242, 0.35);
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}

/* Contact + Links columns */
.footer-contact h3,
.footer-links h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--honey);
  margin-bottom: 0.9rem;
}
.footer-contact ul,
.footer-links > ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-contact li,
.footer-links li { font-size: 0.9375rem; }

/* Footer nav */
.footer-nav {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Bottom strip */
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(251, 248, 242, 0.1);
  text-align: center;
  color: rgba(251, 248, 242, 0.35);
  font-size: 0.8125rem;
}
