/* ET KONAĞI — Stylesheet */

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

:root {
  /* Colors */
  --color-ember-red: #c90000;
  --color-charcoal-black: #050505;
  --color-smoked-graphite: #121212;
  --color-butcher-red-dark: #7a0000;
  --color-steel-silver: #c8c8c8;
  --color-knife-grey: #8f8f8f;
  --color-flame-orange: #ff5a00;
  --color-bone-white: #f2f2f2;
  --color-blood-gloss: #ff0000;
  --color-pitch-black: #000000;

  /* Fonts */
  --font-konagi-serif: 'Cinzel', Georgia, "Times New Roman", serif;
  --font-butcher-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-grill-condensed: 'Oswald', Impact, "Arial Narrow", sans-serif;

  /* Type scale */
  --text-caption: 12px;
  --text-body-sm: 14px;
  --text-body: 16px;
  --text-subheading: 18px;
  --text-heading-sm: 24px;
  --text-heading: 32px;
  --text-heading-lg: 48px;
  --text-display: 72px;

  /* Spacing */
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-20: 20px;
  --spacing-24: 24px;
  --spacing-32: 32px;
  --spacing-40: 40px;
  --spacing-60: 60px;
  --spacing-80: 80px;

  /* Layout */
  --page-max-width: 1440px;
  --section-gap: 96px;
  --card-padding: 24px;
  --hero-padding: 80px 24px;
  --navigation-height: 80px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-ember: rgba(201, 0, 0, 0.35) 0px 0px 32px -8px;
  --shadow-deep: rgba(0, 0, 0, 0.65) 0px 18px 48px -18px;
  --shadow-steel: rgba(200, 200, 200, 0.16) 0px 0px 24px -12px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-butcher-sans);
  font-size: var(--text-body);
  line-height: 1.5;
  color: var(--color-bone-white);
  background: var(--color-charcoal-black);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-konagi-serif);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--color-bone-white);
}

.eyebrow {
  font-family: var(--font-grill-condensed);
  font-weight: 600;
  font-size: var(--text-body-sm);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-ember-red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--color-ember-red);
}

.section-title {
  font-size: clamp(36px, 5vw, var(--text-heading-lg));
  text-transform: uppercase;
  margin-top: 12px;
}

.section-lead {
  margin-top: 16px;
  max-width: 640px;
  color: var(--color-steel-silver);
  font-size: var(--text-subheading);
  line-height: 1.6;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* Section */
section { padding: var(--section-gap) 0; position: relative; }
section + section { padding-top: 0; }
.page-hero + section,
.hero + section { padding-top: var(--section-gap); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-butcher-sans);
  font-weight: 600;
  font-size: var(--text-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-ember-red);
  color: var(--color-bone-white);
  padding: 15px 48px;
  box-shadow: var(--shadow-ember);
}
.btn-primary:hover {
  background: var(--color-blood-gloss);
  box-shadow: rgba(255, 0, 0, 0.5) 0px 0px 40px -6px;
}

.btn-secondary {
  background: var(--color-smoked-graphite);
  color: var(--color-steel-silver);
  padding: 14px 36px;
  border: 1px solid var(--color-ember-red);
}
.btn-secondary:hover {
  border-color: var(--color-blood-gloss);
  color: var(--color-bone-white);
}

.btn-nav {
  background: var(--color-ember-red);
  color: var(--color-bone-white);
  padding: 8px 20px;
  font-size: var(--text-body-sm);
  box-shadow: var(--shadow-ember);
}
.btn-nav:hover { background: var(--color-blood-gloss); }

.btn-ghost {
  color: var(--color-steel-silver);
  padding: 12px 24px;
  border: 1px solid rgba(200, 200, 200, 0.18);
}
.btn-ghost:hover {
  border-color: var(--color-ember-red);
  color: var(--color-bone-white);
}

/* Header / Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(122, 0, 0, 0.4);
  height: var(--navigation-height);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, var(--color-ember-red), var(--color-butcher-red-dark) 70%, #2a0000 100%);
  border-radius: 50%;
  box-shadow: var(--shadow-ember);
  flex-shrink: 0;
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-konagi-serif);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.18em;
  color: var(--color-bone-white);
}
.brand-tag {
  font-family: var(--font-grill-condensed);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--color-ember-red);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: var(--text-body-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-steel-silver);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}
.nav-links a:hover { color: var(--color-bone-white); }
.nav-links a.active { color: var(--color-ember-red); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--color-ember-red);
  border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 200, 200, 0.2);
  border-radius: var(--radius-md);
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--color-bone-white);
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--color-bone-white);
  transition: transform .3s ease;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--navigation-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 120px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.85) 60%, var(--color-charcoal-black) 100%),
              url('https://images.unsplash.com/photo-1558030006-450675393462?w=1920&q=80&auto=format&fit=crop') center/cover no-repeat;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 90, 0, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(201, 0, 0, 0.22), transparent 55%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy { max-width: 720px; }
.hero-title {
  font-size: clamp(48px, 8vw, var(--text-display));
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 0.95;
  margin-top: 24px;
}
.hero-title .accent { color: var(--color-ember-red); display: block; }
.hero-lead {
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--color-steel-silver);
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-meta {
  position: relative;
  background: linear-gradient(160deg, rgba(18,18,18,0.88), rgba(5,5,5,0.92));
  border: 1px solid rgba(201, 0, 0, 0.35);
  border-radius: var(--radius-2xl);
  padding: 32px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-deep);
}
.hero-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(200,200,200,0.08);
}
.hero-meta-row:last-child { border-bottom: none; }
.hero-meta-label {
  font-family: var(--font-grill-condensed);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: var(--text-body-sm);
  color: var(--color-knife-grey);
}
.hero-meta-value {
  font-family: var(--font-konagi-serif);
  color: var(--color-bone-white);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(122, 0, 0, 0.5);
  border-bottom: 1px solid rgba(122, 0, 0, 0.5);
  background: rgba(0,0,0,0.4);
  overflow: hidden;
  white-space: nowrap;
}
.hero-marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  font-family: var(--font-grill-condensed);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-steel-silver);
  font-size: 14px;
}
.hero-marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.hero-marquee-track span::after {
  content: "★";
  color: var(--color-ember-red);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Decorative divider */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 16px 0;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-ember-red), transparent);
}
.divider svg {
  width: 24px;
  height: 24px;
  color: var(--color-steel-silver);
  flex-shrink: 0;
}

/* Section header common */
.section-header {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.section-header .eyebrow { justify-content: center; }
.section-header .eyebrow::before,
.section-header .eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--color-ember-red);
}
.section-header .section-title { text-align: center; }
.section-header .section-lead { margin-left: auto; margin-right: auto; text-align: center; }

/* Specialty / signature grid */
.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}
.steak-card {
  background: var(--color-smoked-graphite);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 0, 0, 0.28);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  position: relative;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.steak-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-ember-red);
  box-shadow: var(--shadow-deep), var(--shadow-ember);
}
.steak-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.steak-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.steak-card:hover .steak-card-media img { transform: scale(1.06); }
.steak-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,0.85));
}
.steak-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
.steak-card-body {
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.steak-card-title {
  font-family: var(--font-konagi-serif);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-bone-white);
}
.steak-card-desc {
  color: var(--color-knife-grey);
  font-size: var(--text-body-sm);
  line-height: 1.6;
}
.steak-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid rgba(200,200,200,0.1);
}
.steak-card-weight {
  font-family: var(--font-grill-condensed);
  font-size: var(--text-body-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-steel-silver);
}
.steak-card-price {
  font-family: var(--font-grill-condensed);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-ember-red);
  letter-spacing: 0.04em;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-butcher-red-dark);
  color: var(--color-bone-white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-grill-condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.badge-flame {
  background: linear-gradient(90deg, var(--color-ember-red), var(--color-flame-orange));
  color: var(--color-pitch-black);
}
.badge-outline {
  background: transparent;
  color: var(--color-ember-red);
  border: 1px solid var(--color-ember-red);
}

/* Two-column feature */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature.alt { grid-template-columns: 1fr 1fr; }
.feature-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-deep);
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 0, 0, 0.4);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.feature-list {
  list-style: none;
  margin-top: 32px;
  display: grid;
  gap: 18px;
}
.feature-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 18px;
  background: rgba(18,18,18,0.6);
  border-left: 2px solid var(--color-ember-red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.feature-list li strong {
  display: block;
  color: var(--color-bone-white);
  font-family: var(--font-grill-condensed);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 4px;
}
.feature-list li span {
  color: var(--color-knife-grey);
  font-size: var(--text-body-sm);
  line-height: 1.6;
}
.feature-list-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(201, 0, 0, 0.15);
  border-radius: 8px;
  color: var(--color-ember-red);
  flex-shrink: 0;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--color-smoked-graphite);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 0, 0, 0.25);
  overflow: hidden;
}
.stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(200,200,200,0.08);
}
.stat:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-konagi-serif);
  font-weight: 900;
  font-size: 48px;
  color: var(--color-ember-red);
  letter-spacing: 0.04em;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-grill-condensed);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-steel-silver);
  margin-top: 12px;
  display: block;
}

/* Testimonial */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  padding: 32px;
  background: var(--color-smoked-graphite);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(122, 0, 0, 0.4);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-konagi-serif);
  font-size: 80px;
  line-height: 1;
  color: var(--color-ember-red);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--color-flame-orange);
  margin-bottom: 16px;
}
.testimonial-text {
  color: var(--color-bone-white);
  font-size: 15px;
  line-height: 1.7;
}
.testimonial-author {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-ember-red), var(--color-butcher-red-dark));
  display: grid;
  place-items: center;
  font-family: var(--font-konagi-serif);
  font-weight: 700;
  color: var(--color-bone-white);
}
.testimonial-name {
  font-family: var(--font-grill-condensed);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--color-bone-white);
}
.testimonial-role {
  font-size: 12px;
  color: var(--color-knife-grey);
}

/* CTA banner */
.cta-banner {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: linear-gradient(120deg, rgba(5,5,5,0.85), rgba(122,0,0,0.55)),
              url('https://images.unsplash.com/photo-1544025162-d76694265947?w=1600&q=80&auto=format&fit=crop') center/cover;
  padding: 80px 48px;
  text-align: center;
  border: 1px solid rgba(201, 0, 0, 0.4);
}
.cta-banner h2 {
  font-size: clamp(32px, 5vw, var(--text-heading-lg));
  text-transform: uppercase;
}
.cta-banner p {
  margin: 16px auto 32px;
  max-width: 620px;
  color: var(--color-steel-silver);
}

/* Forms */
.form {
  display: grid;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-grill-condensed);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-steel-silver);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--color-smoked-graphite);
  border: 1px solid var(--color-knife-grey);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--color-bone-white);
  font-size: var(--text-body);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--color-knife-grey); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-ember-red);
  box-shadow: 0 0 0 4px rgba(201, 0, 0, 0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23c8c8c8'><path d='M5.5 7.5L10 12l4.5-4.5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* Footer */
.site-footer {
  background: var(--color-pitch-black);
  border-top: 1px solid rgba(122, 0, 0, 0.45);
  padding: 64px 0 24px;
  margin-top: 96px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--font-grill-condensed);
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-ember-red);
  margin-bottom: 20px;
}
.footer-col p, .footer-col li {
  color: var(--color-knife-grey);
  font-size: var(--text-body-sm);
  line-height: 1.8;
}
.footer-col ul { list-style: none; }
.footer-col a:hover { color: var(--color-bone-white); }
.footer-brand-text {
  margin-top: 18px;
  max-width: 320px;
}
.footer-bottom {
  border-top: 1px solid rgba(200,200,200,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: var(--text-body-sm);
  color: var(--color-knife-grey);
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200,200,200,0.18);
  border-radius: 50%;
  color: var(--color-steel-silver);
  transition: border-color .25s ease, color .25s ease, background-color .25s ease;
}
.social-links a:hover {
  border-color: var(--color-ember-red);
  color: var(--color-bone-white);
  background: rgba(201,0,0,0.15);
}

/* Page hero / sub-pages */
.page-hero {
  position: relative;
  padding: 120px 0 100px;
  text-align: center;
  border-bottom: 1px solid rgba(122,0,0,0.4);
  overflow: hidden;
  margin-bottom: 0;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.6), var(--color-charcoal-black) 80%),
              var(--page-hero-image, url('https://images.unsplash.com/photo-1544025162-d76694265947?w=1920&q=80&auto=format&fit=crop')) center/cover;
  z-index: -1;
}
.page-hero h1 {
  font-size: clamp(40px, 7vw, var(--text-display));
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 14px;
}
.page-hero p {
  margin: 24px auto 0;
  max-width: 640px;
  color: var(--color-steel-silver);
  font-size: 18px;
  line-height: 1.6;
}
.breadcrumbs {
  display: inline-flex;
  gap: 8px;
  margin-top: 32px;
  font-family: var(--font-grill-condensed);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-knife-grey);
}
.breadcrumbs a:hover { color: var(--color-bone-white); }
.breadcrumbs span { color: var(--color-ember-red); }

/* Menu page */
.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}
.menu-tab {
  background: var(--color-smoked-graphite);
  color: var(--color-steel-silver);
  border: 1px solid rgba(200,200,200,0.1);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-grill-condensed);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .25s ease;
}
.menu-tab:hover {
  border-color: var(--color-ember-red);
  color: var(--color-bone-white);
}
.menu-tab.active {
  background: var(--color-ember-red);
  color: var(--color-bone-white);
  border-color: var(--color-ember-red);
  box-shadow: var(--shadow-ember);
}

.menu-category {
  margin-bottom: 80px;
  scroll-margin-top: 120px;
}
.menu-category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.menu-category-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  white-space: nowrap;
}
.menu-category-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--color-ember-red), transparent);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.menu-item {
  background: var(--color-smoked-graphite);
  border: 1px solid rgba(122,0,0,0.3);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: border-color .25s ease, transform .25s ease;
}
.menu-item:hover {
  border-color: var(--color-ember-red);
  transform: translateY(-3px);
}
.menu-item-image {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.menu-item-image img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-content h3 {
  font-family: var(--font-konagi-serif);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-bone-white);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.menu-item-content p {
  color: var(--color-knife-grey);
  font-size: 13px;
  line-height: 1.55;
}
.menu-item-meta {
  margin-top: 8px;
  font-family: var(--font-grill-condensed);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-steel-silver);
}
.menu-item-price {
  font-family: var(--font-grill-condensed);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-ember-red);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .4s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,5,5,0.85));
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gallery-caption {
  position: absolute;
  bottom: 18px;
  left: 22px;
  right: 22px;
  z-index: 2;
  font-family: var(--font-grill-condensed);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-bone-white);
  font-size: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

.g-1 { grid-column: span 6; grid-row: span 2; }
.g-2 { grid-column: span 3; }
.g-3 { grid-column: span 3; }
.g-4 { grid-column: span 3; grid-row: span 2; }
.g-5 { grid-column: span 3; }
.g-6 { grid-column: span 6; }
.g-7 { grid-column: span 4; }
.g-8 { grid-column: span 4; }
.g-9 { grid-column: span 4; }

/* Reservation page */
.reservation-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.reservation-card {
  background: var(--color-smoked-graphite);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(201, 0, 0, 0.3);
  padding: 40px;
  box-shadow: var(--shadow-deep);
}
.reservation-card h2 {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.reservation-card .lead {
  color: var(--color-knife-grey);
  margin-bottom: 28px;
}
.reservation-info-card {
  background: var(--color-smoked-graphite);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(122,0,0,0.4);
  padding: 32px;
}
.reservation-info-card h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.info-list { list-style: none; display: grid; gap: 16px; }
.info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(200,200,200,0.08);
}
.info-list li:last-child { border-bottom: none; padding-bottom: 0; }
.info-list strong {
  display: block;
  color: var(--color-bone-white);
  font-family: var(--font-grill-condensed);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 4px;
}
.info-list span {
  color: var(--color-steel-silver);
  font-size: 14px;
  line-height: 1.6;
}
.info-icon {
  width: 36px;
  height: 36px;
  background: rgba(201, 0, 0, 0.12);
  color: var(--color-ember-red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.contact-info-card {
  background: var(--color-smoked-graphite);
  border: 1px solid rgba(122,0,0,0.4);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.contact-info-card .info-icon { margin-bottom: 14px; }
.contact-info-card h4 {
  font-family: var(--font-grill-condensed);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-knife-grey);
  margin-bottom: 6px;
}
.contact-info-card p { color: var(--color-bone-white); font-size: 16px; }

.map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(201, 0, 0, 0.3);
  height: 400px;
  filter: grayscale(0.6) contrast(1.1) invert(0.88);
  transition: filter .3s ease;
}
.map-frame:hover { filter: grayscale(0) contrast(1.05) invert(0.92); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* About story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-grid p {
  color: var(--color-steel-silver);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,0,0,0.4);
  border-radius: var(--radius-lg);
}

/* Values cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--color-smoked-graphite);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(122,0,0,0.35);
  padding: 32px;
  transition: transform .3s ease, border-color .3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-ember-red);
}
.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,0,0,0.15);
  color: var(--color-ember-red);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.value-card h3 {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.value-card p { color: var(--color-knife-grey); font-size: 14px; line-height: 1.7; }

/* Utility */
.text-center { text-align: center; }
.flame { color: var(--color-flame-orange); }
.dim { color: var(--color-knife-grey); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  :root { --section-gap: 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .feature, .story-grid, .reservation-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature-media, .story-image { max-width: 520px; margin: 0 auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(200,200,200,0.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .menu-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 180px; }
  .g-1 { grid-column: span 12; grid-row: span 2; }
  .g-2, .g-3 { grid-column: span 6; }
  .g-4 { grid-column: span 6; grid-row: span 2; }
  .g-5 { grid-column: span 6; }
  .g-6 { grid-column: span 12; }
  .g-7, .g-8, .g-9 { grid-column: span 4; }
}

@media (max-width: 720px) {
  :root { --section-gap: 56px; --hero-padding: 60px 16px; }
  .container { padding: 0 20px; }
  .nav-links {
    position: fixed;
    inset: var(--navigation-height) 0 auto 0;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 0;
    border-bottom: 1px solid rgba(122,0,0,0.4);
    transform: translateY(-150%);
    transition: transform .35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(200,200,200,0.06);
  }
  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 16px;
  }
  .menu-toggle { display: inline-flex; }
  .nav-actions .btn-nav { display: none; }
  .brand-name { font-size: 17px; letter-spacing: 0.14em; }
  .brand-tag { font-size: 9px; }
  .hero { min-height: auto; padding: 60px 0 100px; }
  .hero-title { font-size: 44px; }
  .hero-meta { padding: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat-value { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .menu-item { grid-template-columns: 72px 1fr; padding: 16px; gap: 14px; }
  .menu-item-image { width: 72px; height: 72px; }
  .menu-item-price { grid-column: 2; font-size: 20px; justify-self: start; margin-top: 6px; }
  .gallery-grid { grid-auto-rows: 160px; }
  .g-7, .g-8, .g-9 { grid-column: span 6; }
  .g-9 { grid-column: span 12; }
  .reservation-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 56px 24px; }
}
