/* === PRIMITIVE TOKENS === */
:root {
  --color-ivory-50: #fbf9f5;
  --color-ivory-100: #f5f1eb;
  --color-ivory-200: #e7e0d7;
  --color-ink-900: #111718;
  --color-ink-800: #182022;
  --color-olive-800: #36422f;
  --color-olive-700: #465440;
  --color-olive-600: #56624d;
  --color-amber-800: #9d3f00;
  --color-amber-700: #b34b00;
  --color-amber-500: #cf6500;
  --color-white: #ffffff;
  --color-black: #0c1112;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-size-xs: 0.6875rem;
  --font-size-sm: 0.8125rem;
  --font-size-base: 0.9375rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.8rem;
  --font-size-hero: 2.75rem;

  --radius-sm: 0.2rem;
  --radius-md: 0.35rem;
  --radius-lg: 0.55rem;
  --shadow-card: 0 0.55rem 1rem rgb(25 20 13 / 0.14);
  --border-soft: 1px solid rgb(17 23 24 / 0.12);
  --duration-fast: 160ms;
}

/* === SEMANTIC TOKENS === */
:root {
  --color-background: var(--color-ivory-50);
  --color-foreground: var(--color-ink-900);
  --color-surface: var(--color-white);
  --color-surface-soft: var(--color-ivory-100);
  --color-primary: var(--color-amber-700);
  --color-primary-hover: var(--color-amber-800);
  --color-secondary: var(--color-olive-700);
  --color-secondary-hover: var(--color-olive-800);
  --color-on-dark: var(--color-ivory-50);
  --color-muted: #696965;
  --page-gutter: clamp(2.5rem, 4.65vw, 5rem);
  --content-width: 80rem;
}

/* === COMPONENT TOKENS === */
:root {
  --button-bg: var(--color-primary);
  --button-bg-hover: var(--color-primary-hover);
  --button-fg: var(--color-white);
  --button-radius: var(--radius-md);
  --button-height: 2.75rem;
  --card-bg: var(--color-surface);
  --card-border: var(--border-soft);
  --card-radius: var(--radius-md);
  --card-shadow: var(--shadow-card);
  --header-height: 4.25rem;
}

/* === RESET AND GLOBALS === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
  top: 32px;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

h1,
h2,
h3,
.brand,
.footer-brand__name {
  font-family: var(--font-serif);
  font-weight: 400;
}

:focus-visible {
  outline: 3px solid var(--color-amber-500);
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  background: var(--color-white);
  color: var(--color-black);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: var(--button-height);
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--button-radius);
  background: linear-gradient(90deg, var(--button-bg), var(--color-amber-500));
  color: var(--button-fg);
  text-decoration: none;
  transition: filter var(--duration-fast), transform var(--duration-fast);
}

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

/* === HEADER === */
.site-header {
  position: relative;
  z-index: 50;
  height: var(--header-height);
  background: var(--color-ivory-50);
  border-bottom: 1px solid rgb(0 0 0 / 0.08);
}

.site-header__inner {
  width: calc(100% - (2 * var(--page-gutter)));
  max-width: var(--content-width);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  align-items: center;
}

.brand {
  width: 9.75rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.9rem, 4vw, 4.5rem);
  font-size: 0.8rem;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav a:hover,
.footer-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.button--header {
  width: 8rem;
  justify-self: end;
  min-height: 2.3rem;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
}

/* === HERO === */
.hero {
  min-height: 30.75rem;
  display: grid;
  grid-template-columns: 43.2% 56.8%;
  background: var(--color-ink-900);
  color: var(--color-on-dark);
}

.hero__copy {
  padding: 3.55rem 1.9rem 2.5rem var(--page-gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: radial-gradient(circle at 92% 0%, #242a29 0, var(--color-ink-900) 38%);
}

.eyebrow,
.event-card__eyebrow {
  margin-bottom: 0.85rem;
  color: #f07a00;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.hero h1 {
  max-width: 25rem;
  margin-bottom: 1.65rem;
  font-size: var(--font-size-hero);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero__intro {
  max-width: 16rem;
  margin-bottom: 1.6rem;
  font-size: 0.94rem;
  line-height: 1.62;
}

.button--hero {
  width: 10.25rem;
  min-height: 2.6rem;
  margin-bottom: 1rem;
}

.gift-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-underline-offset: 0.18rem;
}

.gift-link span {
  font-size: 1.1rem;
}

.hero__image {
  min-width: 0;
  background-position: center;
  background-size: cover;
}

/* === BOOKING + STEPS === */
.booking {
  position: relative;
  height: 19.75rem;
  background: var(--color-ivory-50);
}

.booking__inner {
  width: calc(100% - (2 * var(--page-gutter)));
  max-width: var(--content-width);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(20.75rem, 42.4%) 1fr;
  gap: 1.65rem;
}

.event-card {
  position: relative;
  z-index: 3;
  align-self: start;
  min-height: 20.4rem;
  margin-top: -1.9rem;
  padding: 1.4rem 1.55rem 1rem;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
}

.event-card__eyebrow {
  margin-bottom: 1.35rem;
  color: var(--color-primary);
}

.event-card__heading {
  display: grid;
  grid-template-columns: 5.15rem 1fr;
  min-height: 7.3rem;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: var(--border-soft);
  font-family: var(--font-sans);
  line-height: 1;
  text-transform: uppercase;
}

.event-date strong {
  margin: 0.38rem 0;
  font-family: var(--font-serif);
  font-size: 4.1rem;
  font-weight: 400;
  line-height: 0.82;
}

.event-date span {
  font-size: 0.9rem;
}

.event-title {
  padding-left: 1.7rem;
}

.event-title h2 {
  margin-bottom: 0.2rem;
  font-size: 1.65rem;
  line-height: 1.05;
}

.event-title > p {
  margin-bottom: 0.9rem;
}

.event-title .event-time {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.82rem;
}

.event-title .event-time span {
  color: var(--color-olive-600);
  font-size: 1.1rem;
}

.event-card__meta {
  height: 3.45rem;
  margin-top: 0.25rem;
  padding: 0 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: var(--border-soft);
  font-size: 0.8rem;
}

.event-card__meta strong {
  font-weight: 400;
}

.button--reserve {
  width: 100%;
  min-height: 2.55rem;
}

.secure {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.67rem;
}

.steps {
  padding-top: 2.25rem;
}

.steps h2 {
  margin-bottom: 1.45rem;
  font-size: 1.5rem;
}

.steps__list {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.steps__list li {
  min-width: 0;
  min-height: 9.8rem;
  padding: 0 1.15rem;
  border-left: var(--border-soft);
}

.steps__list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.steps__list li:last-child {
  padding-right: 0;
}

.step-number {
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-olive-600);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.steps h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.6;
}

/* === ROOMS === */
.rooms {
  height: 24.55rem;
  background: linear-gradient(90deg, #eeece6, #f8f5ef 49%, #eceae4);
  border-top: 1px solid rgb(0 0 0 / 0.03);
}

.rooms__inner {
  width: calc(100% - (2 * clamp(4rem, 7.4vw, 7.5rem)));
  max-width: 73.75rem;
  margin: 0 auto;
  padding-top: 1.2rem;
}

.rooms h2 {
  margin-bottom: 0.8rem;
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.1;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.room-card {
  overflow: hidden;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: rgb(255 255 255 / 0.52);
}

.room-card img {
  width: 100%;
  height: 9.2rem;
  object-fit: cover;
}

.room-card__body {
  padding: 0.72rem 1rem 1rem;
}

.room-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.45rem;
  line-height: 1;
}

.room-card__meta {
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.69rem;
}

.room-card__meta strong {
  font-weight: 400;
}

.coming-soon {
  color: var(--color-muted);
  white-space: nowrap;
}

.room-card p {
  min-height: 2.75rem;
  margin-bottom: 0.65rem;
  font-size: 0.69rem;
  line-height: 1.55;
}

.room-card a {
  font-size: 0.73rem;
  font-weight: 600;
  text-decoration: none;
}

.room-card a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

/* === BOTTLE GUIDE === */
.bottle-guide {
  position: relative;
  height: 18.4rem;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  background: linear-gradient(130deg, #3b4834, #263126);
  color: var(--color-white);
}

.bottle-guide__copy {
  position: relative;
  z-index: 2;
  padding: 2.2rem 1.5rem 1.25rem clamp(4rem, 7.4vw, 7.5rem);
}

.bottle-guide h2 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  white-space: nowrap;
}

.short-rule {
  display: block;
  width: 2rem;
  height: 1px;
  margin-bottom: 1rem;
  background: var(--color-amber-500);
}

.bottle-guide__copy > p {
  margin-bottom: 1.5rem;
  font-size: 0.72rem;
  line-height: 1.55;
}

.bottle-types {
  width: 14rem;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  list-style: none;
}

.bottle-types li {
  width: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.7rem;
}

.bottle-types strong {
  font-weight: 400;
}

.bottle-icon {
  position: relative;
  width: 2rem;
  height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1;
}

.bottle-icon--barrel::before {
  content: "";
  width: 1.55rem;
  height: 2rem;
  border: 1.5px solid currentColor;
  border-radius: 46%;
  box-shadow: inset 0.34rem 0 0 transparent, inset -0.34rem 0 0 transparent;
}

.bottle-icon--barrel::after {
  content: "";
  position: absolute;
  width: 1.65rem;
  height: 0.55rem;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.bottle-icon--bottle::before {
  content: "";
  width: 1.2rem;
  height: 1.7rem;
  align-self: flex-end;
  border: 1.5px solid currentColor;
  border-radius: 45% 45% 25% 25%;
}

.bottle-icon--bottle::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  width: 0.45rem;
  height: 1rem;
  border: 1.5px solid currentColor;
  border-bottom: 0;
}

.notes-panel {
  position: relative;
  z-index: 3;
  min-width: 0;
  margin-left: -11%;
  background-position: center;
  background-size: cover;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.notes-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-left: 1px solid rgb(255 255 255 / 0.85);
  clip-path: polygon(18% 0, 18.2% 0, 0.2% 100%, 0 100%);
}

.notes-download {
  position: absolute;
  left: 23%;
  bottom: 0.95rem;
  color: var(--color-black);
  font-size: 0.76rem;
  font-weight: 600;
  text-underline-offset: 0.18rem;
}

/* === NEWSLETTER === */
.newsletter {
  height: 6.9rem;
  color: var(--color-white);
  background: radial-gradient(circle at 10% 60%, #dd6900 0, var(--color-amber-700) 46%, #853000 100%);
}

.newsletter__inner {
  width: calc(100% - (2 * clamp(3.1rem, 6vw, 6rem)));
  max-width: 75rem;
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5.3rem 13.5rem 1fr;
  align-items: center;
  gap: 1.1rem;
}

.newsletter img {
  width: 5.3rem;
  height: 6.9rem;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.newsletter h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.2;
}

.newsletter-form__controls {
  display: grid;
  grid-template-columns: minmax(11rem, 1fr) 8.8rem;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 2.6rem;
  border: 0;
}

.newsletter-form input {
  padding: 0 0.9rem;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: var(--color-white);
  color: var(--color-black);
  font-size: 0.73rem;
}

.newsletter-form button {
  cursor: pointer;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--color-olive-700);
  color: var(--color-white);
  font-size: 0.78rem;
}

.newsletter-form__note,
.newsletter-form__success {
  margin: 0.35rem 0 0;
  font-size: 0.62rem;
}

.newsletter-form__success:not(:empty) + * {
  display: none;
}

/* === FOOTER === */
.site-footer {
  min-height: 9.1rem;
  background: radial-gradient(circle at 50% 0, #242b2b, var(--color-ink-900));
  color: var(--color-white);
}

.site-footer__inner {
  width: calc(100% - (2 * clamp(3.9rem, 7.2vw, 7.2rem)));
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 16rem 11rem 1fr;
  gap: 0;
}

.footer-brand__name {
  width: 9.25rem;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.35rem;
  text-decoration: none;
}

.footer-brand__logo {
  width: 100%;
  height: auto;
  filter: grayscale(1) brightness(0) invert(1);
}

.footer-brand p,
.footer-nav {
  font-size: 0.68rem;
  line-height: 1.55;
}

.footer-brand p {
  margin-bottom: 0.4rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-nav strong {
  margin-bottom: 0.1rem;
  font-weight: 400;
}

.footer-nav a {
  text-decoration: none;
}

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

.social-links a {
  width: 1.45rem;
  height: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 0.8);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.fallback-content {
  min-height: 70vh;
  padding: var(--space-16) var(--page-gutter);
}

@media (min-width: 769px) {
  .hero,
  .hero__image {
    height: 30.75rem;
  }
}

@media (max-width: 900px) and (min-width: 769px) {
  .primary-nav {
    gap: 2.2rem;
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 4rem;
    --page-gutter: 1.25rem;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .desktop-only {
    display: none;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 8.25rem;
  }

  .nav-toggle {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.32rem;
    border: 0;
    background: transparent;
  }

  .nav-toggle__line {
    display: block;
    height: 1px;
    background: var(--color-ink-900);
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem var(--page-gutter) 1.4rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    background: var(--color-ivory-50);
    border-bottom: var(--border-soft);
    box-shadow: var(--shadow-card);
    font-size: 1rem;
  }

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

  .button--header {
    display: none;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero__copy {
    min-height: 29rem;
    padding: 3rem var(--page-gutter) 2.5rem;
  }

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

  .hero__intro {
    max-width: 20rem;
  }

  .hero__image {
    min-height: 100vw;
  }

  .booking {
    height: auto;
    padding: 0 0 3rem;
  }

  .booking__inner {
    display: block;
  }

  .event-card {
    min-height: 0;
    margin-top: -1.5rem;
  }

  .steps {
    padding-top: 3.5rem;
  }

  .steps h2 {
    font-size: 2rem;
  }

  .steps__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps__list li,
  .steps__list li:first-child,
  .steps__list li:last-child {
    min-height: 0;
    padding: 0 0 1.5rem 3.8rem;
    border: 0;
    border-bottom: var(--border-soft);
  }

  .step-number {
    position: absolute;
    margin-left: -3.8rem;
  }

  .steps h3 {
    font-size: 1.3rem;
  }

  .steps p {
    font-size: 0.88rem;
  }

  .rooms {
    height: auto;
    padding: 2.5rem 0 3rem;
  }

  .rooms__inner {
    width: calc(100% - (2 * var(--page-gutter)));
    padding: 0;
  }

  .rooms h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }

  .room-grid {
    grid-template-columns: 1fr;
  }

  .room-card img {
    height: 56vw;
  }

  .room-card__body {
    padding: 1.1rem 1.25rem 1.4rem;
  }

  .room-card h3 {
    font-size: 1.7rem;
  }

  .room-card__meta,
  .room-card p,
  .room-card a {
    font-size: 0.85rem;
  }

  .room-card p {
    min-height: 0;
  }

  .bottle-guide {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .bottle-guide__copy {
    min-height: 23rem;
    padding: 3rem var(--page-gutter);
  }

  .bottle-guide h2 {
    font-size: 2.2rem;
    white-space: normal;
  }

  .bottle-guide__copy > p {
    font-size: 0.9rem;
  }

  .bottle-types {
    width: 100%;
    max-width: 20rem;
  }

  .bottle-types li {
    width: 5.5rem;
    font-size: 0.82rem;
  }

  .notes-panel {
    min-height: 72vw;
    margin: 0;
    clip-path: none;
  }

  .notes-panel::after {
    display: none;
  }

  .notes-download {
    left: var(--page-gutter);
    bottom: 1.2rem;
  }

  .newsletter {
    height: auto;
  }

  .newsletter__inner {
    width: calc(100% - (2 * var(--page-gutter)));
    padding: 2rem 0;
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: 1rem;
  }

  .newsletter img {
    width: 4.5rem;
    height: 5.2rem;
  }

  .newsletter h2 {
    font-size: 1.75rem;
  }

  .newsletter-form {
    grid-column: 1 / -1;
  }

  .newsletter-form__controls {
    grid-template-columns: 1fr;
  }

  .newsletter-form input,
  .newsletter-form button {
    border-radius: var(--radius-md);
  }

  .newsletter-form button {
    margin-top: 0.55rem;
  }

  .site-footer__inner {
    width: calc(100% - (2 * var(--page-gutter)));
    padding: 2.5rem 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand__name {
    width: 8.25rem;
  }
}

@media (max-width: 420px) {
  .event-card {
    padding-inline: 1rem;
  }

  .event-card__heading {
    grid-template-columns: 4.35rem 1fr;
  }

  .event-date strong {
    font-size: 3.35rem;
  }

  .event-title {
    padding-left: 1rem;
  }

  .event-title h2 {
    font-size: 1.65rem;
  }

  .event-title .event-time {
    font-size: 0.7rem;
  }
}

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

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