:root {
  --ink: #171510;
  --paper: #e8e1d3;
  --paper-2: #f1eadf;
  --acid: #c9ff55;
  --line: rgba(23, 21, 16, .22);
  --white-line: rgba(255, 255, 255, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.35;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 22px 32px;
  color: #fff;
  border-bottom: 1px solid var(--white-line);
}

.brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: -.08em;
  text-transform: uppercase;
}
.brand--small { font-size: 31px; justify-self: start; }
.desktop-nav { display: flex; gap: 30px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.desktop-nav a, .header-action { opacity: .9; transition: opacity .2s ease; }
.desktop-nav a:hover, .header-action:hover { opacity: .55; }
.header-action { justify-self: end; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  color: white;
  background: #13110e;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1723744910897-b5fd5d2d0eb2?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=82&w=2400');
  background-size: cover;
  background-position: center 58%;
  transform: scale(1.02);
  filter: saturate(.75) contrast(1.04) brightness(.78);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.18) 0%, rgba(0,0,0,.02) 40%, rgba(0,0,0,.62) 100%),
    radial-gradient(circle at 50% 45%, transparent 10%, rgba(0,0,0,.22) 85%);
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 48%;
  width: min(1200px, calc(100% - 48px));
  transform: translate(-50%, -50%);
  text-align: center;
}
.eyebrow { margin: 0 0 24px; text-transform: uppercase; letter-spacing: .19em; font-size: 11px; }
.hero h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(115px, 25vw, 390px);
  line-height: .68;
  letter-spacing: -.085em;
  font-weight: 700;
}
.hero-tagline { margin: 45px 0 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(25px, 3vw, 46px); }
.hero-bottom {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 26px 32px 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  border-top: 1px solid var(--white-line);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-bottom p { margin: 0; text-align: center; line-height: 1.6; opacity: .85; }
.round-link { justify-self: start; display: inline-flex; align-items: center; gap: 20px; border: 1px solid rgba(255,255,255,.65); border-radius: 100px; padding: 12px 17px; }
.round-link--solid { justify-self: end; background: #fff; color: #111; border-color: #fff; }

.section-pad { padding: 110px 32px; }
.manifesto { display: grid; grid-template-columns: 1fr 3fr; gap: 50px; border-bottom: 1px solid var(--line); }
.manifesto-kicker { text-transform: uppercase; font-size: 11px; letter-spacing: .14em; padding-top: 9px; }
.manifesto-copy h2 {
  margin: 0 0 80px;
  max-width: 1100px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -.045em;
  font-size: clamp(45px, 6.6vw, 108px);
  line-height: .95;
}
.two-columns { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 50px; max-width: 900px; margin-left: auto; }
.two-columns p { margin: 0; font-size: 17px; line-height: 1.5; }

.feature-photo {
  min-height: 82vh;
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.feature-photo--bar {
  background-image:
    linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.08) 55%),
    url('https://images.unsplash.com/photo-1781961027912-2787332667bf?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=82&w=2400');
}
.feature-overlay { position: absolute; inset: auto 32px 35px; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.feature-overlay span { font-size: 11px; letter-spacing: .17em; }
.feature-overlay h2 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: clamp(45px, 6vw, 94px); line-height: .92; text-align: right; letter-spacing: -.04em; }

.menu-section { background: var(--paper-2); }
.section-title-row { display: grid; grid-template-columns: 1fr 3fr; margin-bottom: 50px; }
.eyebrow--dark { color: rgba(23,21,16,.65); padding-top: 14px; }
.section-title-row h2 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(65px, 10vw, 160px); line-height: .8; letter-spacing: -.06em; font-weight: 400; }
.menu-grid { border-top: 1px solid var(--line); }
.menu-card {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 25px;
  align-items: center;
  min-height: 190px;
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease, background .25s ease;
}
.menu-card:hover { padding-left: 18px; background: rgba(255,255,255,.36); }
.menu-number { font-size: 11px; opacity: .65; }
.menu-card h3 { margin: 0 0 10px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(37px, 4vw, 63px); font-weight: 400; letter-spacing: -.04em; }
.menu-card p { margin: 0; max-width: 540px; color: rgba(23,21,16,.7); }
.menu-arrow { font-size: 31px; }

.gallery { display: grid; grid-template-columns: 1.15fr .85fr 1fr; min-height: 720px; background: #111; }
.gallery-panel { position: relative; overflow: hidden; min-height: 520px; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; background-size: cover; background-position: center; isolation: isolate; }
.gallery-panel::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgba(0,0,0,.16), rgba(0,0,0,.63)); }
.gallery-panel--a { background-image: url('https://images.unsplash.com/photo-1723744910897-b5fd5d2d0eb2?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=80&w=1300'); background-position: 35% center; }
.gallery-panel--b { background-image: url('https://images.unsplash.com/photo-1781961027912-2787332667bf?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=80&w=1300'); background-position: 68% center; }
.gallery-panel--c {
  background-image:
    radial-gradient(circle at 52% 50%, rgba(218,120,44,.28), transparent 25%),
    linear-gradient(135deg, #2c241b 0%, #0e0d0a 55%, #4a2a15 100%);
}
.gallery-panel span { font-size: 10px; letter-spacing: .16em; }
.gallery-panel strong { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: clamp(31px, 3vw, 52px); line-height: .95; letter-spacing: -.035em; }

.statement { background: var(--acid); padding: 130px 32px 100px; min-height: 70vh; display: grid; grid-template-columns: 1fr 3fr; grid-template-rows: 1fr auto; }
.statement p { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: 36px; letter-spacing: -.05em; }
.statement h2 { margin: 0; align-self: center; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(58px, 9vw, 145px); line-height: .86; font-weight: 400; letter-spacing: -.06em; }
.statement a { grid-column: 2; align-self: end; margin-top: 80px; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }

.contacts { display: grid; grid-template-columns: 1.2fr 2fr; gap: 90px; background: var(--paper); }
.contacts h2 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(62px, 8vw, 122px); font-weight: 400; line-height: .87; letter-spacing: -.055em; }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; align-self: end; padding-top: 150px; border-top: 1px solid var(--line); }
.contact-label { display: block; margin-bottom: 18px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; opacity: .55; }
.contact-grid p { margin: 0; line-height: 1.6; }
.contact-grid a { border-bottom: 1px solid rgba(23,21,16,.4); }

.site-footer { background: var(--ink); color: #fff; padding: 55px 32px 25px; }
.footer-logo { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; letter-spacing: -.09em; font-size: clamp(100px, 25vw, 360px); line-height: .68; }
.footer-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 20px; padding-top: 45px; margin-top: 40px; border-top: 1px solid var(--white-line); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; opacity: .85; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; padding: 18px 18px; }
  .desktop-nav, .header-action { display: none; }
  .menu-toggle { display: grid; width: 42px; height: 42px; padding: 12px 9px; background: transparent; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; gap: 5px; align-content: center; }
  .menu-toggle span:not(.sr-only) { display: block; height: 1px; background: #fff; }
  .mobile-menu { position: fixed; z-index: 15; inset: 0; background: var(--ink); color: #fff; padding: 110px 22px 40px; flex-direction: column; gap: 9px; }
  .mobile-menu.is-open { display: flex; }
  .mobile-menu a { padding: 16px 0; border-bottom: 1px solid var(--white-line); font-family: Georgia, 'Times New Roman', serif; font-size: 42px; }

  .hero-copy { top: 46%; }
  .hero h1 { font-size: clamp(96px, 30vw, 210px); }
  .hero-bottom { grid-template-columns: 1fr 1fr; padding: 20px 18px; }
  .hero-bottom p { display: none; }
  .section-pad { padding: 78px 18px; }
  .manifesto, .section-title-row, .contacts { grid-template-columns: 1fr; }
  .manifesto { gap: 35px; }
  .manifesto-copy h2 { margin-bottom: 50px; }
  .two-columns { grid-template-columns: 1fr; gap: 22px; }
  .feature-photo { min-height: 70vh; }
  .feature-overlay { inset: auto 18px 22px; display: block; }
  .feature-overlay h2 { text-align: left; margin-top: 18px; }
  .section-title-row { gap: 10px; }
  .menu-card { grid-template-columns: 42px 1fr auto; min-height: 160px; gap: 10px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-panel { min-height: 64vh; }
  .statement { grid-template-columns: 1fr; padding: 80px 18px 60px; }
  .statement h2 { margin-top: 90px; }
  .statement a { grid-column: 1; }
  .contact-grid { grid-template-columns: 1fr; padding-top: 45px; }
  .footer-row { grid-template-columns: 1fr; }
}
