@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@200;300;400;500;600&family=Jost:wght@200;300;400&family=Water+Brush&display=swap');

:root {
  --ink: #0d0c0a;
  --ink-soft: #15130f;
  --ink-card: rgba(255,255,255,.045);
  --ink-line: rgba(235,227,210,.18);
  --ivory: #ebe3d2;
  --ivory-soft: #d8ccb5;
  --ivory-mute: rgba(235,227,210,.62);
  --copper: #b08d57;
  --copper-soft: rgba(176,141,87,.22);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --logo: 'Jost', 'Avenir Next', 'Futura', 'Helvetica Neue', Arial, sans-serif;
  --wrap: min(1180px, calc(100vw - 48px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(176,141,87,.12), transparent 34rem),
    linear-gradient(180deg, #0d0c0a 0%, #12100c 48%, #0d0c0a 100%);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--copper); color: var(--ink); }

.wrap { width: var(--wrap); margin: 0 auto; }
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 24px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 13px 0;
  background: rgba(13,12,10,.82);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--ink-line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; width: 178px; height: 38px; color: white; flex: 0 0 auto; }
.brand svg { width: 100%; height: 100%; overflow: visible; filter: drop-shadow(0 6px 18px rgba(0,0,0,.35)); }
.site-header.is-scrolled .brand { width: 150px; height: 30px; }
.nav-links { margin: 0; padding: 0; list-style: none; display: flex; gap: clamp(20px, 3vw, 44px); align-items: center; }
.nav-links a, .nav-cta {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(235,227,210,.76);
  transition: color .25s var(--ease);
}
.nav-links a:hover, .nav-links a.active, .nav-cta:hover { color: var(--ivory); }
.nav-cta { color: var(--copper); }
.nav-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 0; position: relative; }
.nav-toggle span { display: block; width: 24px; height: 1px; background: var(--ivory); margin: 7px auto; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(13,12,10,.96);
  backdrop-filter: blur(22px);
  display: grid;
  place-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu a { font-family: var(--serif); font-size: clamp(36px, 12vw, 72px); line-height: 1; text-align: center; color: var(--ivory-soft); }
.mobile-menu a.active { color: var(--copper); }

.hero-slider {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #050504;
  touch-action: pan-y;
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s var(--ease); }
.slide.is-active { opacity: 1; z-index: 1; }
.slide-img { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); transition: transform 8s linear; }
.slide.is-active .slide-img { transform: scale(1.12); }
.hero-slider::before { content: ''; position: absolute; inset: 0; z-index: 2; background: radial-gradient(circle at center, rgba(0,0,0,.14), rgba(0,0,0,.62) 76%), linear-gradient(180deg, rgba(0,0,0,.56), transparent 30%, rgba(0,0,0,.7)); pointer-events: none; }
.hero-overlay { position: absolute; inset: 0; z-index: 3; display: grid; place-content: center; justify-items: center; text-align: center; padding: 0 24px; }
.hero-logo { width: min(420px, 72vw); filter: drop-shadow(0 18px 34px rgba(0,0,0,.72)); }
.hero-sub { margin-top: 22px; color: rgba(235,227,210,.86); font-size: clamp(11px, 1.5vw, 14px); letter-spacing: .34em; text-transform: uppercase; text-shadow: 0 10px 22px rgba(0,0,0,.7); }
.hero-arrow { position: absolute; top: 50%; z-index: 4; transform: translateY(-50%); width: 52px; height: 52px; border: 1px solid rgba(235,227,210,.35); border-radius: 999px; background: rgba(0,0,0,.14); color: var(--ivory); font-family: var(--serif); font-size: 42px; line-height: 42px; cursor: pointer; transition: background .2s var(--ease), border-color .2s var(--ease); }
.hero-arrow:hover { background: rgba(176,141,87,.18); border-color: var(--copper); }
.hero-arrow.prev { left: 34px; }
.hero-arrow.next { right: 34px; }
.hero-dots { position: absolute; z-index: 4; left: 50%; bottom: 32px; transform: translateX(-50%); display: flex; gap: 17px; align-items: center; }
.hero-dots button { position: relative; width: 8px; height: 8px; padding: 0; border: 1px solid rgba(235,227,210,.55); border-radius: 999px; background: transparent; cursor: pointer; transition: background .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease); }
.hero-dots button::before { content: ''; position: absolute; inset: -14px; border-radius: 999px; }
.hero-dots button.is-active { background: var(--copper); border-color: var(--copper); transform: scale(1.22); }

.section { padding: clamp(68px, 8vw, 110px) 0; }
.section-tight { padding: clamp(40px, 5vw, 72px) 0; }
.eyebrow, .banner-eyebrow { display: inline-block; margin-bottom: 18px; color: var(--copper); font-size: 11px; letter-spacing: .34em; text-transform: uppercase; font-weight: 500; }
.section-title, .banner-title { margin: 0; font-family: var(--serif); font-size: clamp(44px, 7vw, 92px); font-weight: 400; line-height: .95; letter-spacing: -.035em; color: var(--ivory); }
.section-title em, .banner-title em { font-weight: 400; }
.lede { max-width: 760px; color: var(--ivory-soft); font-family: var(--serif); font-size: clamp(24px, 3.2vw, 36px); line-height: 1.25; }
.body-text { max-width: 700px; color: var(--ivory-mute); font-size: clamp(15px, 1.35vw, 17px); line-height: 1.85; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border: 1px solid var(--copper); background: var(--copper); color: var(--ink); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600; transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); background: var(--ivory); border-color: var(--ivory); }
.btn-ghost { background: transparent; color: var(--ivory); }
.btn-ghost:hover { color: var(--ink); }

.page-banner { position: relative; min-height: 58vh; display: flex; align-items: end; padding: 160px 0 82px; overflow: hidden; background: #070605; }
.page-banner::before { content: ''; position: absolute; inset: 0; background-image: var(--banner-bg); background-size: cover; background-position: center; opacity: .54; transform: scale(1.04); }
.page-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,12,10,.65), rgba(13,12,10,.5) 35%, var(--ink)); }
.page-banner .wrap { position: relative; z-index: 1; }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.05fr); align-items: center; gap: clamp(42px, 7vw, 92px); }
.split.reverse { grid-template-columns: minmax(0, 1.05fr) minmax(0, .9fr); }
.split.reverse .split-image { order: 2; }
.split.reverse .split-text { order: 1; }
.split-image { margin: 0; min-height: 420px; overflow: hidden; border: 1px solid var(--ink-line); background: var(--ink-soft); }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-text .body-text + .body-text { margin-top: 18px; }
.pull { max-width: 900px; margin: 0 auto; padding: clamp(44px, 6vw, 76px); text-align: center; border-top: 1px solid var(--ink-line); border-bottom: 1px solid var(--ink-line); }
.pull blockquote { margin: 0 0 24px; color: var(--ivory); font-family: var(--serif); font-size: clamp(30px, 4.4vw, 58px); line-height: 1.06; font-weight: 400; }
.pull cite { color: var(--copper); font-style: normal; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery figure { margin: 0; overflow: hidden; border: 1px solid var(--ink-line); background: var(--ink-soft); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }

.menu-block { max-width: 980px; margin: 0 auto; padding: clamp(34px, 6vw, 72px); border: 1px solid var(--ink-line); background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); }
.price-row, .menu-pairing { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding-bottom: 28px; border-bottom: 1px solid var(--ink-line); }
.price-row h2, .menu-pairing h3 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 6vw, 76px); font-weight: 400; line-height: 1; }
.price, .value { color: var(--copper); }
.price { font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); }
.course-list { margin: 36px 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 34px; counter-reset: course; }
.course-list li { position: relative; padding-left: 42px; color: var(--ivory-soft); }
.course-list li::before { counter-increment: course; content: counter(course, decimal-leading-zero); position: absolute; left: 0; top: 0; color: var(--copper); font-size: 11px; letter-spacing: .16em; }
.menu-pairing { margin-top: 20px; padding: 26px 0; border-top: 1px solid var(--ink-line); }
.menu-pairing h3 { font-size: clamp(28px, 4vw, 44px); }
.menu-note { margin: 24px 0 0; color: var(--ivory-mute); font-size: 14px; line-height: 1.8; }

.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.contact-card { padding: clamp(28px, 4vw, 48px); border: 1px solid var(--ink-line); background: rgba(255,255,255,.04); }
.contact-card h3 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); font-weight: 400; }
.contact-list, .policy-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid var(--ink-line); }
.label { color: var(--ivory-mute); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; }
.policy-list { border-top: 1px solid var(--ink-line); }
.policy-list li { padding: 24px 0; border-bottom: 1px solid var(--ink-line); color: var(--ivory-mute); line-height: 1.8; }
.policy-list strong { display: block; margin-bottom: 6px; color: var(--ivory); font-family: var(--serif); font-size: 24px; font-weight: 400; }

.site-footer { padding: clamp(48px, 6vw, 78px) 0 28px; border-top: 1px solid var(--ink-line); background: #080706; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: clamp(28px, 5vw, 64px); }
.footer-brand img { width: 180px; }
.footer-tagline { max-width: 320px; color: var(--ivory-mute); font-family: var(--serif); font-size: 20px; line-height: 1.35; }
.footer-col h4 { margin: 0 0 18px; color: var(--copper); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; }
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col li, .footer-col a { color: var(--ivory-mute); font-size: 14px; line-height: 1.9; }
.footer-col a:hover, .socials a:hover { color: var(--ivory); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--ink-line); color: rgba(235,227,210,.48); font-size: 12px; }
.socials { display: flex; gap: 20px; }
.socials a { color: rgba(235,227,210,.55); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .slide-img { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  :root { --wrap: min(100vw - 34px, 720px); }
  .site-header { padding: 18px 0; }
  .brand { width: 148px; height: 30px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-arrow { display: none; }
  .hero-logo { width: min(330px, 74vw); }
  .hero-sub { letter-spacing: .22em; max-width: 86vw; }
  .page-banner { min-height: 48vh; padding: 130px 0 58px; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .split-image, .split.reverse .split-text { order: initial; }
  .split-image { min-height: 320px; }
  .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .course-list { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 620px) {
  :root { --wrap: calc(100vw - 28px); }
  .section { padding: 52px 0; }
  .section-tight { padding: 34px 0; }
  .brand { width: 132px; height: 28px; }
  .site-header.is-scrolled .brand { width: 120px; height: 25px; }
  .hero-dots { bottom: 24px; gap: 14px; }
  .page-banner { min-height: 44vh; padding-top: 112px; }
  .split-image { min-height: 260px; }
  .pull { padding-left: 18px; padding-right: 18px; }
  .menu-block, .contact-card { padding: 26px 20px; }
  .price-row, .menu-pairing { align-items: flex-start; flex-direction: column; gap: 10px; }
  .contact-list li { grid-template-columns: 1fr; gap: 5px; }
  .gallery { gap: 8px; }
  form > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 20px !important; }
}

/* Refinements — thinner, quieter, more modern */
body {
  font-weight: 300;
  letter-spacing: -0.005em;
}
.brand { width: 162px; height: 34px; }
.site-header.is-scrolled .brand { width: 138px; height: 28px; }
.nav-links a, .nav-cta {
  font-size: 10px;
  letter-spacing: .34em;
  font-weight: 400;
}
.section { padding: clamp(58px, 7vw, 92px) 0; }
.section-tight { padding: clamp(32px, 4vw, 58px) 0; }
.section-title, .banner-title {
  font-size: clamp(36px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -.025em;
}
.lede { font-size: clamp(20px, 2.4vw, 30px); line-height: 1.35; }
.body-text { font-size: clamp(14px, 1.08vw, 16px); line-height: 1.82; }
.eyebrow, .banner-eyebrow { font-size: 10px; letter-spacing: .38em; }

.hero-overlay { gap: 0; }
.hero-logo { width: min(360px, 64vw); }
.hero-sub { margin-top: 18px; font-size: clamp(10px, 1.05vw, 12px); letter-spacing: .42em; }
.hero-booking {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 30px;
  padding: 14px 28px 15px;
  min-width: 174px;
  border: 1px solid rgba(235,227,210,.36);
  background: rgba(6,5,4,.34);
  color: var(--ivory);
  backdrop-filter: blur(10px);
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.hero-booking:hover { border-color: var(--copper); background: rgba(176,141,87,.16); transform: translateY(-2px); }
.hero-booking-kicker {
  color: var(--copper);
  font-size: 9px;
  line-height: 1;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.hero-booking strong {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px;
  font-size: 32px;
  line-height: 1;
  font-family: var(--sans);
  font-weight: 200;
}

.mobile-menu { gap: 20px; }
.mobile-menu a {
  font-family: var(--sans);
  font-size: clamp(22px, 6vw, 38px);
  font-weight: 300;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(235,227,210,.86);
}
.mobile-menu a[style] { font-size: clamp(18px, 5vw, 30px); letter-spacing: .14em; }

.footer-grid {
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, .65fr));
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}
.footer-col:first-child { padding-right: clamp(22px, 4vw, 56px); border-right: 1px solid var(--ink-line); }
.footer-brand img { width: 155px; }
.footer-tagline { max-width: 360px; font-size: 18px; color: rgba(235,227,210,.68); }
.footer-col h4 { margin-bottom: 22px; font-size: 10px; letter-spacing: .36em; }
.footer-col li, .footer-col a { font-size: 13px; line-height: 2; }
.footer-bottom { margin-top: 48px; font-size: 11px; letter-spacing: .04em; }

@media (max-width: 900px) {
  .brand { width: 126px; height: 28px; }
  .mobile-menu { align-content: center; }
  .hero-booking { margin-top: 24px; padding: 13px 22px; min-width: 158px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .footer-col:first-child { grid-column: 1 / -1; padding-right: 0; padding-bottom: 28px; border-right: 0; border-bottom: 1px solid var(--ink-line); }
}

@media (max-width: 620px) {
  .section-title, .banner-title { font-size: clamp(34px, 10vw, 52px); }
  .hero-logo { width: min(290px, 72vw); }
  .hero-sub { letter-spacing: .26em; }
  .hero-booking { min-width: 148px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand img { width: 138px; }
  .footer-tagline { max-width: 310px; }
}

/* Menu page image/text swaps requested */
.vessels-section .split-text,
.cooking-section .split-text { order: 2; }
.vessels-section > .reveal,
.cooking-section .split-image { order: 1; }

@media (max-width: 900px) {
  .vessels-section .split-text,
  .cooking-section .split-text { order: 2; }
  .vessels-section > .reveal,
  .cooking-section .split-image { order: 1; }
}

/* About page content refresh + mobile breathing room */
#about-page .section { padding: clamp(44px, 5.4vw, 72px) 0; }
#about-page .section-tight { padding: clamp(28px, 3.8vw, 48px) 0; }
#about-page .split { gap: clamp(30px, 5vw, 68px); }
#about-page .body-text + .body-text { margin-top: 14px; }
#about-page .pull { padding-top: clamp(34px, 4.5vw, 58px); padding-bottom: clamp(34px, 4.5vw, 58px); }
.split-image,
.gallery figure,
.menu-block,
.contact-card { border-color: transparent; }
.split-image,
.gallery figure { border: 0 !important; }

@media (max-width: 620px) {
  :root { --wrap: calc(100vw - 44px); }
  #about-page .section { padding: 38px 0; }
  #about-page .section-tight { padding: 26px 0; }
  #about-page .lede { font-size: clamp(19px, 5.2vw, 23px); line-height: 1.35; }
  #about-page .body-text { font-size: 14px; line-height: 1.78; }
  #about-page .section-title { font-size: clamp(34px, 9vw, 46px); }
  #about-page .pull { padding-left: 0; padding-right: 0; }
}

/* Content hierarchy cleanup: gold section titles instead of repeated large headings */
.gold-title {
  margin: 0 0 22px;
  color: var(--copper);
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.25;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.compact-lede {
  margin: -6px 0 22px;
  max-width: 620px;
  font-size: clamp(19px, 2vw, 26px);
}
.clean-cta { padding-top: 4px !important; }
.clean-cta .btn { min-width: 170px; }
#about-page .pull { border-top: 0; border-bottom: 0; }
.craftsmanship-section .gallery figure:nth-child(4) img { object-position: center; }

@media (max-width: 620px) {
  .gold-title {
    margin-bottom: 18px;
    font-size: 18px;
    letter-spacing: .24em;
  }
  .compact-lede { font-size: 20px; margin-bottom: 18px; }
  .craftsmanship-gallery { grid-template-columns: 1fr 1fr !important; }
}

/* Final About/Menu refinement pass */
.gold-title {
  color: var(--copper);
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.018em;
  text-transform: none;
}
#about-page .gold-title { margin-bottom: 20px; }
.chef-quote-section { padding-top: clamp(18px, 3vw, 38px); padding-bottom: clamp(30px, 4vw, 52px); }
.chef-quote {
  max-width: 760px;
  padding: clamp(28px, 4vw, 46px) 0;
  border-top: 1px solid rgba(235,227,210,.22) !important;
  border-bottom: 1px solid rgba(235,227,210,.22) !important;
}
.chef-quote blockquote {
  margin-bottom: 18px;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.24;
}
#about-page .page-banner { margin-bottom: -46px; }
#about-page .page-banner::after {
  bottom: -2px;
  background: linear-gradient(180deg, rgba(13,12,10,.55), rgba(13,12,10,.42) 34%, rgba(13,12,10,.92) 82%, var(--ink) 100%);
}
#about-page .page-banner + .section { padding-top: clamp(38px, 4.5vw, 64px); }
.craftsmanship-section .split-text { order: 1; }
.craftsmanship-section > .wrap > .reveal { order: 2; }

@media (max-width: 900px) {
  #about-page .page-banner { margin-bottom: -34px; }
  #about-page .page-banner + .section { padding-top: 42px; }
  .craftsmanship-section .split-text { order: 1; }
  .craftsmanship-section > .wrap > .reveal { order: 2; }
}

@media (max-width: 620px) {
  .gold-title {
    font-size: clamp(32px, 10vw, 46px);
    letter-spacing: -0.018em;
    margin-bottom: 16px;
  }
  #about-page .page-banner {
    min-height: 48vh;
    margin-bottom: -30px;
  }
  #about-page .page-banner + .section { padding-top: 36px; }
  .chef-quote { padding: 28px 0; }
  .chef-quote blockquote { font-size: 22px; line-height: 1.28; }
}

/* Calligraphic titles + Masaki-style thin navigation */
.nav-links a, .nav-cta {
  font-weight: 300;
  font-size: 10px;
  letter-spacing: .42em;
  color: rgba(235,227,210,.82);
}
.nav-links a.active { color: var(--ivory); }
.gold-title {
  font-family: 'Water Brush', 'HanziPen SC', 'Klee', 'Yuji Boku', cursive;
  font-size: clamp(48px, 6vw, 86px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--copper);
  text-shadow: 0 14px 36px rgba(0,0,0,.34);
}

/* Hero mobile: underline booking, Michelin note, no slider arrows */
.hero-michelin {
  margin-top: 16px;
  color: rgba(235,227,210,.82);
  font-size: 9px;
  line-height: 1;
  letter-spacing: .32em;
  text-transform: uppercase;
  text-shadow: 0 10px 22px rgba(0,0,0,.7);
}
.hero-michelin span { color: var(--copper); letter-spacing: 0; margin-left: 6px; }

@media (max-width: 900px) {
  .hero-arrow { display: none !important; }
  .hero-booking {
    min-width: 0;
    margin-top: 22px;
    padding: 0 0 8px;
    border: 0;
    border-bottom: 1px solid rgba(235,227,210,.72);
    background: transparent;
    backdrop-filter: none;
  }
  .hero-booking:hover { background: transparent; transform: none; border-color: var(--copper); }
  .hero-booking-kicker { display: none; }
  .hero-booking strong { font-size: 10px; letter-spacing: .34em; font-weight: 400; }
  .hero-michelin { margin-top: 14px; font-size: 8px; letter-spacing: .28em; }
  .mobile-menu a {
    font-family: var(--sans);
    font-size: clamp(28px, 7vw, 44px);
    font-weight: 200;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
}

/* Mobile footer: centered, compact, no wasted right space */
@media (max-width: 620px) {
  .site-footer { padding: 42px 0 24px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; align-items: start; }
  .footer-col:first-child {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--ink-line);
  }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-col li, .footer-col a { font-size: 12px; line-height: 1.75; }
  .footer-tagline { margin-left: auto; margin-right: auto; font-size: 16px; }
  .footer-bottom { align-items: center; text-align: center; gap: 14px; margin-top: 32px; }
  .socials { justify-content: center; }
}

/* Michelin flower mark + spaced booking text */
.hero-michelin {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  color: rgba(176,141,87,.92);
  text-shadow: 0 10px 22px rgba(0,0,0,.7);
}
.michelin-flower {
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: .85;
  letter-spacing: 0;
  color: rgba(176,141,87,.92);
}
.michelin-text {
  font-size: 10px;
  line-height: 1;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 300;
}
.hero-booking {
  border: 0;
  border-bottom: 1px solid rgba(235,227,210,.65);
  background: transparent;
  backdrop-filter: none;
  min-width: 0;
  padding: 0 2px 9px;
}
.hero-booking:hover { background: transparent; transform: none; border-color: var(--copper); }
.hero-booking strong {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.hero-booking strong span {
  display: inline-block;
}
.hero-booking-kicker { display: none; }

@media (max-width: 900px) {
  .michelin-flower { font-size: 22px; }
  .michelin-text { font-size: 8px; letter-spacing: .28em; }
  .hero-booking strong { gap: 14px; }
}

/* Exact Michelin-style mark uses local SVG instead of a text glyph */
.hero-michelin {
  margin-top: 18px;
  line-height: 1;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.55));
}
.hero-michelin img {
  display: block;
  width: clamp(132px, 12vw, 182px);
  height: auto;
  opacity: .96;
}

@media (max-width: 900px) {
  .hero-michelin { margin-top: 14px; }
  .hero-michelin img { width: 126px; }
}

/* Replace brush calligraphy with Canela-like elegant italic display serif */
.gold-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(46px, 5.8vw, 84px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: none;
  color: var(--copper);
  text-shadow: 0 14px 34px rgba(0,0,0,.28);
}

@media (max-width: 620px) {
  .gold-title {
    font-size: clamp(40px, 12vw, 58px);
    letter-spacing: -0.04em;
  }
}

/* Section titles: ivory editorial title with quiet copper accent */
.gold-title {
  display: block;
  margin: 0 0 24px;
  color: var(--ivory);
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.035em;
  text-transform: none;
  text-shadow: 0 14px 34px rgba(0,0,0,.28);
}
.gold-title::after {
  content: '';
  display: block;
  width: 42px;
  height: 1px;
  margin: 18px auto 0;
  background: var(--copper);
  opacity: .82;
}
.split-text .gold-title::after { margin-left: 0; margin-right: auto; }
.gold-title + .lede,
.gold-title + .body-text { margin-top: 0; }
.compact-lede { margin-top: 0; }

@media (max-width: 620px) {
  .gold-title {
    font-size: clamp(34px, 10vw, 50px);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }
  .gold-title::after { margin-top: 14px; }
}

/* Mobile/about refinement: italic titles, softer hero fade, centered mobile titles, inset quote */
.gold-title {
  font-style: italic;
}

@media (max-width: 620px) {
  #about-page .page-banner {
    margin-bottom: -54px;
    min-height: 50vh;
  }
  #about-page .page-banner::after {
    background: linear-gradient(180deg,
      rgba(13,12,10,.45) 0%,
      rgba(13,12,10,.36) 34%,
      rgba(13,12,10,.74) 72%,
      var(--ink) 100%);
  }
  #about-page .page-banner + .section {
    padding-top: 50px;
  }
  #about-page .gold-title,
  #about-page .split-text .gold-title {
    text-align: center;
  }
  #about-page .gold-title::after,
  #about-page .split-text .gold-title::after {
    margin-left: auto;
    margin-right: auto;
  }
  #about-page .compact-lede {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #about-page .chef-quote {
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }
}

/* About page: blended hero, centered editorial content, custom divider */
#about-page .page-banner {
  margin-bottom: -86px;
}
#about-page .page-banner::after {
  background: linear-gradient(180deg,
    rgba(13,12,10,.42) 0%,
    rgba(13,12,10,.34) 34%,
    rgba(13,12,10,.72) 66%,
    var(--ink) 96%);
}
#about-page .page-banner + .section {
  position: relative;
  z-index: 2;
  padding-top: clamp(78px, 8vw, 112px);
}
#about-page .split {
  grid-template-columns: 1fr;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#about-page .split-text {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
#about-page .split-image {
  width: min(100%, 720px);
  margin-left: auto;
  margin-right: auto;
}
#about-page .body-text,
#about-page .lede,
#about-page .compact-lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#about-page .gold-title,
#about-page .split-text .gold-title {
  text-align: center;
}
#about-page .gold-title::after,
#about-page .split-text .gold-title::after {
  width: 96px;
  height: 24px;
  margin: 16px auto 0;
  background: url('title-divider.svg') center / contain no-repeat;
  opacity: .95;
}

@media (max-width: 620px) {
  #about-page .page-banner { margin-bottom: -70px; }
  #about-page .page-banner + .section { padding-top: 78px; }
  #about-page .gold-title::after,
  #about-page .split-text .gold-title::after {
    width: 78px;
    height: 20px;
    margin-top: 14px;
  }
}

/* Make supplied divider asset visible by giving it a larger display box */
#about-page .gold-title::after,
#about-page .split-text .gold-title::after {
  width: 132px;
  height: 28px;
  background-size: 132px 28px;
}
@media (max-width: 620px) {
  #about-page .gold-title::after,
  #about-page .split-text .gold-title::after {
    width: 112px;
    height: 24px;
    background-size: 112px 24px;
  }
}

/* Global CTA refinement: simple gold underline instead of button boxes */
.btn,
.btn-ghost {
  min-height: 0;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid var(--copper);
  background: transparent;
  color: var(--copper);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 400;
}
.btn:hover,
.btn-ghost:hover {
  background: transparent;
  color: var(--ivory);
  border-color: var(--ivory);
  transform: none;
}
.section-title + .body-text,
.section-title + .lede,
.gold-title + .body-text,
.gold-title + .lede,
.gold-title + .compact-lede,
.banner-title + .body-text {
  margin-top: 30px;
}
.reveal > .section-title + .body-text,
.reveal > .section-title + p,
.reveal > .gold-title + p {
  margin-top: 30px !important;
}
.contact-card .btn { margin-top: 8px; }
.clean-cta .btn { min-width: 0; }

@media (max-width: 620px) {
  .section-title + .body-text,
  .section-title + .lede,
  .gold-title + .body-text,
  .gold-title + .lede,
  .gold-title + .compact-lede,
  .reveal > .section-title + .body-text,
  .reveal > .section-title + p,
  .reveal > .gold-title + p {
    margin-top: 24px !important;
  }
}

/* Opening statement + same custom divider on menu page */
#about-page .intro-statement {
  font-style: italic;
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1.28;
  color: var(--ivory);
}
#about-page .intro-statement + .body-text { margin-top: 34px !important; }
.menu-page .gold-title::after,
.menu-page .split-text .gold-title::after {
  width: 96px;
  height: 24px;
  margin: 16px auto 0;
  background: url('title-divider.svg') center / contain no-repeat;
  opacity: .95;
}
.menu-page .split-text .gold-title::after { margin-left: 0; margin-right: auto; }

@media (max-width: 620px) {
  #about-page .intro-statement {
    font-size: clamp(23px, 6.4vw, 30px);
  }
  .menu-page .gold-title::after,
  .menu-page .split-text .gold-title::after {
    width: 78px;
    height: 20px;
    margin-top: 14px;
  }
}

/* Homepage video hero */
.hero-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}
.hero-video .hero-overlay { z-index: 3; }
.hero-video::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(0,0,0,.08), rgba(0,0,0,.58) 76%), linear-gradient(180deg, rgba(0,0,0,.56), transparent 34%, rgba(0,0,0,.72));
  pointer-events: none;
}
.hero-video .hero-dots,
.hero-video .hero-arrow { display: none !important; }
#about-page .intro-statement-small {
  max-width: 760px;
  font-size: clamp(22px, 2.45vw, 32px);
  line-height: 1.34;
}
@media (max-width: 620px) {
  #about-page .intro-statement-small {
    font-size: clamp(20px, 5.6vw, 25px);
    line-height: 1.42;
  }
}

/* WebM hero refinement: smaller centered logo + lower underline booking */
.hero-logo {
  width: min(300px, 58vw);
}
.hero-booking {
  margin-top: 54px;
}
.hero-michelin + .hero-booking {
  margin-top: 56px;
}

@media (max-width: 900px) {
  .hero-logo { width: min(245px, 58vw); }
  .hero-michelin + .hero-booking { margin-top: 50px; }
}

@media (max-width: 620px) {
  .hero-logo { width: min(220px, 58vw); }
  .hero-sub { margin-top: 16px; }
  .hero-michelin + .hero-booking { margin-top: 54px; }
}

/* Hero reposition: remove center booking, lower mark group, underline nav booking */
.hero-overlay {
  place-content: start center;
  padding-top: clamp(150px, 24vh, 260px);
}
.nav-cta {
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(176,141,87,.78);
  color: var(--copper);
}
.nav-cta:hover { border-color: var(--ivory); }

@media (max-width: 900px) {
  .hero-overlay { padding-top: clamp(150px, 28vh, 240px); }
}
@media (max-width: 620px) {
  .hero-overlay { padding-top: 22vh; }
}

/* Inner-page hero bleed: image/fade extends into first content section */
#about-page .page-banner,
.menu-page .page-banner {
  min-height: clamp(520px, 72vh, 720px);
  margin-bottom: -150px;
}
#about-page .page-banner::after,
.menu-page .page-banner::after {
  background: linear-gradient(180deg,
    rgba(13,12,10,.42) 0%,
    rgba(13,12,10,.34) 34%,
    rgba(13,12,10,.68) 66%,
    rgba(13,12,10,.94) 88%,
    var(--ink) 100%);
}
#about-page .page-banner + .section,
.menu-page .page-banner + .section {
  position: relative;
  z-index: 2;
  padding-top: clamp(118px, 13vh, 168px);
}

@media (max-width: 900px) {
  #about-page .page-banner,
  .menu-page .page-banner {
    min-height: 56vh;
    margin-bottom: -96px;
  }
  #about-page .page-banner + .section,
  .menu-page .page-banner + .section {
    padding-top: 104px;
  }
}

@media (max-width: 620px) {
  #about-page .page-banner,
  .menu-page .page-banner {
    min-height: 54vh;
    margin-bottom: -82px;
  }
  #about-page .page-banner + .section,
  .menu-page .page-banner + .section {
    padding-top: 94px;
  }
}

/* Fix mobile hard edge: allow hero gradient to extend beyond banner boundary */
#about-page .page-banner,
.menu-page .page-banner {
  overflow: visible;
  isolation: isolate;
}
#about-page .page-banner::before,
.menu-page .page-banner::before {
  z-index: 0;
}
#about-page .page-banner::after,
.menu-page .page-banner::after {
  z-index: 1;
  bottom: -180px;
  background: linear-gradient(180deg,
    rgba(13,12,10,.36) 0%,
    rgba(13,12,10,.34) 36%,
    rgba(13,12,10,.70) 66%,
    rgba(13,12,10,.94) 86%,
    var(--ink) 100%);
}
#about-page .page-banner .wrap,
.menu-page .page-banner .wrap {
  z-index: 3;
}
#about-page .page-banner + .section,
.menu-page .page-banner + .section {
  position: relative;
  z-index: 2;
  background: transparent;
}

@media (max-width: 620px) {
  #about-page .page-banner::after,
  .menu-page .page-banner::after {
    bottom: -150px;
    background: linear-gradient(180deg,
      rgba(13,12,10,.30) 0%,
      rgba(13,12,10,.36) 42%,
      rgba(13,12,10,.74) 72%,
      rgba(13,12,10,.96) 90%,
      var(--ink) 100%);
  }
}

/* Desktop-only About editorial layouts: restore generous image/text rhythm */
@media (min-width: 901px) {
  #about-page .section .wrap.split {
    width: min(1120px, calc(100vw - 96px));
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.08fr);
    gap: clamp(64px, 7vw, 112px);
    align-items: center;
    text-align: left;
  }

  /* The Art of Kappo: content left, image right */
  #about-page .section .wrap.split:not(.reverse) .split-text {
    order: 1;
  }
  #about-page .section .wrap.split:not(.reverse) .split-image,
  #about-page .section .wrap.split:not(.reverse) > .reveal:not(.split-text) {
    order: 2;
  }

  /* Philosophy: image left, content right for visual alternation */
  #about-page .section .wrap.split.reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .86fr);
  }
  #about-page .section .wrap.split.reverse .split-image {
    order: 1;
  }
  #about-page .section .wrap.split.reverse .split-text {
    order: 2;
  }

  /* Craftsmanship: text left, gallery right */
  #about-page .craftsmanship-section .wrap.split {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  }
  #about-page .craftsmanship-section .split-text {
    order: 1;
  }
  #about-page .craftsmanship-section .wrap.split > .reveal:not(.split-text) {
    order: 2;
  }

  #about-page .split-text,
  #about-page .split-image,
  #about-page .craftsmanship-section .wrap.split > .reveal:not(.split-text) {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  #about-page .split-image {
    min-height: 500px;
  }
  #about-page .body-text,
  #about-page .lede,
  #about-page .compact-lede,
  #about-page .split-text .body-text,
  #about-page .split-text .lede {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  #about-page .split-text .gold-title {
    text-align: left;
  }
  #about-page .split-text .gold-title::after {
    margin-left: 0;
    margin-right: auto;
  }
  #about-page .craftsmanship-gallery {
    gap: 16px;
  }
}

/* True seamless inner-page hero: extend the image itself below the banner, then fade it out */
#about-page .page-banner,
.menu-page .page-banner {
  overflow: visible !important;
}
#about-page .page-banner::before,
.menu-page .page-banner::before {
  top: 0;
  right: 0;
  bottom: -220px;
  left: 0;
  height: auto;
  opacity: .56;
  transform: scale(1.04);
  -webkit-mask-image: linear-gradient(to bottom,
    #000 0%,
    #000 62%,
    rgba(0,0,0,.72) 76%,
    rgba(0,0,0,.24) 90%,
    transparent 100%);
  mask-image: linear-gradient(to bottom,
    #000 0%,
    #000 62%,
    rgba(0,0,0,.72) 76%,
    rgba(0,0,0,.24) 90%,
    transparent 100%);
}
#about-page .page-banner::after,
.menu-page .page-banner::after {
  bottom: -220px;
  background: linear-gradient(180deg,
    rgba(13,12,10,.38) 0%,
    rgba(13,12,10,.34) 42%,
    rgba(13,12,10,.66) 72%,
    rgba(13,12,10,.92) 90%,
    var(--ink) 100%);
}

@media (max-width: 620px) {
  #about-page .page-banner::before,
  .menu-page .page-banner::before {
    bottom: -190px;
    -webkit-mask-image: linear-gradient(to bottom,
      #000 0%,
      #000 58%,
      rgba(0,0,0,.74) 72%,
      rgba(0,0,0,.22) 90%,
      transparent 100%);
    mask-image: linear-gradient(to bottom,
      #000 0%,
      #000 58%,
      rgba(0,0,0,.74) 72%,
      rgba(0,0,0,.22) 90%,
      transparent 100%);
  }
  #about-page .page-banner::after,
  .menu-page .page-banner::after {
    bottom: -190px;
  }
}

/* Align About intro copy as one centered column */
#about-page .intro-statement,
#about-page .intro-statement + .body-text {
  max-width: 720px;
  text-align: left;
  margin-left: auto !important;
  margin-right: auto !important;
}
#about-page .intro-statement + .body-text {
  max-width: 690px;
}

/* Reservation page hero matches About/Menu sizing, title position, and fade */
.contact-page .page-banner {
  min-height: clamp(520px, 72vh, 720px);
  margin-bottom: -150px;
  overflow: visible !important;
  isolation: isolate;
}
.contact-page .page-banner::before {
  top: 0;
  right: 0;
  bottom: -220px;
  left: 0;
  height: auto;
  opacity: .56;
  transform: scale(1.04);
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom,
    #000 0%,
    #000 62%,
    rgba(0,0,0,.72) 76%,
    rgba(0,0,0,.24) 90%,
    transparent 100%);
  mask-image: linear-gradient(to bottom,
    #000 0%,
    #000 62%,
    rgba(0,0,0,.72) 76%,
    rgba(0,0,0,.24) 90%,
    transparent 100%);
}
.contact-page .page-banner::after {
  z-index: 1;
  bottom: -220px;
  background: linear-gradient(180deg,
    rgba(13,12,10,.38) 0%,
    rgba(13,12,10,.34) 42%,
    rgba(13,12,10,.66) 72%,
    rgba(13,12,10,.92) 90%,
    var(--ink) 100%);
}
.contact-page .page-banner .wrap { z-index: 3; }
.contact-page .page-banner + .section {
  position: relative;
  z-index: 2;
  padding-top: clamp(118px, 13vh, 168px);
  background: transparent;
}

@media (max-width: 900px) {
  .contact-page .page-banner {
    min-height: 56vh;
    margin-bottom: -96px;
  }
  .contact-page .page-banner + .section {
    padding-top: 104px;
  }
}

@media (max-width: 620px) {
  #about-page .intro-statement,
  #about-page .intro-statement + .body-text {
    text-align: center;
  }
  .contact-page .page-banner {
    min-height: 54vh;
    margin-bottom: -82px;
  }
  .contact-page .page-banner::before,
  .contact-page .page-banner::after {
    bottom: -190px;
  }
  .contact-page .page-banner + .section {
    padding-top: 94px;
  }
}

/* Footer cleanup: remove brand/tagline block and line directly below homepage video */
.site-footer {
  border-top: 0;
}
.footer-grid {
  grid-template-columns: repeat(3, minmax(160px, 1fr));
}
.footer-col:first-child {
  border-right: 0;
  padding-right: 0;
}
@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 12px;
  }
  .footer-col:first-child {
    grid-column: auto;
    display: block;
    padding-bottom: 0;
    border-bottom: 0;
  }
}

/* Menu cleanup after hiding course list: avoid double divider */
.menu-pairing {
  border-top: 0;
  margin-top: 0;
}

/* Live-site fix: replace broken remote WP logo with local text wordmark */
.hero-wordmark {
  color: var(--ivory);
  font-family: var(--logo);
  font-size: clamp(34px, 5vw, 74px);
  line-height: 1;
  font-weight: 200;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 18px 34px rgba(0,0,0,.72);
}
@media (max-width: 620px) {
  .hero-wordmark {
    font-size: clamp(30px, 8vw, 44px);
    letter-spacing: .1em;
  }
}

/* Homepage restore: use real transparent Kappo Sato logo */
.hero-video .hero-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(150px, 23vh, 230px);
}
.hero-video .hero-logo {
  display: block;
  width: min(250px, 34vw);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.72));
}
.hero-video .hero-sub {
  margin-top: 28px;
}
.hero-video .hero-michelin {
  margin-top: clamp(58px, 9vh, 92px);
}
.hero-wordmark { display: none !important; }
@media (max-width: 680px) {
  .hero-video .hero-overlay {
    padding-top: 21vh;
  }
  .hero-video .hero-logo {
    width: min(220px, 52vw);
  }
  .hero-video .hero-sub {
    margin-top: 24px;
    max-width: 88vw;
    line-height: 1.8;
  }
  .hero-video .hero-michelin {
    margin-top: 58px;
  }
}

/* Homepage logo sizing refinement */
.hero-video .hero-logo {
  width: min(180px, 24vw) !important;
}
@media (max-width: 680px) {
  .hero-video .hero-logo {
    width: min(150px, 38vw) !important;
  }
}

/* Mobile homepage logo: much smaller and centered */
@media (max-width: 680px) {
  .hero-video .hero-overlay {
    align-items: center !important;
    text-align: center !important;
    padding-top: 24vh !important;
  }
  .hero-video .hero-logo {
    width: min(104px, 27vw) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-video .hero-sub {
    margin-top: 18px !important;
  }
  .hero-video .hero-michelin {
    margin-top: 52px !important;
  }
}

/* Desktop logo should stay refined, not oversized */
@media (min-width: 681px) {
  .hero-video .hero-logo {
    width: min(150px, 18vw) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Homepage tagline spacing */
.hero-video .hero-sub {
  margin-top: 44px !important;
}
@media (max-width: 680px) {
  .hero-video .hero-sub {
    margin-top: 34px !important;
  }
}

/* Homepage tagline lower, just above Michelin mark */
.hero-video .hero-sub {
  margin-top: clamp(78px, 10vh, 118px) !important;
}
.hero-video .hero-michelin {
  margin-top: 22px !important;
}
@media (max-width: 680px) {
  .hero-video .hero-sub {
    margin-top: 72px !important;
  }
  .hero-video .hero-michelin {
    margin-top: 18px !important;
  }
}

/* Force homepage logo to exact viewport center on desktop + mobile */
.hero-video .hero-overlay {
  left: 50% !important;
  right: auto !important;
  width: 100vw !important;
  transform: translateX(-50%) !important;
  box-sizing: border-box !important;
}
.hero-video .hero-logo {
  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  align-self: flex-start !important;
}
.hero-video .hero-sub,
.hero-video .hero-michelin {
  align-self: center !important;
  text-align: center !important;
}

/* Craftsmanship image crop refinements */
.craft-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.craft-grid figure:nth-child(1) img { object-position: center center; }
.craft-grid figure:nth-child(2) img { object-position: center center; }
.craft-grid figure:nth-child(3) img { object-position: center center; }
.craft-grid figure:nth-child(4) img { object-position: center center; }

/* Menu hero crop: move image up to reveal more dishes */
.menu-page .page-banner::before {
  background-position: center 34% !important;
}
@media (max-width: 680px) {
  .menu-page .page-banner::before {
    background-position: center 28% !important;
  }
}

/* Reservation hero image */
.contact-page .page-banner::before {
  background-position: center center !important;
}
@media (max-width: 680px) {
  .contact-page .page-banner::before {
    background-position: center center !important;
  }
}

/* Menu hero crop: show more dishes, especially desktop */
@media (min-width: 681px) {
  .menu-page .page-banner::before {
    background-position: center 72% !important;
  }
}
@media (max-width: 680px) {
  .menu-page .page-banner::before {
    background-position: center 62% !important;
  }
}

/* Final refinements: about image tone, homepage stack, footer alignment */
#about-page .art-kappo-image img {
  filter: brightness(.72) contrast(1.04) saturate(.92);
}

/* Homepage: keep logo centered, move tagline + Michelin lower */
.hero-video .hero-overlay {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  transform: none !important;
  align-items: center !important;
  text-align: center !important;
  padding-top: clamp(145px, 22vh, 220px) !important;
}
.hero-video .hero-logo {
  left: auto !important;
  transform: none !important;
  align-self: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.hero-video .hero-sub {
  margin-top: clamp(112px, 17vh, 170px) !important;
}
.hero-video .hero-michelin {
  margin-top: 20px !important;
}
@media (max-width: 680px) {
  .hero-video .hero-overlay {
    padding-top: 23vh !important;
  }
  .hero-video .hero-sub {
    margin-top: 118px !important;
  }
  .hero-video .hero-michelin {
    margin-top: 18px !important;
  }
}

/* Footer: line Explore links neatly */
@media (max-width: 620px) {
  .footer-col:nth-child(3) ul {
    display: inline-block;
    text-align: left;
  }
  .footer-col:nth-child(3) li {
    text-align: left;
  }
}

/* Homepage hero vertical balance: logo lower, tagline closer to Michelin */
.hero-video .hero-overlay {
  padding-top: clamp(190px, 30vh, 300px) !important;
}
.hero-video .hero-sub {
  margin-top: clamp(88px, 12vh, 128px) !important;
}
.hero-video .hero-michelin {
  margin-top: 8px !important;
}
@media (max-width: 680px) {
  .hero-video .hero-overlay {
    padding-top: 28vh !important;
  }
  .hero-video .hero-sub {
    margin-top: 86px !important;
  }
  .hero-video .hero-michelin {
    margin-top: 8px !important;
  }
}

/* Final homepage logo correction: tall PNG needs a much smaller width */
.hero-video .hero-overlay .hero-logo,
.hero-slider.hero-video .hero-overlay .hero-logo {
  width: 96px !important;
  max-width: 96px !important;
  height: auto !important;
  display: block !important;
  align-self: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}
@media (max-width: 680px) {
  .hero-video .hero-overlay .hero-logo,
  .hero-slider.hero-video .hero-overlay .hero-logo {
    width: 78px !important;
    max-width: 78px !important;
  }
}

/* Menu hero crop: move further down to reveal dishes */
@media (min-width: 681px) {
  .menu-page .page-banner::before {
    background-position: center 86% !important;
  }
}
@media (max-width: 680px) {
  .menu-page .page-banner::before {
    background-position: center 74% !important;
  }
}

/* Homepage mobile polish: slightly larger logo, lower text/Michelin */
.hero-video .hero-overlay .hero-logo,
.hero-slider.hero-video .hero-overlay .hero-logo {
  width: 112px !important;
  max-width: 112px !important;
}
.hero-video .hero-sub {
  margin-top: clamp(140px, 20vh, 210px) !important;
}
.hero-video .hero-michelin {
  margin-top: 22px !important;
}
@media (max-width: 680px) {
  .hero-video .hero-overlay .hero-logo,
  .hero-slider.hero-video .hero-overlay .hero-logo {
    width: 92px !important;
    max-width: 92px !important;
  }
  .hero-video .hero-sub {
    margin-top: 158px !important;
  }
  .hero-video .hero-michelin {
    margin-top: 24px !important;
  }
}

/* Homepage: Michelin star slightly higher */
.hero-video .hero-michelin {
  margin-top: 10px !important;
}
@media (max-width: 680px) {
  .hero-video .hero-michelin {
    margin-top: 10px !important;
  }
}

/* Homepage: Michelin star a bit higher still */
.hero-video .hero-michelin {
  margin-top: 0 !important;
  transform: translateY(-8px) !important;
}
@media (max-width: 680px) {
  .hero-video .hero-michelin {
    margin-top: 0 !important;
    transform: translateY(-8px) !important;
  }
}

/* Homepage: center logo slightly larger */
.hero-video .hero-overlay .hero-logo,
.hero-slider.hero-video .hero-overlay .hero-logo {
  width: 132px !important;
  max-width: 132px !important;
}
@media (max-width: 680px) {
  .hero-video .hero-overlay .hero-logo,
  .hero-slider.hero-video .hero-overlay .hero-logo {
    width: 112px !important;
    max-width: 112px !important;
  }
}

/* Media page */
.media-page .nav-links a.active,
#media-page .nav-links a.active { color: var(--ivory); }
#media-page .page-banner::before {
  background-position: center center;
}
.media-section {
  padding-top: clamp(78px, 9vw, 126px);
}
.media-intro {
  max-width: 760px;
  margin: 0 auto clamp(42px, 6vw, 76px);
  text-align: center;
}
.media-intro .body-text {
  margin-left: auto;
  margin-right: auto;
}
.media-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.media-card {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(24px, 3vw, 34px) 0;
  border-top: 1px solid rgba(176,141,87,.26);
  color: var(--ivory);
}
.media-card:last-child {
  border-bottom: 1px solid rgba(176,141,87,.26);
}
.media-source {
  color: var(--copper);
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  line-height: 1.6;
}
.media-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.18;
  font-weight: 400;
  color: var(--ivory);
}
.media-link {
  justify-self: end;
  white-space: nowrap;
  color: var(--ivory-mute);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 8px;
}
.media-card:hover h3,
.media-card:hover .media-link { color: var(--copper); }

/* Footer Explore alignment */
.footer-col:nth-child(3) {
  text-align: center;
}
.footer-col:nth-child(3) ul {
  display: inline-block;
  text-align: center;
}
.footer-col:nth-child(3) li {
  text-align: center;
}
@media (max-width: 760px) {
  .media-card {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .media-link { justify-self: center; }
}

/* Five-item nav spacing */
.nav-links {
  gap: clamp(24px, 3.1vw, 48px);
}
@media (min-width: 901px) and (max-width: 1180px) {
  .nav-links { gap: 24px; }
  .nav-links a, .nav-cta { letter-spacing: .28em; }
}

/* Media page refinements */
#media-page .page-banner::before {
  background-position: center 42% !important;
}
#media-page .media-card .jp-title {
  font-size: clamp(18px, 1.75vw, 26px);
  line-height: 1.35;
}
@media (max-width: 680px) {
  #media-page .page-banner::before {
    background-position: center center !important;
  }
  #media-page .media-card .jp-title {
    font-size: 20px;
  }
}

/* Media page: clearer centered article sections */
#media-page .media-section {
  padding-top: clamp(68px, 7vw, 104px);
}
#media-page .media-intro {
  max-width: 820px;
  text-align: center !important;
}
#media-page .media-intro .body-text {
  max-width: 620px;
  text-align: center !important;
}
#media-page .media-list {
  width: min(860px, calc(100vw - 48px));
  max-width: 860px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 18px;
}
#media-page .media-card {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: clamp(30px, 4vw, 46px) clamp(22px, 4vw, 54px);
  border: 1px solid rgba(176,141,87,.28);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}
#media-page .media-card + .media-card {
  margin-top: 4px;
}
#media-page .media-card:last-child {
  border-bottom: 1px solid rgba(176,141,87,.28);
}
#media-page .media-source {
  display: block;
  margin: 0 auto;
  color: var(--copper);
  font-size: 10px;
  letter-spacing: .36em;
  text-transform: uppercase;
  line-height: 1.6;
}
#media-page .media-card h3 {
  max-width: 720px;
  margin: 0 auto !important;
  font-family: var(--serif) !important;
  font-weight: 400 !important;
  font-size: clamp(25px, 2.45vw, 40px) !important;
  line-height: 1.2 !important;
  color: var(--ivory) !important;
}
#media-page .media-link {
  justify-self: center !important;
  margin: 4px auto 0;
  color: var(--ivory-mute);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 8px;
}
#media-page .media-card .jp-title {
  font-size: clamp(18px, 1.55vw, 25px) !important;
  line-height: 1.45 !important;
  letter-spacing: .02em;
}
@media (max-width: 680px) {
  #media-page .media-list {
    width: min(100%, calc(100vw - 30px));
  }
  #media-page .media-card {
    padding: 28px 18px;
  }
  #media-page .media-card h3 {
    font-size: 24px !important;
  }
  #media-page .media-card .jp-title {
    font-size: 18px !important;
  }
}
