/* ═══════════════════════════════════════════════════════════════════════════
   GARDENS CAFÉ — cateringatduke.com
   Brand: Navy (#1a2a5e) · Sage (#5a7a52) · Cream (#f9f5ed) · Forest (#2e4a28)
   Fonts: Playfair Display + Inter
   ═══════════════════════════════════════════════════════════════════════════ */

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

:root {
  --navy:       #1a2a5e;
  --navy-deep:  #0f1c42;
  --sage:       #5a7a52;
  --sage-light: #7a9a72;
  --sage-pale:  #e8f0e5;
  --forest:     #2e4a28;
  --cream:      #f9f5ed;
  --cream-mid:  #f2ebe0;
  --gold:       #b8963e;
  --text:       #1c1c1c;
  --text-muted: #5c5c5c;
  --white:      #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius:     8px;
  --radius-lg:  14px;
  --shadow:     0 2px 16px rgba(26,42,94,.10);
  --shadow-md:  0 4px 28px rgba(26,42,94,.14);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.6; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY UTILITIES ───────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .6rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: .85rem;
}

.section-sub {
  font-size: .98rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1.6rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-sage { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn-sage:hover { background: var(--forest); border-color: var(--forest); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.65); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); }

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

/* ── REVEAL ANIMATION ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease calc(var(--delay, 0s)), transform .55s ease calc(var(--delay, 0s));
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 12px rgba(26,42,94,.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}

/* Logo block */
.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.nav-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: rgba(255,255,255,.92);
  border-radius: 100px;
  padding: 5px;
  transition: background var(--transition);
}
.site-header.scrolled .nav-logo {
  background: var(--cream);
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
  white-space: nowrap;
}
.site-header.scrolled .nav-logo-text { color: var(--navy); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  list-style: none;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  padding: .45rem .8rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.site-header.scrolled .nav-links a { color: var(--text); }
.site-header.scrolled .nav-links a:hover { color: var(--navy); background: var(--sage-pale); }

/* CTA link inside nav */
.nav-links .nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  border-radius: 100px;
  padding: .45rem 1rem;
  font-weight: 600;
  transition: background var(--transition) !important;
}
.nav-links .nav-cta:hover { background: var(--forest) !important; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .35rem;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--navy); }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,28,66,.45) 0%,
    rgba(26,42,94,.55) 50%,
    rgba(15,28,66,.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 100px 24px 80px;
}
.hero-content .eyebrow { color: rgba(255,255,255,.8); }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.1rem;
}
.hero-title em {
  font-style: italic;
  color: #c5dfc0;
}
.hero-sub {
  font-size: clamp(.93rem, 1.4vw, 1.08rem);
  color: rgba(255,255,255,.88);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────────────────────────────────────
   MARQUEE BAR
   ───────────────────────────────────────────────────────────────────────── */
.marquee-bar {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: .7rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 1.6rem;
  animation: marquee 32s linear infinite;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.marquee-bar:hover .marquee-track { animation-play-state: paused; }
.marquee-track .sep { color: var(--sage-light); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────────────────────────
   VENUE STRIP
   ───────────────────────────────────────────────────────────────────────── */
.venue-strip {
  padding: 5rem 0;
  background: var(--white);
}
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Photo column */
.venue-photo-col {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.venue-photo-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.venue-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.venue-photo-pair img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Text column */
.venue-text {
  padding-top: 1rem;
}
.venue-desc {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.venue-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.venue-features li {
  font-size: .9rem;
  color: var(--text);
  padding-left: 1.4rem;
  position: relative;
}
.venue-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

/* ─────────────────────────────────────────────────────────────────────────
   MENU SECTION
   ───────────────────────────────────────────────────────────────────────── */
.menu-section {
  padding: 5.5rem 0;
  background: var(--cream);
}

.menu-category {
  margin-bottom: 3.5rem;
}
.menu-cat-header {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  border-bottom: 2px solid var(--sage-pale);
  padding-bottom: .75rem;
}
.menu-cat-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
}
.menu-cat-price {
  font-size: .8rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: .04em;
}

/* Menu grid — 4 cols default, 3 cols variant */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.menu-grid-3 {
  grid-template-columns: repeat(4, 1fr);
}

/* Menu item card */
.menu-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 1px 8px rgba(26,42,94,.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.menu-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.menu-item-header h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .35rem;
  line-height: 1.3;
}
.menu-item p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

/* Photo menu item (has image on top) */
.menu-item.photo-item {
  padding: 0;
}
.menu-item-photo {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.menu-item-body {
  padding: 1rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Sweets grid — horizontal list */
.sweets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.sweet-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: .85rem 1.2rem;
  box-shadow: 0 1px 6px rgba(26,42,94,.07);
}
.sweet-name {
  font-size: .9rem;
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 600;
}
.sweet-price {
  font-size: .82rem;
  font-weight: 700;
  color: var(--sage);
  white-space: nowrap;
  margin-left: 1rem;
}

/* Full menu card image */
.menu-card-wrap {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.menu-card-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─────────────────────────────────────────────────────────────────────────
   COFFEE SECTION
   ───────────────────────────────────────────────────────────────────────── */
.coffee-section {
  padding: 5rem 0;
  background: var(--navy);
}
.coffee-section .eyebrow { color: var(--sage-light); }
.coffee-section .section-title { color: var(--white); }

.coffee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.coffee-col {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.1);
}
.coffee-cat {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #c5dfc0;
  margin: 1rem 0 .55rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.coffee-cat:first-child { margin-top: 0; }
.coffee-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
  padding: .3rem 0;
  font-size: .83rem;
  color: rgba(255,255,255,.78);
  border-bottom: 1px dotted rgba(255,255,255,.08);
}
.coffee-row span:last-child {
  font-weight: 600;
  color: rgba(255,255,255,.95);
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────────────────
   VISIT / HOURS SECTION
   ───────────────────────────────────────────────────────────────────────── */
.visit-section {
  position: relative;
  padding: 6rem 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.visit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.visit-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.visit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,42,94,.82) 0%, rgba(26,42,94,.55) 60%, rgba(26,42,94,.3) 100%);
}
.visit-inner {
  position: relative;
  z-index: 2;
}
.visit-card {
  background: rgba(249,245,237,.96);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.6rem;
  max-width: 440px;
  box-shadow: var(--shadow-md);
}
.visit-logo {
  width: 48px; height: 48px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.visit-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.hours-table {
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  padding: .35rem 0;
  border-bottom: 1px solid var(--cream-mid);
  gap: 1rem;
}
.hours-row .day { color: var(--text); font-weight: 500; }
.hours-row .time { color: var(--sage); font-weight: 600; }
.hours-row .time.closed { color: var(--text-muted); }
address {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
address strong { color: var(--navy); }
.visit-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.2rem;
}
.visit-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--navy);
  font-weight: 500;
  transition: color var(--transition);
}
.visit-link:hover { color: var(--sage); }
.visit-link svg { flex-shrink: 0; color: var(--sage); }
.visit-note {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--cream-mid);
  padding-top: .9rem;
  margin-top: .4rem;
}

/* ─────────────────────────────────────────────────────────────────────────
   CATERING SECTION
   ───────────────────────────────────────────────────────────────────────── */
.catering-section {
  padding: 5.5rem 0;
  background: var(--cream);
}
.catering-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.catering-text .section-title { margin-bottom: .65rem; }
.catering-text p {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.catering-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.catering-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ─────────────────────────────────────────────────────────────────────────
   NETWORK SECTION
   ───────────────────────────────────────────────────────────────────────── */
.network-section {
  padding: 5rem 0;
  background: var(--white);
}
.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.network-card {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  border: 2px solid var(--cream-mid);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.network-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.network-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.network-card p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.network-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: .02em;
  margin-top: .3rem;
}

/* ─────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 24px 2.5rem;
  max-width: 1160px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer-logo {
  width: 42px; height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
  margin-bottom: .3rem;
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.footer-parent {
  font-size: .78rem;
  color: var(--sage-light);
  letter-spacing: .03em;
  margin-top: .2rem;
}
.footer-col h5 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .9rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-col ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  padding: 1.2rem 24px;
  font-size: .72rem;
  color: rgba(255,255,255,.3);
}

/* ─────────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .network-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    padding: .8rem 1.2rem 1.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: var(--text) !important;
    width: 100%;
    padding: .65rem .8rem;
    font-size: .95rem;
    border-radius: var(--radius);
  }
  .nav-links a:hover { background: var(--sage-pale); color: var(--navy) !important; }
  .nav-links .nav-cta {
    margin-top: .5rem;
    width: 100%;
    justify-content: center;
  }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-title { font-size: clamp(2rem, 8vw, 3.2rem); }

  /* Venue */
  .venue-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .venue-photo-main img { height: 240px; }
  .venue-photo-pair img { height: 140px; }

  /* Menu */
  .menu-grid { grid-template-columns: 1fr; }
  .menu-grid-3 { grid-template-columns: 1fr; }
  .sweets-grid { grid-template-columns: 1fr; }

  /* Coffee */
  .coffee-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  /* Catering */
  .catering-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .catering-img-col { order: -1; }
  .catering-img { height: 240px; }

  /* Network */
  .network-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .network-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .visit-card { padding: 1.8rem; }
  .catering-actions { flex-direction: column; }
}
