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

:root {
  --purple:       #7B2279;
  --purple-light: #f5edf5;
  --purple-mid:   #a040a0;
  --green:        #2D7A2F;
  --green-light:  #edf5ed;
  --cream:        #FAF9F7;
  --white:        #FFFFFF;
  --ink:          #1C1C1C;
  --muted:        #6B6560;
  --border:       #E8E3DE;
  --nav-h:        132px;
  --ease:         cubic-bezier(.22,.68,0,1.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.display-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
}
.btn-primary:hover { background: #601860; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(123,34,121,0.28); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
}
.btn-outline-dark:hover { background: var(--purple); color: var(--white); }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

/* Top bar — phone number */
/* Top bar is a rounded box hanging from the top-right (overlays the header). */
.nav-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  background: transparent;
  border: none;
  height: auto;
  display: block;
  pointer-events: none;
}
.nav-topbar-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: flex-end;
}
.nav-topbar-box {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  background: #ede5ed;
  border-radius: 0 0 10px 10px;
  padding: 7px 22px 8px;
  box-shadow: 0 1px 3px rgba(60,10,60,0.06);
}
.nav-topbar a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-topbar a:hover { color: var(--purple); }
.nav-topbar a svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.topbar-phone {
  font-weight: 700;
  font-size: 14px;
  color: var(--purple) !important;
  letter-spacing: 0.02em;
}
.topbar-divider { width: 1px; height: 14px; background: #ddd0dd; }

/* Main nav row — logo + links */
.nav-main {
  height: 96px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid var(--purple);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 20px; text-decoration: none; }
.nav-logo img.main-logo { height: 90px; width: auto; }
.nav-logo .nav-divider { width: 1px; height: 52px; background: var(--border); flex-shrink: 0; }
.nav-logo img.gold-badge { height: 62px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  /* Fill the header height and pad the top by the box height so the links sit
     evenly centred between the bottom of the top-right box and the header bottom. */
  align-self: stretch;
  box-sizing: border-box;
  padding-top: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--purple); border-bottom-color: var(--purple); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  animation: kenBurns 10s ease-out forwards;
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1) { background-image: url('../images/plated-salmon-fine-dining-catering.jpg'); background-position: center 40%; }
.hero-slide:nth-child(2) { background-image: url('../images/bbq-catering-outdoor-event.jpg'); background-position: center 55%; }
.hero-slide:nth-child(3) { background-image: url('../images/gourmet-sandwich-platter-catering.jpg'); background-position: center 40%; }
.hero-slide:nth-child(4) { background-image: url('../images/celebration-canapes-finger-food.jpg'); background-position: center 50%; }
.hero-slide:nth-child(5) { background-image: url('../images/buffet-catering-spread.jpg'); background-position: center 60%; }
@keyframes kenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.hero-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}
.hero-dot:hover { background: rgba(255,255,255,0.8); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,5,20,0.72) 0%,
    rgba(20,5,20,0.45) 55%,
    rgba(20,5,20,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  padding-top: var(--nav-h);
}
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s 0.85s var(--ease) forwards;
}
.hero-badge {
  height: 130px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.hero-badge-row .hero-sub {
  margin-bottom: 0;
  opacity: 1;
  animation: none;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 720px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--white);
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s var(--ease) forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s var(--ease) forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2s 1.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6) translateY(10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── INTRO SECTION ─── */
.intro {
  padding: 80px 0 60px;
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.intro-text .display-heading { font-size: clamp(40px, 4vw, 60px); margin-bottom: 28px; }
.intro-text .display-heading::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--green);
  margin-top: 18px;
}
.intro-text p { color: var(--muted); font-size: 17px; line-height: 1.8; margin-bottom: 20px; }
.intro-text p:last-of-type { margin-bottom: 36px; }
.intro-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.intro-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.intro-image:hover img { transform: scale(1.03); }
.intro-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: 4px;
  border-top: 4px solid var(--green);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eat-safe-stars { color: #F5A623; font-size: 18px; letter-spacing: 2px; }
.badge-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.badge-text span { font-size: 11px; color: var(--muted); }

/* ─── SERVICES ─── */
.services {
  padding: 80px 0 60px;
  background: var(--cream);
}
.services-header {
  text-align: center;
  margin-bottom: 40px;
}
.services-header .display-heading { font-size: clamp(36px, 4vw, 54px); }
.services-header p { color: var(--muted); font-size: 17px; margin-top: 16px; max-width: 520px; margin-left: auto; margin-right: auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--purple);
  transition: width 0.35s ease;
  z-index: 1;
}
.service-card:hover::before { width: 100%; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); z-index: 1; }
.service-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
/* Image + title are clickable (same destination as "More info"). */
.service-card-img a { display: block; width: 100%; height: 100%; }
.service-card h3 a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.service-card h3 a:hover,
.service-card:hover h3 a { color: var(--purple); }
.service-card-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.2;
}
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.service-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: gap 0.2s ease, color 0.2s ease;
}
.service-more svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s ease; }
.service-more:hover { color: #601860; }
.service-more:hover svg { transform: translateX(4px); }

/* ─── GALLERY ─── */
.gallery {
  padding: 60px 0 60px;
  background: var(--white);
}
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
}
.gallery-header .display-heading { font-size: clamp(36px, 4vw, 54px); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 320px;
  gap: 8px;
}
.gal-item {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 2; }
.gal-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gal-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 3; }
.gal-item:nth-child(4) { grid-column: 1 / 4; grid-row: 2 / 3; }
.gal-item:nth-child(5) { grid-column: 4 / 6; grid-row: 2 / 3; }
.gal-item:nth-child(6) { grid-column: 6 / 9; grid-row: 2 / 3; }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,5,20,0.45) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gal-item:hover .gal-overlay { opacity: 1; }

/* ─── ABOUT ─── */
.about {
  padding: 60px 0 80px;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.about-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-content .display-heading { font-size: clamp(36px, 4vw, 52px); margin-bottom: 28px; }
.about-content p { color: var(--muted); font-size: 17px; line-height: 1.8; margin-bottom: 20px; }
.expect-list { list-style: none; margin-top: 36px; margin-bottom: 36px; display: flex; flex-direction: column; gap: 16px; }
.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--ink);
}
.expect-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 3px;
  background: var(--green-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%232D7A2F' d='M16.7 5.3a1 1 0 0 0-1.4 0L8 12.6 4.7 9.3a1 1 0 0 0-1.4 1.4l4 4a1 1 0 0 0 1.4 0l8-8a1 1 0 0 0 0-1.4z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.about-content .display-heading::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--purple);
  margin-top: 18px;
}

/* ─── CLIENTS ─── */
.clients {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 40px;
}
.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.client-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: #BBBBBB;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  white-space: nowrap;
}
.client-logo:hover { color: var(--muted); }

/* ─── ENQUIRY FORM ─── */
.enquiry {
  padding: 80px 0;
  background: var(--purple);
  position: relative;
  overflow: hidden;
}
.enquiry::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.enquiry::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.enquiry-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.enquiry-left .display-heading {
  font-size: clamp(36px, 4vw, 54px);
  color: var(--white);
  margin-bottom: 20px;
}
.enquiry-left p { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.8; margin-bottom: 32px; }
.enquiry-contact { display: flex; flex-direction: column; gap: 16px; }
.enquiry-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.enquiry-contact a:hover { color: var(--white); }
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.8); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.enquiry-form {
  background: var(--white);
  border-radius: 6px;
  padding: 48px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  appearance: none;
  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 fill='%236B6560' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  background-color: var(--cream);
}
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 4px;
  font-family: 'DM Sans', sans-serif;
}
.form-submit:hover { background: #601860; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(123,34,121,0.3); }

/* ─── FOOTER ─── */
footer {
  background: #111;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 40px;
  border-top: 4px solid var(--purple);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-wrap img { height: 52px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 260px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13px; }
.footer-bottom a:hover { color: var(--white); }

/* ─── INNER PAGE HERO ─── */
.page-hero {
  background: var(--purple);
  padding: calc(var(--nav-h) + 30px) 0 54px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.4vw, 62px);
  color: var(--white);
  line-height: 1.1;
}
.page-hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 600px;
}

/* ─── INNER PAGE MAIN ─── */
.page-main {
  padding: 28px 0 80px;
  background: var(--white);
  min-height: 320px;
}
.page-placeholder {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
}
.page-placeholder a {
  color: var(--purple);
  text-decoration: underline;
}

/* ─── MENU PAGE ─── */
.menu-intro {
  background: var(--cream);
  border-left: 4px solid var(--purple);
  border-radius: 0 4px 4px 0;
  padding: 32px 40px;
  margin-bottom: 56px;
}
.menu-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}
.menu-intro ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 24px;
}
.menu-intro ul li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.menu-intro ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.menu-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  letter-spacing: 0.03em;
  border: 1.5px solid var(--purple);
  padding: 8px 18px;
  border-radius: 3px;
  transition: all 0.2s;
}
.menu-pdf-link:hover { background: var(--purple); color: var(--white); }
.menu-intro .menu-key {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.menu-photo {
  float: right;
  width: 42%;
  max-width: 400px;
  margin: 6px 0 22px 36px;
  border-radius: 4px;
  overflow: hidden;
}
.menu-section {
  margin-bottom: 20px;
}
.menu-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--purple);
  display: inline-block;
}
.menu-section-price {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 14px;
}
.menu-group-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 30px 0 6px;
  padding-top: 10px;
}
/* Standalone page-level pricing lines (e.g. Fork Buffet packages). */
.menu-pricing-block { margin: 4px 0 36px; }
.menu-pricing-block .menu-section-price { margin: 0 0 10px; }
.menu-group-note {
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  margin: 0 0 4px;
}
.menu-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}
.menu-item-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.menu-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 3px;
  background: #efece8;
  color: var(--muted);
}
.menu-tag.gf     { background: #fdf1d6; color: #9a6a00; }  /* Gluten Free — amber */
.menu-tag.v      { background: #e4f1e4; color: var(--green); }  /* Vegetarian — green */
.menu-tag.vegan  { background: #d6efe7; color: #0e7a62; }  /* Vegan — teal */
.menu-tag.market { background: var(--purple-light); color: var(--purple); }  /* Market Price — purple */

/* Dietary colour key shown at the top of each menu */
.menu-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 20px;
}
.menu-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.menu-item-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── NAV DROPDOWNS ─── */
.nav-has-dropdown {
  position: relative;
}
.nav-has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.2s ease;
}
.nav-has-dropdown:hover > a::after {
  transform: rotate(-135deg) translateY(-2px);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-top: 3px solid var(--purple);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-radius: 0 0 4px 4px;
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
.nav-has-dropdown:hover .dropdown-menu,
.nav-has-dropdown:focus-within .dropdown-menu,
.nav-has-dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
  border-bottom: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.dropdown-menu li a:hover {
  background: var(--purple-light);
  color: var(--purple);
  border-bottom: none;
}
.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── CONTENT PAGES ─── */
.content-section { margin-bottom: 64px; }
.content-section:last-child { margin-bottom: 0; }
.content-narrow { max-width: 820px; }
.content-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px;
}
.content-prose > h2,
.content-section > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--purple);
  display: inline-block;
}
.content-prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--purple);
  margin: 8px 0 12px;
}
.content-prose p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 20px;
}
.content-prose p:last-child { margin-bottom: 0; }
.content-prose strong { color: var(--ink); font-weight: 600; }
.content-prose a { color: var(--purple); text-decoration: underline; text-underline-offset: 2px; }
.content-prose ul { list-style: none; margin: 0 0 24px; display: flex; flex-direction: column; gap: 12px; }
.content-prose ul li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}
.content-prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  background: var(--green-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%232D7A2F' d='M16.7 5.3a1 1 0 0 0-1.4 0L8 12.6 4.7 9.3a1 1 0 0 0-1.4 1.4l4 4a1 1 0 0 0 1.4 0l8-8a1 1 0 0 0 0-1.4z'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Two-column content + image */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.content-split.flip .content-split-img { order: 2; }
.content-split-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.content-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.content-split-img.portrait { aspect-ratio: 3 / 4; max-width: 340px; margin-inline: auto; }
.content-split-img.portrait img { object-position: center top; }

/* Feature / highlight cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 8px 0 0;
}
.feature-card {
  background: var(--cream);
  border-top: 3px solid var(--purple);
  border-radius: 0 0 4px 4px;
  padding: 32px 28px;
}
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-card p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0; }

/* Quick links / index cards (e.g. menus landing) */
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 22px 24px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.link-card::after {
  content: '';
  width: 8px; height: 8px;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.link-card:hover { border-color: var(--purple); box-shadow: 0 12px 32px rgba(123,34,121,0.12); transform: translateY(-2px); }
.link-card:hover::after { transform: rotate(-45deg) translate(2px, 2px); }

/* FAQ accordion */
.faq-group { margin-bottom: 48px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--purple);
  display: inline-block;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 9px; height: 9px;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item summary:hover { color: var(--purple); }
.faq-item[open] summary { color: var(--purple); }
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-answer {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--cream);
  border-radius: 6px;
  padding: 36px 32px;
  border-left: 4px solid var(--purple);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  line-height: 1;
  color: var(--purple);
  opacity: 0.16;
  position: absolute;
  top: 12px; right: 24px;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author { font-size: 14px; }
.testimonial-author strong { display: block; color: var(--purple); font-weight: 600; font-size: 15px; }
.testimonial-author span { color: var(--muted); }

/* CTA banner */
.btn-white { background: var(--white); color: var(--purple); }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.cta-banner {
  background: var(--purple);
  border-radius: 6px;
  padding: 52px 56px;
  text-align: center;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,0.78); font-size: 17px; margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.contact-card {
  background: var(--cream);
  border-radius: 6px;
  padding: 32px 28px;
  text-align: center;
  border-top: 3px solid var(--purple);
}
.contact-card-icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  background: var(--purple-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-card-icon svg { width: 22px; height: 22px; stroke: var(--purple); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-card h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-card a, .contact-card p {
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.6;
  margin: 0;
}
.contact-card a:hover { color: var(--purple); }
.contact-social { display: flex; gap: 14px; justify-content: center; margin-top: 4px; }
.contact-social a { display: inline-flex; }
.contact-social svg { width: 20px; height: 20px; fill: var(--purple); }
.contact-map {
  width: 100%;
  border: 0;
  border-radius: 6px;
  margin-top: 8px;
  display: block;
}
.contact-note {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 4px 4px 0;
  padding: 18px 24px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  margin-top: 32px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .enquiry-inner { grid-template-columns: 1fr; gap: 48px; }
  .enquiry-left { text-align: center; }
  .enquiry-contact { align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid, .link-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .intro-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-badge { left: 16px; bottom: 16px; }
  .about-image { order: -1; aspect-ratio: 3/2; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gal-item { grid-column: auto !important; grid-row: auto !important; aspect-ratio: 1; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .enquiry-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: clamp(40px, 10vw, 64px); }
  .content-split { grid-template-columns: 1fr; gap: 32px; }
  .content-split.flip .content-split-img { order: 0; }
  .feature-grid, .link-grid, .testimonial-grid, .contact-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 28px; }
  .page-hero { padding: calc(var(--nav-h) + 20px) 0 40px; }
}

/* ======================================================================
   WORDPRESS ADAPTATION LAYER
   Everything ABOVE this line is the verbatim port of the original Astro
   global.css. Below bridges core Gutenberg block markup + Contact Form 7
   to those component styles.
   ====================================================================== */

/* --- Block-theme document resets --- */
.wp-site-blocks { overflow-x: clip; }
body { margin: 0; background: var(--white); }
figure { margin: 0; }
.wp-block-heading { margin: 0; }
.wp-block-image { margin: 0; }
.wp-block-image img { display: block; }

/* Core group used as our centred fixed-width wrapper (.container styles apply) */
.wp-block-group.container { width: 100%; }

/* Full-bleed section groups (hero, services, about, enquiry, footer, page-hero) */
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; }

/* core/buttons given our .btn classes shouldn't inherit default button chrome */
.wp-block-button__link { text-decoration: none; }
.wp-block-buttons { gap: 16px; }

/* Keep the WordPress admin bar from hiding the fixed nav for logged-in users */
body.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .nav { top: 46px; } }

/* --- Mobile navigation (hamburger + accordion submenus). Desktop unaffected. --- */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  color: var(--purple);
}
.nav-toggle svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* The per-item submenu chevron is mobile-only (desktop opens submenus on hover). */
.submenu-toggle { display: none; }

@media (max-width: 768px) {
  /* Compact the fixed header on small screens */
  .nav-main { height: 66px; position: relative; }
  .nav-logo img.main-logo { height: 46px; }
  /* On mobile keep the top bar in normal flow (a slim row) so the box never overlaps the menu toggle. */
  .nav-topbar { position: static; }
  .nav-topbar-box { gap: 14px; padding: 5px 16px; border-radius: 0 0 8px 8px; }
  .nav-topbar a { font-size: 12px; }

  .nav-toggle { display: inline-flex; }

  /* Slide-down panel */
  .nav-main .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 3px solid var(--purple);
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
    padding: 4px 0;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-main .nav-links.open { display: flex; }

  .nav-links > li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links > li:last-child { border-bottom: none; }
  .nav-links > li > a {
    display: block;
    padding: 15px 24px;
    font-size: 15px;
    letter-spacing: 0.04em;
    border-bottom: none;
  }
  .nav-links > li > a[aria-current="page"] { color: var(--purple); }

  /* Dropdown parent row: label fills, tappable chevron on the right */
  .nav-has-dropdown { display: flex; flex-wrap: wrap; align-items: stretch; }
  .nav-has-dropdown > a { flex: 1 1 auto; }
  .nav-has-dropdown > a::after { display: none; }
  .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
    background: none;
    border: none;
    border-left: 1px solid var(--border);
    cursor: pointer;
    color: var(--purple);
  }
  .submenu-toggle svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.25s ease; }
  .nav-has-dropdown.submenu-open > .submenu-toggle svg { transform: rotate(180deg); }

  /* Submenus start collapsed and expand on tap */
  .nav-has-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    min-width: 0;
    width: 100%;
    flex-basis: 100%;
    margin: 0;
    padding: 0;
    background: var(--cream);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-has-dropdown.submenu-open .dropdown-menu { max-height: 1400px; }
  .nav-has-dropdown .dropdown-menu li a { padding: 13px 24px 13px 40px; font-size: 14px; }
}

@media (max-width: 480px) {
  /* Keep the top bar tidy on very small screens */
  .nav-topbar a:not(.topbar-phone) { display: none; }
  .topbar-divider { display: none; }
}

/* --- Contact Form 7 → match the original .enquiry-form card --- */
.enquiry-form .wpcf7 { margin: 0; }
.enquiry-form .wpcf7 form.wpcf7-form { display: block; }
.enquiry-form .wpcf7-form > p { margin: 0; }
.enquiry-form .wpcf7-form-control-wrap { display: block; }
.enquiry-form .wpcf7-not-valid-tip { color: #c0392b; font-size: 12px; margin-top: 5px; display: block; }
.enquiry-form .wpcf7 .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 12px 16px;
  border-radius: 3px;
  font-size: 14px;
  border-width: 1.5px;
}
.enquiry-form .wpcf7 form.sent .wpcf7-response-output { border-color: var(--green); background: var(--green-light); color: var(--green); }
.enquiry-form .wpcf7 form.invalid .wpcf7-response-output,
.enquiry-form .wpcf7 form.failed .wpcf7-response-output { border-color: #c0392b; background: #fdecea; color: #c0392b; }
.enquiry-form .wpcf7-spinner { margin: 0 0 0 12px; }
.enquiry-form .form-submit { display: inline-flex; align-items: center; justify-content: center; width: 100%; }

/* Fallback notice shown when Contact Form 7 isn't active */
.enquiry-form .cf7-missing {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  background: var(--cream);
  border: 1px dashed var(--border);
  border-radius: 4px;
  padding: 20px 24px;
}
.enquiry-form .cf7-missing strong { color: var(--ink); }

/* --- Editor parity: give the block editor canvas the same base type --- */
.editor-styles-wrapper { font-family: 'DM Sans', sans-serif; color: var(--ink); }

/* ======================================================================
   CORE BLOCK BRIDGE
   Maps core/image, core/button, core/list and core/details markup onto
   the ported component styles so patterns can be built from default blocks.
   ====================================================================== */

/* core/image wraps <img> in <figure class="wp-block-image">. Inside our
   fixed-size media containers we want the <img> to behave as if it were a
   direct child, so collapse the figure box. */
.intro-image .wp-block-image,
.about-image .wp-block-image,
.content-split-img .wp-block-image,
.service-card-img .wp-block-image,
.gal-item .wp-block-image {
	display: contents;
}

/* Inline menu photo — floats right so the menu text wraps neatly beside it. */
.wp-block-image.menu-photo {
	float: right;
	width: 42%;
	max-width: 400px;
	margin: 6px 0 22px 36px;
	border-radius: 4px;
	overflow: hidden;
}
.wp-block-image.menu-photo img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}
/* Wide / grouped menu photo (collages + landscape shots) — centered block, never floated. */
.wp-block-image.menu-photo-wide {
	float: none;
	clear: both;
	width: 100%;
	max-width: 760px;
	margin: 32px auto;
	border-radius: 4px;
	overflow: hidden;
}
.wp-block-image.menu-photo-wide img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}
/* A centered row of images that belong together (side by side, wrapping on narrow screens). */
.menu-photo-row {
	clear: both;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
	align-items: flex-start;
	margin: 32px auto;
	max-width: 860px;
}
.menu-photo-row .wp-block-image { margin: 0; flex: 0 1 auto; }
.menu-photo-row .wp-block-image img {
	height: 300px;
	width: auto;
	max-width: 100%;
	display: block;
	border-radius: 4px;
}
/* Centered portrait accent image (used as a section lead on prose pages). */
.wp-block-image.menu-photo-portrait { clear: both; max-width: 300px; margin: 0 auto 30px; overflow: hidden; }
.wp-block-image.menu-photo-portrait img { width: 100%; height: auto; display: block; border-radius: 4px; }
/* Centered section: centers the inline-block heading + accent image; cards stay left-aligned. */
.content-center { text-align: center; }
.content-center .feature-grid { text-align: left; }
/* Image-heavy content-split: align the image to the top so it sits beside the heading, not mid-prose. */
.content-split.content-split-top { align-items: start; }

/* Contain the floated photos within the page body (keeps them off the CTA/footer). */
.page-main .container { display: flow-root; }
/* Responsive: stack full-width, no float, on phones/small tablets. */
@media (max-width: 768px) {
	.menu-photo,
	.wp-block-image.menu-photo { float: none; width: 100%; max-width: none; margin: 28px 0; }
	.wp-block-image.menu-photo-wide { max-width: none; margin: 24px auto; }
	.menu-photo-row { gap: 12px; }
	.menu-photo-row .wp-block-image img { height: auto; width: 100%; }
	.menu-photo-row .wp-block-image { flex: 1 1 100%; }
}

/* core/buttons + core/button given our .btn variant class names. */
.wp-block-buttons { display: flex; flex-wrap: wrap; gap: 16px; }
.wp-block-button.btn-primary .wp-block-button__link,
.wp-block-button.btn-outline .wp-block-button__link,
.wp-block-button.btn-outline-dark .wp-block-button__link,
.wp-block-button.btn-white .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 3px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: all 0.25s ease;
}
.wp-block-button.btn-primary .wp-block-button__link { background: var(--purple); color: var(--white); }
.wp-block-button.btn-primary .wp-block-button__link:hover { background: #601860; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(123,34,121,0.28); }
.wp-block-button.btn-outline .wp-block-button__link { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.7); }
.wp-block-button.btn-outline .wp-block-button__link:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.wp-block-button.btn-outline-dark .wp-block-button__link { background: transparent; color: var(--purple); border: 1.5px solid var(--purple); }
.wp-block-button.btn-outline-dark .wp-block-button__link:hover { background: var(--purple); color: var(--white); }
.wp-block-button.btn-white .wp-block-button__link { background: var(--white); color: var(--purple); }
.wp-block-button.btn-white .wp-block-button__link:hover { background: var(--cream); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* core/list inherits the prose bullet treatment via existing .content-prose ul rules.
   Just neutralise the core default padding when used as plain lists. */
.menu-intro ul.wp-block-list { padding-left: 0; }

/* core/details mapped to the original FAQ accordion look. */
.faq-item.wp-block-details { padding: 0; }
details.faq-item > summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 24px;
	font-size: 16px;
	font-weight: 600;
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	transition: color 0.2s;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
	content: '';
	flex-shrink: 0;
	width: 9px; height: 9px;
	border-right: 2px solid var(--purple);
	border-bottom: 2px solid var(--purple);
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}
details.faq-item[open] > summary { color: var(--purple); }
details.faq-item[open] > summary::after { transform: rotate(-135deg); }
details.faq-item > summary:hover { color: var(--purple); }
details.faq-item .faq-answer,
details.faq-item > *:not(summary) { padding: 0 24px 22px; font-size: 15px; line-height: 1.8; color: var(--muted); }

/* Real client-logos composite strip (replaces the old text logos) */
.clients .clients-logos-img { margin: 0 auto; max-width: 820px; }
.clients .clients-logos-img img { width: 100%; height: auto; display: block; opacity: 0.85; }

/* --- Mega menu: the Menus dropdown as a multi-column grid (desktop only).
       Mobile keeps the single-column accordion via the max-width:768px rules. --- */
@media (min-width: 769px) {
  /* Anchor the wide panel to the nav bar (not the right-aligned item) so it
     can't spill off-screen, and align its right edge to the content container. */
  .nav-mega { position: static; }
  .nav-mega .dropdown-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    column-gap: 8px;
    width: max-content;
    max-width: calc(100vw - 48px);
    padding: 16px 12px;
    left: auto;
    right: max(24px, calc((100vw - 1200px) / 2 + 32px));
  }
  .nav-mega .dropdown-menu li a {
    white-space: normal;
    line-height: 1.35;
    border-radius: 3px;
  }
}
@media (min-width: 1000px) {
  .nav-mega .dropdown-menu { grid-template-columns: repeat(3, minmax(190px, 1fr)); }
}

/* ─── VENUE CARDS ─── */
.venue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.venue-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.venue-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.10); }
.venue-card-img { aspect-ratio: 3 / 2; overflow: hidden; }
.venue-card-img .wp-block-image { display: contents; }
.venue-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.venue-card:hover .venue-card-img img { transform: scale(1.05); }
.venue-card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.venue-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 10px;
}
.venue-card-body p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.venue-more { margin-top: auto; align-self: flex-start; padding: 10px 22px; font-size: 13px; }
@media (max-width: 1024px) { .venue-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .venue-grid { grid-template-columns: 1fr; } }

/* ─── FOOTER SOCIAL ICONS ─── */
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { background: var(--purple); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.85); transition: fill 0.2s ease; }
.footer-social a:hover svg { fill: #fff; }

/* ─── FIXED GOLD LICENCE BADGE (hangs under the top-right of the header) ─── */
.nav-gold-badge {
  position: fixed;
  top: var(--nav-h);
  right: max(20px, calc((100vw - 1200px) / 2 + 32px));
  z-index: 99;
  display: block;
  line-height: 0;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.20));
  transition: transform 0.2s ease;
}
.nav-gold-badge img { width: 150px; height: auto; display: block; }
.nav-gold-badge:hover { transform: translateY(2px); }
body.admin-bar .nav-gold-badge { top: calc(var(--nav-h) + 32px); }
@media (max-width: 782px) { body.admin-bar .nav-gold-badge { top: calc(var(--nav-h) + 46px); } }
/* Keep the badge visible on small screens, just smaller and tucked to the edge. */
@media (max-width: 768px) {
	.nav-gold-badge { right: 12px; }
	.nav-gold-badge img { width: 100px; }
	/* Hide it only while the mobile menu panel is open, so it never overlaps the links. */
	.nav:has(.nav-links.open) .nav-gold-badge { display: none; }
}
@media (max-width: 430px) {
	.nav-gold-badge img { width: 82px; }
}

/* Gold Licence badge in the home intro column — floats right so the intro text wraps beside it. */
.intro-gold-badge { float: right; margin: 4px 0 14px 30px; }
.intro-gold-badge img { width: 150px; height: auto; display: block; }
@media (max-width: 600px) {
	.intro-gold-badge { float: right; margin: 0 0 10px 18px; }
	.intro-gold-badge img { width: 116px; }
}
