/* ============================================================
   HGFD — Harrogate Food & Drink Co.
   Premium Wedding & Event Catering, Yorkshire
   ============================================================ */

/* Custom Properties */
:root {
  --green-dark:   #0C1C2E;
  --green:        #1A3A5C;
  --green-mid:    #2B5A8A;
  --green-light:  #4A7AB5;
  --cream:        #FAF7F0;
  --cream-dark:   #F0EAE0;
  --gold:         #B8966A;
  --gold-light:   #D4B896;
  --charcoal:     #1A1A1A;
  --grey:         #6B6B6B;
  --grey-light:   #E8E2D9;
  --white:        #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-width: 1200px;
  --nav-height: 80px;
  --transition: 0.3s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem,   4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.25rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

p { color: var(--grey); }
p + p { margin-top: 1em; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--cream); }
.btn-primary:hover { background: var(--green-mid); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--cream); }

.btn-light { background: var(--cream); color: var(--green); }
.btn-light:hover { background: var(--gold-light); color: var(--green-dark); }

.btn-gold { background: var(--gold); color: var(--green-dark); font-weight: 600; }
.btn-gold:hover { background: var(--gold-light); }

/* ── Real Images ────────────────────────────────────────────── */
img.img-real {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg img.img-real {
  position: absolute;
  inset: 0;
}

.service-card img.img-real {
  position: absolute;
  inset: 0;
  transition: transform 0.65s ease;
}
.service-card:hover img.img-real { transform: scale(1.06); }

.split-image img.img-real {
  min-height: 500px;
}

.gallery-item img.img-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img.img-real { transform: scale(1.04); }


.cta-section img.img-real {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header img.img-real {
  position: absolute;
  inset: 0;
}

.venue-card-img img.img-real {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(250,247,240,.08);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,240,.75);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-enquire {
  background: var(--gold);
  color: var(--green-dark) !important;
  padding: 10px 22px;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
}
.nav-enquire:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .img-placeholder { width: 100%; height: 100%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,25,15,.5) 0%, rgba(15,25,15,.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 860px;
}
.hero-content .eyebrow { color: var(--gold-light); margin-bottom: 24px; }
.hero-content h1 {
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 28px;
}
.hero-content h1 em { font-style: italic; color: var(--gold-light); }
.hero-content p {
  color: rgba(250,247,240,.82);
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0 auto 44px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Intro Strip ────────────────────────────────────────────── */
.intro-strip {
  background: var(--green-dark);
  padding: 72px 40px;
  text-align: center;
}
.intro-strip p {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: rgba(250,247,240,.88);
  max-width: 75ch;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.65;
}
.intro-strip em { color: var(--gold); font-style: italic; }

/* ── Section Base ────────────────────────────────────────────── */
.section { padding: 100px 40px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }

.section-dark { background: var(--green-dark); }
.section-dark h1, .section-dark h2,
.section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark p { color: rgba(250,247,240,.7); }
.section-dark .eyebrow { color: var(--gold); }

.section-cream { background: var(--cream-dark); }
.section-white { background: var(--white); }

.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 16px auto 0; }

/* ── Services Grid ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
}
.service-card .img-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: transform 0.65s ease;
}
.service-card:hover .img-placeholder { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,25,15,.88) 0%, rgba(15,25,15,.2) 55%, transparent 100%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 28px;
}
.service-card-overlay h3 { color: var(--cream); margin-bottom: 8px; font-size: 1.5rem; }
.service-card-overlay p {
  color: rgba(250,247,240,.72);
  font-size: 0.875rem;
  margin-bottom: 20px;
  max-width: none;
}
.service-card-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}
.service-card:hover .service-card-link { gap: 14px; }

/* ── Split Sections ─────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-image { overflow: hidden; }
.split-image .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: var(--cream);
}
.split-content.dark-bg { background: var(--green-dark); }
.split-content h2 { margin-bottom: 24px; }
.split-content p { max-width: 52ch; margin-bottom: 18px; }
.split-content .btn { margin-top: 16px; align-self: flex-start; }

/* ── Stats Bar ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--green);
  padding: 64px 40px;
}
.stats-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,247,240,.55);
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-hero {
  background: var(--cream-dark);
  padding: 100px 40px;
  text-align: center;
}
.testimonial-hero blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--green-dark);
  max-width: 820px;
  margin: 0 auto 32px;
  line-height: 1.45;
}
.testimonial-hero cite {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testimonial-card {
  background: var(--white);
  padding: 48px 40px;
  border-top: 3px solid var(--gold);
}
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 24px;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.testimonial-venue {
  display: block;
  color: var(--gold);
  margin-top: 4px;
}

/* ── Credentials Bar ─────────────────────────────────────────── */
.creds-bar {
  background: var(--cream-dark);
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
  padding: 40px;
  overflow: hidden;
}
.creds-bar-inner {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.cred-badge { text-align: center; opacity: .55; transition: var(--transition); }
.cred-badge:hover { opacity: 1; }
.cred-badge-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--green-dark);
}
.cred-badge-detail {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

/* ── Gallery Grid ────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-item { overflow: hidden; aspect-ratio: 1/1; position: relative; }
.gallery-item .img-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  transition: transform 0.5s ease;
}
.gallery-item:hover .img-placeholder { transform: scale(1.04); }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; position: relative; }
.gallery-item.wide .img-placeholder { aspect-ratio: 2/1; }

/* ── Suppliers Grid ──────────────────────────────────────────── */
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.supplier-item {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.supplier-item:hover { border-bottom-color: var(--gold); }
.supplier-what {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.supplier-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.supplier-location { font-size: 0.78rem; color: var(--grey); }

/* ── Venue Carousel ─────────────────────────────────────────── */
.venue-carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.venue-carousel .carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.venue-carousel .carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.venue-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-placeholder {
  width: 100%;
  height: 100%;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}
.slide-placeholder-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.slide-placeholder-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}
.slide-placeholder-hint {
  font-size: 0.72rem;
  color: rgba(250,247,240,.25);
  margin-top: 8px;
}
.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(250,247,240,.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
.carousel-slide-label {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,247,240,.55);
  z-index: 1;
  pointer-events: none;
}

/* ── Venue Cards ─────────────────────────────────────────────── */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.venue-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}
.venue-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.1); }
.venue-card-img .img-placeholder { width: 100%; aspect-ratio: 4/3; }
.venue-card-body { padding: 24px; }
.venue-card-body h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.venue-card-body p { font-size: 0.875rem; }

/* ── Menu Blocks ─────────────────────────────────────────────── */
.menu-block {
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--grey-light);
}
.menu-block:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.menu-block h3 { color: var(--green-dark); margin-bottom: 8px; }
.menu-block > .eyebrow { margin-bottom: 8px; }
.menu-block > p { margin-bottom: 36px; }

.menu-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}
.menu-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-light);
  font-weight: 500;
}
.menu-col ul { display: flex; flex-direction: column; gap: 10px; }
.menu-col li {
  font-size: 0.925rem;
  color: var(--charcoal);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.menu-col li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 4px;
}
.menu-col li em { color: var(--grey); font-style: normal; font-size: 0.82rem; }

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 130px 40px;
  text-align: center;
  overflow: hidden;
}
.cta-section .img-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,25,15,.72);
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.cta-content .eyebrow { color: var(--gold); }
.cta-content h2 { color: var(--cream); margin-bottom: 20px; }
.cta-content p { color: rgba(250,247,240,.8); margin: 0 auto 44px; max-width: 52ch; }
.cta-content .hero-actions { justify-content: center; }

/* ── Page Header (inner pages) ───────────────────────────────── */
.page-header {
  height: 60vh;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 80px 40px;
  margin-top: var(--nav-height);
  overflow: hidden;
}
.page-header .img-placeholder { position: absolute; inset: 0; }
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,25,15,.85) 0%, rgba(15,25,15,.25) 65%, transparent 100%);
}
.page-header-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.page-header-content .eyebrow { color: var(--gold); }
.page-header-content h1 { color: var(--cream); }

/* ── Contact Form ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 { color: var(--green-dark); margin-bottom: 24px; }
.contact-info p { margin-bottom: 32px; max-width: 48ch; }
.contact-detail {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.contact-detail-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green-dark);
}
.contact-form-wrap {}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid var(--grey-light);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.925rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit { margin-top: 8px; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--green-dark);
  padding: 80px 40px 40px;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,247,240,.08);
  margin-bottom: 40px;
}
.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(250,247,240,.6);
  margin-bottom: 28px;
  max-width: none;
}
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,240,.45);
  transition: var(--transition);
}
.footer-social a:hover { color: var(--gold); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(250,247,240,.55);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(250,247,240,.3);
}
.footer-bottom a { color: rgba(250,247,240,.3); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  /* services-grid stays 3 cols down to 768px */
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .suppliers-grid { grid-template-columns: repeat(5, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-content { padding: 60px 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}


@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute;
    top: var(--nav-height); left: 0; right: 0; background: var(--green-dark);
    padding: 32px 24px; gap: 24px; border-top: 1px solid rgba(250,247,240,.08); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .section { padding: 64px 24px; }
  .intro-strip { padding: 56px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .suppliers-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { aspect-ratio: 4/3; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; position: relative; }
  .gallery-item.wide .img-placeholder { aspect-ratio: 2/1; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .creds-bar-inner { gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .page-header { padding: 60px 24px; }
  .split-content { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: auto; }
  .gallery-item.wide .img-placeholder { aspect-ratio: 1/1; }
  .gallery-item.wide img.img-real { aspect-ratio: 1/1; }
  .hero-actions { flex-direction: column; align-items: center; }
  .venues-grid { grid-template-columns: 1fr; }
}

/* WhatsApp float button */
.wa-float{position:fixed;bottom:24px;right:24px;z-index:9999;background:#25D366;border-radius:50%;width:56px;height:56px;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(37,211,102,.35);text-decoration:none;transition:transform .2s,box-shadow .2s}
.wa-float:hover{transform:scale(1.12);box-shadow:0 6px 24px rgba(37,211,102,.5)}
.wa-float svg{width:32px;height:32px;fill:#fff}

/* Sister brands bar */
.footer-sister { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0 0; margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.footer-sister > span { font-size: .8rem; opacity: .45; white-space: nowrap; }
.sister-links { display: flex; flex-wrap: wrap; gap: 16px; }
.sister-links a { font-size: .8rem; opacity: .55; color: inherit; text-decoration: none; transition: opacity .2s; }
.sister-links a:hover { opacity: 1; }

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-section-intro { max-width: 680px; margin: 0 auto 64px; text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 2px; max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--white); border-left: 3px solid transparent; transition: border-color var(--transition); }
.faq-item.open { border-left-color: var(--gold); }
.faq-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 26px 32px; cursor: pointer; background: none; border: none; text-align: left; gap: 24px; }
.faq-trigger:hover .faq-trigger-q { color: var(--gold); }
.faq-trigger-q { font-family: var(--font-serif); font-size: 1.2rem; color: var(--green-dark); line-height: 1.3; transition: color var(--transition); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--gold); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.faq-icon::before { width: 2px; height: 12px; top: 5px; left: 10px; }
.faq-icon::after  { width: 12px; height: 2px; top: 10px; left: 5px; }
.faq-item.open .faq-icon::before { transform: rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 32px 28px; color: var(--grey); line-height: 1.8; font-size: .95rem; }
.faq-answer-inner ul { list-style: disc; padding-left: 20px; margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-category-title { font-family: var(--font-serif); font-size: 1.6rem; color: var(--green-dark); margin: 56px 0 16px; max-width: 860px; margin-left: auto; margin-right: auto; padding-left: 0; }
.faq-category-title:first-child { margin-top: 0; }

/* ── Gallery Filter ─────────────────────────────────────────── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn { padding: 10px 24px; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; background: transparent; border: 1.5px solid var(--grey-light); color: var(--grey); cursor: pointer; transition: var(--transition); }
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }
.gallery-item.hidden { display: none; }
.gallery-count { text-align: center; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); margin-bottom: 32px; }

/* ── Location Page ──────────────────────────────────────────── */
.location-venues { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2px; margin-top: 40px; }
.location-venue-tag { background: var(--white); padding: 18px 20px; font-size: .85rem; color: var(--green-dark); font-family: var(--font-serif); font-style: italic; text-align: center; }
.location-breadcrumb { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(250,247,240,.5); margin-bottom: 12px; }
.location-breadcrumb a { color: rgba(250,247,240,.5); text-decoration: none; }
.location-breadcrumb a:hover { color: var(--gold); }
.location-breadcrumb span { color: rgba(250,247,240,.7); }

/* ── Nav Dropdown ─────────────────────────────────────────── */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger {
  background: none; border: none; cursor: pointer; display: flex; align-items: center;
  gap: 5px; padding: 0; font-size: 0.73rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(250,247,240,.75); transition: var(--transition);
  font-family: var(--font-sans);
}
.nav-dropdown-trigger:hover,
.nav-dropdown.active .nav-dropdown-trigger { color: var(--gold); }
.nav-caret {
  display: inline-block; width: 0; height: 0; margin-top: 1px;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; transition: transform 0.2s ease;
}
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 20px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--green-dark); border: 1px solid rgba(250,247,240,.12);
  min-width: 230px; padding: 8px 0; opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease; z-index: 300;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.71rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,247,240,.7);
  transition: var(--transition); white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: var(--gold); background: rgba(250,247,240,.04); }
.nav-external { opacity: .55; font-size: .7rem; margin-left: 2px; }
.nav-dropdown-divider { height: 1px; background: rgba(250,247,240,.1); margin: 6px 0; }

@media (max-width: 768px) {
  .nav-dropdown { display: contents; }
  .nav-dropdown-trigger { display: none; }
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; pointer-events: all;
    background: none; border: none; padding: 0; min-width: auto;
  }
  .nav-dropdown-menu a { padding: 0; letter-spacing: 0.14em; color: rgba(250,247,240,.75); }
  .nav-dropdown-menu a:hover { background: none; color: var(--gold); }
  .nav-dropdown-divider { display: none; }
}

/* ── Sister Brand Cards ──────────────────────────────────────── */
.sister-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.sister-card {
  background: var(--white); padding: 44px 36px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 16px;
  border-top: 3px solid transparent; transition: border-color var(--transition);
}
.sister-card:hover { border-top-color: var(--gold); }
.sister-card-eyebrow { font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); }
.sister-card h3 { font-family:var(--font-serif); font-size:1.6rem; color:var(--green-dark); }
.sister-card p { font-size:.9rem; color:var(--grey); line-height:1.7; flex:1; }
.sister-card-link {
  display:inline-flex; align-items:center; gap:8px; font-size:.72rem; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase; color:var(--gold); margin-top:8px;
  transition:gap var(--transition);
}
.sister-card:hover .sister-card-link { gap:14px; }
@media (max-width:900px) { .sister-cards { grid-template-columns:1fr; } }

/* ── Gallery CTA Tile ────────────────────────────────────────── */
.gallery-item.gallery-cta {
  background: var(--navy);
  cursor: pointer;
}
.gallery-cta-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding: 32px;
  gap: 12px;
}
.gallery-cta-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery-cta-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  text-align: center;
  margin: 0;
  line-height: 1.2;
}
.gallery-cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}
.gallery-item.gallery-cta:hover .gallery-cta-btn {
  background: var(--gold);
  color: var(--navy);
}
