/* ===== Obfuscate — shared site styles ===== */
:root {
  --obsidian: #111111;
  --warm-bone: #F1E9DA;
  --gunmetal: #444F50;
  --brushed-silver: #A6AAA8;
  --burnt-orange: #C65A2E;

  --bg: var(--warm-bone);
  --bg-panel: #ffffff;
  --ink: var(--obsidian);
  --ink-soft: var(--gunmetal);
  --line: #dcd2bf;
  --accent: var(--burnt-orange);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 2px 10px rgba(17,17,17,0.06);
  --shadow-md: 0 10px 30px rgba(17,17,17,0.10);
  --shadow-lg: 0 20px 60px rgba(17,17,17,0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- Texture / grain overlay ---------- */
.grain {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 999;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* ---------- Header / nav ---------- */
header.site-header {
  background: rgba(17,17,17,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  color: var(--warm-bone);
  border-bottom: 1px solid rgba(241,233,218,0.12);
  position: sticky;
  top: 0;
  z-index: 50;
}
header.site-header::after {
  content: ""; display: block; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent 60%);
}
header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
}
.mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 18px; letter-spacing: 0.02em;
  text-decoration: none; color: var(--warm-bone);
}
.mark img.mark-icon { width: 34px; height: 34px; flex: none; }
nav.main-nav { display: flex; gap: 30px; align-items: center; }
nav.main-nav a {
  font-size: 13.5px; text-decoration: none; color: var(--brushed-silver);
  letter-spacing: 0.03em; text-transform: uppercase;
  padding: 4px 0; border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--warm-bone); border-bottom-color: var(--accent); }
nav.main-nav a.nav-cta {
  background: var(--accent); color: var(--warm-bone); padding: 9px 18px;
  border-radius: 2px; border-bottom: none; text-transform: none; letter-spacing: 0;
}
nav.main-nav a.nav-cta:hover { opacity: .88; border-bottom: none; }

@media (max-width: 720px) {
  header.site-header .wrap { flex-wrap: wrap; }
  nav.main-nav { gap: 16px; flex-wrap: wrap; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--obsidian);
  color: var(--warm-bone);
  padding: 96px 0 88px;
  overflow: hidden;
  isolation: isolate;
}
.hero.hero-photo { padding: 130px 0 110px; }
.hero.hero-photo::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--hero-img);
  background-size: cover; background-position: center 30%;
  filter: saturate(1.05);
}
.hero.hero-photo::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.72) 55%, rgba(10,10,10,0.94) 100%);
}
.hero .wrap { display: flex; flex-direction: column; gap: 16px; position: relative; }
.eyebrow {
  font-family: var(--sans); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 12.5px; color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); display: inline-block; }
h1.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.6rem, 6.4vw, 4.4rem);
  line-height: 1.04; margin: 6px 0 0; max-width: 17ch;
  text-wrap: balance;
}
p.hero-sub {
  font-family: var(--serif); font-style: italic; color: var(--brushed-silver);
  font-size: 1.2rem; margin: 10px 0 0; max-width: 46ch;
}
.hero-cta { display: flex; gap: 14px; margin-top: 18px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 13px 26px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none; border-radius: 2px; transition: opacity .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { opacity: 0.92; transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--warm-bone); box-shadow: 0 10px 24px rgba(198,90,46,0.35); }
.btn-outline { background: transparent; color: var(--warm-bone); border: 1px solid rgba(241,233,218,0.5); }
.btn-outline:hover { border-color: var(--warm-bone); }

.hero-logo-badge {
  position: absolute; right: 0; top: -30px;
  width: 190px; opacity: 0.9;
  display: none;
}
@media (min-width: 980px) { .hero-logo-badge { display: block; } }

/* ---------- Sections ---------- */
main { background: var(--bg); }
section { padding: 76px 0; border-bottom: 1px solid var(--line); position: relative; }
section:last-child { border-bottom: none; }
.section-num { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 14px; }
h2.section-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin: 6px 0 22px; max-width: 22ch;
}
p.lede { font-size: 1.1rem; color: var(--ink-soft); max-width: 62ch; }
p { max-width: 68ch; }

.section-alt { background: var(--obsidian); color: var(--warm-bone); }
.section-alt .section-num { color: var(--accent); }
.section-alt p.lede, .section-alt p { color: var(--brushed-silver); }
.section-alt h2.section-title { color: var(--warm-bone); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 22px; }
@media (max-width: 780px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 24px 26px;
  border-radius: 3px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin: 0 0 8px; font-family: var(--sans); font-weight: 700; font-size: 15px; }
.card p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

.rule { height: 2px; width: 44px; background: var(--accent); margin: 0 0 18px; }

/* ---------- Photo strip ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 40px; }
.photo-strip .ph { aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; }
.photo-strip .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.photo-strip .ph:hover img { transform: scale(1.06); }
@media (max-width: 640px) { .photo-strip { grid-template-columns: 1fr 1fr; } }

/* ---------- Menu tables ---------- */
.menu-group { margin-top: 44px; }
.menu-group:first-of-type { margin-top: 0; }
.menu-group h3 {
  font-family: var(--serif); font-weight: 500; font-size: 1.35rem;
  margin: 0 0 4px; display: flex; align-items: baseline; gap: 10px;
}
.menu-group h3 .ar { font-family: var(--sans); font-size: 14px; color: var(--brushed-silver); font-weight: 400; }
.menu-list { margin-top: 18px; border-top: 1px solid var(--line); }
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 18px; padding: 15px 4px; border-bottom: 1px solid var(--line);
  transition: background .15s ease;
}
.menu-item:hover { background: rgba(198,90,46,0.05); }
.menu-item .name { font-weight: 600; font-size: 15px; }
.menu-item .desc { font-size: 13.5px; color: var(--ink-soft); margin-top: 2px; display: block; font-weight: 400; }
.menu-item .price { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--accent); white-space: nowrap; }

/* ---------- Info blocks ---------- */
.info-block { display: grid; grid-template-columns: 140px 1fr; gap: 6px 20px; margin-top: 22px; }
.info-block dt { font-weight: 700; font-size: 13px; color: var(--ink-soft); text-transform: none; }
.info-block dd { margin: 0 0 14px; font-size: 15px; }
@media (max-width: 560px) { .info-block { grid-template-columns: 1fr; } .info-block dt { margin-top: 10px; } }

/* ---------- Form ---------- */
form.contact-form { margin-top: 24px; max-width: 520px; display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.field input, .field textarea {
  font-family: var(--sans); font-size: 15px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 2px; background: var(--bg-panel); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(198,90,46,0.15); }
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: -6px; }
.form-status { font-size: 14px; padding: 12px 14px; border-radius: 2px; margin-top: 4px; display: none; }
.form-status.success { display: block; background: #eef6ee; color: #2b5f2b; border: 1px solid #bcdcbc; }
.form-status.error { display: block; background: #fbecea; color: #8a2e22; border: 1px solid #f0bdb4; }

/* ---------- Callout ---------- */
.callout {
  background: var(--obsidian); color: var(--warm-bone);
  padding: 26px 28px; margin-top: 26px; border-radius: 3px;
  border-left: 3px solid var(--accent);
}
.callout p { color: var(--brushed-silver); margin: 0; font-size: 14.5px; }
.callout b { color: var(--warm-bone); }

/* ---------- Stat row ---------- */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.stat { text-align: left; }
.stat .num { font-family: var(--serif); font-size: 2.4rem; color: var(--accent); line-height: 1; }
.stat .label { font-size: 13px; color: var(--brushed-silver); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 640px) { .stat-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--obsidian); color: var(--brushed-silver);
  padding: 48px 0 34px;
  font-size: 13px;
}
footer.site-footer .wrap {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 22px; align-items: center;
}
footer.site-footer .foot-brand { display: flex; align-items: center; gap: 10px; }
footer.site-footer .foot-brand img { width: 26px; height: 26px; }
footer.site-footer b { color: var(--warm-bone); }
footer.site-footer nav { display: flex; gap: 22px; }
footer.site-footer nav a { text-decoration: none; color: var(--brushed-silver); transition: color .15s ease; }
footer.site-footer nav a:hover { color: var(--warm-bone); }
