:root {
  --bg: #090909;
  --surface: #121212;
  --surface-2: #1a1a1a;
  --text: #f6f1e8;
  --muted: #aaa49a;
  --red: #ef2727;
  --red-dark: #ba1010;
  --line: rgba(246, 241, 232, .16);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --pad: clamp(1.1rem, 5vw, 5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--body); font-size: 16px; line-height: 1.55; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { touch-action: manipulation; }
:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.skip-link { position: fixed; z-index: 1000; left: 1rem; top: -5rem; background: white; color: black; padding: .8rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header { height: 72px; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); background: rgba(9, 9, 9, .92); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 100; }
.brand { display: inline-flex; align-items: center; gap: .7rem; font: .76rem/.88 var(--display); letter-spacing: -.02em; }
.brand img { width: 38px; height: 38px; object-fit: cover; border-radius: 50%; }
.desktop-nav, .header-cta { display: none; }
.menu-toggle { width: 48px; height: 48px; padding: 0; border: 0; background: transparent; display: grid; place-content: center; gap: 7px; cursor: pointer; }
.menu-toggle span { width: 25px; height: 2px; background: var(--text); transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-5px) rotate(-45deg); }
.mobile-menu { position: absolute; inset: 72px 0 auto; padding: 1.5rem var(--pad) 2rem; background: var(--bg); border-bottom: 1px solid var(--line); }
.mobile-menu a { min-height: 52px; display: flex; align-items: center; font: 1.55rem var(--display); text-transform: uppercase; border-bottom: 1px solid var(--line); }
.mobile-menu .mobile-call { border: 0; margin-top: 1rem; justify-content: center; background: var(--red); font-size: 1rem; }

.hero { min-height: calc(100svh - 72px); display: grid; }
.hero-copy { padding: 3rem var(--pad) 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.eyebrow, .section-kicker { margin: 0 0 1.25rem; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; }
.eyebrow span { width: 26px; height: 2px; display: inline-block; vertical-align: middle; margin-right: .5rem; background: var(--red); }
h1, h2 { margin: 0; font-family: var(--display); line-height: .86; letter-spacing: -.065em; text-transform: uppercase; }
h1 { font-size: clamp(3.55rem, 18vw, 8.8rem); }
h1 span, h2 span { color: var(--red); }
h1 em { font-style: normal; -webkit-text-stroke: 1px var(--text); color: transparent; }
.hero-intro { margin: 1.75rem 0; max-width: 33rem; color: #d0cbc3; font-size: 1.05rem; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.button { min-height: 50px; padding: .75rem 1.1rem; display: inline-flex; justify-content: center; align-items: center; gap: 1.4rem; border: 1px solid var(--line); text-transform: uppercase; letter-spacing: .07em; font-size: .76rem; font-weight: 700; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.button-primary { background: var(--red); border-color: var(--red); color: white; }
.button-primary:hover { background: white; border-color: white; color: black; }
.button-ghost:hover { border-color: var(--text); background: var(--text); color: black; }
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2.3rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong { font-family: var(--display); font-size: clamp(1rem, 5vw, 1.6rem); text-transform: uppercase; }
.hero-meta span { color: var(--muted); font-size: .72rem; }
.hero-visual { min-height: 64svh; position: relative; padding: 0 var(--pad) 2rem; }
.hero-photo { margin: 0; height: 100%; overflow: hidden; background: #191919; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-stamp { position: absolute; right: calc(var(--pad) - .35rem); top: -2.8rem; width: 92px; aspect-ratio: 1; border-radius: 50%; background: var(--red); display: grid; place-content: center; text-align: center; transform: rotate(9deg); box-shadow: 0 8px 30px rgba(0,0,0,.35); }
.hero-stamp span { font: 1.4rem/1 var(--display); }
.hero-stamp small { font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; }
.photo-credit { margin: 0; position: absolute; bottom: 2.7rem; left: calc(var(--pad) + .8rem); padding: .4rem .6rem; color: white; background: rgba(0,0,0,.68); text-transform: uppercase; font-size: .57rem; letter-spacing: .08em; }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--red); color: white; }
.ticker div { width: max-content; padding: .7rem 0; font: .76rem var(--display); letter-spacing: .05em; white-space: nowrap; animation: ticker 22s linear infinite; }
.ticker span { margin: 0 1.2rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 5rem var(--pad); }
.manifesto h2, .menu-section h2, .gallery-heading h2, .visit h2 { font-size: clamp(2.85rem, 12vw, 7rem); }
.manifesto-grid { display: grid; gap: 2rem; }
.manifesto-copy { max-width: 37rem; font-size: 1.05rem; color: #c7c1b7; }
.manifesto-copy p:first-child { color: var(--text); font-size: 1.2rem; }
.feature-grid { margin-top: 4rem; display: grid; border-top: 1px solid var(--line); }
.feature-grid article { padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.feature-grid article > span { color: var(--red); font-family: var(--display); font-size: .72rem; }
.feature-grid h3 { margin: .7rem 0 .45rem; font: 1.2rem var(--display); text-transform: uppercase; }
.feature-grid p { margin: 0; color: var(--muted); max-width: 24rem; }

.menu-section { background: var(--text); color: #0b0b0b; }
.menu-section .section-kicker { color: #6b655d; }
.menu-heading { display: grid; gap: 1.5rem; }
.menu-heading > p { max-width: 28rem; color: #5e5952; }
.menu-list { margin-top: 3rem; border-top: 2px solid #0b0b0b; }
.menu-item { padding: 1.15rem 0; display: grid; grid-template-columns: 2rem 1fr auto; gap: .55rem; align-items: start; border-bottom: 1px solid rgba(0,0,0,.22); }
.menu-number { padding-top: .25rem; color: var(--red); font: .7rem var(--display); }
.menu-item h3 { margin: 0; font: clamp(1rem, 5vw, 1.5rem)/1.1 var(--display); text-transform: uppercase; }
.menu-item p { margin: .35rem 0 0; color: #6c665d; font-size: .82rem; }
.menu-item strong { color: var(--red-dark); font-family: var(--display); white-space: nowrap; }
.menu-note { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; color: #6c665d; font-size: .8rem; }
.menu-note a { color: #0b0b0b; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

.gallery-section { padding-top: 5rem; }
.gallery-heading p { max-width: 33rem; color: var(--muted); }
.gallery-grid { display: grid; gap: 4px; }
.gallery-grid figure { width: 100%; min-width: 0; margin: 0; align-self: start; overflow: hidden; background: #191919; }
.gallery-feature { aspect-ratio: 3/2; }
.gallery-shop { aspect-ratio: 3/4; }
.gallery-tall { aspect-ratio: 2/3; }
.gallery-square { aspect-ratio: 1; }
.gallery-landscape { aspect-ratio: 4/3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-source { margin: 1rem var(--pad) 0; min-height: 58px; padding: .8rem 1rem; border: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: .5rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; }
.gallery-source span:first-child { color: var(--red); font-weight: 700; }

.visit { display: grid; gap: 3rem; }
.address { margin: 2rem 0; display: inline-block; font-size: 1.1rem; text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 7px; }
.hours-card { align-self: end; padding: 1.5rem; border: 1px solid var(--line); background: var(--surface); }
.hours-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.hours-top h3 { margin: 0; font: 1.5rem var(--display); text-transform: uppercase; }
.open-dot { color: #bdb7ae; font-size: .68rem; text-transform: uppercase; }
.open-dot::before { content: ""; width: 8px; height: 8px; display: inline-block; margin-right: .45rem; border-radius: 50%; background: #55c76a; }
.hours-card dl { margin: 1.5rem 0; }
.hours-card dl div { padding: .7rem 0; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); }
.hours-card dt { color: var(--muted); }
.hours-card dd { margin: 0; font-weight: 700; }
.hours-card p { color: var(--muted); font-size: .78rem; }
.hours-card > a { color: var(--red); font-size: .78rem; font-weight: 700; text-transform: uppercase; }

footer { padding: 3rem var(--pad) 6rem; display: grid; gap: 2rem; border-top: 1px solid var(--line); }
.footer-brand { font: clamp(2.3rem, 12vw, 5rem)/.82 var(--display); letter-spacing: -.06em; }
.footer-brand span { color: var(--red); }
.footer-info p { color: var(--muted); }
.footer-info a { font-weight: 700; }
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a { text-decoration: underline; text-underline-offset: 5px; }
.footer-small { margin: 0; color: #77736d; font-size: .7rem; }
.floating-call { position: fixed; z-index: 80; right: 1rem; bottom: calc(1rem + env(safe-area-inset-bottom)); width: 54px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--red); box-shadow: 0 8px 28px rgba(0,0,0,.45); }
.floating-call svg { width: 22px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@media (min-width: 760px) {
  .hero { grid-template-columns: 1.05fr .95fr; min-height: calc(100svh - 72px); }
  .hero-copy { padding-block: 4rem; }
  .hero-visual { min-height: auto; padding: 1.4rem var(--pad) 1.4rem 0; }
  .hero-stamp { right: calc(var(--pad) - .5rem); top: 4rem; }
  .photo-credit { bottom: 2.1rem; left: .8rem; }
  .manifesto-grid, .menu-heading, .visit { grid-template-columns: 1.35fr .65fr; align-items: end; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid article { padding: 1.5rem; border-right: 1px solid var(--line); }
  .menu-item { grid-template-columns: 3rem 1fr auto; padding: 1.35rem 0; }
  .menu-note { flex-direction: row; justify-content: space-between; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); align-items: start; }
  .gallery-feature, .gallery-landscape { grid-column: 1 / -1; }
  footer { grid-template-columns: 1.3fr .8fr .6fr; align-items: end; }
  .footer-small { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .site-header { height: 80px; }
  .desktop-nav { display: flex; gap: clamp(1.2rem, 3vw, 2.8rem); }
  .desktop-nav a { min-height: 44px; display: inline-flex; align-items: center; color: #c8c2b9; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; transition: color .2s ease; }
  .desktop-nav a:hover { color: white; }
  .header-cta { min-height: 44px; padding: 0 1.2rem; display: inline-flex; align-items: center; background: var(--red); font-size: .72rem; text-transform: uppercase; font-weight: 700; letter-spacing: .08em; }
  .menu-toggle, .floating-call { display: none; }
  .hero { min-height: calc(100svh - 80px); }
  .hero-copy { padding-right: 2rem; }
  .hero-intro { font-size: 1.15rem; }
  .hero-meta { max-width: 35rem; }
  .manifesto-copy { padding-bottom: .5rem; }
  .gallery-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; }
  .gallery-heading .section-kicker { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(12, 1fr); align-items: start; }
  .gallery-feature { grid-column: span 8; }
  .gallery-shop { grid-column: span 4; }
  .gallery-tall { grid-column: span 4; }
  .gallery-square { grid-column: span 6; }
  .gallery-landscape { grid-column: span 8; }
  .gallery-source { padding-inline: 1.5rem; }
  .hours-card { padding: 2rem; }
}

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