:root {
  color-scheme: light;
  --bg: #f8f2ea;
  --bg-soft: #fffaf3;
  --surface: rgba(255, 250, 243, 0.84);
  --surface-strong: rgba(255, 250, 243, 0.94);
  --surface-alt: rgba(56, 31, 24, 0.06);
  --surface-dark: #221511;
  --text: #241714;
  --text-soft: rgba(36, 23, 20, 0.76);
  --text-muted: rgba(36, 23, 20, 0.58);
  --text-on-dark: #fff8f1;
  --line: rgba(90, 48, 34, 0.16);
  --line-strong: rgba(90, 48, 34, 0.28);
  --shadow: 0 32px 80px -38px rgba(31, 15, 12, 0.34);
  --shadow-strong: 0 42px 110px -44px rgba(18, 9, 7, 0.5);
  --accent: #ce7a60;
  --accent-deep: #a94e33;
  --accent-soft: #f1c7b9;
  --accent-gold: #cfae49;
  --accent-gold-deep: #a17b18;
  --olive: #52613c;
  --olive-soft: #d4ddc5;
  --hero-overlay: linear-gradient(180deg, rgba(16, 10, 8, 0.54), rgba(16, 10, 8, 0.74));
  --hero-video-overlay: linear-gradient(180deg, rgba(16, 10, 8, 0.48), rgba(16, 10, 8, 0.8));
  --card-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.22));
  --max-width: 1240px;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --transition: 240ms ease;
  --transition-slow: 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
  --text-shadow-hero: 0 10px 26px rgba(0, 0, 0, 0.18);
  --font-display: "Gilda Display", Georgia, serif;
  --font-sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --font-accent: "Playfair Display", Georgia, serif;
  --section-pad: clamp(4.5rem, 9vw, 8rem);
}

body.theme-dark {
  color-scheme: dark;
  --bg: #140d0a;
  --bg-soft: #1b120f;
  --surface: rgba(55, 33, 28, 0.86);
  --surface-strong: rgba(64, 40, 34, 0.94);
  --surface-alt: rgba(255, 247, 237, 0.08);
  --surface-dark: #090605;
  --text: #fff6ef;
  --text-soft: rgba(255, 246, 239, 0.88);
  --text-muted: rgba(255, 246, 239, 0.72);
  --text-on-dark: #fff8f1;
  --line: rgba(255, 234, 221, 0.18);
  --line-strong: rgba(255, 214, 194, 0.34);
  --shadow: 0 32px 80px -38px rgba(0, 0, 0, 0.74);
  --shadow-strong: 0 42px 110px -44px rgba(0, 0, 0, 0.8);
  --hero-overlay: linear-gradient(180deg, rgba(7, 5, 4, 0.62), rgba(7, 5, 4, 0.82));
  --hero-video-overlay: linear-gradient(180deg, rgba(7, 5, 4, 0.56), rgba(7, 5, 4, 0.86));
  --card-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top left, rgba(206, 122, 96, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(207, 174, 73, 0.12), transparent 22%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition:
    background-color var(--transition-slow),
    color var(--transition-slow);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23noise)' opacity='0.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.18;
  z-index: 1;
}

body.no-scroll {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

button {
  cursor: pointer;
}

main,
header,
footer,
section {
  position: relative;
  z-index: 2;
}

.wrap {
  width: min(100% - 2.4rem, var(--max-width));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 2.4rem, 980px);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section--tight {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section--flush-top {
  padding-top: 0;
}

.surface {
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head--center {
  text-align: center;
  justify-items: center;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

h3 {
  font-size: clamp(1.4rem, 2.7vw, 2rem);
}

p {
  margin: 0;
  color: var(--text-soft);
}

.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  color: var(--text);
}

.accent {
  color: var(--accent);
}

.gold {
  color: var(--accent-gold);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
  color: #fff8f1;
  position: relative;
  padding: clamp(7rem, 9vw, 9rem) 0 clamp(2rem, 5vw, 3.2rem);
  isolation: isolate;
}

.hero--medium {
  min-height: clamp(640px, 82svh, 860px);
}

.hero__media,
.hero__overlay,
.hero__texture {
  position: absolute;
  inset: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 240, 226, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(12, 8, 7, 0.28), rgba(12, 8, 7, 0.78));
}

.hero--video .hero__media::after {
  background:
    radial-gradient(circle at top, rgba(255, 240, 226, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(10, 6, 6, 0.2), rgba(10, 6, 6, 0.82));
}

.page-home .hero__media::after {
  background:
    radial-gradient(circle at top, rgba(255, 236, 218, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(12, 8, 7, 0.18), rgba(12, 8, 7, 0.84)),
    linear-gradient(90deg, rgba(12, 8, 7, 0.38), rgba(12, 8, 7, 0.12) 42%, rgba(12, 8, 7, 0.42));
}

.page-home .hero__content {
  width: min(calc(100% - 2.4rem), 880px);
  justify-items: center;
  text-align: center;
  margin-inline: auto;
}

.page-home .hero__content > * {
  margin-inline: auto;
}

.page-home .hero .eyebrow {
  justify-self: center;
  margin-bottom: 0.2rem;
}

.page-home .hero__signature {
  justify-content: center;
  text-align: left;
}

.page-home .hero__signature img {
  object-position: center;
}

.page-home .hero h1 {
  max-width: 9ch;
}

.page-home .hero .lead {
  max-width: 44ch;
}

.page-home .hero__actions,
.page-home .hero__foot,
.page-home .hero__scrollcue {
  justify-content: center;
}

.page-home .hero__foot {
  max-width: 860px;
}

.page-home .hero::before {
  content: "";
  position: absolute;
  inset: auto auto 9% 50%;
  transform: translateX(-50%);
  width: min(42vw, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206, 122, 96, 0.3), rgba(206, 122, 96, 0));
  filter: blur(18px);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2.4rem), 760px);
  margin-inline: auto;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: grid;
  gap: 1rem;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(27, 16, 13, 0.72), rgba(27, 16, 13, 0.42));
  border: 1px solid rgba(255, 248, 241, 0.14);
  box-shadow: 0 42px 120px -64px rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.hero__content > * {
  max-width: none;
}

.page-chef .hero__content,
.page-menus .hero__content,
.page-prestations .hero__content,
.page-reservation .hero__content {
  width: min(calc(100% - 2.4rem), 720px);
  margin-left: max(calc((100vw - var(--max-width)) / 2), 1.2rem);
  margin-right: auto;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.3rem, 6.2vw, 5.7rem);
  line-height: 0.94;
  text-shadow: var(--text-shadow-hero);
  transform: translateZ(0);
  backface-visibility: hidden;
  text-wrap: balance;
}

.hero .lead,
.hero p {
  color: rgba(255, 248, 241, 0.84);
}

.hero .lead {
  max-width: 46ch;
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.hero__signature,
.hero .lead,
.hero__foot,
.hero__scrollcue {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.2rem;
}

.hero__signature {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(255, 248, 241, 0.78);
  width: fit-content;
  max-width: min(100%, 520px);
  padding: 0.72rem 0.86rem;
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.08);
  border: 1px solid rgba(255, 248, 241, 0.14);
  box-shadow: 0 18px 44px -34px rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(14px);
  font-size: 0.95rem;
}

.hero__signature img {
  width: clamp(140px, 16vw, 190px);
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.32));
  background: rgba(255, 248, 241, 0.96);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
}

.hero__signature p {
  max-width: 24ch;
  font-size: 0.94rem;
  line-height: 1.5;
  color: rgba(255, 248, 241, 0.86);
}

.hero__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1rem;
  color: rgba(255, 248, 241, 0.8);
}

.hero__foot span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.68rem 0.98rem;
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.07);
  border: 1px solid rgba(255, 248, 241, 0.14);
  font-size: 0.82rem;
}

.hero__scrollcue {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.65rem;
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 248, 241, 0.78);
}

.hero__scrollcue span {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 248, 241, 0.9), rgba(255, 248, 241, 0));
}

.topbar {
  position: relative;
  z-index: 30;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(88, 49, 35, 0.08);
  background: rgba(251, 245, 237, 0.84);
  backdrop-filter: blur(14px);
}

.topbar .wrap {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(36, 23, 20, 0.72);
}

.topbar__list,
.topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
}

.topbar a:hover,
.topbar button:hover {
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem 0 0;
  transition: padding var(--transition-slow), transform var(--transition-slow);
}

.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 0.75rem 1rem;
  border-radius: 30px;
  background: rgba(252, 246, 239, 0.82);
  border: 1px solid rgba(88, 49, 35, 0.08);
  box-shadow:
    0 22px 58px -38px rgba(19, 9, 8, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: auto;
  padding: 0;
  background: transparent;
  border: 0;
  flex: none;
}

.brand img {
  width: clamp(170px, 15vw, 216px);
  height: auto;
  object-fit: contain;
  object-position: left center;
  transition: transform var(--transition-slow);
}

.site-header.is-scrolled .brand img {
  transform: scale(0.95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  min-width: 0;
  flex: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  list-style: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  min-width: 0;
  flex: 1;
}

.nav__links a,
.nav__toggle-theme,
.nav__phone {
  position: relative;
  color: rgba(36, 23, 20, 0.82);
}

.nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0.95rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.nav__links a::after {
  display: none;
}

.nav__links a:hover,
.nav__links a.is-active {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  box-shadow: 0 14px 30px -22px rgba(31, 15, 12, 0.46);
}

.mobile-nav__panel > a[aria-current="page"],
.footer__list a[aria-current="page"] {
  color: var(--accent);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-content: flex-end;
  flex: none;
}

.nav__phone,
.nav__toggle-theme,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0.72rem 0.96rem;
  border-radius: 999px;
  border: 1px solid rgba(88, 49, 35, 0.08);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.nav__actions .btn {
  box-shadow: none;
}

.nav__cta {
  min-height: 44px;
  padding-inline: 1.2rem;
}

.nav__phone {
  gap: 0.5rem;
  color: var(--text);
}

.nav__phone-icon {
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(206, 122, 96, 0.14);
  color: var(--accent-deep);
  font-size: 0.7rem;
  line-height: 1;
}

.nav__phone-text {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav__phone:hover,
.nav__toggle-theme:hover,
.theme-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 30px -22px rgba(31, 15, 12, 0.42);
}

.theme-toggle__icon {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  position: relative;
}

.theme-toggle__icon::before {
  content: "";
  position: absolute;
  inset: 0.18rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.18;
}

.nav__toggle-theme,
.theme-toggle {
  width: 44px;
  justify-content: center;
  padding: 0;
}

body:not(.theme-dark) .theme-toggle__icon {
  border-color: transparent;
  box-shadow: inset -0.38rem -0.02rem 0 0 currentColor;
}

body:not(.theme-dark) .theme-toggle__icon::before {
  opacity: 0;
}

body.theme-dark .theme-toggle__icon {
  border-color: currentColor;
  box-shadow:
    0 -0.62rem 0 -0.47rem currentColor,
    0 0.62rem 0 -0.47rem currentColor,
    0.62rem 0 0 -0.47rem currentColor,
    -0.62rem 0 0 -0.47rem currentColor,
    0.43rem 0.43rem 0 -0.5rem currentColor,
    -0.43rem 0.43rem 0 -0.5rem currentColor,
    0.43rem -0.43rem 0 -0.5rem currentColor,
    -0.43rem -0.43rem 0 -0.5rem currentColor;
}

body.theme-dark .theme-toggle__icon::before {
  opacity: 0.95;
}

.nav__menu {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(88, 49, 35, 0.08);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.nav__menu span,
.nav__menu span::before,
.nav__menu span::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__menu span {
  position: relative;
}

.nav__menu span::before,
.nav__menu span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav__menu span::before {
  top: -7px;
}

.nav__menu span::after {
  top: 7px;
}

body.nav-open .nav__menu span {
  background: transparent;
}

body.nav-open .nav__menu span::before {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav__menu span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 62;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(8, 5, 4, 0.985);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.mobile-nav__panel {
  width: min(100%, 540px);
  display: grid;
  gap: 1.15rem;
  padding: 1.5rem;
  border-radius: 26px;
  background: rgba(34, 20, 17, 0.96);
  border: 1px solid rgba(255, 234, 221, 0.1);
  box-shadow: var(--shadow-strong);
}

body.theme-dark .topbar {
  border-bottom-color: rgba(255, 234, 221, 0.08);
  background: rgba(22, 14, 12, 0.82);
}

body.theme-dark .topbar .wrap {
  color: rgba(255, 246, 239, 0.74);
}

body.theme-dark .topbar a:hover,
body.theme-dark .topbar button:hover {
  color: #fff8f1;
}

body.theme-dark .site-header__inner {
  background: rgba(31, 19, 17, 0.82);
  border-color: rgba(255, 234, 221, 0.09);
}

body.theme-dark .brand {
  background: transparent;
  border: 0;
}

body.theme-dark .nav__links a,
body.theme-dark .nav__toggle-theme,
body.theme-dark .nav__phone {
  color: rgba(255, 246, 239, 0.86);
}

body.theme-dark .nav__links {
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.theme-dark .nav__links a:hover,
body.theme-dark .nav__links a.is-active {
  background: rgba(255, 248, 241, 0.08);
  color: #fff8f1;
}

body.theme-dark .nav__phone,
body.theme-dark .nav__toggle-theme,
body.theme-dark .theme-toggle,
body.theme-dark .nav__menu {
  background: rgba(255, 248, 241, 0.08);
  border-color: rgba(255, 234, 221, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 248, 241, 0.08);
}

body.theme-dark .nav__phone-icon {
  background: rgba(255, 248, 241, 0.12);
  color: #fff8f1;
}

body.nav-open .mobile-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open main,
body.nav-open .footer,
body.nav-open .floating-theme {
  filter: blur(10px);
}

.mobile-nav a,
.mobile-nav button {
  color: #fff8f1;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  border: 0;
  background: none;
  padding: 0;
  text-align: left;
}

.mobile-nav__panel > a {
  line-height: 1.05;
}

.mobile-nav__meta {
  display: grid;
  gap: 1rem;
  margin-top: 0.4rem;
}

.mobile-nav__meta a,
.mobile-nav__meta button {
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.mobile-nav__meta .nav__phone {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 234, 221, 0.14);
  background: rgba(255, 248, 241, 0.06);
}

.mobile-nav__meta .nav__toggle-theme {
  border: 1px solid rgba(255, 234, 221, 0.14);
  background: rgba(255, 248, 241, 0.06);
}

.mobile-nav__meta .btn {
  width: auto;
}

.mobile-nav__tools {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--solid {
  color: #fff8f1;
  background: linear-gradient(120deg, var(--accent-deep), var(--accent));
  box-shadow: 0 24px 48px -28px rgba(206, 122, 96, 0.9);
}

.btn--solid:hover {
  background: linear-gradient(120deg, #973c24, #d98f77);
}

.btn--gold {
  color: #23140f;
  background: linear-gradient(120deg, #f2d98d, var(--accent-gold));
  box-shadow: 0 24px 48px -28px rgba(207, 174, 73, 0.7);
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: var(--surface);
}

.btn--ghost-light {
  color: #fff8f1;
  border-color: rgba(255, 248, 241, 0.2);
  background: rgba(255, 248, 241, 0.08);
}

.btn--icon {
  width: 52px;
  padding: 0;
}

.panel {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.4rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: center;
}

.story-card,
.info-card,
.service-card,
.stat-card,
.testimonial-card,
.menu-card,
.cta-card,
.contact-card,
.timeline-card,
.booking-card,
.feature-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card-gradient), var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.story-card,
.service-card,
.menu-card,
.feature-card,
.contact-card,
.booking-card {
  padding: clamp(1.4rem, 2vw, 2rem);
}

.info-card,
.timeline-card,
.cta-card,
.testimonial-card {
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
}

.service-card,
.feature-card,
.menu-card {
  display: grid;
  gap: 0.95rem;
}

.service-card__number,
.timeline__year {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.4rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-family: var(--font-display);
  color: var(--accent-deep);
}

.story-visual,
.stacked-media,
.portrait-block,
.media-card,
.video-poster,
.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  position: relative;
}

.story-visual img,
.stacked-media img,
.portrait-block img,
.media-card img,
.video-poster img,
.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stacked-media {
  min-height: 620px;
}

.stacked-media__card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 248, 241, 0.24);
}

.stacked-media__card--main {
  inset: 0 12% 8% 0;
}

.stacked-media__card--accent {
  right: 0;
  top: 9%;
  width: 42%;
  height: 34%;
}

.stacked-media__card--quote {
  left: 8%;
  bottom: 0;
  width: 52%;
  padding: 1.4rem;
  background: rgba(18, 10, 9, 0.78);
  color: #fff8f1;
  backdrop-filter: blur(18px);
}

.stacked-media__card--quote p {
  color: rgba(255, 248, 241, 0.82);
}

.page-home .section:first-of-type {
  margin-top: -4.25rem;
  z-index: 4;
}

.page-home .section:first-of-type .section-head {
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(255, 250, 243, 0.74));
  border: 1px solid rgba(88, 49, 35, 0.1);
  box-shadow: 0 36px 80px -48px rgba(24, 12, 10, 0.34);
  backdrop-filter: blur(16px);
}

body.theme-dark.page-home .section:first-of-type .section-head {
  background: linear-gradient(180deg, rgba(55, 33, 28, 0.92), rgba(55, 33, 28, 0.8));
  border-color: rgba(255, 234, 221, 0.1);
}

.page-home .section:first-of-type .section-head h2 {
  max-width: 12ch;
}

.quote-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 380px;
  display: grid;
  align-items: stretch;
}

.quote-band__media,
.quote-band__media::after {
  position: absolute;
  inset: 0;
}

.quote-band__media::after {
  content: "";
  background: linear-gradient(90deg, rgba(18, 10, 9, 0.82), rgba(18, 10, 9, 0.46));
}

.quote-band__content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 5vw, 4rem);
  color: #fff8f1;
  max-width: 640px;
}

.quote-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-band__content p {
  color: rgba(255, 248, 241, 0.82);
}

.quote-band blockquote {
  margin: 1rem 0 1.2rem;
  font-family: var(--font-accent);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.28;
}

.pill-list,
.chip-list,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill,
.chip,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 40px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text-soft);
}

.pill--dark,
.chip--dark {
  background: rgba(255, 248, 241, 0.08);
  border-color: rgba(255, 248, 241, 0.14);
  color: rgba(255, 248, 241, 0.88);
}

.chip {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.chip.is-active {
  background: linear-gradient(120deg, var(--accent-deep), var(--accent));
  color: #fff8f1;
  border-color: transparent;
}

.features-list,
.check-list,
.timeline,
.faq-list,
.contact-list {
  display: grid;
  gap: 0.95rem;
}

.check-list li,
.features-list li {
  list-style: none;
  position: relative;
  padding-left: 1.7rem;
  color: var(--text-soft);
}

.check-list li::before,
.features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
}

.timeline {
  position: relative;
  padding-left: 1.4rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 0;
  width: 1px;
  background: linear-gradient(var(--accent), transparent);
}

.timeline__item {
  position: relative;
  padding-left: 1.6rem;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -0.38rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(206, 122, 96, 0.15);
}

.timeline__year {
  margin-bottom: 0.3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  min-height: 0;
  aspect-ratio: 4 / 5;
  cursor: zoom-in;
  isolation: isolate;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(16, 9, 8, 0.7));
  opacity: 0.72;
  transition: opacity var(--transition);
}

.gallery-card:hover::after {
  opacity: 0.9;
}

body.theme-dark .gallery-card::after {
  background: linear-gradient(180deg, rgba(16, 9, 8, 0.05), rgba(16, 9, 8, 0.52));
}

body.theme-dark .gallery-card:hover::after {
  opacity: 0.8;
}

.gallery-card__caption {
  display: none;
}

.gallery-card--wide {
  grid-column: span 1;
}

.gallery-card--tall {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-card--medium {
  grid-column: span 1;
}

.gallery-card--small {
  grid-column: span 1;
}

.gallery-card__play {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255, 248, 241, 0.28);
  background: rgba(18, 10, 9, 0.42);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.gallery-card__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-left: 22px solid #fff8f1;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(8, 5, 4, 0.88);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-modal__dialog {
  position: relative;
  width: min(100%, 1200px);
  border-radius: 32px;
  background: rgba(15, 9, 8, 0.82);
  border: 1px solid rgba(255, 248, 241, 0.12);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.gallery-modal__media {
  position: relative;
  background: #0b0706;
  aspect-ratio: 16 / 9;
}

.gallery-modal__media img,
.gallery-modal__media video,
.gallery-modal__media iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
}

.gallery-modal__controls {
  position: absolute;
  inset: 1rem 1rem auto auto;
  display: flex;
  gap: 0.75rem;
}

.gallery-modal__close,
.gallery-modal__nav {
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 241, 0.14);
  background: rgba(255, 248, 241, 0.06);
  color: #fff8f1;
}

.gallery-modal__close:hover,
.gallery-modal__nav:hover {
  background: rgba(255, 248, 241, 0.14);
}

.gallery-modal__nav-wrap {
  position: absolute;
  inset: 50% 1rem auto 1rem;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.media-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
}

.video-poster {
  min-height: 340px;
  cursor: pointer;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 7, 6, 0.06), rgba(12, 7, 6, 0.54));
}

.video-poster__overlay {
  position: absolute;
  inset: auto 1.1rem 1.1rem 1.1rem;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  color: #fff8f1;
}

.video-poster__overlay div {
  display: none;
}

.video-poster__play {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(255, 248, 241, 0.24);
  background: rgba(12, 7, 6, 0.44);
  backdrop-filter: blur(14px);
  position: relative;
}

.video-poster__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-left: 18px solid #fff8f1;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

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

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.menu-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.menu-nav a:hover,
.menu-nav a.is-active {
  color: #fff8f1;
  background: linear-gradient(120deg, var(--accent-deep), var(--accent));
  border-color: transparent;
}

.menu-section {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.4rem;
}

.menu-card__list {
  display: grid;
  gap: 0.9rem;
}

.menu-card__item {
  display: grid;
  gap: 0.28rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px dashed var(--line);
}

.menu-card__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-card__item strong {
  font-family: var(--font-accent);
  font-size: 1.16rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-accent);
  font-size: 1.18rem;
  line-height: 1.45;
}

.testimonial-card footer {
  display: grid;
  gap: 0.2rem;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.contact-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 1.4rem;
  align-items: start;
}

.contact-card__item {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-card__item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-card__item strong {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.map-frame {
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) sepia(0.18);
}

.reservation-form,
.contact-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--surface-strong);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(206, 122, 96, 0.12);
}

.field__hint {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-status {
  display: none;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(206, 122, 96, 0.08);
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: rgba(160, 41, 27, 0.28);
  background: rgba(160, 41, 27, 0.12);
}

.footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(32, 19, 16, 0.08), rgba(32, 19, 16, 0.14));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1.8rem;
}

.footer__brand img {
  width: clamp(188px, 16vw, 228px);
  height: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1.2rem;
}

.footer__title {
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
}

.footer__list {
  display: grid;
  gap: 0.7rem;
}

.footer__bottom {
  margin-top: 2.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  line-height: 0;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.social-row a svg {
  width: 18px;
  height: 18px;
}

.social-row a:hover {
  background: linear-gradient(120deg, var(--accent-deep), var(--accent));
  border-color: transparent;
  color: #fff8f1;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(206, 122, 96, 0.26), transparent 36%),
    radial-gradient(circle at bottom, rgba(207, 174, 73, 0.24), transparent 32%),
    #130c0a;
  color: #fff8f1;
  transition: opacity 480ms ease, visibility 480ms ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.preloader__inner img {
  width: clamp(180px, 20vw, 230px);
  height: auto;
  object-fit: contain;
}

.preloader__ring {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(255, 248, 241, 0.18);
  border-top-color: var(--accent-gold);
  animation: preloader-spin 900ms linear infinite;
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

.floating-theme {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 34;
  display: none;
}

.floating-theme .theme-toggle {
  box-shadow: var(--shadow);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.66s ease, transform 0.66s ease;
}

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

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

@media (max-width: 1080px) {
  .nav__links,
  .nav__phone,
  .nav__cta {
    display: none;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .nav {
    flex: none;
    min-width: auto;
  }

  .nav__actions {
    gap: 0.5rem;
  }

  .nav__menu {
    display: inline-flex;
  }

  .nav__toggle-theme,
  .nav__menu {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(88, 49, 35, 0.08);
  }

  .mobile-nav__meta .nav__phone--mobile {
    display: inline-flex;
  }

  .grid-4,
  .testimonial-grid,
  .stat-row,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .topbar__list {
    display: none;
  }

  .split,
  .media-band,
  .contact-grid,
  .booking-grid,
  .footer__grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .page-home .section:first-of-type {
    margin-top: -2rem;
  }

  .stacked-media {
    min-height: 560px;
  }

  .stacked-media__card--main {
    inset: 0 0 18% 0;
  }

  .stacked-media__card--accent {
    width: 44%;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 0.6rem;
  }

  .site-header__inner {
    min-height: 72px;
    padding: 0.52rem 0.6rem 0.52rem 0.72rem;
    border-radius: 24px;
  }

  .brand img {
    width: min(165px, 46vw);
  }

  .nav {
    justify-content: flex-end;
  }

  .nav__actions {
    gap: 0.5rem;
  }

  .nav__toggle-theme,
  .nav__menu {
    width: 48px;
    height: 48px;
  }

  .site-header .nav__toggle-theme {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 5.8rem;
    padding-bottom: 1.6rem;
  }

  .hero--medium {
    min-height: clamp(430px, 60svh, 520px);
  }

  .hero__content {
    width: min(calc(100% - 1.3rem), 100%);
    padding: 1.05rem;
    gap: 0.82rem;
    border-radius: 26px;
  }

  .hero__signature {
    max-width: min(100%, 100%);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .page-chef .hero__content,
  .page-menus .hero__content,
  .page-prestations .hero__content,
  .page-reservation .hero__content {
    margin-inline: auto;
    width: min(calc(100% - 1.3rem), 100%);
  }

  .page-home .hero__content,
  .page-home .hero__actions,
  .page-home .hero__foot {
    width: min(calc(100% - 1.3rem), 100%);
    margin-inline: auto;
  }

  .btn {
    width: 100%;
  }

  .hero__signature {
    gap: 0.7rem;
    padding: 0.68rem 0.74rem;
    border-radius: 22px;
  }

  .hero__signature img {
    width: min(140px, 44vw);
    padding: 0.48rem 0.68rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 11vw, 3.85rem);
    max-width: 11ch;
    line-height: 0.98;
  }

  .hero .lead {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero__foot {
    gap: 0.55rem;
  }

  .hero__foot span {
    width: 100%;
    justify-content: center;
  }

  .hero__scrollcue {
    display: none;
  }

  .form-grid,
  .stat-row,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-modal__meta {
    flex-direction: column;
  }

  .mobile-nav__tools {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 560px) {
  .wrap,
  .narrow {
    width: min(100% - 1.3rem, var(--max-width));
  }

  .site-header__inner {
    min-height: 70px;
    padding: 0.48rem 0.55rem 0.48rem 0.62rem;
  }

  .brand img {
    width: min(152px, 50vw);
  }

  .hero {
    padding-top: 5.2rem;
    padding-bottom: 1.3rem;
  }

  .hero__content {
    padding: 0.95rem;
    border-radius: 22px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12.5vw, 3.3rem);
  }

  .hero .lead {
    font-size: 0.98rem;
    max-width: 31ch;
  }

  .stacked-media {
    min-height: 480px;
  }

  .stacked-media__card--quote {
    width: calc(100% - 1rem);
    left: 0.5rem;
  }

  .gallery-card {
    aspect-ratio: 1 / 1;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
