@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Syncopate:wght@400;700&family=Syne:wght@400;500;600;700;800&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  --black:       #0A0A0A;
  --black-soft:  #141414;
  --black-mid:   #1E1E1E;
  --white:       #FFFFFF;
  --cream:       #F6F1E9;
  --cream-soft:  #EDE8DF;
  --olive:       #57583B;
  --bronze:      #9B6F3D;
  --warm-grey:   #8A8178;
  --muted:       #B0A89E;
  --amber:       #C4782A;
  --amber-light: #E09A4A;
  --border-dark: rgba(255,255,255,0.10);
  --border-light:rgba(0,0,0,0.10);

  --font-hero:    'Syncopate', 'Arial Black', sans-serif;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;
  --font-accent:  'Barlow Condensed', system-ui, sans-serif;

  --nav-h: 72px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container:   1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
.display {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(2.7rem, 7.3vw, 6.8rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.display-italic {
  font-family: var(--font-hero);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.7rem, 7.3vw, 6.8rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title-italic {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
}

.scripture, .caption {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--warm-grey);
}

/* ─────────────────────────────────────────────
   LAYOUT HELPERS
───────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.section        { padding: var(--section-pad) 0; }
.section-sm     { padding: clamp(2.5rem, 4vw, 4rem) 0; }
.section-header { max-width: 640px; margin-bottom: 3.5rem; }

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin: 1.5rem 0;
}

.gold-line.center { margin: 1.5rem auto; }

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: var(--black);
  border-color: var(--border-dark);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-logo span {
  display: block;
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  border: 1px solid var(--amber) !important;
  color: var(--amber) !important;
  padding: 0.55rem 1.4rem;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--amber) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-amber {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.btn-amber:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { background: var(--cream); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.3);
}
.btn-outline-dark:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.btn-outline-amber {
  background: transparent;
  color: var(--amber);
  border: 1px solid var(--amber);
}
.btn-outline-amber:hover {
  background: var(--amber);
  color: var(--white);
}

/* ─────────────────────────────────────────────
   HERO — HOME
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(155,111,61,0.35), transparent 34%),
    linear-gradient(135deg, var(--olive), #332A24 54%, var(--black));
}

.hero-bg {
  position: absolute;
  inset: clamp(5rem, 8vw, 6.75rem) clamp(1.35rem, 5vw, 4.25rem) clamp(2.5rem, 6vw, 4.25rem);
  background-image: url('../images/alaase-25.05-28.jpeg');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 24px 80px rgba(0,0,0,0.42);
  transform: scale(1);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8,8,8,0.82) 0%,
    rgba(8,8,8,0.5) 45%,
    rgba(8,8,8,0.2) 100%
  );
}

.hero:hover .hero-bg { transform: scale(1.015); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  padding: 0 clamp(0.25rem, 3vw, 2rem);
}

.hero-eyebrow {
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  max-width: 920px;
  text-shadow: 0 8px 34px rgba(0,0,0,0.55);
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: rgba(255,255,255,0.76);
  max-width: 620px;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 4vw, 3rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
}

.hero-scroll span {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--amber), transparent);
}

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,120,42,0.08) 0%, transparent 70%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .eyebrow { color: var(--amber-light); margin-bottom: 1rem; }
.page-hero h1       { color: var(--white); max-width: 700px; }
.page-hero p        {
  font-family: var(--font-accent);
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 540px;
  margin-top: 1rem;
}

/* ─────────────────────────────────────────────
   MARQUEE / STATEMENT STRIP
───────────────────────────────────────────── */
.strip {
  background: var(--black-soft);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip-inner {
  display: inline-flex;
  animation: marquee 56s linear infinite;
  width: max-content;
}

.ticker-set {
  display: inline-flex;
  gap: 3rem;
  padding-right: 3rem;
  flex: 0 0 auto;
}

.strip-inner span:not(.ticker-set):not(.ticker-logo) {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.strip-inner .dot {
  color: rgba(255,255,255,0.2);
  font-size: 0.5rem;
  align-self: center;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   INTRO SECTION
───────────────────────────────────────────── */
.intro-section { background: var(--cream); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.intro-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.intro-image:hover img { transform: scale(1.04); }

.intro-image-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(10,10,10,0.75);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}

.intro-text .eyebrow { color: var(--warm-grey); margin-bottom: 1rem; }

.intro-quote {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--black);
  margin: 1.5rem 0 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--amber);
}

.intro-text p {
  color: var(--warm-grey);
  font-size: 0.975rem;
  margin-bottom: 1rem;
}

/* ─────────────────────────────────────────────
   FEATURED EVENT SECTION
───────────────────────────────────────────── */
.featured-event { background: var(--black); }

.event-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 580px;
}

.event-feature-image {
  position: relative;
  overflow: hidden;
}

.event-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: filter 0.5s, transform 0.6s;
}

.event-feature-image:hover img {
  filter: brightness(0.85);
  transform: scale(1.04);
}

.event-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem);
  background: var(--black-mid);
  border-left: 1px solid var(--border-dark);
}

.event-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.event-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

.event-label span {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.event-feature-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.event-feature-content p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.event-meta-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.event-meta-label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.event-meta-value {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
}

/* ─────────────────────────────────────────────
   SERVICES SECTION (Home preview)
───────────────────────────────────────────── */
.services-preview { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-soft);
  border: 2px solid var(--cream-soft);
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}

.service-card:hover { background: var(--cream); }

.service-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.service-card:hover .service-number { color: var(--amber-light); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--warm-grey);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   CUISINE ROOTS SECTION
───────────────────────────────────────────── */
.roots-section { background: var(--black); overflow: hidden; }

.roots-section .eyebrow { color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
.roots-section h2       { color: var(--white); }
.roots-section p        { color: rgba(255,255,255,0.55); margin-top: 1rem; max-width: 520px; }

.roots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  padding-top: var(--section-pad);
}

.roots-image-stack {
  position: relative;
  height: 560px;
}

.roots-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
}

.roots-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  object-fit: cover;
  border: 4px solid var(--black);
}

.roots-tag {
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  background: var(--black-mid);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.2rem 0.6rem;
  writing-mode: vertical-rl;
  border: 1px solid var(--border-dark);
}

.roots-flags {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.roots-flag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.roots-flag-line {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.roots-flag span {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   GALLERY PREVIEW
───────────────────────────────────────────── */
.gallery-preview { background: var(--cream); }

.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 6px;
}

.gallery-grid-preview .g-item {
  overflow: hidden;
  position: relative;
}

.gallery-grid-preview .g-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid-preview .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.5s ease;
}

.gallery-grid-preview .g-item:first-child img { aspect-ratio: auto; height: 100%; }

.gallery-grid-preview .g-item:hover img { transform: scale(1.06); }

.g-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-item:hover .g-item-overlay { background: rgba(10,10,10,0.25); }

/* ─────────────────────────────────────────────
   EMAIL CAPTURE
───────────────────────────────────────────── */
.capture-section { background: var(--black); text-align: center; }
.capture-section .eyebrow { color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.capture-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.capture-section p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  max-width: 420px;
  margin: 0 auto 2.5rem;
}

.capture-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}

.capture-form input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--white);
  outline: none;
}

.capture-form input::placeholder { color: rgba(255,255,255,0.3); }
.capture-form input:focus { border-color: var(--amber); }

.capture-form button {
  padding: 0.9rem 1.5rem;
  background: var(--amber);
  color: var(--white);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.capture-form button:hover { background: var(--amber-light); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  background: var(--black-soft);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand .nav-logo { font-size: 1.25rem; display: inline-block; margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  max-width: 240px;
  line-height: 1.65;
}

.footer-brand .caption { margin-top: 1rem; }

footer h5 {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

footer ul li { margin-bottom: 0.65rem; }

footer ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

footer ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────────
   EVENT CARDS (Events page)
───────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--cream-soft);
}

.event-card {
  background: var(--white);
  overflow: hidden;
  transition: background 0.3s;
}

.event-card:hover { background: var(--cream); }

.event-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.event-card:hover .event-card-img img { transform: scale(1.05); }

.event-card-body {
  padding: 2rem;
}

.event-card-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.event-card-meta span {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.event-card-meta .event-tag {
  color: var(--amber);
  border-left: 2px solid var(--amber);
  padding-left: 0.6rem;
}

.event-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.event-card p {
  font-size: 0.9rem;
  color: var(--warm-grey);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────────────
   ABOUT PAGE — CHEF SECTION
───────────────────────────────────────────── */
.chef-section { background: var(--white); }

.chef-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.chef-photo-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.chef-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chef-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 480px;
}

.chef-initials {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--amber-light);
  opacity: 0.5;
}

.chef-photo-placeholder p {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.chef-text .eyebrow { color: var(--amber); margin-bottom: 1rem; }

.chef-text h2 { margin-bottom: 0.5rem; }

.chef-subtitle {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 1.5rem;
}

.chef-text p {
  font-size: 0.975rem;
  color: #3A3530;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.philosophy-block {
  background: var(--cream);
  padding: 2rem;
  margin: 2.5rem 0;
  border-left: 3px solid var(--amber);
}

.philosophy-block p {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--black);
  margin: 0;
}

/* ─────────────────────────────────────────────
   GALLERY PAGE
───────────────────────────────────────────── */
.gallery-full {
  columns: 3;
  column-gap: 6px;
}

.gallery-full .g-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  position: relative;
}

.gallery-full .g-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}

.gallery-full .g-item:hover img { transform: scale(1.04); }

/* ─────────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────────── */
.services-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--cream-soft);
}

.service-full-card {
  background: var(--white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-full-card:hover { background: var(--cream); }

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg { width: 22px; height: 22px; stroke: var(--amber); fill: none; stroke-width: 1.5; }

.service-full-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

.service-full-card p { font-size: 0.9rem; color: var(--warm-grey); line-height: 1.7; }

.service-includes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.service-includes li {
  font-size: 0.85rem;
  color: var(--warm-grey);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-includes li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

.pricing-section { background: var(--black); }
.pricing-section .eyebrow { color: var(--amber-light); margin-bottom: 1rem; }
.pricing-section h2, .pricing-section h3 { color: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  margin-top: 3rem;
}

.pricing-card {
  background: var(--black-mid);
  padding: 2.5rem 2rem;
}

.pricing-card.featured { background: var(--amber); }

.pricing-label {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}

.pricing-card.featured .pricing-label { color: rgba(255,255,255,0.7); }

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.pricing-note {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.65); }

.pricing-card ul { display: flex; flex-direction: column; gap: 0.6rem; }

.pricing-card ul li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-card.featured ul li { color: rgba(255,255,255,0.85); }

.pricing-card ul li::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amber-light);
  flex-shrink: 0;
}

.pricing-card.featured ul li::before { background: rgba(255,255,255,0.7); }

/* ─────────────────────────────────────────────
   CONTACT / BOOKING PAGE
───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info .eyebrow { color: var(--amber); margin-bottom: 1rem; }

.contact-detail {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-detail span {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.contact-detail strong {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.975rem;
}

.booking-form { background: var(--cream); padding: 3rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full { grid-column: span 2; }

.form-group label {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--amber); }

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

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .intro-grid,
  .event-feature-grid,
  .roots-grid,
  .chef-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .chef-photo-wrap { position: static; }

  .roots-image-stack { height: 360px; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .gallery-full { columns: 2; }

  .services-full { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--black);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-dark);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }

  .events-grid { grid-template-columns: 1fr; }

  .gallery-grid-preview { grid-template-columns: 1fr 1fr; }
  .gallery-grid-preview .g-item:first-child { grid-column: span 2; grid-row: span 1; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .gallery-full { columns: 1; }

  .hero-actions { flex-direction: column; }

  .capture-form { flex-direction: column; }
  .capture-form input { border-right: 1px solid rgba(255,255,255,0.15); }
}

/* ─────────────────────────────────────────────
   V4 — UNIFIED URBAN ELEGANCE SYSTEM
   Whole-site pass after Rob/Ramon feedback:
   less fine-dining serif, more Black diasporic editorial,
   Tatiana-style atmosphere + Ghetto Gastro cultural edge.
───────────────────────────────────────────── */
:root {
  --paper:       #F4EFE6;
  --paper-soft:  #E7DDD0;
  --ink:         #0B0B0A;
  --ink-soft:    #151512;
  --smoke:       #23231F;
  --olive-deep:  #3F402B;
  --olive:       #5B5C3C;
  --bronze:      #A06E3C;
  --clay:        #6E4B37;
  --line-dark:   rgba(255,255,255,0.16);
  --line-light:  rgba(11,11,10,0.16);
  --text-soft:   #6E675E;
}

body {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(11,11,10,0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
}

body::selection {
  background: var(--olive);
  color: var(--white);
}

#nav {
  background: rgba(11,11,10,0.9);
  border-bottom: 1px solid var(--line-dark);
}

.nav-logo,
.footer-brand .nav-logo {
  font-family: var(--font-hero);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-logo span {
  color: rgba(255,255,255,0.58);
}

.nav-links a,
.nav-cta,
.btn,
.eyebrow,
.event-meta-label,
.pricing-label,
.contact-detail span,
.form-group label,
footer h5 {
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255,255,255,0.68);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  border-color: rgba(255,255,255,0.42);
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--ink) !important;
}

.display,
.page-hero h1 {
  font-family: var(--font-hero);
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.display {
  font-size: clamp(2.6rem, 6.5vw, 6.6rem);
  line-height: 1;
}

.section-title,
.section-title-italic,
.event-feature-content h2,
.event-card h3,
.service-card h3,
.service-full-card h3,
.pricing-amount,
.chef-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 0.98;
}

p,
.hero-sub,
.intro-text p,
.event-feature-content p,
.service-card p,
.service-full-card p,
.event-card p,
.chef-text p,
.contact-info p {
  color: var(--text-soft);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.78;
}

.gold-line {
  width: 72px;
  height: 1px;
  background: var(--bronze);
}

.btn {
  min-height: 48px;
  border-radius: 0;
  padding: 0.9rem 1.5rem;
}

.btn-amber,
.btn-white,
.capture-form button {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--white);
}

.btn-amber:hover,
.btn-white:hover,
.capture-form button:hover {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline-white {
  border-color: rgba(255,255,255,0.56);
  color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-outline-dark,
.btn-outline-amber {
  border-color: var(--line-light);
  color: var(--ink);
}

.btn-outline-dark:hover,
.btn-outline-amber:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.hero {
  min-height: 100svh;
  align-items: center;
  padding: calc(var(--nav-h) + clamp(1.5rem, 5vw, 4rem)) 0 clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 18% 12%, rgba(160,110,60,0.32), transparent 30%),
    linear-gradient(135deg, var(--olive-deep) 0%, #342B22 48%, var(--ink) 100%);
}

.hero-bg {
  inset: calc(var(--nav-h) + clamp(0.8rem, 3vw, 2rem)) clamp(1rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 32px 100px rgba(0,0,0,0.52);
  background-position: center;
}

.hero-bg::after {
  background:
    linear-gradient(90deg, rgba(11,11,10,0.9), rgba(11,11,10,0.52) 48%, rgba(11,11,10,0.2)),
    linear-gradient(0deg, rgba(11,11,10,0.72), transparent 45%);
}

.hero-content {
  max-width: 1060px;
}

.hero h1 {
  max-width: 980px;
}

.hero-sub {
  color: rgba(255,255,255,0.76);
  max-width: 660px;
}

.hero-actions {
  max-width: 620px;
}

.hero-actions .btn {
  min-width: min(100%, 260px);
}

.hero .btn-amber,
.featured-event .btn-amber,
.capture-section .btn-amber,
.pricing-section .btn-amber,
.roots-section .btn-amber,
footer .btn-amber {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink) !important;
}

.hero .btn-amber:hover,
.featured-event .btn-amber:hover,
.capture-section .btn-amber:hover,
.pricing-section .btn-amber:hover,
.roots-section .btn-amber:hover,
footer .btn-amber:hover {
  background: transparent;
  color: var(--white) !important;
  border-color: var(--white);
}

.strip,
.capture-section,
footer,
.roots-section,
.pricing-section,
.featured-event,
.page-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    var(--ink) !important;
  background-size: 64px 64px !important;
}

.strip {
  border-block: 1px solid var(--line-dark);
}

.strip-inner span {
  color: rgba(255,255,255,0.68);
}

.strip-inner .dot,
.eyebrow,
.page-hero .eyebrow,
.pricing-section .eyebrow,
.roots-section .eyebrow,
.capture-section .eyebrow,
.contact-info .eyebrow,
.chef-text .eyebrow {
  color: var(--bronze) !important;
}

.page-hero {
  min-height: 44svh;
  display: flex;
  align-items: end;
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
}

.page-hero::before {
  background:
    radial-gradient(circle at 20% 10%, rgba(160,110,60,0.24), transparent 32%),
    linear-gradient(120deg, rgba(91,92,60,0.28), transparent 48%);
}

.page-hero h1 {
  color: var(--white);
  max-width: 940px;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1.04;
}

.page-hero p {
  color: rgba(255,255,255,0.62);
  max-width: 620px;
}

.section,
.section-sm {
  background: var(--paper) !important;
}

.intro-section,
.gallery-preview,
section[style*="background:var(--cream)"],
section[style*="background:var(--white)"] {
  background: var(--paper) !important;
}

.intro-grid,
.event-feature-grid,
.roots-grid,
.chef-grid,
.contact-grid {
  gap: clamp(2rem, 5vw, 5rem);
}

.intro-image,
.event-feature-image,
.chef-photo,
.roots-image-stack,
.event-card-img,
.gallery-grid-preview .g-item,
.gallery-full .g-item {
  border: 1px solid var(--line-light);
  background: var(--ink);
  box-shadow: 0 18px 56px rgba(11,11,10,0.12);
}

.intro-image img,
.event-feature-image img,
.chef-photo img,
.roots-image-stack img,
.event-card-img img,
.gallery-grid-preview .g-item img,
.gallery-full .g-item img {
  filter: saturate(0.88) contrast(1.05);
}

.intro-image-label,
.roots-tag {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  border: 1px solid var(--line-dark);
}

.intro-quote,
.philosophy-block p {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-quote,
.philosophy-block {
  background: rgba(11,11,10,0.035);
  border-left: 3px solid var(--bronze);
}

.event-feature-content {
  background: var(--ink);
}

.event-feature-content h2,
.roots-section h2,
.pricing-section h2,
.capture-section h2,
.featured-event .btn-amber {
  color: var(--white) !important;
}

.event-feature-content p,
.roots-section p,
.pricing-section p,
.capture-section p,
footer p,
footer ul li a {
  color: rgba(255,255,255,0.62);
}

.event-label-dot {
  background: var(--bronze);
}

.event-meta-row,
.event-meta {
  border-color: var(--line-dark);
}

.event-meta-value {
  color: rgba(255,255,255,0.82);
}

.services-grid,
.services-full,
.pricing-grid,
.events-grid {
  gap: 1px;
  background: var(--line-light);
}

.service-card,
.service-full-card,
.event-card,
.pricing-card,
.booking-form,
.contact-detail,
section[style*="grid-template-columns:1fr 1fr 1fr"] > div,
section[style*="grid-template-columns:repeat(4,1fr)"] > div,
section[style*="grid-template-columns:1fr 1fr"] div[style*="background:var(--white)"] {
  border: 0;
  background: rgba(255,255,255,0.55) !important;
}

.service-card:hover,
.service-full-card:hover,
.event-card:hover {
  background: var(--white) !important;
}

.service-number,
.pricing-amount,
.service-icon {
  color: var(--bronze);
}

.service-icon {
  background: rgba(160,110,60,0.1);
}

.service-icon svg {
  stroke: var(--bronze);
}

.service-includes li::before,
.pricing-card ul li::before {
  background: var(--bronze);
}

.service-full-card[style],
.event-card[style],
.pricing-card.featured,
section[style*="grid-template-columns:repeat(4,1fr)"] > div[style*="background:var(--amber)"] {
  background: var(--ink) !important;
  color: var(--white);
}

.service-full-card[style] h3,
.event-card[style] h3,
.pricing-card.featured .pricing-amount,
.pricing-card.featured h3,
.pricing-card.featured p,
section[style*="grid-template-columns:repeat(4,1fr)"] > div[style*="background:var(--amber)"] h4,
section[style*="grid-template-columns:repeat(4,1fr)"] > div[style*="background:var(--amber)"] p {
  color: var(--white) !important;
}

.pricing-card {
  border: 1px solid var(--line-dark);
}

.pricing-card.featured {
  border-color: rgba(255,255,255,0.22);
}

.gallery-grid-preview,
.gallery-full {
  background: transparent;
}

.gallery-full .g-item[style] {
  background: var(--ink) !important;
}

.contact-info > div[style*="background:var(--black)"] {
  background: var(--ink) !important;
  border: 1px solid var(--line-dark);
}

.booking-form {
  box-shadow: 0 24px 72px rgba(11,11,10,0.08);
}

.form-group input,
.form-group select,
.form-group textarea,
.capture-form input {
  border-radius: 0;
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,0.68);
  color: var(--ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.capture-form input:focus {
  border-color: var(--bronze);
}

.capture-form input {
  background: rgba(255,255,255,0.08);
  border-color: var(--line-dark);
  color: var(--white);
}

footer {
  border-top: 1px solid var(--line-dark);
}

footer h5 {
  color: var(--white);
}

.footer-bottom {
  border-color: var(--line-dark);
}

@media (max-width: 1024px) {
  .hero-bg {
    inset: calc(var(--nav-h) + 1rem) 1.25rem 1.25rem;
  }

  .display,
  .page-hero h1 {
    letter-spacing: 0.02em;
  }
}

/* V4.7 official wordmark pass */
:root {
  --font-hero: 'Russo One', 'Arial Black', sans-serif;
}

.display,
.display-italic,
.page-hero h1,
.section-title,
.section-title-italic,
.event-feature-content h2,
.event-card h3,
.service-card h3,
.service-full-card h3,
.pricing-amount,
.chef-text h2,
.intro-quote,
.philosophy-block p {
  font-family: var(--font-hero);
  font-weight: 400;
  letter-spacing: 0.018em;
}

.display,
.display-italic {
  font-size: clamp(2.9rem, 7.7vw, 6.85rem);
  line-height: 0.98;
}

.nav-logo,
.footer-brand .nav-logo {
  width: 12.8rem;
  min-height: 3rem;
  padding-left: 4.1rem;
  font-size: 0;
  line-height: 1;
}

.nav-logo::before,
.footer-brand .nav-logo::before {
  width: 3.35rem;
  height: 2.55rem;
  left: 0;
  background-image: var(--diaspora-mark);
}

.nav-logo::after,
.footer-brand .nav-logo::after {
  content: "";
  position: absolute;
  left: 3.7rem;
  top: 50%;
  bottom: auto;
  width: 8.35rem;
  height: 2.45rem;
  transform: translateY(-50%);
  background: var(--diaspora-logotype) left center / contain no-repeat;
}

.nav-logo span,
.footer-brand .nav-logo span {
  display: none !important;
}

@media (max-width: 768px) {
  .display,
  .display-italic {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
    line-height: 1;
    letter-spacing: 0.01em;
  }

  .nav-logo,
  .footer-brand .nav-logo {
    width: 12rem;
    min-height: 2.85rem;
    padding-left: 3.75rem;
  }

  .nav-logo::before,
  .footer-brand .nav-logo::before {
    width: 3.05rem;
    height: 2.35rem;
  }

  .nav-logo::after,
  .footer-brand .nav-logo::after {
    left: 3.45rem;
    width: 7.75rem;
    height: 2.25rem;
  }
}

@media (max-width: 768px) {
  #nav {
    padding-inline: 1.35rem;
  }

  .nav-links {
    background: rgba(11,11,10,0.98);
  }

  .hero {
    align-items: end;
    padding-top: calc(var(--nav-h) + 1.25rem);
  }

  .hero-bg {
    inset: calc(var(--nav-h) + 0.8rem) 1.25rem 1.25rem;
  }

  .hero-content {
    padding: 0;
  }

  .display {
    font-size: clamp(2.4rem, 11vw, 4.8rem);
  }

  .page-hero {
    min-height: 38svh;
    padding-bottom: 3.25rem;
  }

  .page-hero h1 {
    font-size: clamp(1.9rem, 9.4vw, 3.15rem);
    letter-spacing: 0.01em;
    max-width: 100%;
  }

  .section-title {
    font-size: clamp(1.55rem, 7.4vw, 2.45rem);
    line-height: 1.04;
  }

  .event-feature-content h2,
  .event-card h3,
  .service-card h3,
  .service-full-card h3,
  .pricing-amount,
  .chef-text h2 {
    font-size: clamp(1.45rem, 7vw, 2.3rem);
    line-height: 1.08;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
    justify-content: center;
  }

  .pricing-grid,
  .services-grid,
  .services-full,
  .events-grid {
    gap: 1px;
  }

  .booking-form {
    padding: 1.5rem;
  }
}

/* V4.1 readability pass */
:root {
  --text-soft: #433D36;
  --warm-grey: #4F4942;
  --muted: #4F4942;
}

.strip,
.capture-section,
footer,
.roots-section,
.pricing-section,
.featured-event,
.page-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    var(--ink) !important;
  background-size: 64px 64px !important;
}

p,
.intro-text p,
.service-card p,
.service-full-card p,
.event-card p,
.chef-text p,
.contact-info p,
.pricing-note,
.service-includes li,
.pricing-card ul li {
  color: #433D36 !important;
}

.page-hero p,
.hero-sub,
.event-feature-content p,
.roots-section p,
.pricing-section p,
.capture-section p,
footer p,
footer ul li a,
.contact-info > div[style*="background:var(--black)"] p,
.service-full-card[style] p,
.event-card[style] p,
.pricing-card.featured p,
.pricing-card.featured ul li,
section[style*="background:var(--black)"] p,
section[style*="background:var(--black)"] li,
section[style*="grid-template-columns:repeat(4,1fr)"] > div[style*="background:var(--amber)"] p {
  color: rgba(255,255,255,0.86) !important;
}

.page-hero .eyebrow,
.pricing-section .eyebrow,
.roots-section .eyebrow,
.capture-section .eyebrow,
.strip-inner span,
.nav-logo span,
.nav-links a,
.event-label span,
.hero-scroll,
.hero-scroll span,
.roots-flag span,
.event-meta-label,
footer .caption,
footer .footer-bottom,
footer .footer-bottom p {
  color: rgba(255,255,255,0.82) !important;
}

.event-meta-value,
.intro-image-label,
.roots-tag {
  color: rgba(255,255,255,0.92) !important;
}

.service-number,
section[style*="background:var(--black)"] div[style*="rgba(255,255,255,0.15)"],
section[style*="grid-template-columns:repeat(4,1fr)"] div[style*="rgba(255,255,255,0.3)"],
div[style*="rgba(255,255,255,0.3)"] {
  color: rgba(214,196,148,0.88) !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.capture-form input::placeholder {
  color: rgba(67,61,54,0.72) !important;
}

.capture-form input::placeholder {
  color: rgba(255,255,255,0.68) !important;
}

/* V4.2 brand warmth pass */
:root {
  --heat: #D7651D;
  --heat-soft: #F09A4A;
  --bronze: #B86A2A;
  --diaspora-mark: url("../logos/diaspora_mark_white_transparent_trim.png");
  --diaspora-primary: url("../logos/diaspora_primary_white_transparent_trim.png");
  --diaspora-logotype: url("../logos/diaspora_logotype_white_transparent_trim.png");
}

.nav-logo,
.footer-brand .nav-logo {
  position: relative;
  display: inline-block;
  padding-left: 3.8rem;
  min-height: 2.45rem;
  letter-spacing: 0.105em;
}

.nav-logo::before,
.footer-brand .nav-logo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3.05rem;
  height: 2.3rem;
  transform: translateY(-50%);
  background: var(--diaspora-mark) center / contain no-repeat;
  filter: drop-shadow(0 0 12px rgba(240,154,74,0.16));
}

.nav-logo::after,
.footer-brand .nav-logo::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  bottom: 0.22rem;
  width: 2.05rem;
  height: 1px;
  background: var(--heat-soft);
}

.nav-logo span,
.footer-brand .nav-logo span {
  color: rgba(255,255,255,0.86) !important;
}

.gold-line,
.event-label-dot,
.service-includes li::before,
.pricing-card ul li::before,
.service-icon,
.strip-inner .dot {
  background: var(--heat) !important;
}

.eyebrow,
.page-hero .eyebrow,
.pricing-section .eyebrow,
.roots-section .eyebrow,
.capture-section .eyebrow,
.contact-info .eyebrow,
.chef-text .eyebrow,
.service-number,
.pricing-amount {
  color: var(--heat-soft) !important;
}

.btn-amber,
.capture-form button,
.nav-cta {
  background: var(--heat) !important;
  border-color: var(--heat) !important;
  color: var(--white) !important;
}

.btn-amber:hover,
.capture-form button:hover,
.nav-cta:hover {
  background: transparent !important;
  border-color: var(--heat-soft) !important;
  color: var(--heat-soft) !important;
}

.hero .btn-amber,
.featured-event .btn-amber,
.capture-section .btn-amber,
.pricing-section .btn-amber,
.roots-section .btn-amber,
footer .btn-amber {
  background: var(--heat) !important;
  border-color: var(--heat) !important;
  color: var(--white) !important;
}

.hero .btn-amber:hover,
.featured-event .btn-amber:hover,
.capture-section .btn-amber:hover,
.pricing-section .btn-amber:hover,
.roots-section .btn-amber:hover,
footer .btn-amber:hover {
  background: transparent !important;
  border-color: var(--heat-soft) !important;
  color: var(--heat-soft) !important;
}

.intro-quote,
.philosophy-block {
  border-left-color: var(--heat);
}

.service-icon svg {
  stroke: var(--white);
}

.event-feature-content,
.roots-section,
.pricing-section,
.capture-section,
footer,
.page-hero {
  box-shadow: inset 0 0 0 1px rgba(215,101,29,0.08);
}

.strip {
  padding: 0.85rem 0;
}

.ticker-set {
  gap: 2.25rem;
  padding-right: 2.25rem;
}

.ticker-logo {
  position: relative;
  width: 4.95rem;
  height: 3.35rem;
  flex: 0 0 auto;
  border: 0;
  background: var(--diaspora-mark) center / contain no-repeat;
  opacity: 0.9;
  filter: drop-shadow(0 0 10px rgba(240,154,74,0.12));
}

.ticker-logo::before {
  content: "";
}

.ticker-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.125rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  transform: translate(50%, -50%);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 0 9px rgba(255,255,255,0.14);
}

.tamal-photo {
  position: relative;
}

.tamal-photo::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  width: 4.25rem;
  height: 3.35rem;
  border: 1px solid rgba(240,154,74,0.84);
  background:
    linear-gradient(135deg, rgba(11,11,10,0.74), rgba(11,11,10,0.36)),
    var(--diaspora-mark) center / 76% auto no-repeat;
  box-shadow: 0 12px 32px rgba(0,0,0,0.32);
  backdrop-filter: blur(2px);
}

.tamal-photo::before {
  content: none;
}

/* V4.5 logo harmony pass */
:root {
  --font-hero: 'Bungee', 'Arial Black', sans-serif;
}

.display,
.display-italic,
.page-hero h1,
.section-title,
.section-title-italic,
.event-feature-content h2,
.event-card h3,
.service-card h3,
.service-full-card h3,
.pricing-amount,
.chef-text h2,
.intro-quote,
.philosophy-block p {
  font-family: var(--font-hero);
  font-weight: 400;
  letter-spacing: 0;
}

.display,
.display-italic {
  font-size: clamp(2.75rem, 7.4vw, 6.5rem);
  line-height: 0.98;
}

.page-hero h1,
.section-title,
.section-title-italic,
.event-feature-content h2,
.event-card h3,
.service-card h3,
.service-full-card h3,
.pricing-amount,
.chef-text h2,
.intro-quote,
.philosophy-block p {
  line-height: 0.98;
}

.nav-logo,
.footer-brand .nav-logo {
  font-family: var(--font-hero);
  font-weight: 400;
  letter-spacing: 0;
}

.nav-logo span,
.footer-brand .nav-logo span {
  font-family: var(--font-accent);
  letter-spacing: 0.16em;
}

.tamal-photo::after {
  border: 0;
  width: 4.65rem;
  height: 3.65rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(11,11,10,0.7), rgba(11,11,10,0.22) 68%, transparent 100%),
    var(--diaspora-mark) center / 82% auto no-repeat;
  opacity: 0.84;
  box-shadow: none;
  backdrop-filter: none;
}

@media (max-width: 768px) {
  .display,
  .display-italic {
    font-size: clamp(2.2rem, 11vw, 4rem);
    line-height: 1;
    letter-spacing: 0;
  }

  .page-hero h1,
  .section-title,
  .section-title-italic,
  .event-feature-content h2,
  .event-card h3,
  .service-card h3,
  .service-full-card h3,
  .pricing-amount,
  .chef-text h2,
  .intro-quote,
  .philosophy-block p {
    letter-spacing: 0.035em;
  }
}

/* V4.7 final override: source logo assets + official wordmark behavior */
:root {
  --font-hero: 'Russo One', 'Arial Black', sans-serif;
}

.display,
.display-italic,
.page-hero h1,
.section-title,
.section-title-italic,
.event-feature-content h2,
.event-card h3,
.service-card h3,
.service-full-card h3,
.pricing-amount,
.chef-text h2,
.intro-quote,
.philosophy-block p {
  font-family: var(--font-hero);
  font-weight: 400;
  letter-spacing: 0.018em;
}

.display,
.display-italic {
  font-size: clamp(2.9rem, 7.7vw, 6.85rem);
  line-height: 0.98;
}

.nav-logo,
.footer-brand .nav-logo {
  width: 12.8rem;
  min-height: 3rem;
  padding-left: 4.1rem;
  font-size: 0;
  line-height: 1;
}

.nav-logo::before,
.footer-brand .nav-logo::before {
  width: 3.35rem;
  height: 2.55rem;
  left: 0;
  background-image: var(--diaspora-mark);
}

.nav-logo::after,
.footer-brand .nav-logo::after {
  content: "";
  position: absolute;
  left: 3.7rem;
  top: 50%;
  bottom: auto;
  width: 8.35rem;
  height: 2.45rem;
  transform: translateY(-50%);
  background: var(--diaspora-logotype) left center / contain no-repeat;
}

.nav-logo span,
.footer-brand .nav-logo span {
  display: none !important;
}

@media (max-width: 768px) {
  .display,
  .display-italic {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
    line-height: 1;
    letter-spacing: 0.01em;
  }

  .nav-logo,
  .footer-brand .nav-logo {
    width: 12rem;
    min-height: 2.85rem;
    padding-left: 3.75rem;
  }

  .nav-logo::before,
  .footer-brand .nav-logo::before {
    width: 3.05rem;
    height: 2.35rem;
  }

  .nav-logo::after,
  .footer-brand .nav-logo::after {
    left: 3.45rem;
    width: 7.75rem;
    height: 2.25rem;
  }
}
