:root {
  --parchment: #f4f0e8;
  --parchment-dark: #ece7dc;
  --terracotta: #8b4a32;
  --terracotta-light: #a35a3f;
  --terracotta-muted: #c4876c;
  --warm-black: #1e1a17;
  --charcoal: #2e2924;
  --mid-tone: #6b5f52;
  --stone: #9a8e82;
  --sage: #5f7a5a;
  --sage-light: #e8ede6;
  --warm-white: #faf8f4;
  --border: rgba(139, 74, 50, 0.12);
  --border-dark: rgba(30, 26, 23, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--warm-white);
  border-top: 1px solid var(--border-dark);
  padding: 24px 32px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cookie-banner-text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--mid-tone);
  line-height: 1.6;
}
.cookie-banner-text strong {
  color: var(--warm-black);
  font-weight: 500;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border: none;
}
.cookie-btn-accept {
  background: var(--terracotta);
  color: #fff;
}
.cookie-btn-accept:hover {
  background: var(--terracotta-light);
  transform: translateY(-1px);
}
.cookie-btn-reject {
  background: var(--parchment);
  color: var(--mid-tone);
  border: 1px solid var(--border-dark);
}
.cookie-btn-reject:hover {
  background: var(--parchment-dark);
  transform: translateY(-1px);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--warm-black);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(24px, 5vw, 80px);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.nav-logo-img {
  height: 24px;
  width: auto;
  display: block;
  filter: invert(29%) sepia(50%) saturate(1000%) hue-rotate(330deg) brightness(87%);
}
.nav-logo-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}
@media (min-width: 640px) {
  .nav-logo {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .nav-logo-img {
    height: 30px;
  }
  .nav-logo-text {
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    font-weight: 300;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--mid-tone);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition:
    color 0.2s,
    background 0.2s,
    transform 0.15s;
}
.nav-links a:hover {
  color: var(--warm-black);
  background: var(--parchment);
  transform: translateY(-1px);
}
.nav-cta {
  background: var(--terracotta);
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--terracotta-light) !important;
  color: #fff !important;
}

/* ─── HERO BRAND LOCKUP ─── */
.hero-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 44px;
}
.hero-brand-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.hero-brand-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.75);
}

/* ─── HERO ─── */
.hero {
  min-height: 92vh;
  background: var(--warm-black) url('images/british-actions-HbQK5dxTlEw-unsplash.jpg')
    center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(60px, 10vh, 120px) clamp(24px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 16, 13, 0.76), rgba(20, 16, 13, 0.76)),
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(139, 74, 50, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(95, 122, 90, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-muted);
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  font-weight: 300;
  line-height: 0.92;
  color: var(--parchment);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.hero-title em {
  font-style: italic;
  color: var(--terracotta-muted);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: rgba(244, 240, 232, 0.55);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 52px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--terracotta-light);
  transform: translateY(-1px);
}
.btn-ghost-light {
  color: rgba(244, 240, 232, 0.65);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(244, 240, 232, 0.15);
  transition:
    border-color 0.2s,
    color 0.2s;
  display: inline-block;
}
.btn-ghost-light:hover {
  border-color: rgba(244, 240, 232, 0.3);
  color: var(--parchment);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(244, 240, 232, 0.2);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-hint svg {
  width: 20px;
  height: 20px;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* ─── INTRO BAND ─── */
.intro-band {
  background: var(--parchment);
  border-bottom: 1px solid var(--border);
  padding: clamp(40px, 6vh, 64px) clamp(24px, 5vw, 80px);
}
.intro-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.intro-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.intro-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ─── SECTION BASE ─── */
.section {
  padding: clamp(72px, 10vh, 120px) clamp(24px, 5vw, 80px);
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--warm-black);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1.5px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 56px;
}
.service-card {
  background: var(--warm-white);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  border-right: 1.5px solid var(--border-dark);
  transition:
    background 0.2s,
    box-shadow 0.25s,
    transform 0.25s;
}
.service-card:last-child {
  border-right: none;
}
.service-card:hover {
  background: var(--parchment);
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(30, 26, 23, 0.1);
  transform: translateY(-2px);
}
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.875rem;
  color: var(--terracotta-muted);
  margin-bottom: 28px;
  font-weight: 400;
}
.service-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--parchment);
}
.service-icon svg {
  width: 22px;
  height: 22px;
  color: var(--terracotta);
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--warm-black);
  margin-bottom: 12px;
  line-height: 1.25;
}
.service-body {
  font-size: 0.875rem;
  color: var(--mid-tone);
  line-height: 1.7;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--terracotta);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap 0.2s;
}
.service-link:hover {
  gap: 10px;
}
.service-link svg {
  width: 14px;
  height: 14px;
}

/* ─── ADVENTURE FEATURE ─── */
.adventure-feature {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  overflow: hidden;
  background: var(--warm-black);
  color: var(--parchment);
}
.adventure-feature-content {
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.adventure-feature-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-muted);
}
.adventure-feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--parchment);
}
.adventure-feature-title em {
  font-style: italic;
  color: var(--terracotta-muted);
}
.adventure-feature-body {
  font-size: 0.95rem;
  color: rgba(244, 240, 232, 0.7);
  line-height: 1.8;
  margin: 6px 0 18px;
}
.adventure-feature-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.adventure-skill-pill {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.85);
  background: rgba(244, 240, 232, 0.08);
  border: 1px solid rgba(244, 240, 232, 0.14);
  padding: 5px 11px;
  border-radius: 999px;
}
.adventure-feature-cta {
  align-self: flex-start;
}
.adventure-feature-image {
  position: relative;
  min-height: 360px;
  background: var(--charcoal) url('images/grow_image-min.jpg') center/cover no-repeat;
}
.adventure-feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 16, 13, 0.5) 0%, transparent 30%);
}
@media (max-width: 900px) {
  .adventure-feature {
    grid-template-columns: 1fr;
  }
  .adventure-feature-image {
    min-height: 240px;
    order: -1;
  }
  .adventure-feature-image::after {
    background: linear-gradient(to bottom, transparent 60%, rgba(20, 16, 13, 0.5) 100%);
  }
}

/* ─── ABOUT SPLIT ─── */
.about-section {
  background: var(--parchment);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--parchment-dark);
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(30, 26, 23, 0.72);
  backdrop-filter: blur(8px);
  color: var(--parchment);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 400;
}
.about-content {
  padding: 20px 0;
}
.about-pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--terracotta);
  padding: 20px 0 4px;
  margin: 32px 0;
  line-height: 1.6;
  position: relative;
}
.about-pull::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1.5px;
  background: var(--terracotta-muted);
}
.about-body {
  font-size: 0.9375rem;
  color: var(--mid-tone);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--warm-black);
}
.testimonials-section .section-label {
  color: rgba(244, 240, 232, 0.4);
}
.testimonials-section .section-title {
  color: var(--parchment);
}
.testimonials-section .section-title em {
  color: var(--terracotta-muted);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: rgba(244, 240, 232, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.testimonial-mark {
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem;
  line-height: 1;
  color: var(--terracotta-muted);
  opacity: 0.13;
  pointer-events: none;
  user-select: none;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 300;
  color: rgba(244, 240, 232, 0.82);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(139, 74, 50, 0.3);
  border: 1px solid rgba(139, 74, 50, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--terracotta-muted);
}
.testimonial-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(244, 240, 232, 0.7);
}
.testimonial-role {
  font-size: 0.75rem;
  color: rgba(244, 240, 232, 0.35);
  letter-spacing: 0.05em;
  margin-top: 1px;
}

/* ─── FAQ ─── */
.faq-grid {
  margin-top: 56px;
  border-top: 1px solid var(--border-dark);
}
.faq-item {
  border-bottom: 1px solid var(--border-dark);
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  gap: 24px;
}
.faq-q {
  font-size: 1rem;
  font-weight: 400;
  color: var(--warm-black);
  line-height: 1.5;
}
.faq-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  transition:
    transform 0.25s,
    background 0.2s;
}
.faq-icon svg {
  width: 14px;
  height: 14px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--parchment);
}
.faq-body {
  font-size: 0.9rem;
  color: var(--mid-tone);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-body {
  max-height: 240px;
  padding-bottom: 24px;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--terracotta);
  padding: clamp(60px, 8vh, 96px) clamp(24px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: rgba(244, 240, 232, 0.95);
  line-height: 1.2;
}
.cta-sub {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(244, 240, 232, 0.6);
  margin-top: 12px;
  max-width: 420px;
}
.btn-cta {
  background: var(--parchment);
  color: var(--terracotta);
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
  flex-shrink: 0;
}
.btn-cta:hover {
  background: #fff;
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  padding: clamp(48px, 6vh, 64px) clamp(24px, 5vw, 80px) 28px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244, 240, 232, 0.08);
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--parchment);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(244, 240, 232, 0.35);
  max-width: 220px;
  line-height: 1.6;
}
.footer-nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.35);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(244, 240, 232, 0.6);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--parchment);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.75rem;
  color: rgba(244, 240, 232, 0.2);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a {
  color: rgba(244, 240, 232, 0.2);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: rgba(244, 240, 232, 0.5);
}

/* ─── MOBILE NAV ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--warm-black);
  transition:
    transform 0.25s,
    opacity 0.25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: rgba(250, 248, 244, 0.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  padding: 32px 24px 40px;
  border-top: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.nav-drawer.open {
  opacity: 1;
  pointer-events: all;
}
.nav-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--warm-black);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-drawer a:hover {
  color: var(--terracotta);
}
.nav-drawer a:last-child {
  border-bottom: none;
}
.nav-drawer .drawer-cta {
  margin-top: 32px;
  background: var(--terracotta);
  color: #fff !important;
  text-align: center;
  padding: 16px !important;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  border-bottom: none !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .intro-band-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    border-right: none;
    border-bottom: 1.5px solid var(--border-dark);
  }
  .service-card:last-child {
    border-bottom: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-wrap {
    aspect-ratio: 16/9;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .cta-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .btn-cta {
    width: 100%;
    text-align: center;
  }
  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .footer-nav {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-drawer {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 88vh;
    padding-top: 48px;
    padding-bottom: 80px;
  }
  .hero-title {
    font-size: clamp(3.2rem, 13vw, 5.5rem);
  }
  .hero-scroll-hint {
    display: none;
  }

  .intro-band {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .intro-body {
    font-size: 1.2rem;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .section-title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .service-card {
    padding: 32px 24px;
  }

  .about-content {
    padding: 0;
  }

  .testimonial-card {
    padding: 28px 24px;
  }
  .testimonial-text {
    font-size: 1.1rem;
  }

  .cta-banner {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .cta-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .footer-nav {
    flex-direction: column;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .faq-q {
    font-size: 0.9375rem;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }
}

/* ── UPCOMING EVENTS SHOWCASE ── */
.events-showcase-section {
  background: var(--parchment);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.events-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.showcase-card {
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  overflow: hidden;
  background: var(--warm-white);
  transition: transform 0.25s, box-shadow 0.25s;
}
.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(30, 26, 23, 0.09);
}
.showcase-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--parchment-dark);
}
.showcase-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.showcase-card:hover .showcase-card-img img {
  transform: scale(1.05);
}
.showcase-card-body {
  padding: 20px 22px 22px;
}
.showcase-card-date {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.showcase-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--warm-black);
  line-height: 1.3;
  margin-bottom: 6px;
}
.showcase-card-location {
  font-size: 0.775rem;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 5px;
}
.showcase-card-location svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}
.events-showcase-cta {
  margin-top: 36px;
  text-align: center;
}

@media (max-width: 900px) {
  .events-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .events-showcase-grid {
    grid-template-columns: 1fr;
  }
}