:root {
  --ink: #18231d;
  --ink-soft: #3f4b45;
  --paper: #fbfaf6;
  --mist: #e6eee9;
  --mint: #b8d1c3;
  --sage: #536b5b;
  --clay: #ad5d45;
  --sunset-gold: #f4bd6a;
  --sunset-coral: #df7c5d;
  --sunset-rose: #b75f78;
  --night-violet: #6e6aa6;
  --line: rgba(24, 35, 29, 0.16);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 28, 24, 0.18);
  --soft-shadow: 0 18px 48px rgba(20, 28, 24, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.66), rgba(251, 250, 246, 0) 460px),
    linear-gradient(160deg, rgba(230, 238, 233, 0.52), rgba(251, 250, 246, 0) 42%, rgba(248, 232, 210, 0.48)),
    var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

::selection {
  color: var(--ink);
  background: rgba(244, 189, 106, 0.42);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(244, 189, 106, 0.9);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease,
    padding 260ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(24, 35, 29, 0.08);
  box-shadow: 0 16px 44px rgba(23, 32, 27, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 82px;
  height: auto;
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  transform: translateY(-1px);
}

.site-header:not(.is-scrolled):not(.menu-active) .brand img {
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.6vw, 22px);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0;
  line-height: 1;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:not(.nav-button)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:not(.nav-button):hover::after,
.site-nav a:not(.nav-button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a:not(.nav-button):hover,
.site-nav a:not(.nav-button):focus-visible,
.nav-menu-button:hover,
.nav-menu-button:focus-visible {
  color: var(--sunset-gold);
}

.site-header.is-scrolled .site-nav a:not(.nav-button):hover,
.site-header.is-scrolled .site-nav a:not(.nav-button):focus-visible,
.site-header.is-scrolled .nav-menu-button:hover,
.site-header.is-scrolled .nav-menu-button:focus-visible,
.site-header.menu-active .site-nav a:not(.nav-button):hover,
.site-header.menu-active .site-nav a:not(.nav-button):focus-visible,
.site-header.menu-active .nav-menu-button:hover,
.site-header.menu-active .nav-menu-button:focus-visible,
.menu-body .site-nav a:not(.nav-button):hover,
.menu-body .site-nav a:not(.nav-button):focus-visible,
.menu-body .nav-menu-button:hover,
.menu-body .nav-menu-button:focus-visible {
  color: var(--clay);
}

.nav-dropdown {
  position: relative;
}

.nav-menu-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.nav-menu-button::after {
  width: 6px;
  height: 6px;
  margin-top: -4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 180ms ease, margin 180ms ease;
}

.nav-dropdown.is-open .nav-menu-button::after {
  margin-top: 3px;
  transform: rotate(-135deg);
}

.menu-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: max-content;
  min-width: 210px;
  display: grid;
  gap: 3px;
  padding: 10px;
  color: var(--ink);
  border: 1px solid rgba(24, 35, 29, 0.14);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 22px 52px rgba(20, 28, 24, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(16px);
}

.nav-dropdown.is-open .menu-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav .menu-dropdown-panel a {
  display: flex;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav .menu-dropdown-panel a::after {
  display: none;
}

.site-nav .menu-dropdown-panel a:hover,
.site-nav .menu-dropdown-panel a:focus-visible {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(244, 189, 106, 0.18), rgba(184, 209, 195, 0.34));
  transform: translateX(2px);
}

.nav-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08) 36%, rgba(184, 209, 195, 0.18) 64%, rgba(173, 93, 69, 0.18)),
    rgba(255, 255, 255, 0.08);
  background-size: 170% 170%, auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18),
    0 16px 36px rgba(12, 20, 16, 0.16);
  backdrop-filter: blur(18px) saturate(1.24);
  -webkit-backdrop-filter: blur(18px) saturate(1.24);
  transition:
    transform 220ms var(--ease),
    color 180ms ease,
    border-color 180ms ease,
    background 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled .nav-button,
.site-header.menu-active .nav-button {
  color: var(--ink);
  border-color: rgba(24, 35, 29, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(184, 209, 195, 0.46) 55%, rgba(173, 93, 69, 0.18)),
    rgba(255, 255, 255, 0.5);
}

.nav-button:hover,
.nav-button:focus-visible,
.site-header.is-scrolled .nav-button:hover,
.site-header.is-scrolled .nav-button:focus-visible,
.site-header.menu-active .nav-button:hover,
.site-header.menu-active .nav-button:focus-visible,
.menu-body .site-header .nav-button:hover,
.menu-body .site-header .nav-button:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 222, 150, 0.92), rgba(236, 137, 82, 0.88) 35%, rgba(190, 90, 112, 0.86) 68%, rgba(78, 72, 135, 0.82)),
    rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    0 18px 46px rgba(132, 68, 63, 0.32);
  transform: translateY(-1px);
  animation: sunsetButtonShift 2.8s ease-in-out infinite alternate;
}

@keyframes sunsetButtonShift {
  from {
    background-position: 0% 50%, center;
  }

  to {
    background-position: 100% 50%, center;
  }
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.01);
  animation: heroBreath 14s ease-in-out infinite alternate;
}

.hero-video {
  display: block;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 14, 12, 0.72), rgba(10, 14, 12, 0.18) 58%, rgba(10, 14, 12, 0.5)),
    linear-gradient(0deg, rgba(10, 14, 12, 0.7), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto 194px;
  transform: translateX(calc((min(1180px, 100vw - 36px) - min(760px, 100vw - 36px)) / -2));
  animation: heroRise 900ms var(--ease) 140ms both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint);
}

.sunset-text {
  color: #f0a75f;
  background: linear-gradient(90deg, #ffe29b 0%, var(--sunset-gold) 24%, var(--sunset-coral) 48%, var(--sunset-rose) 70%, var(--night-violet) 100%);
  background-size: 180% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  animation: sunsetTextDrift 6s ease-in-out infinite alternate;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 7.2vw, 7.2rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5vw, 5.4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease;
}

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

.button-light {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.54);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(184, 209, 195, 0.54) 56%, rgba(173, 93, 69, 0.18)),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 42px rgba(7, 13, 10, 0.24);
  backdrop-filter: blur(18px) saturate(1.22);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(135deg, rgba(255, 226, 155, 0.94), rgba(223, 124, 93, 0.76) 54%, rgba(110, 106, 166, 0.5)),
    rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 22px 52px rgba(132, 68, 63, 0.26);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.66);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(7, 13, 10, 0.18);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: linear-gradient(135deg, var(--ink), #39493f 48%, var(--clay));
  box-shadow: 0 18px 38px rgba(24, 35, 29, 0.18);
}

.service-strip {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  left: clamp(18px, 4vw, 56px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  animation: serviceReveal 900ms var(--ease) 420ms both;
}

.service-strip div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px clamp(14px, 3vw, 32px);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 14, 12, 0.18);
  backdrop-filter: blur(12px);
  transition:
    background 220ms ease,
    transform 220ms var(--ease);
}

.service-strip div:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.service-strip div:last-child {
  border-right: 0;
}

.service-strip span,
.hours-list span,
.event-points span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-strip span {
  color: rgba(255, 255, 255, 0.62);
}

.service-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.72rem);
  font-weight: 500;
  letter-spacing: 0;
}

.service-strip small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
}

.intro-band {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 38vh;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: transparent;
}

.intro-band p {
  position: relative;
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 1.02;
  text-align: center;
  text-shadow: none;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  padding-block: clamp(72px, 10vw, 136px);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

.story-copy p,
.section-heading p,
.events-copy p,
.gift-section p,
.contact-content p,
.faq-list p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.story-copy p {
  max-width: 640px;
  margin-bottom: 18px;
}

.story-aside {
  border-top: 1px solid var(--line);
}

.aside-line {
  transition:
    border-color 220ms ease,
    transform 220ms var(--ease);
}

.aside-line {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.aside-line:hover {
  border-color: rgba(173, 93, 69, 0.3);
  transform: translateX(4px);
}

.aside-line span {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.aside-line p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
}

.media-mosaic {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto clamp(72px, 10vw, 132px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.media-mosaic figure {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
  box-shadow: 0 18px 42px rgba(20, 28, 24, 0.08);
  transition:
    box-shadow 260ms ease,
    transform 260ms var(--ease);
}

.media-mosaic figure:hover {
  box-shadow: 0 26px 60px rgba(20, 28, 24, 0.15);
  transform: translateY(-3px);
}

.media-mosaic .mosaic-large {
  grid-row: span 2;
  min-height: 560px;
}

.media-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 260ms ease;
}

.media-mosaic figure:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.035);
}

.media-mosaic .mosaic-large img {
  object-position: center 36%;
}

.image-break {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.image-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroBreath 16s ease-in-out infinite alternate;
}

.image-break::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 14, 12, 0.7), rgba(10, 14, 12, 0.04) 62%);
  content: "";
}

.image-break-text {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(44px, 7vw, 86px);
}

.image-break-text span {
  display: block;
  max-width: 720px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 0.98;
}

.image-break-text p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 62px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.hours-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hours-list article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.2);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease);
}

.hours-list article:last-child {
  border-right: 0;
}

.hours-list article:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(230, 238, 233, 0.22)),
    rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 2px 0 rgba(244, 189, 106, 0.24);
  transform: translateY(-2px);
}

.hours-list span {
  color: var(--clay);
}

.hours-list p {
  color: var(--ink-soft);
}

.hours-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 500;
}

.events-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.events-media {
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition:
    box-shadow 260ms ease,
    transform 260ms var(--ease);
}

.events-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 260ms ease;
}

.events-media:hover {
  box-shadow: 0 30px 76px rgba(20, 28, 24, 0.22);
  transform: translateY(-3px);
}

.events-media:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.events-copy h2 {
  max-width: 620px;
}

.events-copy p {
  max-width: 580px;
}

.event-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.event-points span {
  padding: 10px 12px;
  color: var(--sage);
  border: 1px solid rgba(83, 107, 91, 0.28);
  border-radius: 999px;
  background: rgba(230, 238, 233, 0.62);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms var(--ease);
}

.event-points span:hover {
  color: var(--ink);
  border-color: rgba(173, 93, 69, 0.28);
  background: rgba(244, 189, 106, 0.24);
  transform: translateY(-1px);
}

.next-event-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  margin-top: 28px;
  padding: clamp(18px, 3vw, 24px);
  color: var(--ink);
  border: 1px solid rgba(83, 107, 91, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 226, 155, 0.54), rgba(243, 154, 95, 0.24) 45%, rgba(184, 209, 195, 0.4)),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    0 18px 44px rgba(20, 28, 24, 0.1),
    0 0 0 rgba(240, 179, 101, 0);
  animation: eventGlow 3.6s ease-in-out infinite;
  transition:
    border-color 260ms ease,
    transform 260ms var(--ease);
}

.next-event-card:hover {
  border-color: rgba(173, 93, 69, 0.34);
  transform: translateY(-3px);
}

.next-event-card::before {
  position: absolute;
  inset: -45% auto -45% -70%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
  transform: rotate(16deg);
  animation: eventShimmer 4.8s ease-in-out infinite;
}

.next-event-card > * {
  position: relative;
  z-index: 1;
}

.next-event-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.next-event-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1;
}

.next-event-card p {
  max-width: none;
  margin: 0;
  color: var(--ink-soft);
}

.next-event-card a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, #f0b365, #d46e6f 54%, #7169aa);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(132, 68, 63, 0.24);
  transition:
    box-shadow 180ms ease,
    transform 180ms var(--ease),
    filter 180ms ease;
}

.next-event-card a:hover,
.next-event-card a:focus-visible {
  filter: saturate(1.06) brightness(1.03);
  box-shadow: 0 18px 34px rgba(132, 68, 63, 0.3);
  transform: translateY(-1px);
}

.next-event-card em {
  color: var(--sage);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes eventGlow {
  0%,
  100% {
    box-shadow:
      0 18px 44px rgba(20, 28, 24, 0.1),
      0 0 0 rgba(240, 179, 101, 0);
  }

  50% {
    box-shadow:
      0 20px 48px rgba(20, 28, 24, 0.13),
      0 0 34px rgba(240, 179, 101, 0.26);
  }
}

@keyframes eventShimmer {
  0%,
  42% {
    transform: translateX(0) rotate(16deg);
  }

  70%,
  100% {
    transform: translateX(430%) rotate(16deg);
  }
}

.featured-events {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.featured-events article {
  overflow: hidden;
  border: 1px solid rgba(83, 107, 91, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 38px rgba(20, 28, 24, 0.07);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease);
}

.featured-events article:hover {
  border-color: rgba(173, 93, 69, 0.24);
  box-shadow: var(--soft-shadow);
  transform: translateY(-3px);
}

.featured-events img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 720ms var(--ease), filter 220ms ease;
}

.featured-events article:hover img {
  filter: saturate(1.07);
  transform: scale(1.035);
}

.featured-events div {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.featured-events span {
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-events strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.08;
}

.featured-events p {
  max-width: none;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.38;
}

.featured-events em,
.featured-events a {
  color: var(--sage);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-events a {
  width: max-content;
  transition: color 180ms ease;
}

.featured-events a:hover,
.featured-events a:focus-visible {
  color: var(--clay);
}

.gift-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto clamp(50px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1fr minmax(240px, 360px) auto;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(34px, 5vw, 60px);
  color: var(--ink);
  border: 1px solid rgba(83, 107, 91, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(184, 209, 195, 0.54), rgba(255, 255, 255, 0.86) 58%, rgba(244, 189, 106, 0.2)),
    var(--mist);
  box-shadow: 0 18px 48px rgba(20, 28, 24, 0.08);
}

.gift-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
}

.gift-section p {
  margin-bottom: 0;
}

.faq-section {
  padding-top: clamp(44px, 7vw, 88px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

details:hover,
details[open] {
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(173, 93, 69, 0.24);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.65vw, 1.62rem);
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--sage);
  border: 1px solid rgba(83, 107, 91, 0.38);
  border-radius: 50%;
  content: "+";
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.1rem;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms var(--ease);
}

details[open] summary::after {
  content: "-";
  color: var(--white);
  background: var(--clay);
  transform: rotate(180deg);
}

details p {
  max-width: 720px;
  margin-bottom: 28px;
}

.contact-band {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.contact-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-band::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 12, 0.78), rgba(10, 14, 12, 0.24) 62%),
    linear-gradient(0deg, rgba(10, 14, 12, 0.4), rgba(10, 14, 12, 0.16));
  content: "";
}

.contact-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: auto;
}

.contact-content h2 {
  max-width: 740px;
}

.contact-content p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-lines {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 34px;
}

.contact-lines a {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.9);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms var(--ease);
}

.contact-lines a:hover,
.contact-lines a:focus-visible {
  border-color: rgba(244, 189, 106, 0.72);
  color: var(--white);
  transform: translateX(4px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(24, 35, 29, 0.98), rgba(43, 58, 48, 0.98) 58%, rgba(78, 55, 58, 0.96)),
    var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer span {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.site-footer p {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 22px;
}

.footer-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--footer-brand-a, rgba(255, 255, 255, 0.18)), var(--footer-brand-b, rgba(255, 255, 255, 0.05)) 55%, var(--footer-brand-c, rgba(184, 209, 195, 0.12))),
    rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 12px 28px var(--footer-glow, rgba(0, 0, 0, 0.12));
  backdrop-filter: blur(14px) saturate(1.18);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
  transition:
    transform 220ms var(--ease),
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.footer-instagram {
  --footer-brand-a: rgba(64, 93, 230, 0.42);
  --footer-brand-b: rgba(193, 53, 132, 0.5);
  --footer-brand-c: rgba(253, 175, 69, 0.42);
  --footer-glow: rgba(193, 53, 132, 0.18);
}

.footer-maps {
  --footer-brand-a: rgba(66, 133, 244, 0.42);
  --footer-brand-b: rgba(52, 168, 83, 0.46);
  --footer-brand-c: rgba(251, 188, 5, 0.42);
  --footer-glow: rgba(66, 133, 244, 0.16);
}

.footer-tripadvisor {
  --footer-brand-a: rgba(0, 170, 108, 0.46);
  --footer-brand-b: rgba(0, 130, 94, 0.42);
  --footer-brand-c: rgba(255, 255, 255, 0.12);
  --footer-glow: rgba(0, 170, 108, 0.16);
}

.footer-pill:hover,
.footer-pill:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(135deg, var(--footer-brand-a, rgba(255, 226, 155, 0.34)), var(--footer-brand-b, rgba(243, 154, 95, 0.22)), var(--footer-brand-c, rgba(140, 120, 199, 0.2))),
    rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 34px var(--footer-glow, rgba(0, 0, 0, 0.18));
  transform: translateY(-1px);
}

.site-footer a {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-body {
  background:
    linear-gradient(180deg, rgba(230, 238, 233, 0.8), rgba(251, 250, 246, 0) 360px),
    var(--paper);
}

.menu-body .site-header {
  position: sticky;
  inset: 0 0 auto;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 16px 44px rgba(23, 32, 27, 0.1);
  backdrop-filter: blur(18px);
}

.menu-body .site-header .brand img {
  filter: none !important;
}

.menu-body .site-header .nav-button {
  color: var(--ink);
  border-color: rgba(24, 35, 29, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(184, 209, 195, 0.46) 55%, rgba(173, 93, 69, 0.18)),
    rgba(255, 255, 255, 0.5);
}

.menu-main {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 86px) 0 clamp(64px, 9vw, 112px);
}

.menu-hero {
  position: relative;
  min-height: clamp(430px, 66vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(30px, 6vw, 72px);
  color: var(--white);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
  margin-bottom: clamp(34px, 6vw, 72px);
  animation: menuHeroReveal 850ms var(--ease) 80ms both;
}

.menu-hero-media,
.menu-hero-media::after,
.menu-hero-media video {
  position: absolute;
  inset: 0;
}

.menu-hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 12, 10, 0.72), rgba(8, 12, 10, 0.28) 52%, rgba(8, 12, 10, 0.08)),
    linear-gradient(0deg, rgba(8, 12, 10, 0.62), rgba(8, 12, 10, 0.1) 56%);
}

.menu-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroBreath 15s ease-in-out infinite alternate;
}

.menu-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.menu-hero .eyebrow {
  color: rgba(230, 238, 233, 0.9);
}

.menu-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 9vw, 7.4rem);
  font-weight: 500;
  line-height: 0.9;
}

.menu-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}

.menu-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.menu-switcher a,
.menu-note a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--sage);
  border: 1px solid rgba(83, 107, 91, 0.26);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms var(--ease);
}

.menu-hero .menu-switcher a {
  color: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.menu-switcher a.is-active,
.menu-switcher a:hover,
.menu-switcher a:focus-visible,
.menu-note a:hover,
.menu-note a:focus-visible {
  color: var(--ink);
  background: rgba(184, 209, 195, 0.38);
  border-color: rgba(173, 93, 69, 0.22);
  transform: translateY(-1px);
}

.menu-hero .menu-switcher a.is-active,
.menu-hero .menu-switcher a:hover,
.menu-hero .menu-switcher a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
}

.happy-hour-notice {
  position: sticky;
  top: 92px;
  z-index: 9;
  width: min(var(--max), calc(100% - 36px));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: -26px auto 38px;
  padding: 16px clamp(18px, 3vw, 28px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(173, 93, 69, 0.82), rgba(244, 189, 106, 0.76) 46%, rgba(73, 98, 105, 0.78)),
    rgba(22, 30, 27, 0.58);
  box-shadow: 0 22px 46px rgba(20, 28, 24, 0.18);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 260ms ease,
    transform 260ms var(--ease);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.happy-hour-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.happy-hour-notice span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.happy-hour-notice strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 500;
}

.happy-hour-notice p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.happy-hour-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.happy-hour-actions em {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
}

.happy-hour-actions a {
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.happy-hour-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.happy-hour-close span {
  grid-area: 1 / 1;
  width: 13px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--white);
}

.happy-hour-close span:first-child {
  transform: rotate(45deg);
}

.happy-hour-close span:last-child {
  transform: rotate(-45deg);
}

.menu-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.menu-category {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(83, 107, 91, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(20, 28, 24, 0.08);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease);
}

.menu-category:hover {
  border-color: rgba(173, 93, 69, 0.22);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 58px rgba(20, 28, 24, 0.12);
  transform: translateY(-2px);
}

.menu-category h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 500;
  line-height: 1;
}

.menu-list {
  display: grid;
  gap: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(24, 35, 29, 0.12);
  transition: border-color 180ms ease;
}

.menu-category:hover .menu-item {
  border-color: rgba(24, 35, 29, 0.16);
}

.menu-list.compact .menu-item {
  grid-template-columns: 1fr;
}

.menu-item h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.menu-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.menu-item small {
  display: block;
  margin-top: 7px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-item strong {
  color: var(--clay);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.menu-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(26px, 5vw, 54px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.menu-note p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
}

.blog-body .menu-main {
  width: min(1360px, calc(100% - 44px));
}

.blog-hero {
  min-height: clamp(420px, 58vh, 680px);
}

.blog-hero .menu-hero-copy {
  max-width: 980px;
}

.blog-hero h1 {
  max-width: 1040px;
  font-size: clamp(4rem, 8vw, 8.4rem);
}

.blog-hero p {
  max-width: 760px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 clamp(22px, 4vw, 46px);
  border-top: 2px solid rgba(24, 35, 29, 0.72);
  border-bottom: 1px solid rgba(24, 35, 29, 0.2);
}

.blog-card {
  position: relative;
  grid-column: span 6;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(24px, 4vw, 42px) 0;
  border-top: 1px solid rgba(24, 35, 29, 0.2);
  background: transparent;
  transition:
    border-color 220ms ease,
    transform 220ms var(--ease);
}

.blog-card:first-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  border-top: 0;
  padding-top: clamp(30px, 5vw, 58px);
}

.blog-card:hover {
  border-color: rgba(173, 93, 69, 0.36);
  transform: translateY(-2px);
}

.blog-card img {
  width: 100%;
  height: auto;
  min-height: 310px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(20, 28, 24, 0.1);
  filter: saturate(1.02) contrast(1.02);
}

.blog-card:first-child img {
  min-height: 520px;
  aspect-ratio: 1.12 / 1;
}

.blog-card > div {
  display: grid;
  align-content: start;
}

.blog-meta {
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.98;
}

.blog-card:first-child h2 {
  font-size: clamp(3rem, 5.6vw, 6.6rem);
  line-height: 0.92;
}

.blog-excerpt {
  max-width: 760px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.28;
}

.blog-body {
  display: block;
  max-width: none;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

.blog-card:first-child .blog-body {
  column-count: 2;
  column-gap: clamp(24px, 3vw, 38px);
}

.blog-body p {
  margin: 0 0 14px;
  break-inside: avoid;
}

.newspaper-body {
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.88), rgba(251, 250, 246, 0.72)),
    var(--paper);
}

.newspaper-main {
  width: min(1420px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 84px) 0 clamp(72px, 10vw, 128px);
}

.newspaper-masthead {
  display: grid;
  justify-items: center;
  padding: clamp(34px, 6vw, 72px) 0 clamp(20px, 4vw, 36px);
  text-align: center;
  border-top: 3px double rgba(24, 35, 29, 0.75);
  border-bottom: 3px double rgba(24, 35, 29, 0.75);
}

.newspaper-masthead p {
  margin: 0 0 8px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.newspaper-top-article {
  max-width: 1040px;
  display: grid;
  justify-items: center;
}

.newspaper-top-article .newspaper-meta {
  margin-bottom: 12px;
}

.newspaper-top-article h1 {
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 7.8rem);
  line-height: 0.88;
}

.newspaper-top-article p:last-child {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.24;
  text-transform: none;
}

.newspaper-masthead div {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(24, 35, 29, 0.28);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newspaper-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.newspaper-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: var(--sage);
  border: 1px solid rgba(83, 107, 91, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.newspaper-edition {
  display: grid;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
  padding-top: clamp(28px, 5vw, 54px);
}

.newspaper-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
}

.newspaper-meta {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.newspaper-lead h2 {
  margin-bottom: 16px;
  font-size: clamp(3.2rem, 6.3vw, 8rem);
  line-height: 0.84;
}

.newspaper-deck {
  max-width: 760px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  line-height: 1.18;
}

.newspaper-lead img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(0.12) saturate(0.9) contrast(1.06);
  box-shadow: 0 18px 46px rgba(20, 28, 24, 0.11);
}

.newspaper-copy {
  grid-column: 1 / -1;
  column-count: 3;
  column-gap: clamp(22px, 3vw, 38px);
  padding-top: 22px;
  border-top: 1px solid rgba(24, 35, 29, 0.22);
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.62;
}

.newspaper-copy p {
  margin: 0 0 14px;
  break-inside: avoid;
}

.newspaper-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 48px);
  padding-top: clamp(24px, 4vw, 42px);
  border-top: 3px double rgba(24, 35, 29, 0.72);
}

.newspaper-secondary-grid article {
  display: grid;
  grid-template-columns: minmax(150px, 0.48fr) minmax(0, 0.72fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
  padding-top: clamp(18px, 3vw, 28px);
  border-top: 1px solid rgba(24, 35, 29, 0.18);
}

.newspaper-secondary-grid img {
  width: 100%;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(0.08) saturate(0.94) contrast(1.04);
}

.newspaper-secondary-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.newspaper-secondary-grid h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 3.4rem);
  font-weight: 500;
  line-height: 0.96;
}

.newspaper-secondary-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.52;
}

.admin-main {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(46px, 8vw, 92px) 0 clamp(70px, 9vw, 118px);
}

.admin-intro {
  margin-bottom: clamp(30px, 5vw, 56px);
}

.admin-intro h1 {
  margin-bottom: 18px;
  color: var(--ink);
}

.admin-intro > p:not(.section-kicker) {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.admin-toolbar,
.admin-form-actions,
.admin-list-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.admin-toolbar {
  margin: 28px 0 18px;
}

.admin-toolbar .button,
.admin-form-actions .button {
  width: auto;
}

.admin-json {
  width: min(760px, 100%);
  min-height: 140px;
  padding: 14px;
  color: var(--ink);
  border: 1px solid rgba(83, 107, 91, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font: 0.84rem/1.45 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  resize: vertical;
}

.admin-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--clay);
  font-size: 0.9rem;
  font-weight: 700;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 42px);
}

.admin-panel {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(83, 107, 91, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--soft-shadow);
}

.admin-panel-hours,
.admin-panel-menu {
  grid-column: 1 / -1;
}

.admin-hours-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(20px, 4vw, 36px);
  align-items: start;
}

.admin-menu-form {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(20px, 4vw, 36px);
  align-items: start;
}

.admin-menu-fields {
  display: grid;
  gap: 14px;
}

.admin-panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.admin-panel-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid rgba(83, 107, 91, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  font: 0.95rem/1.45 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.admin-form select {
  appearance: none;
}

.admin-form textarea {
  resize: vertical;
}

.admin-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: start;
}

.admin-check input {
  width: auto;
  height: 18px;
  padding: 0;
  accent-color: var(--clay);
}

.admin-list {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.admin-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(83, 107, 91, 0.14);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.72);
}

.admin-sortable-item {
  cursor: grab;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    transform 180ms var(--ease);
}

.admin-sortable-item:active {
  cursor: grabbing;
}

.admin-sortable-item.is-dragging {
  opacity: 0.48;
  transform: scale(0.99);
}

.admin-sortable-item.is-drop-target {
  border-color: rgba(173, 93, 69, 0.48);
  box-shadow: 0 14px 32px rgba(173, 93, 69, 0.16);
}

.admin-list-item span {
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-list-item strong {
  display: block;
  margin: 4px 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
}

.admin-list-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.admin-list-item small {
  display: block;
  margin-top: 4px;
  color: rgba(41, 52, 45, 0.58);
  font-size: 0.76rem;
}

.admin-list-actions button {
  min-height: 34px;
  padding: 0 11px;
  color: var(--ink);
  border: 1px solid rgba(83, 107, 91, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-list-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.event-popup {
  position: fixed;
  top: 76px;
  right: clamp(16px, 3vw, 34px);
  bottom: auto;
  z-index: 40;
  max-width: min(380px, calc(100vw - 32px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 280ms ease,
    transform 280ms var(--ease);
}

.event-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.event-popup-card {
  position: relative;
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  padding: 12px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(230, 238, 233, 0.76)),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 28px 82px rgba(12, 20, 16, 0.24);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
}

.event-popup-card img {
  width: 100%;
  height: 156px;
  object-fit: cover;
  border-radius: 6px;
}

.event-popup-copy {
  align-self: center;
  padding: 10px 8px 10px 0;
}

.event-popup-copy .section-kicker {
  margin-bottom: 10px;
}

.event-popup-copy h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
  line-height: 1;
}

.event-popup-copy p:not(.section-kicker) {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.4;
}

.event-popup .button {
  min-height: 42px;
  padding: 12px 16px;
  font-size: 0.68rem;
}

.event-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(24, 35, 29, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms var(--ease);
}

.event-popup-close:hover,
.event-popup-close:focus-visible {
  background: var(--white);
  transform: rotate(90deg);
}

.event-popup-close span {
  position: absolute;
  top: 15px;
  left: 8px;
  width: 14px;
  height: 1px;
  background: var(--ink);
}

.event-popup-close span:first-child {
  transform: rotate(45deg);
}

.event-popup-close span:last-child {
  transform: rotate(-45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease),
    filter 760ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateX(calc((min(1180px, 100vw - 36px) - min(760px, 100vw - 36px)) / -2)) translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateX(calc((min(1180px, 100vw - 36px) - min(760px, 100vw - 36px)) / -2));
  }
}

@keyframes heroRiseMobile {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBreath {
  from {
    transform: scale(1.01);
  }

  to {
    transform: scale(1.055);
  }
}

@keyframes menuHeroReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sunsetTextDrift {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 22;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 14px;
    padding: 92px 24px 34px;
    color: var(--ink);
    background: rgba(251, 250, 246, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.menu-active .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: clamp(1.08rem, 4.8vw, 1.85rem);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-dropdown {
    width: min(260px, 100%);
    display: grid;
    justify-items: center;
  }

  .nav-menu-button {
    font-size: clamp(1.08rem, 4.8vw, 1.85rem);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .menu-dropdown-panel {
    position: static;
    width: 100%;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition:
      max-height 180ms ease,
      margin 180ms ease;
    backdrop-filter: none;
  }

  .nav-dropdown.is-open .menu-dropdown-panel {
    max-height: 230px;
    margin-top: 8px;
    transform: none;
  }

  .site-nav .menu-dropdown-panel a {
    justify-content: center;
    padding: 7px 0;
    font-family:
      Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .site-nav .nav-button {
    min-height: 44px;
    padding: 0 18px;
    font-family:
      Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .hero-content {
    transform: none;
    animation-name: heroRiseMobile;
  }

  .story-grid,
  .section-heading,
  .events-section,
  .gift-section,
  .media-mosaic,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .blog-body .menu-main {
    width: min(var(--max), calc(100% - 36px));
  }

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

  .blog-card,
  .blog-card:first-child {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .blog-card:first-child .blog-body {
    column-count: 1;
  }

  .newspaper-lead {
    grid-template-columns: 1fr;
  }

  .newspaper-copy {
    column-count: 2;
  }

  .newspaper-secondary-grid {
    grid-template-columns: 1fr;
  }

  .newspaper-secondary-grid article {
    grid-template-columns: minmax(180px, 0.45fr) minmax(0, 0.75fr);
  }

  .media-mosaic {
    grid-template-rows: none;
  }

  .media-mosaic .mosaic-large {
    grid-row: auto;
    min-height: 440px;
  }

  .gift-section {
    justify-items: start;
  }

  .events-media,
  .events-media img {
    min-height: 460px;
  }

  .blog-card img {
    min-height: 360px;
  }

  .blog-card:first-child img {
    min-height: 420px;
    aspect-ratio: 16 / 10;
  }

  .newspaper-lead img {
    min-height: 420px;
  }

  .happy-hour-notice {
    grid-template-columns: auto 1fr;
  }

  .happy-hour-actions {
    grid-column: 2;
    justify-content: flex-start;
  }
}

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

  .hero {
    min-height: 92svh;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-bottom: 252px;
  }

  h1 {
    font-size: clamp(3rem, 12vw, 4.4rem);
  }

  .blog-hero h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .button {
    width: 100%;
  }

  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .service-strip div {
    min-height: 70px;
    align-items: start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .service-strip div:last-child {
    grid-column: span 2;
  }

  .service-strip div:last-child {
    border-bottom: 0;
  }

  .service-strip strong {
    font-size: 1.35rem;
  }

  .intro-band {
    min-height: auto;
  }

  .intro-band p,
  h2 {
    line-height: 1.05;
  }

  .media-mosaic {
    gap: 12px;
  }

  .media-mosaic figure,
  .media-mosaic .mosaic-large {
    min-height: 300px;
  }

  .hours-list {
    grid-template-columns: 1fr;
  }

  .hours-list article {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hours-list article:last-child {
    border-bottom: 0;
  }

  .image-break,
  .contact-band {
    min-height: 68vh;
  }

  .events-media,
  .events-media img {
    min-height: 360px;
  }

  .event-points span {
    width: 100%;
  }

  .next-event-card {
    grid-template-columns: 1fr;
  }

  .next-event-card a {
    width: 100%;
  }

  .featured-events {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .menu-main {
    padding-top: 34px;
  }

  .blog-card img,
  .blog-card:first-child img {
    min-height: 260px;
  }

  .newspaper-main {
    width: calc(100% - 36px);
    padding-top: 34px;
  }

  .newspaper-top-article h1 {
    font-size: clamp(3.2rem, 15vw, 5.6rem);
  }

  .newspaper-copy {
    column-count: 1;
  }

  .newspaper-lead img {
    min-height: 300px;
  }

  .newspaper-secondary-grid article {
    grid-template-columns: 1fr;
  }

  .newspaper-secondary-grid img {
    min-height: 240px;
  }

  .menu-content {
    grid-template-columns: 1fr;
  }

  .happy-hour-notice {
    position: relative;
    grid-template-columns: 1fr;
    margin: -18px auto 28px;
  }

  .happy-hour-close {
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .happy-hour-actions {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .menu-category {
    padding: 22px 18px;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .menu-note {
    align-items: flex-start;
  }

  .admin-panel-heading,
  .admin-list-item {
    grid-template-columns: 1fr;
  }

  .admin-hours-layout {
    grid-template-columns: 1fr;
  }

  .admin-menu-form {
    grid-template-columns: 1fr;
  }

  .admin-panel-heading {
    display: grid;
  }

  .event-popup {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .event-popup-card {
    grid-template-columns: 112px 1fr;
  }

  .event-popup-card img {
    height: 170px;
  }

  .event-popup-copy h2 {
    font-size: 1.55rem;
  }

  .event-popup-copy p:not(.section-kicker) {
    font-size: 0.86rem;
  }
}

@media (max-width: 760px) and (max-height: 760px) {
  .hero-actions .button-ghost {
    display: none;
  }
}

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