:root {
  --ink: #1c1715;
  --muted: #746960;
  --cream: #fffaf1;
  --ivory: #fffdf8;
  --linen: #f4ead7;
  --red: #9b1f2a;
  --red-dark: #64131b;
  --green: #4d6f42;
  --green-soft: #eef4e8;
  --gold: #c7a55c;
  --blue: #25364f;
  --shadow: 0 28px 90px rgba(47, 30, 20, 0.13);
  --line: rgba(100, 19, 27, 0.14);
  --radius: 8px;
  --max: 1220px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(199, 165, 92, 0.18), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(77, 111, 66, 0.13), transparent 26%),
    linear-gradient(180deg, var(--ivory), var(--cream) 46%, #f7eddc);
  font-family: "Segoe UI", Candara, Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(155, 31, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 111, 66, 0.03) 1px, transparent 1px);
  background-size: 86px 86px;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1;
}

.scroll-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--green));
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  width: min(calc(100% - 32px), 1240px);
  min-height: var(--header);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 16px;
  transform: translateX(-50%);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(199, 165, 92, 0.32);
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(47, 30, 20, 0.12);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 14px 44px rgba(47, 30, 20, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-emblem {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  overflow: visible;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.brand-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(28, 23, 21, 0.16));
}

.brand strong {
  display: block;
  color: var(--red-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  color: rgba(28, 23, 21, 0.72);
  background: rgba(244, 234, 215, 0.58);
  border-radius: 8px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--red-dark);
  background: var(--ivory);
}

.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--ivory);
  background: var(--red);
  border-radius: 6px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(155, 31, 42, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--ivory);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--red-dark);
}

.button,
.sound-button,
.play-button {
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.button,
.sound-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 6px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.sound-button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ivory);
  background: var(--red);
  box-shadow: 0 18px 44px rgba(155, 31, 42, 0.18);
}

.button-soft,
.sound-button {
  color: var(--red-dark);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(199, 165, 92, 0.36);
}

.sound-button span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(199, 165, 92, 0.18);
}

.sound-button.is-on span {
  background: var(--green);
  animation: pulse 900ms ease-in-out infinite alternate;
}

@keyframes pulse {
  from { box-shadow: 0 0 0 4px rgba(77, 111, 66, 0.14); }
  to { box-shadow: 0 0 0 12px rgba(77, 111, 66, 0.24); }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
  background: #17110e;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 700ms ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 23, 21, 0.86), rgba(28, 23, 21, 0.48) 43%, rgba(28, 23, 21, 0.08)),
    linear-gradient(0deg, rgba(28, 23, 21, 0.72), rgba(28, 23, 21, 0.06) 52%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(770px, calc(100% - 40px));
  margin: 0 0 150px max(20px, 7vw);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2ca73;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(4rem, 10vw, 9rem);
  text-shadow: 0 14px 48px rgba(0, 0, 0, 0.34);
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.14rem, 2.1vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-art {
  position: absolute;
  z-index: 3;
  right: max(24px, 7vw);
  top: 23%;
  width: min(310px, 25vw);
  aspect-ratio: 1;
  pointer-events: none;
}

.hero-rooster {
  position: relative;
  z-index: 3;
  width: min(340px, 100%);
  margin-left: auto;
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.38));
}

.graphic-line {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 253, 248, 0.52);
  border-radius: 999px;
}

.line-a {
  z-index: 1;
  right: 18px;
  top: 48px;
  width: 280px;
  height: 280px;
  border-color: rgba(199, 165, 92, 0.72);
}

.line-b {
  z-index: 2;
  right: 78px;
  top: 96px;
  width: 220px;
  height: 220px;
  border-color: rgba(255, 253, 248, 0.38);
}

.booking-dock {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  width: min(calc(100% - 40px), 1120px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  transform: translateX(-50%);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(199, 165, 92, 0.36);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.booking-dock a {
  padding: 22px 24px;
  border-right: 1px solid rgba(199, 165, 92, 0.22);
}

.booking-dock a:last-child {
  border-right: 0;
}

.booking-dock span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.booking-dock strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--red-dark);
  font-size: 1.2rem;
}

.identity-ribbon {
  display: flex;
  gap: 0;
  overflow: hidden;
  color: var(--red-dark);
  background: var(--ivory);
  border-bottom: 1px solid rgba(199, 165, 92, 0.24);
}

.identity-ribbon span {
  flex: 1 0 auto;
  padding: 18px 28px;
  border-right: 1px solid rgba(199, 165, 92, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  white-space: nowrap;
}

.section {
  padding: 112px max(20px, 6vw);
}

.section-kicker {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-kicker.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker h2,
.cuisine-copy h2,
.live-copy h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
}

.section-kicker p:not(.eyebrow),
.cuisine-copy p,
.live-copy p {
  color: var(--muted);
  font-size: 1.12rem;
}

.experience-section {
  background: linear-gradient(180deg, var(--cream), var(--ivory));
}

.experience-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.95fr;
  grid-template-rows: 260px 260px;
  gap: 18px;
}

.experience-card,
.experience-image,
.dish-card,
.reservation-form,
.contact-card {
  border: 1px solid rgba(199, 165, 92, 0.3);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 22px 70px rgba(47, 30, 20, 0.08);
}

.experience-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.experience-card.tall {
  grid-row: span 2;
  display: grid;
  align-content: end;
}

.experience-card.accent {
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(155, 31, 42, 0.95), rgba(100, 19, 27, 0.96)),
    var(--red);
}

.experience-card.accent span {
  color: #f2ca73;
  font-weight: 950;
  text-transform: uppercase;
}

.experience-card.accent strong {
  display: block;
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.1;
}

.experience-card h3 {
  margin-bottom: 12px;
  color: var(--red-dark);
  font-size: 1.65rem;
}

.experience-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.experience-image {
  grid-row: span 2;
  overflow: hidden;
  padding: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.mini-illustration {
  width: 92px;
  height: 92px;
  display: block;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--linen);
}

.rooster-mini {
  background: url("assets/identite-visuelle.png") 50% 25% / 260% auto;
  border: 1px solid rgba(155, 31, 42, 0.26);
}

.note-mini {
  position: relative;
  background:
    radial-gradient(circle at 62% 70%, var(--red) 0 9px, transparent 10px),
    linear-gradient(var(--blue), var(--blue)) 60% 24% / 5px 48px no-repeat,
    linear-gradient(70deg, transparent 46%, var(--gold) 47% 53%, transparent 54%),
    var(--green-soft);
}

.cuisine-section {
  background: var(--ivory);
}

.cuisine-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(199, 165, 92, 0.16);
}

.photo-stack {
  position: relative;
  min-height: 620px;
}

.photo-stack figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ivory);
  border: 1px solid rgba(199, 165, 92, 0.34);
  box-shadow: var(--shadow);
  transition: transform 250ms ease;
}

.photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-main {
  inset: 0 12% 14% 0;
}

.photo-side {
  right: 0;
  bottom: 0;
  width: 45%;
  height: 44%;
}

.photo-stack figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  color: var(--red-dark);
  background: rgba(255, 253, 248, 0.88);
  border-radius: 6px;
  font-weight: 900;
}

.nice-section {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.2), rgba(255, 253, 248, 0.92) 58%, var(--ivory)),
    #eaf5f1;
}

.nice-visual {
  min-height: 540px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.06), rgba(255, 253, 248, 0.18)),
    url("assets/filigrane-legumes-mer.webp") center / cover no-repeat;
  animation: slowDrift 18s ease-in-out infinite alternate;
}

.nice-copy {
  display: grid;
  align-content: center;
  padding: max(42px, 7vw);
}

.nice-copy h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
}

.nice-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

@keyframes slowDrift {
  from { transform: scale(1.02) translateX(-10px); }
  to { transform: scale(1.08) translateX(12px); }
}

.menu-section {
  background:
    linear-gradient(180deg, #fffdf8, #f7ecd8);
}

.menu-tabs {
  max-width: 620px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(244, 234, 215, 0.76);
  border: 1px solid rgba(199, 165, 92, 0.28);
  border-radius: 8px;
}

.menu-tab {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.menu-tab.is-active {
  color: var(--ivory);
  background: var(--red);
  box-shadow: 0 12px 32px rgba(155, 31, 42, 0.18);
}

.menu-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: start;
}

.board-photo {
  position: sticky;
  top: 110px;
  margin: 0;
  padding: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.board-photo img {
  width: 100%;
  border-radius: 6px;
}

.menu-panel {
  min-height: 560px;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 165, 92, 0.18), transparent 32%),
    var(--ivory);
  border: 1px solid rgba(199, 165, 92, 0.32);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-category {
  display: none;
}

.menu-category.is-active {
  display: grid;
  gap: 14px;
  animation: fadeUp 260ms ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dish-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.dish-card:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 31, 42, 0.24);
  box-shadow: 0 28px 80px rgba(47, 30, 20, 0.14);
}

.dish-card figure {
  overflow: hidden;
  width: 150px;
  height: 112px;
  margin: 0;
  border-radius: 6px;
  background: var(--linen);
}

.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease, filter 480ms ease;
}

.dish-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.dish-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  opacity: 0.05;
  background: url("assets/filigrane-gastronomie.svg") center / contain no-repeat;
  pointer-events: none;
}

.dish-card h3 {
  margin-bottom: 6px;
  color: var(--red-dark);
  font-size: 1.35rem;
}

.dish-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.dish-card strong {
  color: var(--red);
  font-size: 1.15rem;
}

.live-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  min-height: 740px;
  background: var(--ink);
}

.live-media {
  position: relative;
  overflow: hidden;
}

.live-media img {
  width: 100%;
  height: 100%;
  min-height: 740px;
  object-fit: cover;
}

.live-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(28, 23, 21, 0.18));
}

.play-button {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 34px;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
}

.play-button span {
  margin-left: 5px;
  border-left: 20px solid var(--red);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.equalizer {
  position: absolute;
  z-index: 2;
  left: 132px;
  bottom: 42px;
  height: 60px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.equalizer i {
  width: 10px;
  height: 18px;
  border-radius: 8px 8px 0 0;
  background: var(--gold);
}

.live-media.is-playing .equalizer i {
  animation: equalize 680ms ease-in-out infinite alternate;
}

.live-media.is-playing .equalizer i:nth-child(2) { animation-delay: 100ms; }
.live-media.is-playing .equalizer i:nth-child(3) { animation-delay: 200ms; }
.live-media.is-playing .equalizer i:nth-child(4) { animation-delay: 60ms; }
.live-media.is-playing .equalizer i:nth-child(5) { animation-delay: 150ms; }

@keyframes equalize {
  from { transform: scaleY(0.48); }
  to { transform: scaleY(2.6); }
}

.live-copy {
  display: grid;
  align-content: center;
  padding: max(40px, 7vw);
  color: var(--ivory);
  background:
    radial-gradient(circle at 100% 10%, rgba(199, 165, 92, 0.18), transparent 26%),
    linear-gradient(180deg, #241916, #14100e);
}

.live-copy h2 {
  color: var(--ivory);
}

.live-copy p {
  color: rgba(255, 253, 248, 0.72);
}

.reservation-section {
  background: var(--ivory);
}

.reservation-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
}

.reservation-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.field-row {
  display: grid;
  gap: 7px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(100, 19, 27, 0.18);
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(199, 165, 92, 0.26);
  border-color: var(--gold);
}

.form-status {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--green);
  font-weight: 900;
}

.contact-card {
  overflow: hidden;
}

.contact-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-card div {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.contact-card h3 {
  margin-bottom: 0;
  color: var(--red-dark);
  font-size: 1.65rem;
}

.contact-card a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--red-dark);
  background: var(--cream);
  border: 1px solid rgba(199, 165, 92, 0.24);
  border-radius: 6px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(20px, 6vw);
  color: var(--red-dark);
  background: var(--cream);
  border-top: 1px solid rgba(199, 165, 92, 0.24);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 98px;
    display: none;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid rgba(199, 165, 92, 0.3);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-art {
    display: none;
  }

  .experience-grid,
  .cuisine-layout,
  .nice-section,
  .menu-layout,
  .live-section,
  .reservation-layout {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-rows: auto;
  }

  .experience-card.tall,
  .experience-image {
    grid-row: auto;
  }

  .experience-image {
    min-height: 520px;
  }

  .board-photo {
    position: static;
  }

  .nice-section {
    min-height: auto;
  }

  .nice-visual {
    min-height: 420px;
    order: 2;
  }

  .nice-copy {
    order: 1;
  }

  .live-media img {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand small {
    display: none;
  }

  .brand-emblem {
    width: 46px;
    height: 46px;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin: 0 16px 210px;
  }

  .booking-dock {
    grid-template-columns: 1fr;
    bottom: 14px;
  }

  .booking-dock a {
    padding: 15px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(199, 165, 92, 0.22);
  }

  .booking-dock a:last-child {
    border-bottom: 0;
  }

  .identity-ribbon {
    overflow-x: auto;
  }

  .section {
    padding: 74px 18px;
  }

  .photo-stack {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .photo-stack figure,
  .photo-main,
  .photo-side {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
  }

  .photo-stack img {
    aspect-ratio: 4 / 3;
  }

  .menu-tabs,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .menu-panel {
    padding: 18px;
  }

  .dish-card {
    grid-template-columns: 1fr;
  }

  .dish-card figure {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .nice-visual {
    min-height: 320px;
  }

  .live-copy {
    padding: 74px 18px;
  }

  .site-footer {
    display: grid;
  }
}

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

  .hero-media img,
  .photo-stack figure {
    transform: none !important;
  }
}

/* Botanical and gastronomic signature */

.hero-media img {
  object-position: 58% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28, 23, 21, 0.88), rgba(28, 23, 21, 0.52) 42%, rgba(28, 23, 21, 0.05)),
    linear-gradient(0deg, rgba(28, 23, 21, 0.52), rgba(28, 23, 21, 0.02) 55%);
}

.hero-copy {
  padding: 28px;
  background: linear-gradient(135deg, rgba(28, 23, 21, 0.44), rgba(28, 23, 21, 0.16));
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.hero-art {
  top: 17%;
  width: min(370px, 29vw);
  display: grid;
  place-items: center;
}

.identity-ribbon {
  position: relative;
}

.identity-ribbon::before,
.identity-ribbon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 120px;
  height: 74px;
  transform: translateY(-50%);
  opacity: 0.28;
  background: url("assets/fleurs-berlioz.svg") center / contain no-repeat;
  pointer-events: none;
}

.identity-ribbon::before {
  left: 18px;
}

.identity-ribbon::after {
  right: 18px;
  transform: translateY(-50%) scaleX(-1);
}

.section {
  overflow: hidden;
}

.experience-section,
.cuisine-section,
.menu-section,
.reservation-section {
  position: relative;
}

.experience-section::before,
.menu-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  pointer-events: none;
  opacity: 0.12;
  background: url("assets/filigrane-gastronomie.svg") center / contain no-repeat;
}

.experience-section::before {
  right: -120px;
  top: 90px;
}

.menu-section::before {
  left: -150px;
  top: 120px;
}

.cuisine-section::before {
  content: "";
  position: absolute;
  right: max(18px, 5vw);
  top: 72px;
  width: min(420px, 34vw);
  height: min(420px, 34vw);
  pointer-events: none;
  opacity: 0.11;
  background: url("assets/filigrane-gastronomie.svg") center / contain no-repeat;
}

.section-kicker,
.experience-grid,
.cuisine-layout,
.menu-tabs,
.menu-layout,
.reservation-layout {
  position: relative;
  z-index: 1;
}

.section-kicker::after {
  content: "";
  display: block;
  width: 142px;
  height: 42px;
  margin-top: 24px;
  background: url("assets/fleurs-berlioz.svg") left center / contain no-repeat;
}

.section-kicker.centered::after {
  margin-right: auto;
  margin-left: auto;
}

.experience-card::before {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -18px;
  width: 160px;
  height: 96px;
  opacity: 0.18;
  background: url("assets/fleurs-berlioz.svg") center / contain no-repeat;
}

.experience-card > * {
  position: relative;
  z-index: 1;
}

.experience-card.accent::before {
  opacity: 0.32;
  filter: brightness(1.2);
}

.photo-main::before,
.board-photo::after,
.contact-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: url("assets/filigrane-gastronomie.svg") center / contain no-repeat;
}

.photo-main::before {
  right: 18px;
  bottom: 18px;
  width: 220px;
  height: 220px;
  z-index: 2;
  opacity: 0.16;
}

.board-photo::after {
  right: 18px;
  bottom: 18px;
  width: 190px;
  height: 190px;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.contact-card {
  position: relative;
}

.contact-card::before {
  inset: 12px;
  z-index: 2;
  opacity: 0.09;
}

.menu-panel {
  position: relative;
  overflow: hidden;
}

.menu-panel::before {
  content: "";
  position: absolute;
  right: -54px;
  top: -18px;
  width: 230px;
  height: 138px;
  opacity: 0.2;
  background: url("assets/fleurs-berlioz.svg") center / contain no-repeat;
}

.menu-panel > * {
  position: relative;
  z-index: 1;
}

.live-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(199, 165, 92, 0.16), transparent 24%),
    linear-gradient(135deg, #fffdf8, #eef4e8);
}

.live-media {
  border-right: 1px solid rgba(199, 165, 92, 0.26);
}

.live-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  width: min(330px, 46%);
  height: 180px;
  background: url("assets/pop-ondes.svg") center / contain no-repeat;
  opacity: 0.88;
  filter: drop-shadow(0 14px 24px rgba(28, 23, 21, 0.18));
}

.live-media::after {
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.02), rgba(255, 253, 248, 0.18));
}

.live-copy {
  color: var(--ink);
  background:
    url("assets/filigrane-gastronomie.svg") calc(100% + 170px) 40px / 470px auto no-repeat,
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(238, 244, 232, 0.9));
}

.live-copy h2 {
  color: var(--ink);
}

.live-copy p {
  color: var(--muted);
}

.live-copy .button-primary {
  background: linear-gradient(135deg, var(--red), #d43b55);
}

.play-button {
  background: var(--red);
}

.play-button span {
  border-left-color: var(--ivory);
}

.equalizer i {
  background: linear-gradient(180deg, #d43b55, var(--gold));
}

@media (max-width: 1120px) {
  .hero::before,
  .cuisine-section::before {
    opacity: 0.18;
  }
}

@media (max-width: 760px) {
  .hero-copy {
    padding: 20px;
  }

  .hero::before,
  .identity-ribbon::before,
  .identity-ribbon::after,
  .cuisine-section::before {
    display: none;
  }

  .live-media::before {
    width: 220px;
    right: 14px;
    bottom: 96px;
  }
}

/* Hero V5: clean signature with the real rooster */
.hero::before {
  content: "";
  position: absolute;
  inset: auto max(18px, 5vw) 118px auto;
  z-index: 2;
  width: min(520px, 42vw);
  height: min(520px, 42vw);
  pointer-events: none;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 253, 248, 0.08), transparent 62%),
    url("assets/filigrane-gastronomie.svg") center / 82% auto no-repeat;
  opacity: 1;
  mix-blend-mode: normal;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(28, 23, 21, 0.84), rgba(28, 23, 21, 0.42) 43%, rgba(28, 23, 21, 0.08)),
    radial-gradient(circle at 73% 44%, rgba(199, 165, 92, 0.2), transparent 25%);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(28, 23, 21, 0.56), rgba(28, 23, 21, 0.02) 56%);
}

.hero-media img {
  object-position: 64% center;
  filter: saturate(1.08) contrast(1.02);
}

.hero-copy,
.hero-art,
.booking-dock {
  z-index: 4;
}

.hero-copy {
  width: min(700px, calc(100% - 40px));
  background: linear-gradient(135deg, rgba(28, 23, 21, 0.5), rgba(28, 23, 21, 0.22));
  border-color: rgba(255, 253, 248, 0.24);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.16);
}

.hero-art {
  right: max(18px, 5vw);
  top: 19%;
  width: min(400px, 32vw);
}

.hero-rooster {
  width: min(380px, 100%);
  transform: rotate(2deg);
}

.line-a {
  right: -6px;
  top: 40px;
  width: 330px;
  height: 330px;
  border-color: rgba(199, 165, 92, 0.76);
}

.line-b {
  right: 58px;
  top: 108px;
  width: 210px;
  height: 210px;
  border-color: rgba(255, 253, 248, 0.34);
}

.line-a::before,
.line-a::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: url("assets/fleurs-berlioz.svg") center / 170px auto no-repeat;
}

.line-a::before {
  left: -26px;
  top: 32px;
}

.line-a::after {
  right: -22px;
  bottom: 34px;
  transform: scaleX(-1);
}

.brand-emblem {
  width: 66px;
  height: 58px;
}

@media (max-width: 1120px) {
  .hero::before {
    width: min(360px, 38vw);
    height: min(360px, 38vw);
  }
}

@media (max-width: 760px) {
  .hero::before,
  .hero::after,
  .hero-art {
    display: none;
  }

  .hero-copy {
    background: linear-gradient(135deg, rgba(28, 23, 21, 0.62), rgba(28, 23, 21, 0.36));
  }
}

/* Hero V6: premium responsive composition */
body {
  overflow-x: hidden;
}

.hero-art {
  display: none !important;
}

.hero::before {
  right: max(18px, 5vw);
  bottom: 82px;
  width: min(360px, 24vw);
  height: min(360px, 24vw);
  border: 0;
  background: url("assets/filigrane-gastronomie.svg") center / contain no-repeat;
  opacity: 0.14;
  mix-blend-mode: screen;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(28, 23, 21, 0.88), rgba(28, 23, 21, 0.48) 44%, rgba(28, 23, 21, 0.05)),
    radial-gradient(circle at 78% 48%, rgba(199, 165, 92, 0.14), transparent 26%);
}

.hero-copy {
  width: min(720px, calc(100% - 44px));
  margin-bottom: clamp(132px, 15vh, 172px);
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 7.25rem);
}

.hero-signature {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  padding: 9px 13px 9px 10px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(199, 165, 92, 0.34);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
}

.hero-signature-mark {
  width: 62px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.hero-signature-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 7px 10px rgba(28, 23, 21, 0.18));
}

.hero-signature strong,
.hero-signature small {
  display: block;
}

.hero-signature strong {
  color: var(--red-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.05;
}

.hero-signature small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

@media (min-width: 1121px) and (max-width: 1320px) {
  .site-header {
    width: min(calc(100% - 24px), 1180px);
    grid-template-columns: minmax(220px, 1fr) auto auto;
    gap: 14px;
  }

  .brand-emblem {
    width: 56px;
    height: 52px;
  }

  .main-nav a {
    padding: 9px 10px;
  }

  .header-cta {
    padding: 0 13px;
  }
}

@media (max-width: 1120px) {
  .hero {
    min-height: 980px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero::before {
    width: 320px;
    height: 320px;
    right: 22px;
    bottom: 220px;
  }

  .hero-copy {
    margin: 0 20px 248px;
  }

  .site-header {
    width: calc(100% - 24px);
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: clamp(3.4rem, 13vw, 6.6rem);
  }

  .hero {
    min-height: 940px;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin: 0 16px 258px;
  }

  .booking-dock {
    width: calc(100% - 32px);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 8px 10px;
  }

  .brand {
    gap: 9px;
    min-width: 0;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand-emblem {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    top: 78px;
    left: 8px;
    right: 8px;
  }

  .hero {
    min-height: 1000px;
    align-items: end;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-copy {
    width: calc(100% - 24px);
    margin: 0 12px 306px;
    padding: 18px;
  }

  .hero-signature {
    gap: 9px;
    margin-bottom: 16px;
    padding: 8px 10px 8px 8px;
  }

  .hero-signature-mark {
    width: 48px;
    height: 42px;
  }

  .hero-signature small {
    font-size: 0.72rem;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .sound-button {
    width: 100%;
  }

  .booking-dock {
    width: calc(100% - 24px);
    bottom: 12px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(3rem, 18vw, 4.9rem);
  }

  .hero {
    min-height: 1040px;
  }

  .hero-copy {
    margin-bottom: 322px;
  }

  .hero-signature {
    align-items: flex-start;
  }

  .booking-dock strong {
    font-size: 1rem;
  }
}

/* Hero V7: cuisine first, live music as a subtle layer */
.hero::before {
  right: max(18px, 5vw);
  bottom: 108px;
  width: 360px;
  height: 190px;
  background: url("assets/instruments-pop.svg") center / contain no-repeat;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(28, 23, 21, 0.82), rgba(28, 23, 21, 0.32) 39%, rgba(28, 23, 21, 0.03)),
    linear-gradient(0deg, rgba(28, 23, 21, 0.56), rgba(28, 23, 21, 0.03) 58%);
}

.hero-media img {
  object-position: 62% center;
}

.hero-copy {
  width: min(560px, calc(100% - 44px));
  margin-bottom: 150px;
  padding: 24px 26px 26px;
  background: linear-gradient(135deg, rgba(28, 23, 21, 0.46), rgba(28, 23, 21, 0.18));
  backdrop-filter: blur(6px);
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 118px;
  height: 64px;
  pointer-events: none;
  background: url("assets/instruments-pop.svg") center / contain no-repeat;
  opacity: 0.18;
}

.hero h1 {
  max-width: 470px;
  margin-bottom: 24px;
  color: #fffdf8;
  font-family: Constantia, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 5rem;
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-stroke: 0;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.hero h1 span {
  display: block;
}

.hero-copy p:not(.eyebrow) {
  max-width: 520px;
  font-size: 1.12rem;
}

.hero-signature {
  display: none;
}

.hero-music-cue {
  position: fixed;
  z-index: 44;
  right: max(18px, 6vw);
  top: 112px;
  width: 245px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transform-origin: right center;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.1);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  transition: opacity 340ms ease, transform 340ms ease;
}

.hero-music-cue img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.hero-music-cue::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(28, 23, 21, 0.34)),
    url("assets/instruments-pop.svg") right 10px bottom 8px / 118px auto no-repeat;
  opacity: 0.82;
}

body.ambience-active .hero-music-cue {
  opacity: 0.96;
  transform: translateY(0) scale(1);
}

body.ambience-active .hero::before {
  opacity: 0.34;
  animation: musicFloat 2.8s ease-in-out infinite alternate;
}

@keyframes musicFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

.live-media img {
  object-position: 45% center;
}

.live-media::before {
  right: 20px;
  bottom: 22px;
  width: min(280px, 34%);
  background-image: url("assets/instruments-pop.svg");
  opacity: 0.78;
}

.live-media::after {
  background: linear-gradient(90deg, rgba(28, 23, 21, 0.12), rgba(28, 23, 21, 0.02));
}

.live-copy {
  background:
    url("assets/instruments-pop.svg") calc(100% + 130px) 64px / 380px auto no-repeat,
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(238, 244, 232, 0.92));
}

.brand strong {
  font-family: Constantia, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  letter-spacing: 0;
  text-transform: none;
}

@media (min-width: 1121px) {
  .hero-copy {
    margin-left: max(20px, 6vw);
  }
}

@media (max-width: 1120px) {
  .hero-copy {
    width: min(600px, calc(100% - 40px));
    margin: 0 20px 230px;
  }

  .hero h1 {
    font-size: 4.9rem;
  }

  .hero-music-cue {
    width: 210px;
    right: 24px;
    top: 110px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 940px;
    display: block;
    padding: 88px 12px 286px;
  }

  .hero-copy {
    width: 100%;
    margin: 0;
    padding: 18px;
  }

  .hero-copy::after {
    width: 84px;
    height: 48px;
    opacity: 0.16;
  }

  .hero h1 {
    font-size: 3.85rem;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-music-cue {
    position: absolute;
    top: auto;
    bottom: 238px;
    right: 14px;
    width: 118px;
    border-radius: 6px;
  }

  .hero-music-cue::after {
    background:
      linear-gradient(180deg, transparent 45%, rgba(28, 23, 21, 0.4)),
      url("assets/instruments-pop.svg") right 5px bottom 4px / 64px auto no-repeat;
  }

  .live-media img {
    min-height: 430px;
    object-position: 42% center;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 980px;
    padding-bottom: 300px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-copy {
    margin-bottom: 0;
  }
}

/* Hero V12: image first, sharper typography, music as an integrated cutout */
:root {
  --font-sans: Aptos, "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: Constantia, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.brand strong,
.booking-dock strong,
.menu-card h3,
.live-copy h2 {
  font-family: var(--font-display);
}

.brand strong {
  font-family: var(--font-display);
  font-weight: 650;
}

.main-nav a,
.button,
.sound-button,
.header-cta,
input,
select,
textarea,
button {
  font-family: var(--font-sans);
}

.hero {
  min-height: 100svh;
  display: block;
  padding: 0;
}

.hero-media img {
  object-position: 58% center;
  filter: saturate(1.04) contrast(1.02);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 15, 12, 0.42), rgba(20, 15, 12, 0.12) 35%, rgba(20, 15, 12, 0.03) 72%, rgba(20, 15, 12, 0.2)),
    linear-gradient(0deg, rgba(20, 15, 12, 0.2), rgba(20, 15, 12, 0.02) 58%);
}

.hero::before,
.hero::after,
.hero-copy::after,
.hero-music-cue {
  display: none !important;
}

.hero-title-lockup,
.hero-top-actions,
.hero-sound-zone,
.hero-guitarist,
.booking-dock {
  z-index: 4;
}

.hero-title-lockup {
  position: absolute;
  top: 128px;
  left: max(24px, 6vw);
  width: min(560px, 42vw);
  margin: 0;
  padding: 0;
  color: #fffdf8;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-title-lockup .eyebrow {
  margin-bottom: 14px;
  color: #f0ca74;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.hero-title-lockup h1 {
  max-width: 520px;
  margin: 0 0 18px;
  color: #fffdf8;
  font-family: var(--font-display);
  font-size: 5.15rem;
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-stroke: 0;
  text-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
}

.hero-title-lockup h1 span {
  display: block;
}

.hero-title-lockup p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: 1.16rem;
  font-weight: 550;
  line-height: 1.55;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.44);
}

.hero-top-actions {
  position: absolute;
  top: 128px;
  right: max(24px, 6vw);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-top-actions .button {
  width: auto;
  min-width: 142px;
  min-height: 48px;
  padding: 13px 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.hero-top-actions .button-soft {
  background: rgba(255, 253, 248, 0.92);
}

.hero-sound-zone {
  position: absolute;
  left: max(24px, 6vw);
  bottom: 124px;
}

.hero-sound-zone .sound-button {
  width: auto;
  color: #fffdf8;
  background: rgba(26, 20, 16, 0.55);
  border-color: rgba(255, 253, 248, 0.28);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.hero-guitarist {
  position: absolute;
  right: max(6px, 4vw);
  bottom: 110px;
  width: 330px;
  max-width: 22vw;
  pointer-events: none;
  opacity: 0;
  transform: translateX(32px) scale(0.94);
  transform-origin: bottom right;
  transition: opacity 360ms ease, transform 420ms ease;
}

.hero-guitarist img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.42));
}

body.ambience-active .hero-guitarist {
  opacity: 1;
  transform: translateX(0) scale(1);
}

body.ambience-active .hero-sound-zone .sound-button {
  color: #123110;
  background: rgba(238, 244, 232, 0.94);
  border-color: rgba(77, 111, 66, 0.3);
}

@media (max-width: 1120px) {
  .hero {
    min-height: 920px;
  }

  .hero-title-lockup {
    top: 112px;
    width: min(500px, calc(100% - 48px));
  }

  .hero-title-lockup h1 {
    font-size: 4.4rem;
  }

  .hero-top-actions {
    top: 112px;
    right: 24px;
  }

  .hero-guitarist {
    width: 260px;
    max-width: 26vw;
    bottom: 160px;
  }

  .hero-sound-zone {
    bottom: 164px;
  }
}

@media (max-width: 820px) {
  .identity-ribbon {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .identity-ribbon span {
    min-width: 154px;
    flex: 0 0 auto;
  }

  .hero-title-lockup {
    top: 104px;
    left: 18px;
    width: min(430px, calc(100% - 36px));
  }

  .hero-title-lockup h1 {
    font-size: 3.45rem;
  }

  .hero-title-lockup p:not(.eyebrow) {
    max-width: 380px;
    font-size: 1rem;
  }

  .hero-top-actions {
    top: 104px;
    right: 18px;
    gap: 8px;
  }

  .hero-top-actions .button {
    min-width: 116px;
    min-height: 44px;
    padding: 11px 14px;
  }

  .hero-guitarist {
    width: 210px;
    max-width: none;
    right: 4px;
    bottom: 210px;
  }

  .hero-sound-zone {
    left: 18px;
    bottom: 230px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 940px;
  }

  .hero-media img {
    object-position: 60% center;
  }

  .hero-title-lockup {
    top: 94px;
    width: calc(100% - 36px);
  }

  .hero-title-lockup .eyebrow {
    margin-bottom: 10px;
  }

  .hero-title-lockup h1 {
    max-width: 330px;
    margin-bottom: 12px;
    font-size: 3rem;
  }

  .hero-title-lockup p:not(.eyebrow) {
    max-width: 330px;
  }

  .hero-top-actions {
    top: 330px;
    left: 18px;
    right: 18px;
    justify-content: flex-end;
  }

  .hero-sound-zone {
    left: 18px;
    right: 18px;
    bottom: 272px;
  }

  .hero-sound-zone .sound-button {
    width: auto;
    min-width: 190px;
  }

  .hero-guitarist {
    width: 172px;
    right: -14px;
    bottom: 292px;
  }

  .booking-dock {
    width: calc(100% - 24px);
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 980px;
  }

  .hero-title-lockup h1 {
    font-size: 2.72rem;
  }

  .hero-title-lockup p:not(.eyebrow) {
    max-width: 300px;
    font-size: 0.96rem;
  }

  .hero-top-actions {
    top: 338px;
  }

  .hero-top-actions .button {
    min-width: 0;
    flex: 1;
  }

  .hero-guitarist {
    width: 150px;
    bottom: 310px;
  }
}

/* V13: refined typography and local-produce storytelling */
.eyebrow,
.booking-dock span,
.experience-card.accent span {
  font-weight: 700;
}

.button,
.sound-button,
.header-cta,
.main-nav a,
.menu-tab,
.photo-stack figcaption,
.dish-card strong {
  font-weight: 700;
}

.photo-main.local-product {
  inset: 0 0 10% 18%;
}

.photo-main.local-product img {
  object-position: 52% 42%;
}

.photo-side.dish-accent {
  right: auto;
  left: 0;
  bottom: 0;
  width: 43%;
  height: 36%;
}

.photo-side.dish-accent img {
  object-position: center;
}

@media (max-width: 760px) {
  .photo-main.local-product,
  .photo-side.dish-accent {
    inset: auto;
    width: auto;
    height: auto;
  }

  .photo-main.local-product img {
    aspect-ratio: 3 / 4;
    object-position: 52% 42%;
  }

  .photo-side.dish-accent img {
    aspect-ratio: 4 / 3;
  }
}

/* V14: home hero photo */
.hero-media img {
  object-position: 63% center;
}

@media (max-width: 640px) {
  .hero-media img {
    object-position: 72% center;
  }
}

/* V15: handwritten welcome note */
.hero-title-lockup .hero-intro {
  max-width: 680px;
  margin-top: 8px;
}

.hero-title-lockup .hero-intro p {
  max-width: 670px;
  margin: 0 0 7px;
  color: rgba(255, 253, 248, 0.93);
  font-family: "Segoe Print", "Bradley Hand ITC", "Lucida Handwriting", "Brush Script MT", cursive;
  font-size: clamp(1.04rem, 1.28vw, 1.28rem);
  font-weight: 400;
  line-height: 1.42;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.56);
}

.hero-title-lockup .hero-intro strong {
  color: #fff4c8;
  font-weight: 700;
}

.chef-signature {
  display: block;
  width: max-content;
  margin-top: 12px;
  color: #f4cf78;
  font-family: "Segoe Script", "Snell Roundhand", "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: clamp(2.25rem, 3.7vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
  transform: rotate(-5deg);
  transform-origin: left center;
  text-shadow:
    0 2px 0 rgba(100, 19, 27, 0.28),
    0 18px 42px rgba(0, 0, 0, 0.48);
}

@media (min-width: 1121px) {
  .hero-title-lockup {
    width: min(690px, calc(100% - 520px));
  }
}

@media (max-width: 820px) {
  .hero-title-lockup .hero-intro p {
    max-width: 390px;
    font-size: 1.04rem;
    line-height: 1.42;
  }

  .chef-signature {
    font-size: 2.6rem;
  }
}

@media (max-width: 430px) {
  .hero-title-lockup .hero-intro p {
    max-width: 310px;
    margin-bottom: 7px;
    font-size: 0.95rem;
  }

  .chef-signature {
    margin-top: 12px;
    font-size: 2.28rem;
  }
}

@media (max-width: 640px) {
  .hero-top-actions {
    top: 540px;
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .hero-top-actions {
    top: 538px;
  }
}

/* V16: artistic Christian signature */
.chef-signature {
  display: block;
  width: min(440px, 60vw);
  height: auto;
  margin: 28px 0 0 -12px;
  object-fit: contain;
  transform: translateY(18px) rotate(-2deg);
  transform-origin: left center;
  filter:
    drop-shadow(0 2px 0 rgba(100, 19, 27, 0.28))
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.48));
}

@media (min-width: 1121px) {
  .hero {
    min-height: 850px;
  }

  .chef-signature {
    width: 425px;
    margin-top: 42px;
    transform: translateY(20px) rotate(-2deg);
  }
}

@media (max-width: 820px) {
  .chef-signature {
    width: min(350px, 78vw);
    margin-top: 22px;
    transform: translateY(12px) rotate(-2deg);
  }
}

@media (max-width: 430px) {
  .chef-signature {
    width: min(318px, 86vw);
    margin-top: 16px;
    transform: translateY(8px) rotate(-2deg);
  }

  .hero-top-actions {
    top: 614px;
  }

  .hero-sound-zone {
    bottom: 260px;
  }
}

/* V17: transparent reservation band */
.booking-dock {
  color: #fffdf8;
  background:
    linear-gradient(135deg, rgba(24, 17, 12, 0.24), rgba(24, 17, 12, 0.1));
  border-color: rgba(255, 253, 248, 0.24);
  box-shadow: 0 20px 68px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px) saturate(1.08);
}

.booking-dock a {
  border-color: rgba(255, 253, 248, 0.18);
}

.booking-dock span {
  color: #f4cf78;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.52);
}

.booking-dock strong {
  color: #fffdf8;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.62);
}

.booking-dock a:hover {
  background: rgba(255, 253, 248, 0.1);
}

@media (max-width: 760px) {
  .booking-dock a {
    border-bottom-color: rgba(255, 253, 248, 0.18);
  }
}

/* V18: slimmer reservation band */
.booking-dock a {
  padding: 14px 22px;
}

.booking-dock span {
  margin-bottom: 3px;
  font-size: 0.68rem;
}

.booking-dock strong {
  font-size: 1.05rem;
  line-height: 1.15;
}

@media (max-width: 760px) {
  .booking-dock a {
    padding: 10px 16px;
  }

  .booking-dock span {
    margin-bottom: 2px;
  }
}

@media (max-width: 430px) {
  .booking-dock strong {
    font-size: 0.94rem;
  }
}

/* V19: extra slim reservation band */
.booking-dock a {
  padding: 8px 18px;
}

.booking-dock span {
  margin-bottom: 1px;
  font-size: 0.6rem;
  line-height: 1.05;
}

.booking-dock strong {
  font-size: 0.96rem;
  line-height: 1.08;
}

@media (max-width: 760px) {
  .booking-dock a {
    padding: 7px 14px;
  }
}

@media (max-width: 430px) {
  .booking-dock strong {
    font-size: 0.88rem;
  }
}

/* V20: restaurant name as artwork */
.hero-title-lockup .hero-logo-title {
  max-width: min(390px, 100%);
  margin: 0 0 12px;
  font-size: 0;
  line-height: 0;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.hero-restaurant-logo {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 2px 0 rgba(0, 0, 0, 0.28))
    drop-shadow(0 18px 42px rgba(0, 0, 0, 0.48));
}

@media (max-width: 820px) {
  .hero-title-lockup .hero-logo-title {
    max-width: 260px;
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .hero-title-lockup .hero-logo-title {
    max-width: 238px;
  }
}

@media (max-width: 430px) {
  .hero-title-lockup .hero-logo-title {
    max-width: 226px;
  }

  .hero-top-actions {
    top: 662px;
  }
}

@media (min-width: 1121px) {
  .hero {
    min-height: 880px;
  }
}

/* V21: header brand wordmark image */
.brand-wordmark {
  display: block;
  width: 92px;
  height: auto;
  margin: 0 0 1px;
  filter: drop-shadow(0 1px 0 rgba(255, 253, 248, 0.45));
}

@media (max-width: 760px) {
  .brand-wordmark {
    width: 80px;
  }
}

/* V22: polished, restaurant-style header */
.site-header {
  width: min(calc(100% - 30px), 1270px);
  min-height: 104px;
  grid-template-columns: 380px minmax(0, 1fr) auto;
  gap: 26px;
  padding: 11px 18px 11px 24px;
  background:
    linear-gradient(105deg, rgba(255, 250, 241, 0.94), rgba(244, 234, 215, 0.88));
  border: 2px solid rgba(255, 253, 248, 0.9);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(199, 165, 92, 0.28),
    0 22px 60px rgba(28, 23, 21, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(112%);
}

.site-header.is-scrolled {
  min-height: 86px;
  background:
    linear-gradient(105deg, rgba(255, 250, 241, 0.97), rgba(244, 234, 215, 0.94));
  box-shadow:
    0 0 0 1px rgba(199, 165, 92, 0.24),
    0 14px 38px rgba(28, 23, 21, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.brand {
  position: relative;
  gap: 16px;
  padding-right: 38px;
}

.brand::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background: linear-gradient(180deg, transparent, rgba(199, 165, 92, 0.86), transparent);
}

.brand-emblem {
  width: 74px;
  height: 70px;
}

.brand-wordmark {
  width: 118px;
  margin-bottom: 2px;
}

.brand small {
  margin-top: 0;
  color: rgba(100, 75, 58, 0.7);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.main-nav {
  position: relative;
  justify-self: center;
  gap: 3px;
  padding: 8px 0 24px;
  color: rgba(55, 38, 29, 0.84);
  background: transparent;
  border-radius: 0;
}

.main-nav::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 9px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: translateX(-50%) rotate(45deg);
}

.main-nav::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 116px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
  transform: translateX(-50%);
}

.main-nav a {
  position: relative;
  padding: 10px 15px;
  color: inherit;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 560;
  transition: color 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--red-dark);
  background: transparent;
  transform: translateY(-1px);
}

.header-cta {
  min-height: 54px;
  gap: 11px;
  padding: 0 20px;
  color: #fffdf8;
  background: linear-gradient(135deg, #7b1520, #9b1f2a);
  border: 1px solid rgba(199, 165, 92, 0.86);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow:
    0 0 0 2px rgba(255, 253, 248, 0.78),
    0 12px 28px rgba(100, 19, 27, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.header-cta-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.header-cta-icon svg {
  width: 100%;
  height: 100%;
}

@media (min-width: 1121px) and (max-width: 1320px) {
  .site-header {
    width: min(calc(100% - 24px), 1260px);
    grid-template-columns: 300px minmax(0, 1fr) auto;
    gap: 18px;
    padding-left: 18px;
  }

  .brand {
    gap: 12px;
    padding-right: 24px;
  }

  .brand-emblem {
    width: 64px;
    height: 62px;
  }

  .brand-wordmark {
    width: 106px;
  }

  .main-nav a {
    padding-right: 11px;
    padding-left: 11px;
    font-size: 0.94rem;
  }

  .header-cta {
    padding-right: 15px;
    padding-left: 15px;
    font-size: 0.94rem;
  }
}

@media (max-width: 1120px) {
  .site-header {
    min-height: 84px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 9px 12px 9px 18px;
  }

  .brand {
    padding-right: 0;
  }

  .brand::after,
  .main-nav::before,
  .main-nav::after {
    display: none;
  }

  .brand-emblem {
    width: 58px;
    height: 56px;
  }

  .brand-wordmark {
    width: 100px;
  }

  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 104px;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    padding: 12px;
    background: rgba(255, 250, 241, 0.98);
    border-radius: 10px;
  }

  .main-nav a {
    border-radius: 6px;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    background: rgba(199, 165, 92, 0.12);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 7px 9px 7px 12px;
    border-radius: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-emblem {
    width: 44px;
    height: 44px;
  }

  .brand-wordmark {
    width: 82px;
    margin-bottom: 0;
  }

  .main-nav {
    top: 82px;
  }
}

/* V23: slimmer translucent header and coordinated gold-edged actions */
.site-header {
  top: 10px;
  min-height: 82px;
  grid-template-columns: 320px minmax(0, 1fr) auto;
  gap: 22px;
  padding: 6px 16px 6px 20px;
  background:
    linear-gradient(105deg, rgba(255, 250, 241, 0.78), rgba(244, 234, 215, 0.66));
  border: 1px solid rgba(255, 253, 248, 0.88);
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(199, 165, 92, 0.34),
    0 16px 42px rgba(28, 23, 21, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px) saturate(108%);
}

.site-header.is-scrolled {
  min-height: 72px;
  background:
    linear-gradient(105deg, rgba(255, 250, 241, 0.88), rgba(244, 234, 215, 0.78));
  box-shadow:
    0 0 0 1px rgba(199, 165, 92, 0.3),
    0 12px 34px rgba(28, 23, 21, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.brand {
  gap: 12px;
  padding-right: 28px;
}

.brand-emblem {
  width: 54px;
  height: 52px;
}

.brand-wordmark {
  width: 92px;
  margin-bottom: 0;
}

.brand small {
  color: rgba(74, 55, 44, 0.76);
  font-size: 0.66rem;
  line-height: 1.1;
}

.main-nav {
  gap: 2px;
  padding: 4px 0 18px;
}

.main-nav::before {
  bottom: 3px;
  width: 6px;
  height: 6px;
}

.main-nav::after {
  bottom: 5px;
  width: 108px;
}

.main-nav a {
  padding: 8px 14px;
  font-size: 0.96rem;
}

.header-cta {
  min-height: 44px;
  gap: 10px;
  padding: 0 16px;
  background: linear-gradient(180deg, #801722, #5f0d16);
  border: 1px solid rgba(218, 180, 105, 0.96);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  box-shadow:
    0 0 0 2px rgba(255, 253, 248, 0.62),
    0 9px 22px rgba(75, 9, 17, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.header-cta-icon {
  width: 17px;
  height: 17px;
}

.hero-top-actions {
  align-items: stretch;
}

.hero-top-actions .button {
  width: 146px;
  min-width: 146px;
  min-height: 46px;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid rgba(218, 180, 105, 0.96);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(255, 253, 248, 0.5),
    0 12px 28px rgba(28, 23, 21, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-top-actions .button-primary {
  background: linear-gradient(180deg, #9b1f2a, #76151f);
}

.hero-top-actions .button-soft {
  color: var(--red-dark);
  background: rgba(255, 250, 241, 0.84);
  backdrop-filter: blur(12px);
}

@media (min-width: 821px) {
  .hero-top-actions {
    top: 104px;
    right: max(15px, calc((100% - 1270px) / 2));
    gap: 12px;
  }
}

@media (min-width: 1121px) and (max-width: 1320px) {
  .site-header {
    grid-template-columns: 280px minmax(0, 1fr) auto;
    gap: 16px;
    padding-left: 16px;
  }

  .brand {
    gap: 10px;
    padding-right: 20px;
  }

  .brand-emblem {
    width: 50px;
    height: 48px;
  }

  .brand-wordmark {
    width: 88px;
  }

  .main-nav a {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.91rem;
  }

  .header-cta {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1120px) {
  .site-header {
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 6px 10px 6px 14px;
  }

  .brand {
    gap: 9px;
    padding-right: 0;
  }

  .brand-emblem {
    width: 48px;
    height: 46px;
  }

  .brand-wordmark {
    width: 86px;
  }

  .main-nav {
    top: 88px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 8px;
    min-height: 62px;
    padding: 5px 8px 5px 10px;
    border-radius: 11px;
  }

  .brand {
    gap: 7px;
  }

  .brand-emblem {
    width: 40px;
    height: 40px;
  }

  .brand-wordmark {
    width: 76px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    top: 72px;
  }

  .hero-top-actions .button {
    width: auto;
    min-width: 0;
  }
}

/* V24: give the signature breathing room above the lower band */
.chef-signature {
  transform: translateY(6px) rotate(-2deg);
}

@media (max-width: 820px) {
  .chef-signature {
    transform: translateY(4px) rotate(-2deg);
  }
}

@media (max-width: 430px) {
  .chef-signature {
    transform: translateY(2px) rotate(-2deg);
  }
}

/* V25: immersive experience story over the new plated-dessert photograph */
.experience-section {
  position: relative;
  isolation: isolate;
  min-height: 900px;
  display: flex;
  align-items: center;
  padding: clamp(104px, 9vw, 138px) max(24px, calc((100% - var(--max)) / 2));
  color: #fffdf8;
  background: #120d09;
  scroll-margin-top: 88px;
}

.experience-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  margin: 0;
}

.experience-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.experience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: auto;
  height: auto;
  pointer-events: none;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(12, 8, 6, 0.94) 0%, rgba(12, 8, 6, 0.88) 34%, rgba(12, 8, 6, 0.66) 52%, rgba(12, 8, 6, 0.16) 75%, rgba(12, 8, 6, 0.08) 100%),
    linear-gradient(180deg, rgba(12, 8, 6, 0.32), transparent 30%, transparent 68%, rgba(12, 8, 6, 0.42));
}

.experience-story {
  position: relative;
  z-index: 1;
  width: min(650px, 52%);
}

.experience-story .eyebrow {
  margin-bottom: 16px;
  color: #e3bd70;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.48);
}

.experience-story h2 {
  max-width: 700px;
  margin: 0 0 28px;
  color: #fffdf8;
  font-size: clamp(2.9rem, 4.7vw, 4.8rem);
  line-height: 1.02;
  text-wrap: balance;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.52);
}

.experience-prose {
  max-width: 630px;
  display: grid;
  gap: 16px;
}

.experience-prose p {
  margin: 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  line-height: 1.64;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.56);
}

.experience-conclusion {
  max-width: 610px;
  margin: 28px 0 0;
  padding-top: 22px;
  color: #f4d58a;
  border-top: 1px solid rgba(227, 189, 112, 0.74);
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 1.8vw, 1.48rem);
  line-height: 1.35;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.58);
}

.experience-conclusion strong {
  font-weight: 600;
}

@media (max-width: 1100px) {
  .experience-section {
    min-height: 940px;
  }

  .experience-story {
    width: min(630px, 62%);
  }

  .experience-section::before {
    background:
      linear-gradient(90deg, rgba(12, 8, 6, 0.95) 0%, rgba(12, 8, 6, 0.9) 40%, rgba(12, 8, 6, 0.7) 62%, rgba(12, 8, 6, 0.2) 86%),
      linear-gradient(180deg, rgba(12, 8, 6, 0.3), transparent 32%, transparent 68%, rgba(12, 8, 6, 0.44));
  }
}

@media (max-width: 820px) {
  .experience-section {
    min-height: auto;
    align-items: flex-start;
    padding: 88px 24px 480px;
  }

  .experience-backdrop {
    inset: auto 0 0;
    height: 480px;
  }

  .experience-backdrop img {
    object-position: 72% center;
  }

  .experience-section::before {
    background:
      linear-gradient(180deg, #120d09 0%, #120d09 56%, rgba(18, 13, 9, 0.92) 68%, rgba(18, 13, 9, 0.18) 100%),
      linear-gradient(90deg, rgba(12, 8, 6, 0.52), transparent 70%);
  }

  .experience-story {
    width: min(650px, 100%);
  }

  .experience-story h2 {
    font-size: clamp(2.45rem, 9vw, 3.8rem);
  }

  .experience-prose p {
    font-size: 1rem;
    line-height: 1.58;
  }
}

@media (max-width: 430px) {
  .experience-section {
    padding: 76px 18px 420px;
  }

  .experience-backdrop {
    height: 420px;
  }

  .experience-story h2 {
    margin-bottom: 22px;
    font-size: 2.28rem;
  }

  .experience-prose {
    gap: 14px;
  }

  .experience-prose p {
    font-size: 0.98rem;
    line-height: 1.54;
  }

  .experience-conclusion {
    margin-top: 24px;
    padding-top: 18px;
    font-size: 1.2rem;
  }
}

/* V26: raise the Experience story on desktop and tablet */
@media (min-width: 821px) and (max-width: 1120px) {
  .experience-story {
    top: -100px;
  }
}

@media (min-width: 1121px) {
  .experience-story {
    top: -70px;
  }
}
