:root {
  --bg: #1c0f0c;
  --bg-deep: #100705;
  --wine: #6b1e2e;
  --wine-dark: #45111c;
  --cream: #faf6f0;
  --cream-strong: #fffaf3;
  --sand: #ead9c3;
  --gold: #c6934b;
  --ink: #24130e;
  --muted: rgba(250, 246, 240, 0.72);
  --line: rgba(250, 246, 240, 0.16);
  --shadow: 0 24px 80px rgba(42, 14, 18, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: "Jost", "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--cream);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 74px;
  padding: 12px clamp(14px, 4vw, 42px);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(28, 15, 12, 0.94);
  border-bottom: 1px solid rgba(250, 246, 240, 0.1);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.brand strong {
  display: block;
  overflow: hidden;
  max-width: 190px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.14rem;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  display: none;
}

.main-nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.main-nav a:hover,
.site-footer nav a:hover {
  color: var(--cream);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switch {
  display: none;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
}

.lang-switch a {
  min-width: 32px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  padding: 7px 8px;
  text-align: center;
}

.lang-switch a.is-active {
  background: var(--cream);
  color: var(--wine);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  display: none;
  min-height: 38px;
  padding: 10px 16px;
  font-size: 0.86rem;
}

.button-primary {
  background: var(--wine);
  color: #fff;
}

.button-ghost {
  border-color: rgba(250, 246, 240, 0.58);
  background: rgba(28, 15, 12, 0.22);
  color: var(--cream);
}

.button-light {
  background: var(--cream);
  color: var(--wine);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--cream);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 96svh;
  overflow: hidden;
  padding: 112px clamp(18px, 5vw, 64px) 58px;
  place-items: end start;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  animation: hero-image-primary 12s ease-in-out infinite;
  object-fit: cover;
  object-position: center;
}

.hero-bg-secondary {
  animation-name: hero-image-secondary;
  opacity: 0;
}

@keyframes hero-image-primary {
  0%,
  42% {
    opacity: 1;
  }

  50%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hero-image-secondary {
  0%,
  42% {
    opacity: 0;
  }

  50%,
  92% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
  }

  .hero-bg-secondary {
    display: none;
  }
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(28, 15, 12, 0.68), rgba(28, 15, 12, 0.10) 55%, rgba(28, 15, 12, 0.30)),
    linear-gradient(180deg, rgba(28, 15, 12, 0.05), rgba(28, 15, 12, 0.60));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
}

.kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero .kicker,
.section .kicker,
.host-section .kicker,
.club .kicker,
.visit .kicker {
  color: var(--gold);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 17vw, 8.8rem);
}

.hero-copy {
  max-width: 590px;
  margin-top: 18px;
  color: rgba(250, 246, 240, 0.9);
  font-size: clamp(1.12rem, 4vw, 1.58rem);
  line-height: 1.32;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(69, 17, 28, 0.5);
}

.quick-strip div {
  background: var(--cream);
  color: var(--ink);
  min-width: 0;
  padding: 14px clamp(8px, 3vw, 40px);
  text-align: center;
}

.quick-strip span,
.visit-info span {
  display: block;
  color: var(--wine);
  font-size: clamp(0.68rem, 2.85vw, 0.8rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.visit-info span {
  color: var(--gold);
}

.quick-strip strong,
.visit-info strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(0.9rem, 3.45vw, 1.08rem);
  line-height: 1.18;
}

.section {
  padding: clamp(70px, 10vw, 128px) clamp(18px, 5vw, 64px);
}

.section-copy,
.section-heading,
.visit-card,
.menu-layout,
.dish-carousel,
.essence-carousel {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.section-copy {
  max-width: 660px;
}

.section-copy h2,
.section-heading h2,
.visit-card h2,
.host-content h2,
.club-copy h2 {
  font-size: clamp(2.35rem, 8vw, 4.9rem);
}

.section-copy p,
.section-heading p:not(.kicker),
.visit-card p,
.host-content p:not(.kicker),
.club-copy p:not(.kicker) {
  color: rgba(36, 19, 14, 0.72);
  font-size: 1.05rem;
}

.section-copy h2 + p,
.section-heading h2 + p,
.host-content h2 + p {
  margin-top: 18px;
}

blockquote {
  margin: 26px 0 0;
  border-left: 4px solid var(--wine);
  padding-left: 18px;
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 4vw, 1.95rem);
  font-weight: 700;
  line-height: 1.18;
}

.section-heading {
  margin-bottom: 30px;
}

.align-left p:not(.kicker) {
  max-width: 720px;
}

.reviews,
.essence,
.story {
  background: var(--cream);
  color: var(--ink);
}

.review-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 14px;
}

.review-card {
  display: block;
  border: 1px solid rgba(107, 30, 46, 0.14);
  border-radius: 8px;
  background: var(--cream-strong);
  padding: 22px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.review-card:hover {
  box-shadow: 0 8px 28px rgba(107, 30, 46, 0.13);
  transform: translateY(-2px);
}

.review-card span {
  color: var(--wine);
}

.review-card p {
  margin-top: 12px;
  color: rgba(36, 19, 14, 0.78);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.25;
}

.review-author {
  display: block;
  margin-top: 10px;
  color: rgba(36, 19, 14, 0.45);
  font-size: 0.8rem;
  font-style: normal;
}

.review-source-label {
  display: block;
  margin-top: 16px;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.review-rankings {
  display: grid;
  width: min(760px, 100%);
  margin: 14px auto 0;
  gap: 1px;
  background: rgba(69, 17, 28, 0.5);
}

.review-rankings a {
  min-width: 0;
  background: var(--cream-strong);
  padding: 16px clamp(12px, 4vw, 32px);
  text-align: center;
}

.review-rankings span,
.review-rankings small {
  display: block;
  color: var(--wine);
  font-size: clamp(0.68rem, 2.85vw, 0.8rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.review-rankings strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: clamp(0.98rem, 3.6vw, 1.16rem);
  line-height: 1.18;
}

.review-rankings small {
  margin-top: 6px;
  color: rgba(107, 30, 46, 0.76);
}

.story {
  display: grid;
  gap: 28px;
  align-items: center;
}

.image-panel {
  margin: 0;
}

.image-panel img {
  width: 100%;
  max-height: 580px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-panel-vertical img {
  max-height: 620px;
  object-fit: cover;
}

.dishes {
  overflow: hidden;
  background: var(--bg);
}

.essence {
  overflow: hidden;
}

.dishes .section-heading p:not(.kicker),
.club-copy p:not(.kicker) {
  color: var(--muted);
}

.menu-section .section-heading p:not(.kicker) {
  color: rgba(36, 19, 14, 0.72);
}

.dish-carousel,
.essence-carousel {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-columns: minmax(300px, 92%);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 0 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.dish-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(250, 246, 240, 0.14);
  border-radius: 8px;
  background: #24110d;
  scroll-snap-align: start;
}

.dish-card img {
  display: block;
  width: 100%;
  height: clamp(260px, 58vh, 390px);
  object-fit: cover;
}

.essence-card {
  overflow: hidden;
  border: 1px solid rgba(107, 30, 46, 0.14);
  border-radius: 8px;
  background: var(--cream-strong);
  scroll-snap-align: start;
}

.essence-card img {
  width: 100%;
  height: clamp(340px, 68vh, 540px);
  object-fit: cover;
}

.host-section {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
  align-items: end;
  padding: clamp(94px, 16vw, 150px) clamp(18px, 5vw, 64px) clamp(14px, 3vw, 34px);
  background: var(--bg-deep);
  color: var(--cream);
}

.host-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 86%;
  transform: scaleX(-1);
}

.host-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(16, 7, 5, 0.0) 18%, rgba(16, 7, 5, 0.42) 46%, rgba(16, 7, 5, 0.86) 64%, var(--bg-deep) 82%),
    linear-gradient(90deg, rgba(16, 7, 5, 0.80), rgba(16, 7, 5, 0.18) 52%, rgba(16, 7, 5, 0.0));
}

.host-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  margin-inline: auto;
}

.host-content h2 {
  max-width: none;
}

.host-subtitle {
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 7vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
}

.host-content p:not(.kicker):not(.host-subtitle) {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(250, 246, 240, 0.86);
}

.host-quote {
  max-width: 640px;
  border-left-color: var(--gold);
  color: var(--cream);
}

.host-quote cite {
  display: block;
  margin-top: 12px;
  color: rgba(250, 246, 240, 0.72);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 800;
}

.dish-card div {
  padding: 16px;
}

.dish-card h3 {
  margin-top: 8px;
  font-size: 1.65rem;
}

.dish-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  max-width: calc(100% - 24px);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(16, 7, 5, 0.28);
  text-transform: uppercase;
}

.dish-badge-menu {
  background: var(--cream);
  color: var(--wine);
}

.dish-badge-day {
  background: var(--gold);
  color: var(--bg-deep);
}

.carousel-button {
  display: none;
}

.menu-section {
  background: var(--cream);
  color: var(--ink);
}

.menu-layout {
  display: grid;
  gap: 24px;
}

.menu-panel {
  border: 1px solid rgba(107, 30, 46, 0.16);
  border-radius: 8px;
  background: var(--cream-strong);
  overflow: hidden;
}

.menu-panel + .menu-panel {
  margin-top: 10px;
}

.menu-panel summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-height: 60px;
  cursor: pointer;
  padding: 16px 18px;
  color: var(--wine);
  font-weight: 800;
  list-style: none;
}

.menu-panel summary::-webkit-details-marker {
  display: none;
}

.menu-panel summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  line-height: 28px;
  text-align: center;
}

.menu-panel[open] summary::after {
  content: "-";
}

.menu-panel-summary-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-panel-summary-text > span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 4vw, 1.55rem);
  line-height: 1;
}

.menu-panel-summary-text > .menu-panel-desc {
  color: rgba(36, 19, 14, 0.72);
  font-family: inherit;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.menu-table {
  padding: 0 18px 16px;
}

.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  border-top: 1px solid rgba(107, 30, 46, 0.12);
  padding: 12px 0;
}

.menu-row span {
  color: rgba(36, 19, 14, 0.82);
}

.menu-row em {
  color: var(--wine);
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.menu-note {
  margin-top: 18px;
  color: rgba(36, 19, 14, 0.68);
  font-size: 0.94rem;
}

.cellar {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  color: var(--cream);
}

.cellar > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.cellar::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 7, 5, 0.88), rgba(16, 7, 5, 0.28) 55%, rgba(16, 7, 5, 0.08)),
    linear-gradient(180deg, rgba(16, 7, 5, 0.12), rgba(16, 7, 5, 0.68));
}

.cellar .section-copy {
  position: relative;
  z-index: 1;
}

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

.cellar .section-copy .kicker {
  color: var(--gold);
}

.cellar blockquote {
  border-left-color: var(--gold);
  color: var(--cream);
}

.club {
  padding: clamp(70px, 10vw, 128px) clamp(18px, 5vw, 64px);
  background: var(--wine-dark);
}

.club-card {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 28px;
  align-items: center;
}

.club-copy h2 {
  max-width: 760px;
}

.club-box {
  border: 1px solid rgba(250, 246, 240, 0.16);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: clamp(22px, 5vw, 34px);
}

.club-box span {
  display: block;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.club-box p {
  margin-top: 12px;
  color: rgba(36, 19, 14, 0.76);
  font-size: 1.06rem;
}

.club-box .button {
  width: 100%;
  margin-top: 22px;
}

.club-box small {
  display: block;
  margin-top: 16px;
  color: rgba(36, 19, 14, 0.62);
  font-size: 0.82rem;
  line-height: 1.45;
}

.visit {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 128px) clamp(18px, 5vw, 64px);
  background: var(--bg);
}

.visit-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(28, 15, 12, 0.22), rgba(28, 15, 12, 0.9));
}

.visit-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(250, 246, 240, 0.16);
  border-radius: 8px;
  background: rgba(28, 15, 12, 0.9);
  box-shadow: var(--shadow);
  color: var(--cream);
  padding: clamp(24px, 6vw, 54px);
  backdrop-filter: blur(14px);
}

.visit-card p {
  color: var(--muted);
}

.visit-card .section-copy p,
.visit-card h2 + p {
  color: var(--muted);
}

.visit-info {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.visit-info div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.visit-info strong {
  color: var(--cream);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: space-between;
  padding: 34px clamp(18px, 5vw, 64px) 88px;
  background: var(--bg-deep);
  color: rgba(250, 246, 240, 0.72);
}

.site-footer strong {
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
}

.site-footer p {
  margin-top: 6px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-page {
  background: var(--cream);
  color: var(--ink);
}

.legal-main {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 130px 0 64px;
}

.legal-main h1,
.legal-main h2 {
  color: var(--wine);
}

.legal-main h1 {
  margin-bottom: 18px;
}

.legal-main h2 {
  margin-top: 34px;
}

.legal-main p,
.legal-main li {
  color: var(--wine);
}

.legal-main ul {
  padding-left: 20px;
}

@media (max-width: 899px) {
  .main-nav {
    position: fixed;
    inset: 76px 12px auto;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(28, 15, 12, 0.98);
    padding: 12px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    border-bottom: 1px solid rgba(250, 246, 240, 0.08);
    padding: 14px 10px;
    font-size: 1.05rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav .lang-switch-mobile {
    display: flex;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(250, 246, 240, 0.12);
  }

  .main-nav .lang-switch-mobile a {
    min-width: 0;
    flex: 1 1 0;
    padding: 10px 6px;
    font-size: 0.7rem;
  }
}

@media (min-width: 700px) {
  .quick-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .story {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  }

  .review-grid,
  .visit-info {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .club-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  }

  .host-content {
    margin-inline: 0 auto;
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    padding-bottom: 36px;
  }
}

@media (min-width: 840px) {
  .carousel-track {
    grid-auto-columns: minmax(260px, 31%);
  }

  .essence-track {
    grid-auto-columns: minmax(320px, 38%);
  }

  .dish-card img {
    height: 360px;
  }

  .essence-card img {
    height: 520px;
  }

  .carousel-button {
    position: absolute;
    top: 42%;
    z-index: 2;
    display: inline-grid;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(250, 246, 240, 0.18);
    border-radius: 50%;
    background: rgba(28, 15, 12, 0.82);
    color: var(--cream);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    place-items: center;
  }

  .carousel-prev {
    left: -18px;
  }

  .carousel-next {
    right: -18px;
  }

  .menu-layout {
    max-width: 900px;
  }
}

@media (min-width: 900px) {
  .site-header {
    min-height: 84px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .site-header.is-scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand strong {
    max-width: none;
    font-size: 1.28rem;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.7vw, 24px);
  }

  .lang-switch,
  .button-small {
    display: inline-flex;
  }

  .lang-switch-mobile {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    min-height: 94svh;
    padding-top: 150px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    max-width: 150px;
  }

  .hero-actions .button,
  .visit-actions .button {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
