/* ═══════════════════════════════════════════════════════════════════════════
   THE DAILY DOCKET CAFÉ — dukedailydocket.com
   Brand: Navy Blue (#1a2a5e) + Gold (#c9a227) + Cream (#faf8f3)
   Fonts: Playfair Display (headings) · Inter (body)
═══════════════════════════════════════════════════════════════════════════ */

:root {
  --navy:        #1a2a5e;
  --navy-deep:   #111d44;
  --navy-mid:    #253474;
  --gold:        #c9a227;
  --gold-light:  #e0bf5a;
  --gold-pale:   #f5e9c0;
  --cream:       #faf8f3;
  --cream-dark:  #f0ebe0;
  --text-dark:   #1c1c1c;
  --text-mid:    #4a4a4a;
  --text-soft:   #7a7a7a;
  --white:       #ffffff;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-card: 0 2px 12px rgba(26,42,94,.08);
  --shadow-lift: 0 8px 32px rgba(26,42,94,.14);

  --container:   1180px;
  --nav-h:       72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CONTAINER ────────────────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────── */
.eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.eyebrow-light { color: var(--gold-light); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: .75rem;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .section-sub { margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

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

/* ═══════════════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-logo-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.92);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  transition: background .3s;
}
.nav-logo { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  padding: .45rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy-deep) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: 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(100deg, rgba(17,29,68,.82) 0%, rgba(17,29,68,.55) 55%, rgba(17,29,68,.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 680px;
  margin: 0 auto 0 8%;
  padding-top: var(--nav-h);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════════════════
   MARQUEE BAR
═══════════════════════════════════════════════════════════════════════ */
.marquee-bar {
  background: var(--navy);
  color: var(--gold-pale);
  padding: .65rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 28s linear infinite;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.marquee-track .sep { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════════
   INTRO STRIP
═══════════════════════════════════════════════════════════════════════ */
.intro-strip {
  padding: 5rem 0;
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.intro-card {
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.intro-icon {
  width: 44px;
  height: 44px;
  color: var(--navy);
  margin-bottom: 1rem;
}
.intro-icon svg { width: 100%; height: 100%; }
.intro-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: .5rem;
}
.intro-card p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .intro-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   MENU SECTION
═══════════════════════════════════════════════════════════════════════ */
.menu-section {
  padding: 5.5rem 0;
  background: var(--cream);
}
.menu-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: .5rem;
}
.tab-btn {
  padding: .55rem 1.4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-soft);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: all .2s;
  letter-spacing: .02em;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 -2px 0 var(--gold) inset;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.menu-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}
.menu-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.menu-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .5rem;
}
.menu-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.3;
}
.price {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.menu-item p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: .5rem;
}
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold-pale);
  padding: .2rem .6rem;
  border-radius: 20px;
  letter-spacing: .02em;
}
.menu-drink-photo {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 320px;
  position: relative;
}
.menu-drink-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.drink-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(17,29,68,.8), transparent);
  color: var(--white);
  font-size: .9rem;
}
@media (max-width: 900px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   CATERING SECTION
═══════════════════════════════════════════════════════════════════════ */
.catering-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.catering-bg {
  position: absolute;
  inset: 0;
}
.catering-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.catering-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,29,68,.92) 0%, rgba(17,29,68,.75) 50%, rgba(17,29,68,.4) 100%);
}
.catering-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.catering-content .section-title { margin-bottom: 1rem; }
.catering-desc {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.catering-features {
  margin-bottom: 2rem;
}
.catering-features li {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  padding: .4rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.catering-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.catering-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.catering-menu-card {
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  width: 100%;
  max-width: 460px;
}
@media (max-width: 860px) {
  .catering-inner { grid-template-columns: 1fr; }
  .catering-menu-card { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════════
   HOURS & LOCATION
═══════════════════════════════════════════════════════════════════════ */
.hours-section {
  padding: 5.5rem 0;
  background: var(--white);
}
.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.hours-card, .location-card, .mobile-order-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
}
.hours-card { text-align: center; }
.hours-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}
.hours-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.hours-table { margin-bottom: 1.25rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: .9rem;
}
.day { font-weight: 500; color: var(--text-dark); }
.time { color: var(--navy); font-weight: 600; }
.closed { color: var(--text-soft); font-weight: 400; }
.hours-note {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  font-size: .8rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.hours-note svg { flex-shrink: 0; margin-top: 2px; }
.location-card h3, .mobile-order-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
address {
  font-style: normal;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
address strong { color: var(--navy); font-weight: 600; }
.location-links { display: flex; flex-direction: column; gap: .6rem; }
.location-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--navy);
  font-weight: 500;
  transition: color .2s;
}
.location-link:hover { color: var(--gold); }
.mobile-order-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.65; margin-bottom: .75rem; }
.mobile-note { font-size: .8rem; color: var(--text-soft); margin-bottom: 1.25rem; }
@media (max-width: 900px) {
  .hours-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════════════════════
   NETWORK (FIDUCIA FAMILY)
═══════════════════════════════════════════════════════════════════════ */
.network-section {
  padding: 5.5rem 0;
  background: var(--navy-deep);
}
.network-section .eyebrow { color: var(--gold-light); }
.network-section .section-title { color: var(--white); }
.network-section .section-sub { color: rgba(255,255,255,.65); }
.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.network-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: background .25s, transform .25s;
  cursor: pointer;
}
.network-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.network-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.network-icon svg { width: 22px; height: 22px; }
.network-icon.green  { background: rgba(34,139,34,.2); color: #5cb85c; }
.network-icon.navy   { background: rgba(255,255,255,.1); color: var(--gold-light); }
.network-icon.gold   { background: rgba(201,162,39,.2); color: var(--gold-light); }
.network-icon.warm   { background: rgba(180,120,60,.2); color: #d4956a; }
.network-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .4rem;
}
.network-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  margin-bottom: .75rem;
}
.network-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .02em;
}
@media (max-width: 900px) {
  .network-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .network-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  padding: 4rem 0 0;
  border-top: 3px solid var(--gold);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo {
  height: 70px;
  width: auto;
  max-width: 200px;
  margin-bottom: .75rem;
  background: rgba(255,255,255,.88);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  object-fit: contain;
}
.footer-tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .25rem;
}
.footer-parent {
  font-size: .75rem;
  color: var(--gold);
  font-weight: 500;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h5 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
}

/* ── MENU ADDITIONS ─────────────────────────────────────────────────── */
.menu-category-sub {
  font-size: .88rem;
  color: var(--text-soft);
  margin-bottom: 1.75rem;
  font-style: italic;
}
.menu-ingredients {
  font-size: .78rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: .5rem;
}
.tag.allergen {
  background: rgba(201,162,39,.12);
  color: #7a5e0a;
  font-size: .7rem;
}
.menu-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}
.menu-allergen-note {
  font-size: .75rem;
  color: var(--text-soft);
  text-align: center;
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
  font-style: italic;
}
@media (max-width: 900px) {
  .menu-grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 540px) {
  .menu-grid-3 { grid-template-columns: 1fr !important; }
}
