:root {
  --wine: #6f1f2a;
  --wine-dark: #4d1019;
  --tomato: #b43a2d;
  --cream: #f2ecdf;
  --paper: #faf7f0;
  --ink: #23211e;
  --olive: #6c704e;
  --line: rgba(35, 33, 30, .18);
  --serif: Georgia, "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --max: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { color: inherit; 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;
}
.skip-link {
  position: fixed; z-index: 999; top: 8px; left: 8px; padding: 10px 16px;
  background: white; transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 88px; padding: 0 clamp(20px, 4vw, 64px);
  color: white; border-bottom: 1px solid rgba(255,255,255,.28);
  transition: background .3s, color .3s, height .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  height: 72px; color: var(--ink); background: rgba(250,247,240,.96);
  border-color: var(--line); box-shadow: 0 6px 24px rgba(35,33,30,.06);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; flex-direction: column; justify-self: start; line-height: 1; }
.brand-kicker {
  margin-bottom: 5px; font-size: 9px; letter-spacing: .24em; text-transform: uppercase;
}
.brand-name { font-family: var(--serif); font-size: 31px; font-weight: 600; letter-spacing: -.03em; }
.desktop-nav { display: flex; gap: clamp(20px, 3vw, 44px); font-size: 12px; letter-spacing: .08em; }
.desktop-nav a, .phone-link { position: relative; }
.desktop-nav a::after, .phone-link::after {
  content: ""; position: absolute; right: 0; bottom: -6px; left: 0;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .25s;
}
.desktop-nav a:hover::after, .phone-link:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; justify-self: end; align-items: center; gap: 22px; }
.phone-link { font-family: var(--serif); font-size: 17px; letter-spacing: .03em; }
.button {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center;
  padding: 0 29px; border: 1px solid var(--wine); background: var(--wine); color: white;
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  transition: background .2s, color .2s, transform .2s;
}
.button:hover { background: var(--wine-dark); transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 22px; }
.site-header:not(.is-scrolled) .button-small { border-color: white; background: transparent; }
.site-header:not(.is-scrolled) .button-small:hover { background: white; color: var(--wine); }
.menu-button {
  display: none; width: 42px; height: 42px; padding: 11px 8px; border: 0; background: transparent;
}
.menu-button span:not(.sr-only) {
  display: block; height: 1px; margin: 6px 0; background: currentColor; transition: transform .25s;
}
.menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed; z-index: -1; inset: 0; padding: 126px 28px 40px;
  background: var(--cream); color: var(--ink);
}
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  padding: 12px 0; border-bottom: 1px solid var(--line); font-family: var(--serif);
  font-size: clamp(28px, 8vw, 44px); line-height: 1.2;
}
.mobile-menu p { margin-top: 35px; font-size: 12px; }
.hero {
  position: relative; display: grid; grid-template-columns: 55% 45%; min-height: min(900px, 100svh);
  overflow: hidden; background: var(--wine); color: white;
}
.hero-image { min-height: 720px; overflow: hidden; }
.hero-image::after {
  content: ""; position: absolute; inset: 0 45% 0 0;
  background: linear-gradient(90deg, rgba(24,8,8,.12), transparent 35%, rgba(55,10,18,.24));
  pointer-events: none;
}
.hero-image img { height: 100%; object-fit: cover; object-position: 50% 46%; }
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px clamp(34px, 6vw, 94px) 100px;
}
.eyebrow {
  margin: 0 0 22px; font-family: var(--serif); font-size: 13px;
  letter-spacing: .17em; text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; }
h1 {
  margin-bottom: 32px; font-size: clamp(48px, 5.3vw, 82px);
  line-height: 1.08; letter-spacing: -.04em;
}
h1 em { color: #e9b5a7; font-weight: 500; }
.hero-lead { max-width: 470px; margin-bottom: 35px; font-size: 14px; line-height: 2.1; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.hero .button { border-color: white; background: white; color: var(--wine); }
.hero .button:hover { background: var(--cream); }
.text-link {
  display: inline-flex; align-items: center; gap: 12px; width: fit-content;
  border-bottom: 1px solid currentColor; padding-bottom: 3px; font-size: 12px; letter-spacing: .06em;
}
.text-link span { font-size: 16px; transition: transform .2s; }
.text-link:hover span { transform: translate(3px, 2px); }
.hero-note {
  position: absolute; right: 24px; bottom: 30px; margin: 0;
  font-family: var(--serif); font-size: 12px; letter-spacing: .16em;
  writing-mode: vertical-rl; text-transform: uppercase;
}
.section { max-width: var(--max); margin: auto; padding: clamp(90px, 11vw, 165px) clamp(24px, 7vw, 110px); }
.section-heading h2 {
  margin: 0; font-size: clamp(42px, 5.2vw, 74px); line-height: 1.12; letter-spacing: -.04em;
}
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.intro-body { padding-top: 54px; max-width: 530px; }
.intro-body .lead { font-family: var(--serif); font-size: 27px; line-height: 1.65; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 54px; border-top: 1px solid var(--line); }
.facts div { display: flex; flex-direction: column; padding: 22px 10px 0 0; }
.facts strong { font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1; }
.facts span { margin-top: 8px; color: #77716a; font-family: var(--serif); font-size: 12px; letter-spacing: .12em; }
.feature-grid {
  display: grid; grid-template-columns: 1.4fr .65fr; grid-template-rows: auto auto;
  max-width: none; padding-top: 0; background: var(--cream);
}
.feature { margin: 0; overflow: hidden; }
.feature-large { grid-row: span 2; }
.feature img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.feature:hover img { transform: scale(1.025); }
.feature figcaption {
  position: absolute; transform: translate(20px, -48px); color: white;
  font-family: var(--serif); font-style: italic; font-size: 18px;
}
.feature-small { height: 380px; }
.feature-quote { display: grid; min-height: 280px; place-items: center; padding: 35px; background: var(--wine); color: white; }
.feature-quote p { margin: 0; text-align: center; font-family: var(--serif); font-size: clamp(27px, 3vw, 42px); line-height: 1.35; }
.menu { max-width: none; background: #e5d8c1; }
.menu-heading {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; align-items: end;
  max-width: calc(var(--max) - 220px); margin: 0 auto 75px;
}
.menu-heading > p { max-width: 470px; margin-bottom: 8px; }
.menu-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: calc(var(--max) - 220px); margin: auto; border: 1px solid rgba(35,33,30,.22);
}
.menu-card { position: relative; min-height: 490px; padding: 44px 38px; background: rgba(250,247,240,.46); }
.menu-card + .menu-card { border-left: 1px solid rgba(35,33,30,.22); }
.menu-card-accent { background: var(--wine); color: white; transform: translateY(-18px); }
.menu-number { margin-bottom: 62px; font-family: var(--serif); font-style: italic; font-size: 14px; }
.menu-card h3 { margin-bottom: 35px; font-size: 37px; }
.menu-card dl { margin: 0; }
.menu-card dl div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-top: 1px solid currentColor; }
.menu-card dt, .menu-card dd { margin: 0; font-size: 13px; }
.menu-card dd { text-align: right; }
.menu-note { position: absolute; right: 38px; bottom: 34px; left: 38px; margin: 0; font-size: 11px; line-height: 1.8; opacity: .75; }
.menu-disclaimer { max-width: calc(var(--max) - 220px); margin: 28px auto 0; font-size: 11px; }
.gallery { padding-right: 0; padding-left: 0; }
.gallery-heading {
  display: flex; justify-content: space-between; align-items: end;
  padding: 0 clamp(24px, 7vw, 110px) 65px;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 6px;
  padding: 0 6px;
}
.gallery-grid figure { margin: 0; overflow: hidden; background: var(--cream); }
.gallery-grid img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.news {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; align-items: center;
  border-top: 1px solid var(--line);
}
.news-body { max-width: 500px; }
.news-body p { margin-bottom: 28px; }
.button-outline { border-color: var(--ink); background: transparent; color: var(--ink); }
.button-outline:hover { background: var(--ink); color: white; }
.access { display: grid; grid-template-columns: 1fr 1fr; max-width: none; padding: 0; background: var(--olive); color: white; }
.access-photo { min-height: 780px; }
.access-photo img { height: 100%; object-fit: cover; }
.access-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 8vw, 120px); }
.access-content address { margin: 42px 0 25px; font-style: normal; font-size: 14px; }
.access-list { margin: 0 0 40px; border-top: 1px solid rgba(255,255,255,.35); }
.access-list div { display: grid; grid-template-columns: 1fr 1.7fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.35); }
.access-list dt, .access-list dd { margin: 0; font-size: 12px; }
.button-dark { align-self: flex-start; border-color: var(--ink); background: var(--ink); }
.button-dark:hover { background: #111; }
.reservation {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; max-width: none;
  background: var(--wine); color: white;
}
.reservation h2 { margin-bottom: 25px; font-size: clamp(46px, 5.2vw, 76px); line-height: 1.1; }
.reservation p { max-width: 570px; }
.reservation-actions { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 26px; }
.reservation-phone { display: flex; flex-direction: column; }
.reservation-phone span { font-family: var(--serif); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.reservation-phone strong { border-bottom: 1px solid white; font-family: var(--serif); font-size: clamp(36px, 4vw, 58px); font-weight: 500; line-height: 1.3; }
.light { color: white; }
.site-footer {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px;
  padding: 78px clamp(24px, 7vw, 110px) 30px; background: #211f1b; color: #dfdbd2;
  font-size: 11px; line-height: 1.9;
}
.footer-brand .brand-name { margin-bottom: 15px; color: white; font-size: 38px; }
.footer-label { margin-bottom: 14px; color: white; font-family: var(--serif); font-size: 14px; letter-spacing: .13em; text-transform: uppercase; }
.site-footer a { border-bottom: 1px solid currentColor; }
.footer-bottom {
  display: flex; grid-column: 1 / -1; justify-content: space-between;
  margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18);
}
.footer-bottom p { margin: 0; }
.mobile-cta { display: none; }

@media (max-width: 1050px) {
  .desktop-nav, .phone-link { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 52% 48%; }
  .hero-copy { padding-right: 38px; padding-left: 38px; }
  .menu-card { padding: 35px 25px; }
  .menu-note { right: 25px; left: 25px; }
  .gallery-grid { grid-auto-rows: 210px; }
}

@media (min-width: 761px) and (max-width: 900px) {
  .menu-cards { grid-template-columns: 1fr; }
  .menu-card { min-height: 410px; }
  .menu-card + .menu-card { border-top: 1px solid rgba(35,33,30,.22); border-left: 0; }
  .menu-card-accent { transform: none; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 66px; }
  body { padding-bottom: 66px; font-size: 14px; }
  .site-header, .site-header.is-scrolled { height: 66px; padding: 0 18px; }
  .brand-name { font-size: 26px; }
  .brand-kicker { font-size: 7px; }
  .header-actions { gap: 4px; }
  .header-actions .button { display: none; }
  .hero { display: block; min-height: 100svh; background: #321014; }
  .hero-image { position: absolute; inset: 0; min-height: 0; }
  .hero-image::after { inset: 0; background: linear-gradient(180deg, rgba(20,8,8,.08) 10%, rgba(34,6,10,.34) 48%, rgba(34,6,10,.92) 100%); }
  .hero-image img { object-position: 54% center; }
  .hero-copy { position: relative; z-index: 1; justify-content: flex-end; min-height: 100svh; padding: 120px 22px 76px; }
  h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-lead { max-width: 90%; font-size: 12px; }
  .hero-actions { gap: 22px; }
  .hero-note { display: none; }
  .section { padding: 88px 22px; }
  .section-heading h2 { font-size: clamp(40px, 12vw, 56px); }
  .intro, .menu-heading, .news, .reservation { grid-template-columns: 1fr; gap: 44px; }
  .intro-body { padding-top: 0; }
  .intro-body .lead { font-size: 22px; }
  .facts { margin-top: 40px; }
  .facts strong { font-size: 24px; }
  .feature-grid { grid-template-columns: 1fr 1fr; padding: 0; }
  .feature-large { grid-column: span 2; grid-row: auto; height: 460px; }
  .feature-small { height: 240px; }
  .feature-quote { min-height: 240px; padding: 18px; }
  .menu { padding-right: 22px; padding-left: 22px; }
  .menu-heading { margin-bottom: 45px; }
  .menu-cards { grid-template-columns: 1fr; }
  .menu-card { min-height: 420px; }
  .menu-card + .menu-card { border-top: 1px solid rgba(35,33,30,.22); border-left: 0; }
  .menu-card-accent { transform: none; }
  .menu-number { margin-bottom: 35px; }
  .menu-disclaimer { font-size: 10px; }
  .gallery-heading { display: grid; gap: 28px; padding: 0 22px 42px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; gap: 4px; padding: 0 4px; }
  .gallery-tall { grid-row: span 2; }
  .gallery-wide { grid-column: auto; }
  .access { grid-template-columns: 1fr; }
  .access-photo { min-height: 480px; }
  .access-content { padding: 78px 22px; }
  .reservation-phone strong { font-size: 40px; }
  .site-footer { grid-template-columns: 1fr; gap: 36px; padding-bottom: 32px; }
  .footer-bottom { display: grid; gap: 8px; }
  .mobile-cta {
    position: fixed; z-index: 90; inset: auto 0 0; display: grid; grid-template-columns: 1.5fr 1fr;
    min-height: 66px; background: var(--wine); color: white; box-shadow: 0 -5px 18px rgba(0,0,0,.12);
  }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; padding: 8px 16px; font-size: 12px; }
  .mobile-cta a:first-child { flex-direction: column; border-right: 1px solid rgba(255,255,255,.3); }
  .mobile-cta span { font-size: 9px; line-height: 1.2; }
  .mobile-cta strong { font-family: var(--serif); font-size: 18px; line-height: 1.3; }
}

@media (max-width: 370px) {
  h1 { font-size: 44px; }
  .hero-copy { padding-right: 18px; padding-left: 18px; }
  .hero-actions .button { padding: 0 20px; }
  .hero-actions { gap: 14px; }
  .facts { grid-template-columns: 1fr; }
  .facts div { flex-direction: row; align-items: baseline; gap: 12px; }
  .reservation-phone strong { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

:focus-visible { outline: 3px solid #d7a649; outline-offset: 4px; }
