/* The Lucky Pirate Chop House — concept redesign */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #16130f;
  --ink-soft: #504a41;
  --paper: #f7f3ec;
  --paper-dim: #efe9dd;
  --line: #e0d8c6;
  --brass: #a97a34;
  --white: #fff;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--brass); color: var(--white); }
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 500; margin: 0; line-height: 1.08; letter-spacing: -.01em; }
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.serif { font-family: 'Fraunces', serif; }

/* Utility eyebrow */
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 600;
  color: var(--brass);
}

/* Header */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: var(--ink);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--paper); font-family: 'Fraunces', serif; font-size: 1.15rem; letter-spacing: .02em; }
.brand-mark { flex-shrink: 0; color: var(--brass); }
.brand-text small { display: block; font-family: 'Inter', sans-serif; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: #a99a7d; margin-top: 2px; font-weight: 600; }

nav.primary { display: flex; align-items: center; gap: 30px; }
nav.primary a.navlink {
  position: relative; color: #d9cfba; text-decoration: none; font-size: .88rem; font-weight: 500; padding-bottom: 3px;
}
nav.primary a.navlink::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--brass);
  transition: right .25s ease;
}
nav.primary a.navlink:hover::after, nav.primary a.navlink[aria-current="page"]::after { right: 0; }
nav.primary a.navlink:hover, nav.primary a.navlink[aria-current="page"] { color: var(--paper); }
.phoneline { color: #a99a7d; font-size: .85rem; text-decoration: none; }
.phoneline:hover { color: var(--paper); }

.btn {
  display: inline-block; background: var(--brass); color: var(--ink) !important;
  font-weight: 600; text-decoration: none; padding: 11px 22px;
  font-size: .85rem; white-space: nowrap; border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  letter-spacing: .01em; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { background: #c08f43; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.btn.outline { background: transparent; color: var(--paper) !important; border: 1px solid #6b6353; }
.btn.outline:hover { border-color: var(--paper); box-shadow: none; }
.btn.dark { background: var(--ink); color: var(--paper) !important; }
.btn.dark:hover { background: #2a251d; }

.nav-toggle { display: none; background: none; border: none; color: var(--paper); font-size: 1.5rem; cursor: pointer; }

@media (max-width: 880px) {
  nav.primary { position: fixed; inset: 62px 0 auto 0; background: var(--ink); flex-direction: column; align-items: flex-start; padding: 6px 28px 22px; gap: 2px; display: none; }
  nav.primary.open { display: flex; }
  nav.primary a.navlink { width: 100%; padding: 12px 0; border-bottom: 1px solid #2c2820; }
  nav.primary .btn { margin-top: 12px; width: 100%; text-align: center; }
  .nav-toggle { display: block; }
}

/* Full-bleed photo hero, text overlaid directly */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex; align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  animation: slowzoom 26s ease-in-out infinite alternate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(10,8,5,.86) 0%, rgba(10,8,5,.4) 42%, rgba(10,8,5,.08) 68%);
}
.hero-inner { position: relative; z-index: 2; padding: 0 0 60px; width: 100%; }
.hero h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); max-width: 15ch; color: var(--white); }
.hero p.lead { font-size: 1.05rem; max-width: 46ch; color: #e9e2d3; margin-top: 14px; }
.hero .cta-row { display: flex; align-items: center; gap: 20px; margin-top: 26px; flex-wrap: wrap; }
.hero .microline { font-size: .82rem; color: #cfc4a9; }

@keyframes slowzoom { from { transform: scale(1); } to { transform: scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .hero-bg, .page-hero-bg { animation: none; } }

/* smaller photo hero used on inner pages */
.page-hero {
  position: relative; min-height: 46vh; display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  animation: slowzoom 26s ease-in-out infinite alternate;
}
.page-hero::before { content:""; position:absolute; inset:0; z-index: 1; background: linear-gradient(0deg, rgba(10,8,5,.88) 0%, rgba(10,8,5,.25) 75%); }
.page-hero-inner { position: relative; z-index: 2; padding: 0 0 44px; width: 100%; }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4.2vw, 2.8rem); max-width: 20ch; }
.page-hero p { color: #ddd3bd; max-width: 56ch; margin-top: 10px; font-size: .98rem; }

/* Proof line under hero */
.proof {
  background: var(--ink); color: #cfc4a9; padding: 16px 0; font-size: .86rem;
  display: flex; justify-content: center; text-align: center;
}
.proof strong { color: var(--paper); font-weight: 600; }

/* Sections */
section { padding: 84px 0; }
section.tight { padding: 64px 0; }
section.dim { background: var(--paper-dim); }
section.dark { background: var(--ink); color: var(--paper); }
.section-head { max-width: 640px; margin-bottom: 30px; }
.section-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-top: 8px; }

/* Asymmetric story rows */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story.reverse .story-media { order: 2; }
.story.reverse .story-text { order: 1; }
.story-text p { color: var(--ink-soft); margin-top: 16px; max-width: 46ch; }
.story-text p:first-of-type { margin-top: 18px; }
.story-media { overflow: hidden; }
.story-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; transition: transform .6s ease; }
.story-media:hover img { transform: scale(1.045); }
@media (max-width: 900px) {
  .story, .story.reverse { grid-template-columns: 1fr; gap: 26px; }
  .story.reverse .story-media, .story.reverse .story-text { order: unset; }
  .story-media img { aspect-ratio: 16/10; }
}

/* Menu highlight strip (not a card grid — one photo, a short list) */
.highlight { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; align-items: stretch; }
.highlight-media { position: relative; min-height: 420px; }
.highlight-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.highlight-text { background: var(--ink); color: var(--paper); padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.highlight-text h2 { color: var(--paper); font-size: clamp(1.5rem, 2.8vw, 2rem); }
.pick { display: flex; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid #2c2820; }
.pick:last-of-type { border-bottom: none; }
.pick .pk-name { font-weight: 600; }
.pick .pk-desc { color: #b6ab90; font-size: .86rem; margin-top: 2px; }
.pick .pk-price { font-family: 'Fraunces', serif; color: var(--brass); white-space: nowrap; }
@media (max-width: 900px) { .highlight { grid-template-columns: 1fr; } .highlight-media { min-height: 280px; } .highlight-text { padding: 40px 28px; } }

/* Reviews — editorial, not boxed cards */
.review-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 900px) { .review-row { grid-template-columns: 1fr; gap: 32px; } }
.review-ed { position: relative; border-top: 2px solid var(--ink); padding-top: 18px; }
.review-ed::before {
  content: "“"; position: absolute; top: -2px; right: 0; font-family: 'Fraunces', serif; font-size: 4rem;
  color: var(--brass); opacity: .22; line-height: 1; pointer-events: none;
}
.review-ed .stars { color: var(--brass); font-size: .8rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-ed q { display: block; font-family: 'Fraunces', serif; font-size: 1.08rem; font-weight: 400; line-height: 1.45; quotes: none; }
.review-ed .who { margin-top: 14px; font-size: .8rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; padding: 20px 0; font-family: 'Fraunces', serif; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--brass); flex-shrink: 0; margin-left: 16px; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 0 20px; color: var(--ink-soft); max-width: 62ch; }

/* Final CTA band */
.cta-band { background: var(--ink); color: var(--paper); text-align: center; padding: 76px 0; }
.cta-band .eyebrow { color: var(--brass); }
.cta-band h2 { color: var(--paper); font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-top: 10px; }
.cta-band p { color: #cfc4a9; max-width: 46ch; margin: 14px auto 0; }
.cta-band .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* Practical info grid (hours/location) */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; gap: 34px; } }
.info-block .eyebrow { display: block; margin-bottom: 10px; }
.info-block h3 { font-size: 1.2rem; margin-bottom: 12px; }
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 6px 0; font-size: .92rem; border-bottom: 1px solid var(--line); }
.hours-list li:last-child { border-bottom: none; }
.hours-list li.today span:first-child { font-weight: 700; }
.hours-list li.today { color: var(--ink); }

/* Menu / wine list tables (inner pages) — two columns on desktop, one on mobile */
.menu-section { margin-bottom: 60px; column-count: 2; column-gap: 56px; }
.menu-section h2 { column-span: all; border-bottom: 2px solid var(--brass); padding-bottom: 12px; margin-bottom: 4px; font-size: 1.5rem; }
.menu-note { column-span: all; color: var(--ink-soft); font-size: .9rem; margin: 10px 0 24px; }
.menu-item { break-inside: avoid; display: flex; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px dashed var(--line); }
.menu-item:last-child { border-bottom: none; }
.menu-item .mi-name { font-weight: 600; }
.menu-item .mi-desc { color: var(--ink-soft); font-size: .9rem; margin-top: 3px; }
.menu-item .mi-price { font-family: 'Fraunces', serif; color: var(--brass); white-space: nowrap; }

.wine-item { break-inside: avoid; display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px dashed var(--line); }
.wine-item:last-child { border-bottom: none; }
.wine-item .wi-name { font-weight: 600; }
.wine-item .wi-type { color: var(--ink-soft); font-size: .85rem; }
.wine-item .wi-price { text-align: right; white-space: nowrap; font-family: 'Fraunces', serif; color: var(--brass); font-size: .92rem; }

@media (max-width: 760px) {
  .menu-section { column-count: 1; }
}

/* Footer */
footer.site { background: #0f0d09; color: #97896c; padding: 56px 0 26px; font-size: .88rem; }
footer.site .fgrid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 800px) { footer.site .fgrid { grid-template-columns: 1fr; gap: 28px; } }
footer.site h4 { color: var(--paper); font-family: 'Fraunces', serif; font-size: 1rem; margin-bottom: 12px; font-weight: 500; }
footer.site a { color: #97896c; text-decoration: none; }
footer.site a:hover { color: var(--brass); }
footer.site .bottom { border-top: 1px solid #241f17; padding-top: 20px; font-size: .78rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

.concept-bar { background: #0f0d09; color: #97896c; font-size: .78rem; padding: 8px 0; text-align: center; border-bottom: 1px solid #241f17; }
.concept-bar a { color: var(--brass); }
