/* ==========================================================
   ANCHOR TAP — Design tokens
   Palette: forest #1F3329, charcoal #1B1815, cream #F1E9D8,
            brass #A9843F, brown #4A3324, wood #6B4630
   Type: Fraunces (display) / Inter (body + labels)
   ========================================================== */

:root {
  --forest: #1f3329;
  --forest-deep: #142019;
  --charcoal: #1b1815;
  --cream: #f1e9d8;
  --cream-soft: #e9dfc9;
  --paper: #f7f2e6;
  --brass: #a9843f;
  --brass-light: #c9a866;
  --brown: #4a3324;
  --wood: #6b4630;
  --ink: #211c17;
  --line: rgba(33, 28, 23, 0.14);
  --line-light: rgba(241, 233, 216, 0.22);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3 { font-family: var(--font-display); margin: 0; color: var(--forest); font-weight: 600; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--forest); color: var(--cream); padding: 12px 18px;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--brass-light);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 14px;
}
.eyebrow.small { font-size: 11.5px; margin-bottom: 10px; }
.eyebrow.light { color: var(--brass-light); }

.rule {
  width: 46px;
  height: 2px;
  background: var(--brass);
  margin-top: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--brass);
  color: var(--forest-deep);
  box-shadow: 0 6px 16px rgba(20,32,25,0.18);
}
.btn-primary:hover { background: var(--brass-light); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(20,32,25,0.24); }
.btn-ghost {
  border-color: rgba(241, 233, 216, 0.55);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(241,233,216,0.08); transform: translateY(-2px); }

/* ==========================================================
   HEADER / NAV
   ========================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(20, 32, 25, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.35s var(--ease);
}
.site-header.scrolled .header-inner { padding: 14px 28px; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
}
.brand-mark { color: var(--brass-light); display: flex; }
.brand-word {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.main-nav { display: flex; gap: 34px; }
.main-nav a {
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  opacity: 0.92;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--brass-light);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.call-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(241,233,216,0.4);
  padding: 9px 16px;
  border-radius: 999px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.call-pill:hover { border-color: var(--brass-light); background: rgba(241,233,216,0.06); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none; border: none; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 100%; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-deep);
}
.hero-media { position: absolute; inset: 0; }
.hero-placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(169,132,63,0.22), transparent 55%),
    linear-gradient(160deg, #1a2a20 0%, #14201a 55%, #0f1712 100%);
}
.hero-placeholder-texture {
  position: absolute; inset: 0;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 5px);
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,23,18,0.92) 0%, rgba(15,23,18,0.35) 55%, rgba(15,23,18,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 28px 110px;
  margin: 0 auto 0 0;
  margin-left: max(28px, calc((100vw - var(--container)) / 2 + 28px));
}
.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.hero-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--brass-light);
  margin-bottom: 22px;
}
.hero-copy {
  color: rgba(241,233,216,0.86);
  font-size: 16.5px;
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-cue span {
  display: block; width: 1px; height: 46px;
  background: linear-gradient(180deg, rgba(241,233,216,0.7), transparent);
  animation: scrollcue 2.2s ease-in-out infinite;
}
@keyframes scrollcue {
  0%, 100% { transform: scaleY(0.6); opacity: 0.5; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 0.9s var(--ease) forwards;
}
.hero-title.reveal { animation-delay: 0.15s; }
.hero-headline.reveal { animation-delay: 0.3s; }
.hero-copy.reveal { animation-delay: 0.45s; }
.hero-ctas.reveal { animation-delay: 0.6s; }
.eyebrow.reveal { animation-delay: 0.05s; }
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   SECTIONS — shared
   ========================================================== */
.section { padding: 108px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.15; }
.section-head.center { max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }
.section-intro-copy { margin-top: 18px; color: var(--brown); max-width: 560px; }
.menu-note { display: block; margin-top: 6px; font-size: 13px; color: #8a6a2a; font-style: italic; }

.fade-in-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in-section.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Intro ---------- */
.intro { background: var(--paper); border-bottom: 1px solid var(--line); }
.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 48px;
  align-items: start;
}
.lede {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 27px);
  color: var(--forest);
  line-height: 1.4;
  font-weight: 500;
}
.intro-copy-col p:not(.lede) { color: var(--brown); max-width: 620px; }

/* ---------- The Pub ---------- */
.pub-section { background: var(--cream); }
.pub-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.pub-feature-media { aspect-ratio: 4/3; border-radius: 3px; }
.pub-feature-copy p { color: var(--brown); font-size: 16px; max-width: 380px; }

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feature-card {
  background: var(--cream);
  padding: 38px 32px;
  transition: background 0.3s ease, transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  z-index: 1;
}
.feature-card:hover {
  background: var(--paper);
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(20,32,25,0.1);
  z-index: 2;
}
.feature-card-icon { color: var(--brass); margin-bottom: 18px; }
.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { color: var(--brown); font-size: 14.5px; margin: 0; }

/* Placeholder tiles (stand-in for real photography — swap for photos with zero CSS changes) */
.placeholder-tile {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(169,132,63,0.16), transparent 55%),
    linear-gradient(160deg, #2a3b30 0%, #1c2921 60%, #142019 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(169,132,63,0.18);
}
.placeholder-tile::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 10px);
}
.placeholder-tile::after {
  content: "Photography to be added";
  position: absolute;
  bottom: 13px; left: 16px;
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(241,233,216,0.5);
}
.placeholder-icon {
  color: var(--brass-light);
  width: 34px; height: 34px;
  opacity: 0.85;
  display: flex;
}
.placeholder-icon svg { width: 100%; height: 100%; }
.placeholder-icon-lg { width: 56px; height: 56px; }

/* ---------- Atmosphere / Fireplace ---------- */
.atmosphere {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.atmosphere-media { position: absolute; inset: 0; }
.atmosphere-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,23,18,0.85), rgba(15,23,18,0.55));
}
.atmosphere-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.atmosphere-copy {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--cream);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Menu ---------- */
.menu-section { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.menu-card {
  background: var(--cream);
  border: 1px solid var(--line);
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 44px;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 24px 48px rgba(74,51,36,0.08);
}
.menu-card::before {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid rgba(169,132,63,0.3);
  pointer-events: none;
}
.menu-card-heading { text-align: center; margin-bottom: 8px; }
.menu-card-heading .eyebrow { text-align: center; }
.menu-list { margin-top: 22px; }
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
  font-family: var(--font-display);
  font-size: 17px;
}
.menu-list li:last-child { border-bottom: none; }
.menu-item-name { color: var(--ink); white-space: nowrap; }
.menu-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(74,51,36,0.35);
  transform: translateY(-4px);
}
.menu-price { color: var(--brass); font-weight: 600; white-space: nowrap; }
.menu-footnote {
  text-align: center;
  margin: 26px 0 0;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brown);
}

/* ---------- Drinks ---------- */
.drinks-section { background: var(--forest); color: var(--cream); }
.drinks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.drinks-copy .eyebrow { color: var(--brass-light); }
.drinks-copy h2 { color: var(--cream); font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 20px; }
.drinks-copy p { color: rgba(241,233,216,0.82); max-width: 440px; }
.drinks-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.drinks-tags li {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 14px; border: 1px solid rgba(241,233,216,0.3); border-radius: 999px;
  color: var(--cream);
}
.drinks-media { aspect-ratio: 4/3.2; border-radius: 3px; }

/* ---------- Gallery ---------- */
.gallery-section { background: var(--cream); }
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: 14px;
}
.masonry-item {
  grid-row: span 2;
  border-radius: 3px;
  margin: 0;
  color: var(--cream);
}
.masonry-item figcaption {
  position: absolute; bottom: 10px; left: 14px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(241,233,216,0.8);
}
.masonry-item.placeholder-tile::after { content: ""; }
.masonry-item .placeholder-icon { position: relative; }
.masonry-item.span-tall { grid-row: span 3; }
.masonry-item.span-wide { grid-column: span 2; grid-row: span 2; }
.masonry-item {
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.masonry-item:hover { transform: scale(1.015); box-shadow: 0 18px 34px rgba(20,32,25,0.22); }

/* ---------- Reviews ---------- */
.reviews-section { background: var(--paper); border-top: 1px solid var(--line); }
.rating-block { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.stars { color: var(--brass); letter-spacing: 2px; font-size: 15px; }
.rating-figure { font-family: var(--font-display); font-size: 20px; color: var(--forest); font-weight: 600; }
.rating-count { color: var(--brown); font-size: 13.5px; }

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 30px 28px;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 18px 30px rgba(20,32,25,0.08); }
.review-card .stars { display: block; margin-bottom: 14px; }
.review-card p:not(.review-attrib) { font-family: var(--font-display); font-size: 16.5px; color: var(--ink); font-style: italic; }
.review-attrib { font-size: 12.5px; color: var(--brown); text-transform: uppercase; letter-spacing: 0.05em; margin: 0; }
.reviews-disclaimer { text-align: center; margin-top: 32px; font-size: 12.5px; color: var(--brown); }

/* ---------- Location ---------- */
.location-section { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}
.location-copy address { color: var(--brown); font-size: 17px; line-height: 1.7; margin: 18px 0 10px; }
.location-phone { display: inline-block; font-size: 20px; font-family: var(--font-display); color: var(--forest); margin-bottom: 8px; }
.location-context { color: var(--brass); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 26px; }
.location-map { min-height: 320px; border-radius: 3px; overflow: hidden; border: 1px solid var(--line); }
.location-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---------- Opening hours ---------- */
.hours-section { background: var(--forest-deep); }
.hours-inner { max-width: 520px; text-align: center; }
.hours-inner .eyebrow { text-align: center; color: var(--brass-light); }
.hours-table { width: 100%; margin: 22px 0; }
.hours-table td { padding: 11px 4px; color: var(--cream); font-size: 15px; border-bottom: 1px solid rgba(241,233,216,0.12); }
.hours-table td:first-child { text-align: left; text-transform: uppercase; letter-spacing: 0.05em; font-size: 12.5px; color: rgba(241,233,216,0.65); }
.hours-table td:last-child { text-align: right; font-family: var(--font-display); }
.hours-table tr.today td { color: var(--brass-light); font-weight: 600; }
.hours-note { color: rgba(241,233,216,0.55); font-size: 12.5px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--cream); padding: 76px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand .brand-word { font-family: var(--font-display); font-size: 21px; display: block; margin-bottom: 14px; }
.footer-brand address { color: rgba(241,233,216,0.7); font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
.footer-brand a { color: var(--brass-light); font-size: 14px; }
.footer-heading { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: rgba(241,233,216,0.72); font-size: 14px; margin-bottom: 11px; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { padding: 22px 0 30px; font-size: 12.5px; color: rgba(241,233,216,0.45); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 980px) {
  .intro-grid { grid-template-columns: 1fr; gap: 20px; }
  .pub-feature { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr; }
  .drinks-grid { grid-template-columns: 1fr; }
  .drinks-media { order: -1; aspect-ratio: 16/9; }
  .location-grid { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .masonry { grid-template-columns: repeat(2, 1fr); }
  .masonry-item.span-wide { grid-column: span 2; }
}

@media (max-width: 760px) {
  :root { --nav-h: 68px; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--forest-deep);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 0 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 16px; }
  .header-inner { padding: 18px 20px; }
  .menu-toggle { display: flex; }
  .call-pill span { display: none; }
  .call-pill { padding: 10px; }

  .hero-content { margin-left: 0; padding: 0 20px 90px; }
  .section { padding: 76px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

body.nav-open { overflow: hidden; }

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