/* ---------- tokens ---------- */
:root {
  --ink: #0f0f10;
  --ink-2: #1a1a1c;
  --line: #2a2a2d;
  --cream: #f7f3eb;
  --cream-2: #ece5d3;
  --paper: #fafaf6;
  --brass: #d4a85a;
  --brass-2: #b88a3e;
  --red: #c8242c;
  --red-2: #a01b22;
  --blue: #1f4ea8;
  --muted: #6b6b6e;
  --muted-cream: #b6b1a5;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.20);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brass-2); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; margin: 0; }
.muted { color: var(--muted); }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* a11y */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream); padding: 10px 14px;
  border-radius: var(--r-sm); z-index: 1000;
}
.skip:focus { left: 16px; top: 16px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 1.5px solid transparent; cursor: pointer; transition: all .15s ease;
  white-space: nowrap; line-height: 1;
}
.btn-sm { padding: 9px 16px; font-size: .88rem; }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-2); border-color: var(--red-2); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ---------- brand mark ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--ink); }
.brand em { font-style: italic; color: var(--brass-2); font-weight: 700; }
.brand-name { letter-spacing: .01em; }
.brand-pole {
  position: relative; width: 14px; height: 34px; border-radius: 6px;
  background: linear-gradient(180deg, #fff 0%, #fff 100%);
  box-shadow: 0 0 0 1.5px var(--ink), 0 2px 6px rgba(0,0,0,.15);
  overflow: hidden; flex-shrink: 0;
}
.brand-pole span { position: absolute; left: -3px; right: -3px; height: 8px; transform: rotate(-30deg); }
.brand-pole span:nth-child(1) { top: -2px; background: var(--red); }
.brand-pole span:nth-child(2) { top: 8px; background: var(--blue); }
.brand-pole span:nth-child(3) { top: 18px; background: var(--red); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,246,.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 24px; min-height: 68px; }
.nav-links { display: flex; gap: 28px; font-weight: 500; font-size: .95rem; }
.nav-links a { position: relative; padding: 4px 0; color: var(--ink); }
.nav-links a:hover { color: var(--brass-2); }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 10px 18px; font-size: .9rem; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .brand-pole { width: 12px; height: 30px; }
  .brand { font-size: 1.05rem; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: clamp(560px, 80vh, 720px); display: flex; align-items: center;
  overflow: hidden; color: var(--cream);
}
.hero-img {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center 30%;
  transform: scale(1.05);
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,15,16,.3) 0%, rgba(15,15,16,.6) 60%, rgba(15,15,16,.85) 100%),
    linear-gradient(95deg, rgba(15,15,16,.78) 0%, rgba(15,15,16,.45) 60%, rgba(15,15,16,.15) 100%);
}
.hero-content { padding: 80px 24px 100px; max-width: 760px; }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  letter-spacing: -.025em;
  margin: 14px 0 22px;
}
.lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.55; color: rgba(247,243,235,.92); max-width: 580px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 600;
  color: var(--brass); margin: 0;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(200,36,44,.2); animation: pulse 2s infinite; }
.dot-cream { background: var(--brass); box-shadow: 0 0 0 4px rgba(212,168,90,.2); }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(200,36,44,.2); } 50% { box-shadow: 0 0 0 8px rgba(200,36,44,.05); } }

.hero-cta { display: flex; gap: 12px; margin: 32px 0 28px; flex-wrap: wrap; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 24px; list-style: none; padding: 0; margin: 0;
  font-size: .9rem; color: rgba(247,243,235,.78); border-top: 1px solid rgba(255,255,255,.18); padding-top: 22px;
}
.hero-meta li strong { color: var(--brass); }

@media (max-width: 540px) {
  .hero-content { padding: 64px 24px 80px; }
  .hero-meta { gap: 14px; font-size: .82rem; }
  .btn-lg { padding: 14px 22px; font-size: .95rem; }
}

/* ---------- info strip ---------- */
.strip { background: var(--ink); color: var(--cream); margin-top: -1px; }
.strip-inner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  padding: 0;
}
.strip-card {
  display: flex; align-items: flex-start; gap: 14px; padding: 22px 28px;
  border-right: 1px solid var(--line); color: var(--cream);
  transition: background .15s ease;
}
.strip-card:last-child { border-right: none; }
.strip-card:hover { background: var(--ink-2); color: var(--cream); }
.strip-card svg { color: var(--brass); flex-shrink: 0; margin-top: 2px; }
.strip-card h3 { font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--brass); margin-bottom: 4px; }
.strip-card p { margin: 0; font-size: .95rem; line-height: 1.45; color: var(--cream); }
.strip-card p .muted { color: var(--muted-cream); }

@media (max-width: 760px) {
  .strip-inner { grid-template-columns: 1fr; }
  .strip-card { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ---------- sections ---------- */
.section { padding: 100px 0; }
.section-dark { background: var(--ink); color: var(--cream); }
.section-cream { background: var(--cream); }

.sec-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.sec-head .eyebrow { justify-content: center; display: inline-flex; }
.sec-head h2 { font-size: clamp(2.2rem, 4.2vw, 3.2rem); margin: 14px 0 16px; }
.sec-lede { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section-dark .sec-lede { color: var(--muted-cream); }
.section-dark a { color: var(--brass); }

@media (max-width: 540px) {
  .section { padding: 72px 0; }
  .sec-head { margin-bottom: 40px; }
}

/* ---------- menu ---------- */
.menu {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.menu-card {
  background: #fff; border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative;
}
.menu-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.menu-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.menu-head h3 { font-family: var(--serif); font-size: 1.2rem; }
.price { font-family: var(--serif); font-weight: 700; color: var(--brass-2); font-size: 1.15rem; white-space: nowrap; }
.menu-card p { margin: 0; color: var(--muted); font-size: .92rem; flex: 1; }
.menu-card .btn { align-self: flex-start; margin-top: 6px; }

.menu-feature {
  background: var(--ink); color: var(--cream);
  border-color: var(--ink);
}
.menu-feature .price { color: var(--brass); }
.menu-feature p { color: var(--muted-cream); }
.menu-feature .btn-primary:hover { background: #fff; color: var(--ink); border-color: #fff; }
.ribbon {
  position: absolute; top: -10px; right: 18px;
  background: var(--brass); color: var(--ink);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  padding: 6px 12px; border-radius: 999px;
}

.menu-foot { text-align: center; margin-top: 28px; color: var(--muted); font-size: .9rem; }

/* ---------- gallery ---------- */
.gallery {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.g-item {
  background: none; border: 0; padding: 0; cursor: pointer;
  display: block; width: 100%; aspect-ratio: 3 / 4;
  overflow: hidden; border-radius: var(--r-md);
  position: relative;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.4));
  opacity: 0; transition: opacity .2s ease;
}
.g-item:hover::after { opacity: 1; }

@media (max-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ---------- team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: #fff; border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r-lg); padding: 32px;
  position: relative; overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--brass), var(--blue));
}
.team-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.team-card h3 { font-size: 1.8rem; margin-top: 8px; }
.team-card .role { color: var(--brass-2); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin: 6px 0 14px; }
.team-card p { color: var(--muted); margin: 0; font-size: .95rem; }
.team-card a { color: var(--ink); border-bottom: 1px solid var(--brass); padding-bottom: 1px; }
.team-card a:hover { color: var(--brass-2); }

@media (max-width: 840px) { .team { grid-template-columns: 1fr; } }

/* ---------- quote ---------- */
.quote {
  background: var(--cream-2);
  padding: 80px 0; text-align: center;
  border-top: 1px solid rgba(0,0,0,.06); border-bottom: 1px solid rgba(0,0,0,.06);
}
.quote-inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.quote .qm { color: var(--brass); margin: 0 auto 16px; display: block; }
.quote p { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.8rem); line-height: 1.4; margin: 0 0 16px; color: var(--ink); }
.quote .qa { font-family: var(--sans); font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.visit-info h2 { font-size: clamp(2.2rem, 4.2vw, 3.2rem); margin: 14px 0 16px; }
.visit-info > p { color: var(--muted); font-size: 1.05rem; margin: 0 0 24px; }
.visit-list { margin: 0; padding: 0; border-top: 1px solid rgba(0,0,0,.08); }
.visit-list > div {
  display: grid; grid-template-columns: 120px 1fr; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.08);
}
.visit-list dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--brass-2); font-weight: 600; padding-top: 3px; }
.visit-list dd { margin: 0; font-size: .98rem; line-height: 1.5; }
.visit-list dd a { color: var(--ink); border-bottom: 1px solid var(--brass); padding-bottom: 1px; }
.visit-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.visit-map {
  background: var(--ink); border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 5; min-height: 420px;
  box-shadow: var(--shadow-md);
}
.visit-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.15) contrast(1.05); }

@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; gap: 32px; }
  .visit-map { aspect-ratio: 16 / 12; min-height: 320px; }
}

/* ---------- footer ---------- */
.foot { background: var(--ink); color: var(--cream); padding: 64px 0 24px; }
.foot-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.foot h4 { font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--brass); margin-bottom: 12px; }
.foot p, .foot a { color: var(--cream); font-size: .92rem; line-height: 1.6; margin: 0 0 6px; }
.foot a:hover { color: var(--brass); }
.foot-brand { display: flex; flex-direction: column; gap: 12px; }
.foot-brand .brand-name { color: var(--cream); font-family: var(--serif); font-size: 1.3rem; font-weight: 700; }
.foot-brand .brand-name em { color: var(--brass); font-style: italic; }
.foot-brand p { color: var(--muted-cream); max-width: 320px; }
.foot-brand .brand-pole { display: inline-block; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: .85rem; color: var(--muted-cream); flex-wrap: wrap; gap: 12px; }

@media (max-width: 760px) {
  .foot-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
}

/* ---------- dock (mobile sticky) ---------- */
.dock {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: none; grid-template-columns: 1fr 1.4fr 1fr; gap: 1px;
  background: rgba(0,0,0,.1); backdrop-filter: blur(10px);
  padding: env(safe-area-inset-bottom, 0) 0 0;
  border-top: 1px solid rgba(0,0,0,.1);
}
.dock-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  background: rgba(255,255,255,.95); color: var(--ink);
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  padding: 12px 8px; min-height: 60px;
}
.dock-btn svg { stroke-width: 2.2; }
.dock-primary { background: var(--red); color: #fff; }
.dock-primary:hover { color: #fff; }

@media (max-width: 760px) {
  .dock { display: grid; }
  body { padding-bottom: 76px; }
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(8,8,9,.94); display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lb-img { max-width: min(100%, 900px); max-height: 86vh; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,.1); color: #fff;
  border: 0; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  font-size: 1.8rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.22); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 540px) { .lb-prev { left: 10px; } .lb-next { right: 10px; } }

/* ---------- print ---------- */
@media print {
  .nav, .dock, .visit-map, .hero-img, .hero-veil { display: none !important; }
  .hero { color: var(--ink); }
}
