/* ============================================================
   FICK's COFFEE — Option B: Warm Cream + Dark Charcoal Menu
   ============================================================ */

:root {
  /* Backgrounds */
  --cream:       #f8f3ea;
  --cream-warm:  #f0e9da;
  --cream-deep:  #e8dece;
  --charcoal:    #1c1c18;
  --charcoal-mid:#232320;
  --ink:         #0f0f0d;

  /* Brand green — used as accent only */
  --forest:      #1a3326;
  --forest-mid:  #22432f;

  /* Gold / sand accent */
  --sand:        #b8935a;
  --sand-light:  #d4ae7a;
  --sand-pale:   #e8d4b0;

  /* Text */
  --text:        #141a12;
  --text-mid:    #3a4a38;
  --muted:       #6b7a5a;

  /* Borders */
  --brd:         rgba(100, 90, 70, 0.13);
  --brd-dark:    rgba(255, 255, 255, 0.07);

  /* Fonts */
  --ff-word: 'Barlow Condensed', 'Arial Narrow', sans-serif; /* FICK'S wordmark */
  --ff-head: 'Cormorant Garamond', 'Garamond', Georgia, serif;
  --ff-disp: 'Cormorant', Georgia, serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h:  72px;
  --ease:   0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max:    1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }

/* ── Eyebrow ── */
.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--sand-light); }
.eyebrow--forest { color: var(--forest); opacity: 0.6; }

/* ── Section heading ── */
.section-heading {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--forest);
  margin-bottom: 32px;
}
.section-heading em { font-style: italic; }
.section-heading--light { color: var(--cream); }
.section-heading--ink   { color: var(--text); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--sand);
  color: #fff;
  border-color: var(--sand);
}
.btn--primary:hover {
  background: transparent;
  color: var(--sand);
}
.btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: rgba(26, 51, 38, 0.3);
}
.btn--outline:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn--ghost {
  background: transparent;
  color: rgba(248, 243, 234, 0.75);
  border-color: rgba(248, 243, 234, 0.25);
}
.btn--ghost:hover {
  color: var(--cream);
  border-color: rgba(248, 243, 234, 0.6);
}

/* ── Tags ── */
.tag {
  display: inline-block;
  vertical-align: middle;
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  margin-left: 8px;
  border: 1px solid rgba(184, 147, 90, 0.35);
  color: var(--sand);
}
.tag--notice {
  border-color: rgba(248, 243, 234, 0.2);
  color: rgba(248, 243, 234, 0.55);
}
.tag--dark {
  border-color: rgba(26, 51, 38, 0.25);
  color: var(--forest);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(248, 243, 234, 0.0);
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(248, 243, 234, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--brd);
  box-shadow: 0 1px 32px rgba(20, 26, 18, 0.08);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { display: flex; align-items: center; gap: 14px; }
.nav__logo-img {
  width: 38px; height: 38px;
  object-fit: contain;
  background: #fff;
  border-radius: 5px;
  padding: 3px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}
.nav__wordmark {
  font-family: var(--ff-word);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest);
  line-height: 1;
}
.nav__wordmark em {
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 1.1em;
}

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20, 26, 18, 0.5);
  transition: color var(--ease);
}
.nav__links a:hover { color: var(--forest); }
.nav__ig {
  display: flex !important;
  align-items: center;
  gap: 6px;
  color: var(--sand) !important;
  font-size: 0.68rem !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--forest);
  transition: all var(--ease);
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — split layout, cream left / photo right
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  background: var(--cream);
  overflow: hidden;
}

.hero__left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 72px) 56px 72px 48px;
}

/* thin gold vertical rule between panels */
.hero__left::after {
  content: '';
  position: absolute;
  top: 12%; right: 0; bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    var(--brd) 20%,
    var(--brd) 80%,
    transparent);
}

.hero__logo {
  width: 84px; height: 84px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 7px;
  margin-bottom: 36px;
  box-shadow: 0 8px 32px rgba(20,26,18,0.1), 0 0 0 1px var(--brd);
}

.hero__wordmark {
  font-family: var(--ff-word);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 24px;
}
.hero__wordmark em {
  display: block;
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  font-size: 0.58em;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 10px;
}

.hero__rule {
  width: 40px; height: 1px;
  background: var(--sand);
  margin-bottom: 20px;
  opacity: 0.6;
}

.hero__tagline {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(20, 26, 18, 0.35);
  margin-bottom: 44px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--brd);
  padding-top: 28px;
}
.hero__meta-row { display: flex; align-items: center; gap: 12px; }
.hero__meta-icon {
  width: 30px; height: 30px;
  border-radius: 4px;
  background: rgba(26, 51, 38, 0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}
.hero__meta-text {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(20, 26, 18, 0.55);
  line-height: 1.4;
}
.hero__meta-text strong {
  font-weight: 500;
  color: rgba(20, 26, 18, 0.8);
}

/* Right: photo */
.hero__right { position: relative; overflow: hidden; }
.hero__photo {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?w=1200&q=90') center/cover no-repeat;
  transition: transform 8s ease;
}
.hero__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right, rgba(248,243,234,0.18) 0%, transparent 30%
  );
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 25%; /* center of left panel */
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(20, 26, 18, 0.3);
  font-family: var(--ff-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
  animation: heroScroll 2.8s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(26,51,38,0.35), transparent);
}
@keyframes heroScroll {
  0%,100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  background: var(--forest);
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
  user-select: none;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 243, 234, 0.5);
  padding: 0 24px;
}
.marquee-track .dot { color: rgba(248,243,234,0.2); padding: 0; font-size: 0.875rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT — cream background
   ============================================================ */
.about { background: var(--cream); padding: 120px 0 0; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 96px;
  align-items: center;
  padding-bottom: 100px;
}

.about__logo-wrap { position: relative; }
.about__logo-wrap::before {
  content: '';
  position: absolute;
  inset: -28px -20px -28px 0;
  background: var(--cream-warm);
  z-index: 0;
}
.about__logo {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 28px 72px rgba(20,26,18,0.12), 0 6px 20px rgba(20,26,18,0.06);
}

.about__body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 20px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border: 1px solid var(--brd);
}
.stat { padding: 22px 20px; text-align: center; border-right: 1px solid var(--brd); }
.stat:last-child { border-right: none; }
.stat__num {
  display: block;
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 300;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.stat__lbl {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Pillars — cream-warm background ── */
.pillars-bar {
  background: var(--cream-warm);
  padding: 72px 0;
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid var(--brd);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--brd);
}
.pillar {
  padding: 36px 24px;
  border-right: 1px solid var(--brd);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--ease);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(26, 51, 38, 0.03); }

.pillar__letter {
  width: 40px; height: 40px;
  border: 1px solid var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-disp);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--forest);
  opacity: 0.7;
}
.pillar__text strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 8px;
}
.pillar__text p {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   MENU — dark charcoal
   ============================================================ */
.menu-section {
  background: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.menu-section__topo {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(184,147,90,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(255,255,255,0.015) 0%, transparent 55%);
}

.menu-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.menu-header .section-heading { margin-bottom: 10px; }
.menu-header__sub {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(248, 243, 234, 0.28);
}

/* Tabs */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.tab {
  padding: 9px 20px;
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(248, 243, 234, 0.38);
  border: 1px solid rgba(248, 243, 234, 0.1);
  transition: all var(--ease);
}
.tab:hover {
  color: rgba(248, 243, 234, 0.75);
  border-color: rgba(248, 243, 234, 0.25);
}
.tab.active {
  background: var(--sand);
  color: var(--charcoal);
  border-color: var(--sand);
  font-weight: 600;
}

/* Panels */
.menu-panels { position: relative; z-index: 1; }
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: panelIn 0.3s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.panel-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--brd-dark);
}
.panel-head__emoji { font-size: 1.375rem; }
.panel-head h3 {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1;
}
.panel-head h3 small {
  font-family: var(--ff-body);
  font-size: 0.45em;
  font-style: normal;
  font-weight: 400;
  color: rgba(248, 243, 234, 0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 16px;
  vertical-align: middle;
}

.menu-subhead {
  font-family: var(--ff-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.65;
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184,147,90,0.15);
}

/* List rows */
.menu-list { display: flex; flex-direction: column; }
.mi {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 0;
  transition: border-color var(--ease);
}
.mi:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.mi:hover { border-bottom-color: rgba(255,255,255,0.1); }
.mi--desc { align-items: flex-start; }
.mi--desc .mi__dots { display: none; }
.mi--desc .mi__price { align-self: flex-start; padding-top: 2px; }

.mi__left { flex: 1; padding-right: 12px; }
.mi__name {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(248, 243, 234, 0.82);
}
.mi__sub {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(248, 243, 234, 0.32);
  margin-top: 4px;
  line-height: 1.4;
}
.mi__dots {
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted rgba(255,255,255,0.12);
  margin: 0 16px;
  min-width: 24px;
  align-self: center;
}
.mi__price {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 400;
  color: var(--sand);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Card grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 4px;
}
.mcard {
  background: var(--charcoal);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: background var(--ease);
}
.mcard:hover { background: var(--charcoal-mid); }

.mcard__num {
  font-family: var(--ff-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.6;
  margin-bottom: 12px;
}
.mcard__name {
  font-family: var(--ff-head);
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(248, 243, 234, 0.9);
  line-height: 1.3;
  margin-bottom: 8px;
}
.mcard__origin {
  font-family: var(--ff-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(184, 147, 90, 0.55);
  margin-bottom: 10px;
}
.mcard__notes {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(248, 243, 234, 0.35);
  line-height: 1.6;
  flex: 1;
}
.mcard__price {
  font-family: var(--ff-head);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--sand);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ============================================================
   GALLERY — cream-deep background
   ============================================================ */
.gallery {
  background: var(--cream-deep);
  padding: 120px 0 80px;
}
.gallery .container { margin-bottom: 56px; }
.gallery .section-heading { color: var(--forest); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 290px 290px;
  gap: 4px;
  max-width: var(--max);
  margin: 0 auto;
}
.gallery__item {
  background-size: cover;
  background-position: center;
  background-color: var(--forest-mid);
  overflow: hidden;
  position: relative;
}
.gallery__item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(20, 26, 18, 0);
  transition: background 0.4s ease;
}
.gallery__item:hover::after { background: rgba(20, 26, 18, 0.12); }

.g-1 { grid-column: span 5; grid-row: span 2; }
.g-2 { grid-column: span 4; }
.g-3 { grid-column: span 3; }
.g-4 { grid-column: span 7; }
.g-5 { grid-column: span 3; }
.g-6 { grid-column: span 2; }

.gallery__footer { text-align: center; padding-top: 56px; }

/* ============================================================
   LOCATION — cream-warm background
   ============================================================ */
.location {
  background: var(--cream-warm);
  padding: 120px 0;
  border-top: 1px solid var(--brd);
}
.location__topo { display: none; }
.location .section-heading { color: var(--forest); }

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location__cards {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  border: 1px solid var(--brd);
}
.loc-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border-bottom: 1px solid var(--brd);
  transition: background var(--ease);
}
.loc-card:last-child { border-bottom: none; }
.loc-card:hover { background: rgba(26, 51, 38, 0.03); }

.loc-card__icon {
  width: 34px; height: 34px;
  border-radius: 4px;
  background: rgba(26, 51, 38, 0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  opacity: 0.7;
  flex-shrink: 0;
  margin-top: 2px;
}
.loc-card strong {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.8;
  margin-bottom: 5px;
}
.loc-card p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.loc-card__highlight {
  font-weight: 500;
  color: var(--forest);
}

.location__map {
  height: 460px;
  overflow: hidden;
  border: 1px solid var(--brd);
  box-shadow: 0 20px 56px rgba(20, 26, 18, 0.1);
}

/* ============================================================
   FOOTER — near-black ink
   ============================================================ */
.footer {
  background: var(--ink);
  padding: 80px 0 36px;
  border-top: none;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}

.footer__logo-img {
  width: 54px; height: 54px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 18px;
}
.footer__wordmark {
  font-family: var(--ff-word);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(248, 243, 234, 0.9);
  line-height: 1;
  margin-bottom: 8px;
}
.footer__wordmark em {
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--sand-light);
}
.footer__tagline {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 243, 234, 0.18);
  margin-bottom: 28px;
}
.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sand) !important;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: opacity var(--ease);
}
.footer__ig:hover { opacity: 0.65; }

.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }

.footer__col h4 {
  font-family: var(--ff-body);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.6;
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(248, 243, 234, 0.45);
  margin-bottom: 12px;
  transition: color var(--ease);
}
.footer__col a:hover { color: rgba(248, 243, 234, 0.85); }
.footer__col p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(248, 243, 234, 0.45);
  line-height: 1.8;
}

.footer__hours-val {
  font-family: var(--ff-head) !important;
  font-size: 1.75rem !important;
  font-weight: 300 !important;
  color: rgba(248, 243, 234, 0.9) !important;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.footer__hours-sub {
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  color: rgba(248, 243, 234, 0.25) !important;
  margin-bottom: 18px;
}
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer__badges span {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(248, 243, 234, 0.1);
  color: rgba(248, 243, 234, 0.3);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(248, 243, 234, 0.18);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav__inner { padding: 0 32px; }
  .hero__left { padding: calc(var(--nav-h) + 56px) 40px 56px 32px; }
  .about__grid { grid-template-columns: 1fr; gap: 56px; max-width: 600px; margin: 0 auto; }
  .about__logo-wrap::before { display: none; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .pillar:nth-child(3) { border-right: none; }
  .pillar:nth-child(4),
  .pillar:nth-child(5) { border-top: 1px solid var(--brd); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 240px);
  }
  .g-1,.g-2,.g-3,.g-4,.g-5,.g-6 { grid-column: span 1; grid-row: span 1; }
  .g-1 { grid-column: span 2; }
  .location__grid { grid-template-columns: 1fr; gap: 48px; }
  .location__map { height: 340px; }
  .footer__top { grid-template-columns: 1fr; gap: 48px; }
}

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

  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
    z-index: 190;
    border-top: 1px solid var(--brd);
  }
  .nav__links.open { transform: translateX(0); pointer-events: all; }
  .nav__links a {
    font-size: 1rem !important;
    color: var(--forest) !important;
    letter-spacing: 0.12em;
  }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left {
    padding: calc(var(--nav-h) + 48px) 24px 56px;
    min-height: 90svh;
  }
  .hero__left::after { display: none; }
  .hero__right { height: 50vw; min-height: 260px; }
  .hero__scroll { left: 50%; }
  .hero__wordmark { font-size: 3rem; }

  .about { padding: 80px 0 0; }
  .about__grid { padding-bottom: 80px; }

  .pillars-bar { padding: 56px 0; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(3),
  .pillar:nth-child(4),
  .pillar:nth-child(5) { border-top: 1px solid var(--brd); }
  .pillar:nth-child(4) { border-right: none; }

  .menu-section { padding: 80px 0; }
  .tab { padding: 8px 14px; font-size: 0.625rem; }
  .cards-grid { grid-template-columns: 1fr; gap: 0; }

  .gallery { padding: 80px 0 56px; }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }

  .location { padding: 80px 0; }
  .location__map { height: 280px; }

  .footer { padding: 60px 0 28px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }
  .hero__left { padding: calc(var(--nav-h) + 40px) 20px 48px; }
  .hero__wordmark { font-size: 2.75rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none !important; }
  .gallery__grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 180px); }
  .g-1 { grid-column: span 1; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__top { gap: 36px; }
}
