:root {
  --bg: #030302;
  --panel: #0b0b08;
  --panel-soft: #11110d;
  --gold: #d5a64f;
  --gold-bright: #e9bd66;
  --gold-muted: #7e6533;
  --text: #f7f3ea;
  --muted: #c9c0ad;
  --line: rgba(213, 166, 79, 0.42);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
  --content: 1120px;
  --content-narrow: 1000px;
  --serif: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  letter-spacing: 0;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

.section-dark {
  background: #020201;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(128px, 0.72fr) minmax(0, auto) minmax(164px, 0.72fr);
  align-items: center;
  gap: clamp(14px, 1.8vw, 22px);
  padding: 14px clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.32));
  border-bottom: 1px solid rgba(213, 166, 79, 0.08);
  backdrop-filter: blur(8px);
}

.blur-logo {
  justify-self: start;
  display: inline-grid;
  width: 128px;
  line-height: 0.82;
  color: rgba(233, 189, 102, 0.82);
  filter: blur(1.1px);
  opacity: 0.86;
  transform: skew(-7deg);
  user-select: none;
}

.blur-logo span {
  font-family: var(--serif);
  font-size: 31px;
  font-style: italic;
}

.blur-logo strong {
  margin-left: 22px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.55vw, 28px);
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  color: #f5f0e5;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--gold-bright);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 170px;
  padding: 0 22px;
  border-radius: 6px;
  background: linear-gradient(180deg, #e6bd72, #d19d45);
  color: #181005;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--gold-bright);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  height: clamp(460px, 42vw, 560px);
  min-height: 460px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 40%, rgba(213, 166, 79, 0.09), transparent 34%),
    linear-gradient(90deg, #020201 0%, #020201 31%, rgba(2, 2, 1, 0.72) 48%, rgba(2, 2, 1, 0.08) 74%, rgba(2, 2, 1, 0.28) 100%);
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  top: 58px;
  right: 0;
  width: min(68vw, 880px);
  height: calc(100% - 58px);
  object-fit: cover;
  object-position: 58% center;
  opacity: 0.96;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 40px));
  padding: clamp(126px, 11vw, 152px) 0 44px clamp(22px, 6.8vw, 92px);
}

.section-label {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 440px;
  margin: 0;
  font-size: clamp(52px, 5.7vw, 72px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.gold-rule {
  display: block;
  width: 36px;
  height: 2px;
  margin: 18px 0 15px;
  background: var(--gold-bright);
}

.hero p:not(.section-label) {
  max-width: 400px;
  margin: 0;
  color: #eee8db;
  font-size: 15px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 23px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn-gold {
  background: linear-gradient(180deg, #e8bd6b, #d29e48);
  color: #171006;
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.38);
}

.btn-ghost {
  position: relative;
  min-height: 38px;
  padding: 0 0 5px;
  color: #f4efe4;
}

.btn-ghost::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-bright);
  transition: width 180ms ease;
}

.btn-ghost:hover::after {
  width: 100%;
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-outline:hover {
  background: rgba(213, 166, 79, 0.13);
}

.story-menu {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(320px, 0.98fr) minmax(460px, 1.62fr);
  min-height: 288px;
  border-bottom: 1px solid var(--line);
}

.chef-panel,
.story-panel,
.season-panel {
  min-height: 288px;
  border-right: 1px solid var(--line);
}

.chef-panel img,
.season-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-panel img {
  object-position: 48% 42%;
}

.story-panel {
  padding: 38px clamp(30px, 3.3vw, 46px) 28px;
  background: linear-gradient(110deg, #070705, #12130e);
}

.story-panel .section-label {
  margin-bottom: 8px;
  font-size: 12px;
}

.story-panel h2,
.season-panel h2 {
  margin: 0;
  max-width: 360px;
  color: var(--text);
  font-size: clamp(27px, 2.35vw, 34px);
  font-weight: 400;
  line-height: 1.02;
}

.story-panel p:not(.section-label):not(.signature) {
  max-width: 350px;
  margin: 14px 0 0;
  color: #e6dfd2;
  font-size: 12px;
  line-height: 1.45;
}

.signature {
  margin: 15px 0 0;
  color: var(--gold-bright);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 21px;
  line-height: 1;
}

.story-panel span {
  color: var(--gold-bright);
  font-size: 12px;
}

.season-panel {
  position: relative;
  overflow: hidden;
  background: #11150f;
}

.season-panel img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 60%;
  opacity: 0.98;
  object-position: 58% center;
}

.season-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #11150f 0%, #11150f 34%, rgba(17, 21, 15, 0.78) 51%, rgba(17, 21, 15, 0.08) 82%);
}

.season-panel > div {
  position: relative;
  z-index: 1;
  width: min(390px, 54%);
  padding: 58px 0 34px clamp(38px, 4vw, 58px);
}

.season-panel .section-label {
  margin-bottom: 24px;
}

.with-icon::before {
  content: "⌁";
  display: inline-block;
  margin-right: 18px;
  color: var(--gold-bright);
  font-size: 31px;
  transform: rotate(-25deg);
  vertical-align: middle;
}

.season-panel h2 {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1.36;
}

.signatures {
  padding: 42px clamp(20px, 6vw, 72px) 50px;
  border-bottom: 1px solid rgba(213, 166, 79, 0.16);
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 29px;
  height: 1px;
  background: var(--gold-bright);
  transform: translateX(-50%);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 1.8vw, 24px);
  max-width: var(--content-narrow);
  margin: 34px auto 0;
}

.dish-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border-radius: 8px;
  border: 1px solid rgba(213, 166, 79, 0.36);
  background: linear-gradient(180deg, #10100d, #0a0a08);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.26);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.dish-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 189, 102, 0.72);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.46);
}

.dish-card img {
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
}

.dish-card:nth-child(1) img {
  object-position: 50% 48%;
}

.dish-card:nth-child(2) img {
  object-position: 50% 45%;
}

.dish-card:nth-child(3) img {
  object-position: 50% 49%;
}

.dish-card:nth-child(4) img {
  object-position: 50% 50%;
}

.dish-card div {
  flex: 1;
  min-height: 118px;
  padding: 18px 16px 16px;
  text-align: center;
}

.dish-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
}

.dish-card p {
  margin: 0 auto;
  max-width: 190px;
  color: #e7dfd2;
  font-size: 12.5px;
  line-height: 1.38;
}

.dish-card span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--gold-bright);
}

.gallery-section {
  padding: 40px clamp(20px, 6vw, 72px) 48px;
  border-bottom: 1px solid rgba(213, 166, 79, 0.16);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: var(--content-narrow);
  margin: 32px auto 0;
}

.gallery-item {
  overflow: hidden;
  padding: 0;
  border-radius: 6px;
  border: 1px solid rgba(213, 166, 79, 0.5);
  background: #080806;
  aspect-ratio: 147 / 113;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.12) brightness(1.08);
}

.gallery-item:nth-child(1) img,
.gallery-item:nth-child(6) img {
  object-position: center 55%;
}

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(4) img {
  object-position: center 48%;
}

.testimonials {
  padding: 38px clamp(16px, 6vw, 70px) 42px;
  border-bottom: 1px solid var(--line);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 16px;
  max-width: var(--content-narrow);
  margin: 30px auto 0;
}

.carousel-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--gold-bright);
  transition: transform 180ms ease, color 180ms ease;
}

.carousel-btn:hover {
  color: #ffd788;
  transform: scale(1.12);
}

.carousel-btn svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quote-card {
  min-height: 72px;
  padding: 0 34px;
  color: #f0e9dc;
  border-left: 1px solid rgba(213, 166, 79, 0.22);
}

.quote-card:first-child {
  border-left: 0;
}

.quote-card blockquote {
  position: relative;
  margin: 0;
  font-style: italic;
  font-size: 13px;
  line-height: 1.45;
}

.quote-card blockquote::before {
  content: "“";
  position: absolute;
  left: -24px;
  top: -11px;
  color: var(--gold-bright);
  font-size: 34px;
  font-style: normal;
  line-height: 1;
}

.quote-card cite {
  display: block;
  margin-top: 10px;
  color: var(--gold-bright);
  font-style: normal;
  font-size: 12px;
}

.booking-contact {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.86fr) minmax(340px, 1.03fr);
  width: min(calc(100% - 40px), var(--content));
  min-height: 260px;
  height: auto;
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #0c0c09, #090907);
}

.booking-card,
.contact-card,
.map-panel {
  min-height: 260px;
  height: auto;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.booking-card,
.contact-card {
  overflow: visible;
}

.booking-card,
.contact-card {
  padding: 34px clamp(26px, 3.5vw, 48px);
}

.booking-card h2,
.contact-card h2,
.site-footer h2 {
  margin: 0 0 13px;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.booking-form {
  max-width: 340px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

label span {
  display: block;
  margin: 0 0 6px;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 38px;
  margin: 0 0 12px;
  padding: 0 11px;
  border: 1px solid rgba(213, 166, 79, 0.45);
  border-radius: 2px;
  background: #080806;
  color: #f8f1e5;
  font-family: var(--sans);
  font-size: 12px;
  outline: none;
}

textarea {
  min-height: 106px;
  padding: 10px 11px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 2px rgba(213, 166, 79, 0.14);
}

.booking-form .btn {
  width: 100%;
  min-height: 42px;
}

.form-note,
.form-status,
.modal-status {
  margin: 6px 0 0;
  color: #cfc3af;
  font-size: 12px;
  text-align: center;
}

.form-status,
.modal-status {
  color: var(--gold-bright);
}

.modal-intro {
  margin: -12px 0 20px;
  color: #d8cfbe;
  font-size: 14px;
  line-height: 1.45;
}

.contact-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #e9e2d6;
  font-size: 12px;
  line-height: 1.45;
}

.contact-card a,
.contact-card li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-card span {
  width: 15px;
  color: var(--gold-bright);
  text-align: center;
}

.contact-card a {
  transition: color 180ms ease;
}

.contact-card a:hover {
  color: var(--gold-bright);
}

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

.map-panel img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease, filter 260ms ease;
}

.map-panel:hover img {
  transform: scale(1.04);
  filter: brightness(1.12);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1.2fr 1fr;
  gap: clamp(16px, 3.7vw, 52px);
  width: min(calc(100% - 40px), var(--content));
  min-height: 164px;
  height: auto;
  margin: 0 auto;
  overflow: visible;
  padding: 22px clamp(28px, 7.4vw, 80px) 20px;
  background: #020201;
  border-left: 1px solid rgba(213, 166, 79, 0.16);
  border-right: 1px solid rgba(213, 166, 79, 0.16);
}

.site-footer .blur-logo {
  margin-bottom: 12px;
}

.footer-brand p {
  max-width: 210px;
  margin: 0;
  color: #e6dfd2;
  font-size: 12px;
  line-height: 1.4;
}

.site-footer h2 {
  margin-bottom: 9px;
  color: #f1eadf;
  font-size: 11.5px;
  line-height: 1.1;
}

.site-footer a:not(.blur-logo) {
  display: block;
  margin-bottom: 6px;
  color: #e3dbcc;
  font-size: 11.5px;
  line-height: 1.2;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.social-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.social-links a {
  color: var(--gold-bright);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox,
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox.is-open,
.modal.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(920px, 92vw);
  max-height: 82vh;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lightbox-close,
.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #070705;
  color: var(--gold-bright);
  font-size: 26px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.lightbox-close:hover,
.modal-close:hover {
  transform: rotate(8deg) scale(1.05);
  background: #12120e;
}

.modal-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #11110d, #070705);
  box-shadow: var(--shadow);
}

.modal-panel h2 {
  margin: 0 0 24px;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.contact-form .btn {
  width: 100%;
}

.modal input,
.modal textarea {
  min-height: 40px;
}

.modal textarea {
  min-height: 118px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
    padding: 13px clamp(18px, 4vw, 34px);
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    justify-items: center;
    gap: 0;
    padding: 12px 24px 18px;
    background: rgba(4, 4, 3, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 28px 48px rgba(0, 0, 0, 0.48);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    width: min(260px, 100%);
    padding: 13px 0;
    border-bottom: 1px solid rgba(213, 166, 79, 0.12);
    text-align: center;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 980px) {
  .story-menu {
    grid-template-columns: 1fr 1fr;
    height: auto;
    min-height: 0;
  }

  .chef-panel,
  .story-panel {
    height: auto;
    min-height: 300px;
  }

  .story-panel h2 {
    max-width: none;
    font-size: clamp(28px, 4vw, 34px);
  }

  .story-panel p:not(.section-label):not(.signature) {
    max-width: 360px;
    font-size: 12px;
    line-height: 1.42;
  }

  .signature {
    font-size: 21px;
  }

  .story-panel span {
    font-size: 12px;
  }

  .season-panel {
    grid-column: 1 / -1;
    height: auto;
    min-height: 320px;
    border-right: 0;
  }

  .season-panel > div {
    width: min(390px, 54%);
    padding: 62px 0 42px 42px;
  }

  .season-panel h2 {
    font-size: 18px;
  }

  .dish-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 720px;
  }

  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .quote-card {
    border-left: 0;
  }

  .quote-card:not(:first-child) {
    display: none;
  }

  .booking-contact {
    grid-template-columns: 1fr 1fr;
    height: auto;
    width: min(calc(100% - 36px), var(--content));
  }

  .booking-card,
  .contact-card,
  .map-panel {
    height: auto;
    min-height: 0;
  }

  .booking-card,
  .contact-card {
    padding: 28px clamp(28px, 6vw, 52px);
  }

  .booking-form {
    max-width: none;
  }

  .booking-form input,
  .booking-form select {
    min-height: 38px;
  }

  .contact-card ul {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .map-panel {
    grid-column: 1 / -1;
    border-right: 0;
    min-height: 250px;
  }

  .map-panel img {
    min-height: 250px;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    overflow: visible;
    width: min(calc(100% - 36px), var(--content));
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 13px 18px;
  }

  .blur-logo {
    width: 112px;
  }

  .blur-logo span {
    font-size: 27px;
  }

  .blur-logo strong {
    font-size: 19px;
  }

  .hero {
    height: auto;
    min-height: 606px;
  }

  .hero-photo {
    top: 68px;
    width: 100%;
    height: 306px;
    object-position: 60% center;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(2, 2, 1, 0.2) 0%, rgba(2, 2, 1, 0.58) 38%, #020201 73%),
      linear-gradient(90deg, rgba(2, 2, 1, 0.88), rgba(2, 2, 1, 0.2));
  }

  .hero-copy {
    width: 100%;
    padding: 330px 22px 36px;
  }

  .hero h1 {
    max-width: 320px;
    font-size: clamp(38px, 11vw, 48px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 21px;
  }

  .story-menu,
  .dish-grid,
  .booking-contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .story-menu {
    height: auto;
    min-height: 0;
  }

  .chef-panel,
  .story-panel,
  .season-panel,
  .booking-card,
  .contact-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .chef-panel {
    height: 320px;
    min-height: 320px;
  }

  .story-panel {
    height: auto;
    min-height: 0;
    padding: 32px 24px;
  }

  .story-panel .section-label {
    font-size: 13px;
  }

  .story-panel h2 {
    font-size: 30px;
    line-height: 1.03;
  }

  .story-panel p:not(.section-label):not(.signature) {
    font-size: 13px;
    line-height: 1.48;
  }

  .signature {
    font-size: 22px;
  }

  .story-panel span {
    font-size: 13px;
  }

  .season-panel {
    height: auto;
    min-height: 336px;
  }

  .season-panel img {
    width: 100%;
    height: 100%;
    opacity: 0.56;
  }

  .season-panel::after {
    background: linear-gradient(90deg, #11150f 0%, rgba(17, 21, 15, 0.92) 52%, rgba(17, 21, 15, 0.54) 100%);
  }

  .season-panel > div {
    width: 100%;
    padding: 40px 24px;
  }

  .signatures,
  .gallery-section,
  .testimonials {
    padding-left: 20px;
    padding-right: 20px;
  }

  .signatures {
    padding-top: 36px;
    padding-bottom: 38px;
  }

  .gallery-section {
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .testimonials {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .dish-grid,
  .gallery-grid,
  .testimonial-shell {
    margin-top: 28px;
  }

  .dish-card div {
    min-height: auto;
    padding: 16px 15px 15px;
  }

  .dish-card h3 {
    font-size: 16px;
  }

  .dish-card p {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-shell {
    grid-template-columns: 34px 1fr 34px;
    gap: 4px;
  }

  .quote-card {
    padding: 6px 18px 6px 26px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-form {
    max-width: none;
  }

  .booking-contact,
  .site-footer {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .booking-card,
  .contact-card {
    padding: 30px 24px;
  }

  .booking-form input,
  .booking-form select {
    min-height: 42px;
  }

  .contact-card ul {
    font-size: 13px;
  }

  .modal-panel {
    max-height: calc(100vh - 28px);
    padding: 30px 22px 24px;
  }

  .modal-panel h2 {
    margin-bottom: 18px;
  }

  .modal-intro {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .site-footer {
    gap: 26px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-brand p,
  .site-footer a:not(.blur-logo) {
    font-size: 13px;
    line-height: 1.35;
  }

  .site-footer h2 {
    font-size: 13px;
  }
}

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