/* ── KosherDelight · Heraldic Prestige Theme ─────────────────────────── */
:root {
  --navy:        #122430;
  --navy-mid:    #1c3444;
  --navy-light:  #264558;
  --gold:        #c9973a;
  --gold-light:  #e0b86a;
  --gold-pale:   #f0dba8;
  --parchment:   #f7f2e6;
  --parchment-d: #ede6d3;
  --ink:         #1a1a1a;
  --muted:       #5a6a62;
  --white:       #ffffff;
  --line:        #ddd5be;
  --line-navy:   rgba(201,151,58,0.25);
  --shadow-gold: 0 20px 60px rgba(201,151,58,0.12);
  --shadow-navy: 0 24px 70px rgba(13,31,45,0.22);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--parchment);
}

img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.05; margin: 0; }

h1 { font-size: clamp(40px, 5.5vw, 74px); font-weight: 700; }
h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; }
h3 { font-size: 22px; font-weight: 600; }

.eyebrow {
  margin: 0 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── GOLD RULE DIVIDER (signature element) ──────────────────────────── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  max-width: 320px;
}
.gold-rule::before, .gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-rule span {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

/* ── HEADER ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 80px;
  padding: 0 clamp(16px, 4vw, 60px);
  background: rgba(13, 31, 45, 0.97);
  border-bottom: 1px solid var(--line-navy);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  background: transparent;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }

.brand strong {
  display: block;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.brand em {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
nav a:hover { color: var(--gold-light); }
nav a.active { color: var(--gold); border-bottom-color: var(--gold); }

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 6px;
  color: var(--navy);
  background: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--gold-light); }

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  padding: clamp(80px, 10vw, 130px) clamp(16px, 5vw, 72px) clamp(90px, 11vw, 140px);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero-logo {
  width: clamp(180px, 26vw, 280px);
  height: clamp(180px, 26vw, 280px);
  margin: 0 auto 36px;
  background: transparent;
}
.hero-logo img { width: 100%; height: 100%; object-fit: contain; }

.hero h1 {
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  max-width: 640px;
  margin: 22px auto 0;
  color: rgba(255,255,255,0.62);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 6px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 6px;
  color: rgba(255,255,255,0.88);
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--gold-pale);
  background: rgba(201,151,58,0.1);
  border: 1px solid rgba(201,151,58,0.22);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.trust-pills span::before {
  content: '✦';
  font-size: 9px;
  color: var(--gold);
}

/* ── GOLD BANNER STRIP ──────────────────────────────────────────────── */
.gold-banner {
  background: var(--gold);
  padding: 18px clamp(16px, 4vw, 60px);
  text-align: center;
}
.gold-banner p {
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-style: italic;
}

/* ── SECTIONS ───────────────────────────────────────────────────────── */
section.body-section {
  padding: clamp(64px, 8vw, 110px) clamp(16px, 5vw, 72px);
}
section.body-section.bg-parchment { background: var(--parchment); }
section.body-section.bg-white { background: var(--white); }
section.body-section.bg-navy { background: var(--navy); }

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}
.section-header h2 { color: var(--navy); margin-top: 10px; }
.section-header.light h2 { color: var(--white); }
.section-header.light .eyebrow { color: var(--gold-light); }
.section-header p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.section-header.light p { color: rgba(255,255,255,0.58); }

/* ── INTRO 3-COL ────────────────────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}

.intro-card {
  padding: 32px 28px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: box-shadow 0.2s, transform 0.2s;
}
.intro-card:hover { box-shadow: var(--shadow-gold); transform: translateY(-3px); }

.intro-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(201,151,58,0.1);
  border: 1px solid rgba(201,151,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.intro-card h3 { color: var(--navy); margin-bottom: 10px; }
.intro-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ── KOSHER CERT SECTION ─────────────────────────────────────────────── */
.kosher-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.kosher-copy h2 { color: var(--white); }

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(201,151,58,0.1);
  border: 1px solid rgba(201,151,58,0.25);
  margin: 28px 0;
}
.cert-badge img { width: 80px; border-radius: 6px; }
.cert-badge div { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.6; }
.cert-badge strong { display: block; color: var(--gold); margin-bottom: 4px; }

.kosher-points { display: grid; gap: 14px; }
.kosher-point {
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(201,151,58,0.06);
  border-radius: 0 6px 6px 0;
}
.kosher-point strong { display: block; color: var(--gold-pale); margin-bottom: 4px; font-size: 14px; }
.kosher-point span { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.55; }

.kosher-image img {
  border-radius: 10px;
  box-shadow: var(--shadow-navy);
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ── SERVICE CARDS (4-col) ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-gold); transform: translateY(-4px); }

.service-card img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.service-card-body { padding: 22px 20px 24px; }
.service-card-body h3 { color: var(--navy); font-size: 19px; margin-bottom: 10px; }
.service-card-body p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.service-card-body a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-card-body a::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .service-card-body a::after { transform: translateX(4px); }

/* ── EVENTS SECTION ─────────────────────────────────────────────────── */
.events-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0,1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.events-list { display: grid; gap: 16px; }
.event-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 10px;
  background: var(--parchment-d);
  border: 1px solid var(--line);
}
.event-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-item h3 { font-size: 16px; color: var(--navy); margin-bottom: 5px; }
.event-item p { font-size: 14px; color: var(--muted); }

.event-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}
.event-collage img {
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 220px;
}
.event-collage img.tall { grid-row: span 2; min-height: 470px; }

/* ── PROCESS STEPS ──────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--line-navy);
  border-radius: 12px;
  overflow: hidden;
}
.step-item {
  padding: 36px 30px;
  background: rgba(13,31,45,0.95);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(201,151,58,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.step-item h3 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
.step-item p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.65; }

/* ── GALLERY ─────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-grid img {
  border-radius: 10px;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.gallery-grid img:first-child { grid-row: span 2; aspect-ratio: unset; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

details[open] { border-color: rgba(201,151,58,0.4); }

summary {
  padding: 20px 24px;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201,151,58,0.1);
  border: 1px solid rgba(201,151,58,0.25);
  color: var(--gold);
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.2s;
}
details[open] summary::after { content: '−'; }

details p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ── ENQUIRY / FORM ──────────────────────────────────────────────────── */
.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.enquiry-copy h2 { color: var(--white); }
.enquiry-copy p { color: rgba(255,255,255,0.6); font-size: 17px; line-height: 1.7; margin-top: 16px; }

.whatsapp-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}
.wa-icon {
  width: 32px;
  height: 32px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 7px;
  color: var(--ink);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}
textarea { min-height: 110px; resize: vertical; }

form button {
  min-height: 50px;
  border-radius: 7px;
  border: none;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
form button:hover { background: var(--gold-light); }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--line-navy);
  padding: 48px clamp(16px, 5vw, 72px) 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 32px;
}

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo {
  width: 58px;
  height: 58px;
  background: transparent;
  flex-shrink: 0;
}
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand strong { color: var(--white); font-family: 'Playfair Display', serif; font-size: 18px; }
.footer-brand em { display: block; color: var(--gold); font-size: 10px; font-style: normal; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; }

.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.footer-nav a { color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 500; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }

.footer-contact { text-align: right; color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.8; }
.footer-contact a { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line-navy);
  padding-top: 24px;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
}

/* ── SUBPAGES ────────────────────────────────────────────────────────── */
.subhero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  min-height: 480px;
  padding: clamp(60px, 7vw, 100px) clamp(16px, 5vw, 72px);
  background: var(--navy);
}
.subhero h1 { color: var(--white); font-size: clamp(34px, 4.5vw, 58px); }
.subhero p:not(.eyebrow) { color: rgba(255,255,255,0.6); font-size: 18px; line-height: 1.65; margin-top: 18px; }
.subhero img { border-radius: 10px; box-shadow: var(--shadow-navy); aspect-ratio: 4/3; object-fit: cover; }

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.45fr);
  gap: clamp(28px, 5vw, 64px);
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}

.content-main p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.content-main h2 { color: var(--navy); margin-bottom: 18px; }
.content-main ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.content-main li {
  padding-left: 26px;
  position: relative;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.content-main li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
  font-size: 10px;
}

.side-panel {
  padding: 24px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
}
.side-panel h3 { color: var(--gold); font-size: 16px; margin-bottom: 14px; }
.side-panel ul { margin: 0; padding-left: 0; list-style: none; display: grid; gap: 8px; }
.side-panel li { color: rgba(255,255,255,0.68); font-size: 14px; padding-left: 18px; position: relative; }
.side-panel li::before { content: '›'; position: absolute; left: 0; color: var(--gold); }
.side-panel a { color: rgba(255,255,255,0.75); }
.side-panel a:hover { color: var(--gold); }

.page-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.page-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border-radius: 6px;
  background: rgba(201,151,58,0.1);
  border: 1px solid rgba(201,151,58,0.22);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

/* ── BIO ─────────────────────────────────────────────────────────────── */
.bio-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.bio-card { padding: 24px; border-radius: 10px; background: var(--white); border: 1px solid var(--line); }
.bio-card img { aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; margin-bottom: 18px; }
.bio-card h3 { color: var(--navy); margin-bottom: 6px; }
.bio-card p { color: var(--muted); font-size: 14px; }
.bio-text h2 { color: var(--navy); margin-bottom: 20px; }
.bio-text p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 34px auto 0;
}

article.service-card-simple {
  padding: 26px 24px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
}
article.service-card-simple h3 { color: var(--navy); margin-bottom: 10px; font-size: 19px; }
article.service-card-simple p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; }

/* ── CERT STRIP ──────────────────────────────────────────────────────── */
.cert-strip {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 28px;
  border: 1px solid rgba(201,151,58,0.25);
  border-radius: 10px;
  background: rgba(201,151,58,0.06);
}
.cert-strip img { width: 120px; border-radius: 8px; border: 1px solid var(--line); }
.cert-strip p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.cert-strip strong { color: var(--navy); }

/* ── ENQUIRY (contact page) ──────────────────────────────────────────── */
.enquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.75fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
  background: var(--navy);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }

  .intro-grid,
  .steps-grid,
  .service-cards { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .kosher-layout,
  .events-layout,
  .enquiry-layout,
  .subhero,
  .content-layout,
  .bio-layout,
  .footer-inner { grid-template-columns: 1fr; }

  .footer-contact { text-align: left; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .site-header { min-height: 70px; padding-inline: 14px; }
  .header-cta { display: none; }
  .brand strong { font-size: 17px; }
  .hero-logo { width: 160px; height: 160px; }
  .intro-grid, .steps-grid, .service-cards, .services-grid,
  .gallery-grid, .event-collage { grid-template-columns: 1fr; }
  .gallery-grid img:first-child { aspect-ratio: 1/1; }
  .event-collage img.tall { min-height: 260px; }
  .cert-strip { grid-template-columns: 1fr; }
  .enquiry { grid-template-columns: 1fr; }
}

/* ── INTRO CARD NUMBER BADGES ───────────────────────────────────────── */
.intro-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* ── ABOUT US SECTION ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.about-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border-radius: 10px;
  background: var(--parchment);
  border: 1px solid var(--line);
}

.about-card-img img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 8px;
  border: 2px solid var(--line-navy);
}

.about-card-body h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 4px;
}

.about-role {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px !important;
}

.about-card-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

@media (max-width: 560px) {
  .about-card { grid-template-columns: 1fr; }
  .about-card-img img { width: 100%; height: 200px; object-position: center 25%; }
}

/* ── HAMBURGER MENU ─────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(201,151,58,0.1); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--navy);
  border-bottom: 1px solid var(--line-navy);
  z-index: 49;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.mobile-nav.open {
  max-height: 600px;
  padding: 16px 0 24px;
}
.mobile-nav a {
  display: block;
  padding: 13px 24px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); background: rgba(201,151,58,0.06); }
.mobile-nav .mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 24px 0;
  min-height: 46px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: none;
}
.mobile-nav .mobile-nav-cta:hover { background: var(--gold-light); color: var(--navy); }
.mobile-nav .mobile-nav-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 24px 0;
  min-height: 46px;
  border-radius: 6px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-bottom: none;
}
.mobile-nav .mobile-nav-wa:hover { background: #1fb558; color: var(--white); }

@media (max-width: 1020px) {
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 12px; }
}

/* ── WHATSAPP BUTTON ────────────────────────────────────────────────── */
.wa-header-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.wa-header-btn:hover { background: #1fb558; transform: scale(1.08); }
.wa-header-btn svg { width: 20px; height: 20px; fill: var(--white); }

@media (max-width: 1020px) {
  .wa-header-btn { display: flex; }
  .site-header { grid-template-columns: 1fr auto auto auto; }
}

.wa-float {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 6px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.wa-float:hover { background: #1fb558; color: var(--white); }
.wa-float svg { width: 22px; height: 22px; fill: var(--white); flex-shrink: 0; }

.wa-contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  align-items: center;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #25d366;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-wa:hover { color: #1fb558; }
.footer-wa svg { width: 16px; height: 16px; fill: #25d366; }
