:root {
  --bg: oklch(98.5% 0.01 90);
  --bg-soft: oklch(97.2% 0.014 82);
  --surface: oklch(99.2% 0.007 88);
  --ink: oklch(30% 0.026 48);
  --ink-soft: oklch(46% 0.016 50);
  --brand: oklch(52% 0.1 38);
  --brand-soft: oklch(82% 0.04 45);
  --line: oklch(87% 0.015 74);
  --shadow: 0 12px 30px color-mix(in oklab, var(--brand) 14%, transparent);
  --radius: 16px;
  --radius-sm: 10px;
  --container: min(1120px, 92vw);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
  min-height: 100vh;
}

html.intro-active,
html.nav-scroll-lock {
  overflow: hidden;
}

.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  opacity: 1;
  transition: opacity 650ms ease;
}

.brand-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, color-mix(in oklab, var(--brand-soft) 22%, transparent) 0%, transparent 70%);
}

.brand-intro img {
  position: relative;
  width: min(56vw, 380px);
  height: auto;
  opacity: 0;
  transform: scale(0.92);
  animation: introLogoIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 150ms forwards;
}

.brand-intro.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes introLogoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
}

.site-header-inner {
  position: relative;
  z-index: 5;
  width: var(--container);
  margin-inline: auto;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-toggle {
  grid-column: 3;
  justify-self: end;
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  color: var(--surface);
}

.nav-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 4px;
}

.nav-toggle-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  opacity: 0;
  transform: scale(0.7) rotate(-40deg);
  transition: opacity 220ms ease, transform 220ms ease;
}

.nav-toggle-icon--open {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.site-header.nav-open .nav-toggle-icon--open {
  opacity: 0;
  transform: scale(0.7) rotate(40deg);
}

.site-header.nav-open .nav-toggle-icon--close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Logo notch: carved straight into the top edge of the full-bleed photo —
   flat top flush with the viewport, sides drop down into a rounded arch.
   The cream fill reads as a literal cutout, not a floating chip. */
.brand-badge {
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(150px, 18vw, 210px);
  height: clamp(96px, 11vw, 128px);
  background: var(--bg);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.5rem;
  opacity: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -18px);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 700ms ease, background-color 2600ms ease;
}

.site-header.badge-in .brand-badge {
  opacity: 1;
  transform: translate(-50%, 0);
  box-shadow: 0 10px 16px -6px rgba(0, 0, 0, 0.26), 0 26px 40px -16px rgba(0, 0, 0, 0.2);
}

.site-header.is-scrolled .brand-badge {
  background: color-mix(in oklab, var(--bg) 50%, transparent);
}

.brand-badge img {
  width: 40%;
  height: auto;
}

.header-nav {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: opacity 420ms ease, visibility 0s linear 420ms;
}

.site-header.nav-open .header-nav {
  visibility: visible;
  opacity: 1;
  transition: opacity 420ms ease;
}

.header-nav-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.nav-open .header-nav-bg {
  transform: scale(1);
}

.header-nav-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    color-mix(in oklab, black 72%, var(--brand) 16%) 0%,
    color-mix(in oklab, black 46%, var(--brand) 14%) 55%,
    color-mix(in oklab, black 78%, var(--brand) 10%) 100%
  );
}

.header-nav-links {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2.6vw, 1.4rem);
  padding: 7rem 1.5rem 2rem;
}

.header-nav-links > a,
.header-nav-links > .header-nav-lang {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.header-nav-links a {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 5.6vw, 3.4rem);
  color: var(--surface);
  text-decoration: none;
  transition: opacity 420ms ease, transform 420ms ease, color 220ms ease;
}

.header-nav-links a:hover,
.header-nav-links a:focus-visible {
  color: var(--brand-soft);
}

.site-header.nav-open .header-nav-links > a,
.site-header.nav-open .header-nav-links > .header-nav-lang {
  opacity: 1;
  transform: translateY(0);
}

.site-header.nav-open .header-nav-links > *:nth-child(1) {
  transition-delay: 120ms;
}

.site-header.nav-open .header-nav-links > *:nth-child(2) {
  transition-delay: 170ms;
}

.site-header.nav-open .header-nav-links > *:nth-child(3) {
  transition-delay: 220ms;
}

.site-header.nav-open .header-nav-links > *:nth-child(4) {
  transition-delay: 270ms;
}

.site-header.nav-open .header-nav-links > *:nth-child(5) {
  transition-delay: 320ms;
}

.header-nav-lang {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.65rem;
}

.header-nav-links .lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid color-mix(in oklab, var(--surface) 45%, transparent);
  background: color-mix(in oklab, var(--surface) 8%, transparent);
  color: color-mix(in oklab, var(--surface) 88%, transparent);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transform: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease,
    color 220ms ease, border-color 220ms ease;
}

.header-nav-links .lang-pill:hover,
.header-nav-links .lang-pill:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.26);
  color: var(--surface);
  border-color: var(--surface);
}

.header-nav-links .lang-pill.lang-pill--active {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16), 0 14px 26px rgba(0, 0, 0, 0.28);
  cursor: default;
}

.header-nav-links .lang-pill.lang-pill--active:hover,
.header-nav-links .lang-pill.lang-pill--active:focus-visible {
  transform: none;
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16), 0 14px 26px rgba(0, 0, 0, 0.28);
}

.info-block a,
.insta-link {
  color: var(--ink);
  text-decoration: none;
}

main {
  padding-bottom: clamp(3rem, 9vw, 6rem);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in oklab, black 78%, var(--brand) 22%) 0%,
    color-mix(in oklab, black 18%, var(--brand) 20%) 55%,
    color-mix(in oklab, black 38%, var(--brand) 15%) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(3rem, 9vw, 6rem);
  color: var(--surface);
}

.hero-content .eyebrow {
  color: color-mix(in oklab, var(--surface) 85%, transparent);
}

.hero-content .hero-copy {
  color: color-mix(in oklab, var(--surface) 84%, transparent);
}

.hero-content h1 span {
  display: block;
  color: var(--brand-soft);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(1.3rem, 4vw, 2.2rem);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-scroll span {
  position: relative;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: color-mix(in oklab, var(--surface) 45%, transparent);
}

.hero-scroll span::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto 0;
  height: 100%;
  background: var(--surface);
  animation: scrollLine 1.9s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    inset-block-start: -100%;
  }
  60% {
    inset-block-start: 100%;
  }
  100% {
    inset-block-start: 100%;
  }
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--ink-soft);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 4.9vw, 3.65rem);
  margin-top: 0.8rem;
  max-width: 16ch;
}

.hero-copy {
  margin-top: 1.1rem;
  max-width: 52ch;
  font-size: clamp(0.96rem, 2vw, 1.08rem);
}

.hero-actions {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, background-color 220ms ease;
}

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

.btn-primary {
  background: var(--brand);
  color: var(--surface);
  box-shadow: var(--shadow);
}

.btn-ghost {
  border-color: color-mix(in oklab, var(--surface) 55%, transparent);
  color: var(--surface);
  background: color-mix(in oklab, black 15%, transparent);
  backdrop-filter: blur(6px);
}

.section {
  width: var(--container);
  margin-inline: auto;
  margin-top: clamp(3.5rem, 10vw, 7rem);
}

.section-inner {
  width: var(--container);
  margin-inline: auto;
}

.section-head {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
  max-width: 44ch;
}

h2 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  max-width: 18ch;
}

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

.menu-col {
  padding: 1.5rem 0 0.2rem;
  border-top: 2px solid var(--line);
  outline: none;
  cursor: default;
  transition: border-color 280ms ease;
}

.menu-col:hover,
.menu-col:focus-visible,
.menu-col.is-active {
  border-top-color: var(--brand);
}

.menu-col h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 1.4rem;
}

.menu-col p {
  color: var(--ink-soft);
  margin: 0.55rem 0 1.1rem;
  font-size: 0.94rem;
}

.menu-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.menu-col li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px dashed color-mix(in oklab, var(--line) 70%, transparent);
  padding-bottom: 0.5rem;
}

.menu-col span {
  color: var(--brand);
  font-weight: 600;
  white-space: nowrap;
}

.photo-divider {
  width: 100%;
  height: clamp(221px, 38vw, 437px);
  overflow: hidden;
  margin-top: clamp(3.5rem, 10vw, 7rem);
}

.photo-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
  display: block;
}

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

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14), 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 340ms ease;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.gallery-item:hover,
.gallery-item:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.2), 0 8px 18px rgba(0, 0, 0, 0.1);
}

.info-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
}

.info-block h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 1.4rem;
}

.info-block p {
  color: var(--ink-soft);
}

.info-block a {
  color: var(--brand);
  font-weight: 600;
}

.info-block + .info-block {
  border-left: 1px solid var(--line);
  padding-left: 3rem;
}

.hours {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.52rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed color-mix(in oklab, var(--line) 70%, transparent);
}

.map-section {
  width: 100%;
  height: clamp(340px, 44vw, 560px);
  margin-top: clamp(3.5rem, 10vw, 7rem);
  overflow: hidden;
  background: var(--bg-soft);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(100%) sepia(30%) contrast(1.15) brightness(0.9) saturate(1.4);
}

.reservation-section {
  width: 100%;
  padding-block: clamp(3.5rem, 10vw, 7rem);
  background: var(--ink);
}

.reservation-section .section-inner {
  color: var(--surface);
  --ink: var(--surface);
  --ink-soft: color-mix(in oklab, var(--surface) 66%, transparent);
  --line: color-mix(in oklab, var(--surface) 22%, transparent);
}

.site-footer {
  width: 100%;
  background: var(--ink);
  padding-block: clamp(3.5rem, 9vw, 6rem);
}

.footer-inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-logo {
  width: clamp(210px, 27vw, 330px);
  height: auto;
  padding: 1.5rem 2.2rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 30px 60px -22px rgba(0, 0, 0, 0.4);
}

.footer-tagline {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: color-mix(in oklab, var(--surface) 88%, transparent);
}

.booking-form {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.8rem 1.2rem;
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.4rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  /* self-contained light card: reset ambient theme tokens regardless of section */
  --ink: oklch(30% 0.026 48);
  --ink-soft: oklch(46% 0.016 50);
  --line: oklch(87% 0.015 74);
}

.booking-col {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.booking-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.booking-form input,
.booking-form select {
  min-height: 2.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 0.55rem 0.7rem;
  font: inherit;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: 2px solid color-mix(in oklab, var(--brand) 55%, transparent);
  outline-offset: 1px;
}

.booking-form .btn {
  grid-column: 1 / -1;
  margin-top: 0.2rem;
}

.booking-compact input {
  text-align: center;
  font-weight: 600;
}

.booking-label {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.datetime-picker {
  position: relative;
  display: grid;
  gap: 0.3rem;
}

.datetime-display {
  cursor: pointer;
  font-weight: 500;
}

.datetime-display::placeholder {
  color: color-mix(in oklab, var(--ink-soft) 78%, transparent);
}

.datetime-picker.is-open .datetime-display {
  border-color: color-mix(in oklab, var(--brand) 45%, var(--line));
}

.picker-panel {
  position: absolute;
  top: calc(100% + 0.42rem);
  left: 0;
  right: 0;
  z-index: 30;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 0.85rem;
  opacity: 0;
  transform: translateY(8px) scale(0.99);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.datetime-picker.is-open .picker-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.picker-date {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.slot-groups {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.7rem;
}

.slot-group {
  display: grid;
  gap: 0.45rem;
}

.slot-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.43rem;
}

.slot-chip {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  min-height: 2rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.slot-chip:hover,
.slot-chip:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in oklab, var(--brand) 35%, var(--line));
}

.slot-chip.is-selected {
  border-color: var(--brand);
  background: color-mix(in oklab, var(--brand-soft) 45%, var(--surface));
  color: color-mix(in oklab, var(--brand) 68%, var(--ink));
  font-weight: 600;
}

.form-note,
.form-feedback {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
}

.form-note {
  color: var(--ink-soft);
}

.form-note a {
  color: var(--brand);
  text-decoration: none;
}

.form-feedback {
  min-height: 1.3em;
  color: var(--brand-soft);
  font-weight: 600;
}

.form-feedback.is-error {
  color: oklch(70% 0.16 28);
}

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

.insta-card {
  position: relative;
  overflow: clip;
  background: var(--surface);
  text-decoration: none;
  color: inherit;
}

.insta-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.insta-card:hover img,
.insta-card:focus-visible img {
  transform: scale(1.05);
}

.insta-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.7rem 0.75rem 0.6rem;
  display: grid;
  gap: 0.15rem;
  color: var(--surface);
  background: linear-gradient(to top, rgba(20, 10, 5, 0.75), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.insta-card:hover .insta-meta,
.insta-card:focus-visible .insta-meta {
  opacity: 1;
}

.insta-meta strong {
  font-size: 0.86rem;
}

.insta-meta span {
  font-size: 0.78rem;
  color: color-mix(in oklab, var(--surface) 80%, transparent);
}

.insta-link {
  display: inline-block;
  margin-top: 1.1rem;
  font-weight: 600;
  color: var(--brand);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 980px) {
  .info-layout,
  .insta-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header-inner {
    height: 68px;
  }

  .brand-badge {
    width: clamp(120px, 42vw, 160px);
    height: clamp(78px, 26vw, 100px);
  }

  .header-nav-links {
    padding-top: 6rem;
  }

  .hero-content {
    padding-bottom: 2.4rem;
  }

  .menu-columns,
  .info-layout,
  .booking-form,
  .insta-grid {
    grid-template-columns: 1fr;
  }

  .menu-col {
    padding: 1.4rem 0;
    border-top: 2px solid var(--line);
  }

  .info-block + .info-block {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 1.6rem;
    margin-top: 1.6rem;
  }

  .picker-panel {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-top: 0.1rem;
  }

  .datetime-picker:not(.is-open) .picker-panel {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .reveal,
  .insta-card img {
    transition: none;
  }

  .hero-scroll span::after {
    animation: none;
  }

  .brand-intro img {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .brand-badge {
    transition: none;
  }

  .header-nav-bg {
    transition: none;
  }
}
