/* ============ MASKERON — Brand System ============ */
:root {
  /* Palette — Adriatic warm */
  --bg: #f6f1e8;            /* limestone */
  --bg-2: #efe6d3;          /* warmer paper */
  --ink: #1d1814;           /* charcoal espresso */
  --ink-2: #3a3128;
  --muted: #7a6f60;
  --line: #d8cdb8;
  --terracotta: #b04a2e;    /* rooftop */
  --terracotta-deep: #8a3920;
  --olive: #4d5a3a;
  --gold: #b08947;
  --cream: #fbf7ef;

  /* Type */
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ Type ============ */
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.02em;
}
.h-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.h-eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta); margin-right: 10px; vertical-align: middle;
  transform: translateY(-1px);
}

/* ============ Top utility bar ============ */
.utilbar {
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.utilbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 9px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.utilbar .left, .utilbar .right { display: flex; align-items: center; gap: 22px; }
.utilbar a { display: inline-flex; align-items: center; gap: 8px; opacity: 0.85; transition: opacity .2s; }
.utilbar a:hover { opacity: 1; }
.utilbar svg { width: 13px; height: 13px; }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.brand .mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
}
.nav-links {
  display: flex; gap: 36px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a { position: relative; padding: 6px 0; transition: color .2s; cursor: pointer;}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--terracotta);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .2s;
  cursor: pointer;
  border: none;
}
.nav-cta:hover { background: var(--terracotta); }
.nav-burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-burger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none; cursor: pointer;
  transition: all .2s;
  font-family: var(--sans);
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--terracotta); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============ Sections ============ */
.section { padding: clamp(64px, 8vw, 120px) 0; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 500;
  margin: 12px 0 0;
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-head .lead {
  max-width: 380px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ Sticky book CTA ============ */
.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end;
}
.sticky-cta .pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--terracotta);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 10px 30px -8px rgba(176,74,46,0.55);
  cursor: pointer;
  transition: transform .2s;
  border: none; font-family: var(--sans);
}
.sticky-cta .pill:hover { transform: translateY(-2px); }
.sticky-cta .icon-btn {
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 8px 22px -10px rgba(0,0,0,0.3);
  transition: transform .2s;
}
.sticky-cta .icon-btn:hover { transform: translateY(-2px); }
.sticky-cta .icon-btn.wa { background: #25D366; color: white; border-color: #1eb858; }

/* ============ Footer ============ */
footer.foot {
  background: var(--ink);
  color: #c8bfb1;
  padding: 88px 0 36px;
}
footer.foot .grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
footer.foot h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #807666;
  font-weight: 500;
  margin: 0 0 18px;
}
footer.foot a { display: block; padding: 6px 0; color: #ddd2bf; transition: color .2s; }
footer.foot a:hover { color: var(--terracotta); }
footer.foot .word {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
footer.foot p { font-size: 14px; line-height: 1.6; color: #a89e8e; max-width: 320px;}
footer.foot .meta {
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid #2c2520;
  display: flex; justify-content: space-between;
  font-size: 12px; color: #807666; letter-spacing: 0.06em;
}

/* ============ Page transitions ============ */
.page { animation: fadeIn .35s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ============ MOBILE ============ */
@media (max-width: 860px) {
  .utilbar .left { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  footer.foot .grid { grid-template-columns: 1fr 1fr; }
  footer.foot .meta { flex-direction: column; gap: 12px; }
  .section-head { flex-direction: column; align-items: start; }
}

/* ============ PHONE — full layout pass ============ */
@media (max-width: 760px) {
  /* Section padding */
  .section { padding: 56px 0; }
  .container { padding: 0 22px; }
  :root { --gutter: 22px; }

  /* Nav */
  .nav-inner { padding: 14px 22px; }
  .brand { font-size: 22px; gap: 10px; }
  .brand img { width: 36px !important; height: 36px !important; }

  /* Utility bar — keep phone CTA visible, drop EN */
  .utilbar-inner { padding: 8px 22px; }
  .utilbar svg { width: 12px; height: 12px; }

  /* ============ HERO ============ */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .hero-grid h1.display {
    font-size: clamp(44px, 12vw, 56px) !important;
    line-height: 0.98 !important;
  }
  .hero-grid p {
    font-size: 16px !important;
    max-width: 100% !important;
  }
  .hero-image {
    aspect-ratio: 4/3 !important;
    order: -1; /* show image above text on mobile for fast visual impact */
  }
  .hero-stats {
    gap: 24px !important;
    margin-top: 32px !important;
    padding-top: 24px !important;
  }
  .hero-stats > div {
    flex: 1 1 calc(50% - 24px);
    min-width: 130px;
  }
  .hero-stats .display { font-size: 32px !important; }
  .hero-stats .display + div { font-size: 11px !important; }

  /* Hide the floating "Tonight" widget on the hero image — duplicates sticky CTA */
  .hero-image > div:last-child { display: none !important; }

  /* Marquee — smaller text, more breathing room */
  .marquee { padding: 14px 0 !important; }
  .marquee-row { font-size: 20px !important; gap: 32px !important; }

  /* ============ STORY ============ */
  .story-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .story-imgs {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .story-imgs img,
  .story-img-offset {
    margin-top: 0 !important;
    aspect-ratio: 3/4 !important;
  }

  /* ============ REVIEWS ============ */
  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .reviews-grid h2 { font-size: 40px !important; }
  .reviews-grid p[style*="italic"] { font-size: 20px !important; }

  /* ============ LOCATION ============ */
  .location-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* ============ GALLERY TEASER ============ */
  .gallery-teaser-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
    gap: 8px !important;
  }
  .gallery-teaser-grid img {
    grid-row: auto !important;
    aspect-ratio: 1/1;
    height: auto !important;
  }
  .gallery-teaser-grid img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 4/3;
  }

  /* ============ MENU PAGE ============ */
  .menu-section-head {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 28px !important;
  }
  .menu-section-body {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .menu-section-image {
    position: relative !important;
    top: 0 !important;
  }
  .menu-section-image > div {
    aspect-ratio: 16/10 !important;
  }
  .menu-items-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .drinks-block { padding: 32px 22px !important; border-radius: 10px !important; }
  .drinks-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  /* ============ BOOK PAGE ============ */
  .book-step-title { font-size: 32px !important; }
  .time-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
  }
  .book-name-grid {
    grid-template-columns: 1fr !important;
  }

  /* ============ CONTACT PAGE ============ */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .contact-cards-grid {
    grid-template-columns: 1fr !important;
  }

  /* ============ FOOTER ============ */
  footer.foot { padding: 56px 0 24px; }
  footer.foot .grid { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* ============ STICKY CTA ============ */
  .sticky-cta {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }
  .sticky-cta .pill {
    padding: 11px 16px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }
  .sticky-cta .icon-btn {
    width: 44px;
    height: 44px;
  }

  /* ============ Buttons — comfortable tap targets ============ */
  .btn {
    padding: 14px 22px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  /* ============ Big headlines tighten ============ */
  .display { letter-spacing: -0.015em; }

  /* ============ Section-head tweaks ============ */
  .section-head { margin-bottom: 32px; gap: 12px; }
  .section-head h2 { font-size: clamp(34px, 9vw, 48px) !important; }
  .section-head .lead { font-size: 14px; max-width: 100%; }

  /* Page hero (Menu, Gallery, Booking, Contact intros) */
  section > .container > h1.display { font-size: clamp(44px, 12vw, 64px) !important; }
}

/* ============ Very small phones ============ */
@media (max-width: 380px) {
  .hero-grid h1.display { font-size: 40px !important; }
  .time-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 100;
  padding: 30px var(--gutter);
  transform: translateX(100%);
  transition: transform .3s;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer .close {
  background: none; border: 0; font-size: 28px; cursor: pointer;
  position: absolute; top: 22px; right: var(--gutter);
}
.mobile-drawer nav { margin-top: 80px; }
.mobile-drawer nav a {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
