:root {
  --bg: #0f0001;
  --surface: #1b0305;
  --surface-2: #260406;
  --copper: #710205;
  --copper-light: #fff;
  --ember: #710205;
  --cream: #fff;
  --muted: #ded5d6;
  --line: rgba(113, 2, 5, .68);
  --shadow: 0 22px 60px rgba(0, 0, 0, .35);
  --radius: 6px;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0; overflow-x: hidden; color: var(--muted); background: var(--bg);
  font-family: "Manrope", Arial, sans-serif; font-size: 16px; line-height: 1.75;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
body.nav-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { color: white; background: var(--copper); }
:focus-visible { outline: 3px solid white; outline-offset: 4px; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 9999; padding: 10px 16px;
  color: #111; background: var(--cream); transform: translateY(-150%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 105px 0; }
.section--compact { padding: 72px 0; }
.surface { background: var(--surface); }
main, section, .split > *, .contact-grid > * { min-width: 0; }
p { margin: 0 0 22px; overflow-wrap: break-word; }
.lead { max-width: 760px; color: #eee7e8; font-size: 1.12rem; }

h1, h2, h3, h4 {
  margin: 0 0 18px; color: var(--cream); font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600; line-height: 1.02; letter-spacing: -.025em;
}
h1 { font-size: clamp(3.2rem, 6.5vw, 6.2rem); }
h2 { font-size: clamp(2.5rem, 4.5vw, 4.25rem); }
h3 { font-size: 2rem; }
h4 { font-size: 1.45rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin: 0 0 14px;
  color: var(--copper-light); font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
}
.eyebrow::before, .section-heading--center .eyebrow::after { width: 34px; height: 1px; content: ""; background: currentColor; }
.section-heading { max-width: 790px; margin-bottom: 48px; }
.section-heading--center { margin-inline: auto; text-align: center; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header.is-scrolled { background: rgba(15, 0, 1, .96); border-color: var(--line); backdrop-filter: blur(14px); }
.nav-wrap { display: flex; min-height: 94px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand-logo { width: 170px; height: 90px; object-fit: contain; }
.footer-logo { width: 220px; height: 170px; margin: -40px 0 -22px; object-fit: contain; }
.nav-panel { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; margin: 0; padding: 0; align-items: center; gap: 26px; list-style: none; }
.nav-links a { position: relative; color: #f3eded; font-size: 13px; font-weight: 700; letter-spacing: .03em; }
.nav-links a::after {
  position: absolute; right: 0; bottom: -9px; left: 0; height: 1px; content: "";
  background: var(--copper-light); transform: scaleX(0); transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--copper-light); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-toggle {
  display: none; flex: 0 0 46px; width: 46px; height: 46px; padding: 11px;
  color: var(--cream); background: transparent; border: 1px solid var(--line);
}
.nav-toggle span { display: block; height: 1px; margin: 6px 0; background: currentColor; transition: transform .2s ease; }

.btn {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 23px;
  color: white; background: var(--copper); border: 1px solid var(--copper); border-radius: var(--radius);
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.btn:hover { color: var(--copper); background: white; border-color: white; transform: translateY(-2px); }
.btn--ghost { color: var(--cream); background: transparent; border-color: rgba(255,255,255,.42); }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: var(--copper-light); }

.hero { position: relative; min-height: 100svh; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; display: grid; align-items: center; background: center / cover no-repeat;
  opacity: 0; transition: opacity .9s ease;
}
.hero-slide::before {
  position: absolute; inset: 0; content: "";
  background: linear-gradient(90deg, rgba(5,5,5,.94) 0%, rgba(5,5,5,.68) 48%, rgba(5,5,5,.25) 100%);
}
.hero-slide.active { opacity: 1; }
.hero-content { position: relative; z-index: 2; max-width: 840px; padding-top: 94px; }
.hero-content h1, .hero-content h2 { font-size: clamp(3.2rem, 6.5vw, 6.2rem); }
.hero-content p { max-width: 690px; color: #f2eded; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-dots { position: absolute; z-index: 3; right: 36px; bottom: 34px; display: flex; gap: 10px; }
.hero-dot { width: 12px; height: 12px; padding: 0; border: 1px solid white; border-radius: 50%; background: transparent; }
.hero-dot.active { background: var(--copper); border-color: white; }

.page-hero {
  position: relative; display: grid; min-height: 500px; align-items: end; padding: 165px 0 78px;
  background: center / cover no-repeat;
}
.page-hero::before { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(7,7,7,.95), rgba(7,7,7,.38)); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumbs { display: flex; gap: 8px; color: #eee7e8; font-size: 13px; }
.breadcrumbs a { color: var(--copper-light); }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 76px; }
.split--reverse > :first-child { order: 2; }
.story-image { width: 100%; max-height: 650px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-images { position: relative; min-height: 590px; }
.split-images img { position: absolute; width: 76%; height: 82%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-images img:last-child { right: 0; bottom: 0; width: 56%; height: 58%; border: 8px solid var(--bg); }
.split-images--founder img:first-child {
  z-index: 1; width: 82%; height: 88%; object-position: 72% 28%;
}
.split-images--founder img:last-child {
  right: auto; left: 0; z-index: 2; width: 48%; height: 42%;
}
.signature { display: inline-flex; align-items: center; gap: 14px; margin-top: 12px; color: var(--copper-light); font-weight: 700; }
.signature::before { width: 42px; height: 1px; content: ""; background: currentColor; }

.culture { position: relative; background: fixed center / cover no-repeat; }
.culture::before { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(9,9,9,.95), rgba(9,9,9,.62)); }
.culture .container { position: relative; z-index: 1; }
.culture-copy { max-width: 720px; padding: 55px 0; }
.quote {
  margin: 28px 0; padding: 24px 28px; color: var(--cream); background: rgba(113,2,5,.24);
  border-left: 2px solid var(--copper); font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; line-height: 1.25;
}

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { padding: 32px 26px; background: var(--surface); border-top: 2px solid var(--copper); }
.feature-number { display: block; margin-bottom: 20px; color: var(--copper-light); font-family: "Cormorant Garamond"; font-size: 2.1rem; font-weight: 700; }
.feature h3 { font-size: 1.65rem; }
.feature p { margin: 0; font-size: .93rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--surface); }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.gallery-item::after {
  position: absolute; inset: 0; display: grid; content: "+"; place-items: center; color: white;
  background: rgba(113, 2, 5, .68); font-family: Georgia, serif; font-size: 42px; opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(.78); }
.gallery-item:hover::after { opacity: 1; }

.menu-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.menu-page {
  display: block; padding: 12px; overflow: hidden; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.menu-page img { width: 100%; height: auto; object-fit: contain; }
.menu-page-label { display: block; padding: 12px 4px 2px; color: var(--cream); font-size: 13px; text-align: center; }

.lightbox {
  position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; padding: 54px 76px;
  background: rgba(0,0,0,.95);
}
.lightbox.open { display: grid; }
.lightbox-stage { display: grid; max-width: 100%; max-height: 100%; place-items: center; }
.lightbox img { max-width: min(1300px, calc(100vw - 150px)); max-height: calc(100vh - 108px); object-fit: contain; }
.lightbox-close, .lightbox-nav {
  position: absolute; z-index: 2; display: grid; width: 52px; height: 52px; place-items: center;
  color: white; background: rgba(38,4,6,.88); border: 1px solid rgba(255,255,255,.42); border-radius: 50%;
  font-size: 28px; line-height: 1;
}
.lightbox-close { top: 18px; right: 22px; }
.lightbox-prev { top: 50%; left: 18px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 18px; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-nav:hover { color: var(--copper); background: white; border-color: white; }
.lightbox-counter { position: absolute; right: 0; bottom: 16px; left: 0; color: white; font-size: 13px; text-align: center; }

.cta { position: relative; overflow: hidden; text-align: center; background: var(--surface-2); }
.cta::before {
  position: absolute; top: -160px; left: 50%; width: 420px; height: 420px; content: "";
  border-radius: 50%; background: rgba(113,2,5,.3); filter: blur(60px); transform: translateX(-50%);
}
.cta .container { position: relative; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 68px; }
.contact-list { display: grid; gap: 14px; margin: 30px 0; }
.contact-item { padding: 20px; background: var(--surface); border-left: 2px solid var(--copper); }
.contact-item span { display: block; color: var(--copper-light); font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.contact-item a, .contact-item strong { color: var(--cream); font-weight: 700; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group--full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 7px; color: var(--cream); font-size: 13px; font-weight: 600; }
input, textarea, select {
  width: 100%; padding: 14px 16px; color: var(--cream); background: #140203;
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius);
}
input:focus, textarea:focus, select:focus { border-color: var(--copper-light); }
textarea { min-height: 150px; resize: vertical; }
.form-status { min-height: 28px; margin: 14px 0; color: var(--copper-light); font-size: 13px; }
.map-wrapper { width: 100%; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-wrapper iframe { display: block; width: 100%; min-height: 430px; border: 0; }

.site-footer { padding: 72px 0 28px; background: #090001; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr 1fr 1fr; gap: 48px; }
.footer-brand p { max-width: 370px; }
.footer-title {
  margin-bottom: 20px; font-family: "Manrope"; font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a:hover { color: var(--copper-light); }
.socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.social-link {
  display: inline-flex; min-height: 42px; align-items: center; gap: 8px; padding: 8px 13px;
  border: 1px solid var(--line); border-radius: 99px; font-size: 12px; font-weight: 700;
}
.social-link:hover { color: var(--copper); background: white; border-color: white; }
.social-link--instagram::before { content: "◎"; font-size: 18px; line-height: 1; }
.footer-bottom {
  display: flex; margin-top: 54px; padding-top: 24px; justify-content: space-between; gap: 20px;
  border-top: 1px solid rgba(255,255,255,.08); font-size: 12px;
}

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .nav-panel {
    position: fixed; inset: 0 0 0 auto; display: flex; width: min(390px, 88vw); padding: 106px 34px 40px;
    flex-direction: column; align-items: stretch; background: #160204; box-shadow: -20px 0 60px rgba(0,0,0,.5);
    transform: translateX(102%); transition: transform .3s ease;
  }
  .nav-panel.open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: stretch; gap: 14px; }
  .nav-links a { display: block; padding: 8px 0; font-size: 17px; }
  .nav-panel .btn { margin-top: 14px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  body { font-size: 15px; }
  .container { width: calc(100% - 30px); max-width: 1180px; }
  .section { padding: 74px 0; }
  .nav-wrap { min-height: 78px; }
  .brand-logo { width: 132px; height: 72px; }
  .hero-content { padding-top: 78px; }
  .hero-slide::before { background: linear-gradient(90deg, rgba(5,5,5,.92), rgba(5,5,5,.5)); }
  .hero-content p { font-size: 1rem; }
  .hero-dots { right: 18px; bottom: 20px; }
  .page-hero { min-height: 410px; padding: 130px 0 58px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .split--reverse > :first-child { order: initial; }
  .split-images { min-height: 450px; }
  .feature-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .menu-gallery { grid-template-columns: 1fr; gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: auto; }
  .lightbox { padding: 62px 14px 52px; }
  .lightbox img { max-width: calc(100vw - 28px); max-height: calc(100vh - 116px); }
  .lightbox-nav { width: 48px; height: 48px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .map-wrapper iframe { min-height: 350px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.45rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .split-images { min-height: 380px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
