/* ── FONTS ──────────────────────────────────────────────── */
@font-face {
  font-family: 'Univers';
  src: url('../fonts/univers-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Univers';
  src: url('../fonts/univers-700.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Univers';
  src: url('../fonts/univers-900.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --green:       #008752;
  --green-dark:  #006B41;
  --green-light: #E6F4EE;
  --green-mid:   #B8DFD0;
  --white:       #FFFFFF;
  --cream:       #FDFAF5;
  --ink:         #1A1A18;
  --gray:        #5C5C58;
  --gray-light:  #E8E6E0;
  --rule:        #D4D0C8;

  --font-display: 'Univers', system-ui, sans-serif;
  --font-body:    'Univers', system-ui, sans-serif;
  --font-ui:      'Univers', system-ui, sans-serif;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── UTILITIES ───────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--green); }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta { margin-left: 8px; }

/* ── NAV DROPDOWN ────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.nav-dropdown-trigger:hover { color: var(--green); }
.nav-chevron {
  font-size: 10px;
  display: inline-block;
  transition: transform 0.15s ease;
}
.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 6px 0;
  min-width: 152px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown-menu a:hover { color: var(--green); background: var(--cream); }

/* hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu panel */
.mobile-menu {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 20px 32px 28px;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.mobile-menu ul a {
  display: block;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.15s;
}
.mobile-menu ul a:hover { color: var(--green); }
.mobile-menu-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 20px 0 4px;
  display: block;
  border-bottom: none;
}

/* ── HERO (split two-column) ─────────────────────────────── */
.hero { position: relative; }
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}
.hero-image {
  overflow: hidden;
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.hero-content {
  background: var(--cream);
  border-left: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 72px 72px 72px 64px;
}
.hero-content-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 460px;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero-subhead {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray);
  max-width: 380px;
  margin-bottom: 36px;
}
.hero-cta { margin-bottom: 24px; }
.hero-address {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.hero-address strong {
  font-weight: 500;
  color: var(--ink);
  display: block;
}

/* ── PRESS BAR ───────────────────────────────────────────── */
.press-bar {
  background: var(--green);
  padding: 22px 0;
}
.press-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  transition: opacity 0.4s ease;
}
.press-bar-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.press-bar-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.press-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--white);
  text-align: center;
}
.press-source {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s;
}
a.press-source:hover { color: var(--white); }

/* ── TWO-COL SECTIONS ────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-image {
  overflow: hidden;
  background: var(--gray-light);
  position: relative;
}
.col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.col-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: var(--white);
}
.two-col.reverse .col-content {
  background: var(--cream);
}
.col-content--cream {
  background: var(--cream);
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  max-width: 400px;
  margin-bottom: 36px;
}
.pull-quote {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
.pull-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-top: 8px;
  text-transform: uppercase;
}

/* ── IMAGE CAROUSEL ──────────────────────────────────────── */
.col-carousel { position: relative; } /* reinforces col-image's position:relative */
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.carousel-slide.is-active { opacity: 1; }

/* ── CATERING ────────────────────────────────────────────── */
.catering {
  background: var(--green);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.catering::before {
  content: 'Catering';
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.catering-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.catering-centered {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.catering-content .eyebrow { color: rgba(255,255,255,0.65); }
.catering-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.catering-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}
.catering-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.catering-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.catering-form input,
.catering-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.catering-form input::placeholder,
.catering-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.catering-form input:focus,
.catering-form textarea:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
}
.catering-form textarea { resize: vertical; }
.catering-form .btn { align-self: flex-start; }
.catering-form select {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.catering-form select:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
}
.catering-form select option {
  background: var(--green-dark);
  color: var(--white);
}
.catering-form select.filled { color: var(--white); }
.catering-radios {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.catering-radio-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-right: 4px;
}
.catering-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
}
.catering-radio input[type="radio"] {
  width: 14px;
  height: 14px;
  accent-color: var(--white);
  flex-shrink: 0;
}
.catering-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  line-height: 1.5;
}
.catering-check input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── COLUMN ACTIONS (multi-button row inside col-content) ─── */
.col-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--green);
  color: var(--white);
  padding: 72px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}
.footer-address {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
}
.footer-address a { transition: color 0.15s; }
.footer-address a:hover { color: var(--white); }
.footer-hours {
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}
.footer-order {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.footer-order:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.footer-socials {
  display: flex;
  gap: 20px;
}
.footer-socials a {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-socials a:hover { color: var(--white); }

/* ── DIVIDER ─────────────────────────────────────────────── */
.section-rule {
  height: 1px;
  background: var(--rule);
}

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 860px) {
  /* nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  /* hero — stacks vertically on mobile */
  .hero-split {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hero-image { height: 50vh; }
  .hero-content {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding: 32px;
  }
  .hero-content-inner { max-width: 100%; }
  .hero-headline { font-size: 42px; }

  /* press bar — show only the quote on small screens */
  .press-bar-label, .press-bar-dot { display: none; }
  .press-quote { text-align: center; }

  /* sections */
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .col-image { order: -1; }
  .col-carousel { height: 80vw; max-height: 480px; }
  .col-content { padding: 48px 32px; }
  .catering-inner { grid-template-columns: 1fr; gap: 40px; }
  .catering-form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .catering { padding: 72px 0; }
  .catering::before { font-size: 100px; }
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow  { animation: fadeUp 0.5s ease both; }
.hero-headline { animation: fadeUp 0.5s 0.1s ease both; }
.hero-subhead  { animation: fadeUp 0.5s 0.2s ease both; }
.hero-cta      { animation: fadeUp 0.5s 0.25s ease both; }
.hero-address  { animation: fadeUp 0.5s 0.3s ease both; }
