@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Cormorant+SC:wght@500&family=Jost:wght@300;400&display=swap');

/* ─── Variables ─────────────────────────────────────────────────────────── */
:root {
  --color-charcoal:   #1C1C1A;
  --color-charcoal-2: #2A2A27;
  --color-brass:      #B5924C;
  --color-terracotta: #C4724A;
  --color-bone:       #F5F0E8;
  --color-bone-2:     #EDE5D6;
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-charcoal);
  color: var(--color-bone);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  cursor: none;
  /* overflow-x is on <main>, NOT here — overflow on body/html breaks position:fixed in Safari */
}

/* <main> contains all page content below the nav.
   overflow-x:hidden lives here so it never creates a new containing block for position:fixed nav. */
main {
  display: block;
  width: 100%;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Scroll Progress Bar ────────────────────────────────────────────────── */
#scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--color-brass);
  z-index: 10000;
  width: 0;
  pointer-events: none;
}

/* ─── Page Transition Overlay ───────────────────────────────────────────── */
#page-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-charcoal);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#page-transition-overlay.active { opacity: 1; pointer-events: all; }

/* ─── Custom Cursor ──────────────────────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--color-brass);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s;
}
#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1px solid var(--color-terracotta);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
#cursor-dot.hidden { opacity: 0; }
#cursor-ring.view-mode::after {
  content: 'VIEW';
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  color: var(--color-bone);
  letter-spacing: 0.08em;
}
@media (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
  body, button { cursor: auto; }
}

/* ─── Navigation ─────────────────────────────────────────────────────────── */
/* body > nav targets ONLY the top-level site nav, never any nav inside footer/main */
body > nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.75rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transform: translateY(0);
  transition: transform 0.3s ease, background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease;
}
body > nav.scrolled {
  background: rgba(28, 28, 26, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.25rem 4rem;
}
body > nav.hidden { transform: translateY(-100%); }

.nav-logo { display: flex; flex-direction: column; gap: 0.1rem; text-decoration: none; }
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--color-bone);
  letter-spacing: 0.08em;
  line-height: 1;
}
.nav-logo-sub {
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.65rem;
  color: var(--color-brass);
  letter-spacing: 0.25em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--color-bone);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background: var(--color-brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--color-brass); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--color-brass); }
.nav-links a.active::after { transform: scaleX(1); background: var(--color-terracotta); }

.nav-cta {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--color-terracotta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  padding: 0.5rem 1.25rem;
  transition: color 0.3s ease;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}
.nav-cta:hover::before { transform: scaleX(1); }
.nav-cta:hover { color: var(--color-bone); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1002;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--color-bone);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Overlay */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-charcoal);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile-overlay.open { opacity: 1; pointer-events: all; }
.nav-mobile-overlay a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2.8rem;
  color: var(--color-bone);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.2s ease;
}
.nav-mobile-overlay.open a { animation: mobileNavIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.nav-mobile-overlay a:hover { color: var(--color-brass); }
@keyframes mobileNavIn { to { opacity: 1; transform: translateY(0); } }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;          /* explicit full-width — eliminates any grey sidebars */
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  top: -20%; left: 0; right: 0; bottom: -20%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 26, 0.55);
  z-index: 1;
}
.hero-overlay--dark { background: rgba(28, 28, 26, 0.7); }
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 960px;
  width: 100%;
  /* NO will-change here — it creates a stacking context that can disrupt position:fixed nav */
}

/* Eyebrow */
.eyebrow {
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--color-terracotta);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  display: block;
}

.hero-eyebrow { opacity: 0; animation: fadeUp 0.7s ease 0.15s forwards; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero Headline */
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 7rem);
  color: var(--color-bone);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  -webkit-hyphens: none;
}

/* Anti-hyphenation for all headings */
h1, h2, h3, .section-headline, .pull-quote, .blog-card-title {
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  -webkit-hyphens: none;
}

/* Letter Stagger */
.letter-stagger .letter {
  display: inline-block;
  opacity: 0;
  animation: letterIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes letterIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-subtext {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--color-bone);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  opacity: 0;
}
.hero-subtext.visible { animation: fadeUp 0.6s ease forwards; }

.hero-note {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--color-bone-2);
  margin-top: 1.5rem;
  opacity: 0;
}
.hero-note.visible { animation: fadeUp 0.5s ease forwards; }

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
}
.hero-ctas.visible { animation: fadeUp 0.6s ease forwards; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-bone);
  opacity: 0.7;
  transition: opacity 0.4s ease;
}
.scroll-indicator svg { animation: bounceDown 1.5s ease infinite; }
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ─── CTA Buttons ────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--color-terracotta);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  padding: 0.75rem 1.75rem;
  transition: color 0.3s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}
.btn-primary:hover { color: var(--color-bone); }
.btn-primary:hover::before { transform: scaleX(1); }

.btn-secondary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--color-bone);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(245, 240, 232, 0.4);
  padding: 0.75rem 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-secondary:hover { color: var(--color-brass); border-color: var(--color-brass); }

/* ─── Section Base ───────────────────────────────────────────────────────── */
.section { padding: 5rem 6vw; }
.section--charcoal   { background: var(--color-charcoal); }
.section--charcoal-2 { background: var(--color-charcoal-2); }
.section--bone-2     { background: var(--color-bone-2); }

.section-inner      { max-width: 1200px; margin: 0 auto; }
.section-inner--wide { max-width: 1440px; margin: 0 auto; }

.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  color: var(--color-brass);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.section-headline--bone { color: var(--color-bone); }

.body-text {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--color-bone);
  line-height: 1.8;
}
.body-text--muted { color: var(--color-bone-2); }

/* ─── Reveal System ──────────────────────────────────────────────────────── */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.94); }
.reveal.in-view,
.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-scale.in-view {
  opacity: 1;
  transform: none;
}

/* ─── Origin Strip ───────────────────────────────────────────────────────── */
.origin-strip {
  background: var(--color-charcoal-2);
  padding: 5rem 6vw;
  text-align: center;
}
.origin-strip .body-text {
  max-width: 720px;
  margin: 0 auto 3rem;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 3.5rem;
  color: var(--color-brass);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--color-bone);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── Featured Dishes ────────────────────────────────────────────────────── */
.featured-dishes {
  background: var(--color-charcoal);
  padding: 5rem 0 5rem 6vw;
}
.featured-dishes-header {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  padding-right: 6vw;
}
.drag-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-right: 4rem;
  padding-bottom: 0.5rem;
}
.drag-scroll::-webkit-scrollbar { display: none; }
.drag-scroll.is-dragging { cursor: grabbing; user-select: none; }

.dish-card {
  flex-shrink: 0;
  width: 380px;
  height: 520px;
  position: relative;
  overflow: hidden;
}
.dish-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.dish-card:hover img { transform: scale(1.04); }
.dish-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(181, 146, 76, 0.92);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.dish-card:hover .dish-card-overlay { clip-path: inset(0% 0 0 0); }
.dish-card-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--color-bone);
  text-align: center;
  line-height: 1.2;
}
.featured-dishes-cta {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-right: 6vw;
}

/* ─── Awards Marquee ─────────────────────────────────────────────────────── */
.awards-strip {
  background: var(--color-bone-2);
  padding-bottom: 2rem;
}
.awards-strip-header {
  text-align: center;
  padding: 2.5rem 6vw 1rem;
}
.awards-strip-header .eyebrow { color: var(--color-terracotta); margin-bottom: 0; }
.marquee-wrapper { overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeAnim 30s linear infinite;
  align-items: center;
}
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2rem;
  white-space: nowrap;
  padding: 0 2.5rem;
  color: var(--color-charcoal);
}
.marquee-item:nth-child(4n+2),
.marquee-item:nth-child(4n+6) { color: var(--color-brass); }
.marquee-sep { color: var(--color-terracotta); font-size: 1.5rem; padding: 0 0.5rem; }
@keyframes marqueeAnim {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Early Bird ─────────────────────────────────────────────────────────── */
.early-bird {
  background: var(--color-charcoal);
  padding: 4.5rem 6vw;
  border-left: 4px solid var(--color-terracotta);
}
.early-bird-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.clock-wrap { flex-shrink: 0; }
.clock-face {
  width: 52px; height: 52px;
  border: 2px solid var(--color-brass);
  border-radius: 50%;
  position: relative;
}
.clock-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  background: var(--color-brass);
  border-radius: 2px;
}
.clock-minute { width: 1.5px; height: 17px; margin-left: -0.75px; animation: spinMinute 60s linear infinite; }
.clock-hour   { width: 2px;   height: 12px; margin-left: -1px;    animation: spinHour 3600s linear infinite; }
@keyframes spinMinute { to { transform: rotate(360deg); } }
@keyframes spinHour   { to { transform: rotate(360deg); } }
.clock-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  background: var(--color-brass);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.early-bird-content { flex: 1; min-width: 280px; }
.early-bird-content .eyebrow { margin-bottom: 0.75rem; }
.early-bird-content .section-headline {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  color: var(--color-bone);
  margin-bottom: 1rem;
}
.early-bird-content .body-text { margin-bottom: 2rem; }

/* ─── Instagram Strip ────────────────────────────────────────────────────── */
.instagram-strip {
  background: var(--color-charcoal);
  padding: 5rem 6vw;
}
.instagram-strip-header { text-align: center; margin-bottom: 3rem; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-bottom: 3rem;
}
.insta-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.insta-item:hover img { transform: scale(1.05); }
.insta-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(181, 146, 76, 0.9);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
}
.insta-item:hover .insta-item-overlay { clip-path: inset(0% 0 0 0); }
.insta-item-overlay span {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--color-bone);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.instagram-strip-cta { text-align: center; }

/* ─── Menu Accordion ─────────────────────────────────────────────────────── */
.menu-section {
  background: var(--color-charcoal);
  padding: 4rem 6vw 5rem;
}
.menu-inner { max-width: 920px; margin: 0 auto; }
.menu-section-header { margin-bottom: 3rem; text-align: center; }
.menu-category { border-bottom: 1px solid rgba(181, 146, 76, 0.15); }
.menu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  background: transparent;
  text-align: left;
}
.menu-toggle-name {
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--color-brass);
  letter-spacing: 0.04em;
}
.menu-arrow {
  color: var(--color-terracotta);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.menu-toggle.open .menu-arrow { transform: rotate(90deg); }
.menu-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-item {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(245, 240, 232, 0.05);
}
.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 0.3rem;
}
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-bone);
}
.menu-item-price {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--color-brass);
  flex-shrink: 0;
}
.menu-item-tags {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--color-terracotta);
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* ─── Wines Section ──────────────────────────────────────────────────────── */
.wines-section {
  background: var(--color-charcoal-2);
  padding: 5rem 6vw;
}
.wines-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.wines-inner .body-text { max-width: 600px; margin: 0 auto 2.5rem; }
.wines-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  margin-top: 4rem;
}

/* ─── Booking Strip ──────────────────────────────────────────────────────── */
.booking-strip {
  background: var(--color-charcoal-2);
  padding: 4rem 6vw;
  text-align: center;
}
.booking-strip .section-headline { font-size: clamp(1.5rem, 3vw, 3rem); margin-bottom: 0.5rem; }
.booking-hours {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--color-bone-2);
  margin-bottom: 2.5rem;
}

/* ─── About — Origin Narrative ───────────────────────────────────────────── */
.origin-narrative {
  background: var(--color-charcoal);
  padding: 5rem 6vw;
}
.origin-narrative-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.pull-quote-wrap { position: relative; padding-top: 5rem; }
.pull-quote-mark {
  position: absolute;
  top: 0; left: -1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem;
  color: var(--color-terracotta);
  line-height: 0.8;
  opacity: 0;
  transition: opacity 0.5s ease 0.4s;
}
.pull-quote-mark.in-view { opacity: 1; }
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.3rem;
  color: var(--color-brass);
  line-height: 1.35;
  font-style: italic;
}
.origin-text { padding-top: 1rem; }
.origin-text .body-text { max-width: 560px; }

/* ─── Chef Section ───────────────────────────────────────────────────────── */
.chef-section {
  background: var(--color-charcoal-2);
  padding: 5rem 6vw;
}
.chef-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.chef-text { }
.chef-text .eyebrow { margin-bottom: 0.75rem; }
.chef-text .section-headline { margin-bottom: 1.5rem; }
.chef-image-wrap {
  height: 600px;
  position: relative;
  overflow: hidden;
}
.chef-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.chef-image-wrap:hover img { transform: scale(1.04); }
.chef-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(181, 146, 76, 0.88);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chef-image-wrap:hover .chef-image-overlay { clip-path: inset(0% 0 0 0); }
.chef-image-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--color-bone);
}

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.testimonials {
  background: var(--color-charcoal);
  padding: 5rem 6vw;
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-header { margin-bottom: 3rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.tilt-card {
  background: var(--color-charcoal-2);
  padding: 3rem;
  box-shadow: 0 0 0 1px var(--color-brass);
  transition: box-shadow 0.3s ease, transform 0.5s ease;
  will-change: transform;
}
.tilt-card:hover { box-shadow: 0 12px 40px rgba(181, 146, 76, 0.15); }
.tilt-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.tilt-card-avatar {
  width: 44px; height: 44px;
  border: 1px solid var(--color-brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--color-bone);
  flex-shrink: 0;
}
.tilt-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--color-brass);
}
.tilt-card-source {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--color-bone-2);
  letter-spacing: 0.06em;
}
.tilt-card-quote {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--color-bone);
  line-height: 1.85;
  font-style: italic;
}

/* ─── Awards Rows ────────────────────────────────────────────────────────── */
.awards-rows {
  background: var(--color-charcoal-2);
  padding: 5rem 6vw;
}
.awards-rows-inner { max-width: 1200px; margin: 0 auto; }
.awards-rows-header { margin-bottom: 2.5rem; }
.award-row {
  padding: 2.5rem 0 2.5rem 2.5rem;
  border-bottom: 1px solid rgba(181, 146, 76, 0.12);
  position: relative;
}
.award-row-line {
  position: absolute;
  left: 0; top: 50%;
  height: 1px;
  background: var(--color-brass);
  width: 0;
  transition: width 0.6s ease;
}
.award-row.in-view .award-row-line { width: 1.75rem; }
.award-row-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 2rem);
  color: var(--color-bone);
  margin-bottom: 0.25rem;
}
.award-row-source {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--color-brass);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Contact Form ───────────────────────────────────────────────────────── */
.contact-section {
  background: var(--color-charcoal);
  padding: 5rem 6vw;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}
.contact-form-header { margin-bottom: 2.5rem; }
.form-group { position: relative; margin-bottom: 2.75rem; }
.form-group label {
  position: absolute;
  left: 0;
  top: 1rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--color-bone-2);
  pointer-events: none;
  transition: transform 0.3s ease, font-size 0.3s ease, color 0.3s ease;
  transform-origin: left top;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(237, 229, 214, 0.3);
  padding: 1rem 0 0.6rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--color-bone);
  outline: none;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--color-brass); }
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-140%) scale(0.75);
  color: var(--color-brass);
}
/* Date field has a real placeholder, so its label must always be elevated */
#date ~ label {
  transform: translateY(-140%) scale(0.75);
  color: var(--color-bone-2);
}
#date:focus ~ label { color: var(--color-brass); }

.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus { box-shadow: 0 0 0 0 transparent; }
.form-group input:focus-visible { box-shadow: 0 0 0 2px var(--color-brass); }

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.checkbox-wrap { position: relative; }
.checkbox-group input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 20px; height: 20px;
  top: 0; left: 0;
  margin: 0;
}
.checkbox-custom {
  display: block;
  width: 20px; height: 20px;
  border: 1px solid rgba(237, 229, 214, 0.4);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 3px;
}
.checkbox-custom::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-terracotta);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.2s ease;
}
.checkbox-group input[type="checkbox"]:checked + .checkbox-custom::after {
  clip-path: inset(0% 0 0 0);
}
.checkbox-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-bone-2);
  line-height: 1.7;
  flex: 1;
}

.btn-submit {
  width: 100%;
  padding: 1.25rem;
  background: transparent;
  border: 1px solid var(--color-terracotta);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--color-terracotta);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Text content must sit above the ::before fill sweep */
.btn-submit { isolation: isolate; }
.btn-submit::before {
  z-index: -1;
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.btn-submit:hover::before { transform: scaleX(1); }
.btn-submit:hover { color: var(--color-bone); }
.btn-submit span { position: relative; z-index: 1; }
@keyframes submitPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}
.btn-submit.pulse { animation: submitPulse 0.4s ease; }

/* Contact Info */
.contact-info { padding-top: 1rem; }
.contact-info-block { margin-bottom: 3rem; }
.contact-info-label {
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--color-terracotta);
  letter-spacing: 0.22em;
  margin-bottom: 0.75rem;
  display: block;
}
.contact-info-text {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--color-bone);
  line-height: 1.9;
}
.contact-info-text a { color: var(--color-bone); transition: color 0.2s; }
.contact-info-text a:hover { color: var(--color-brass); }

/* Directions */
.directions-block {
  background: var(--color-charcoal-2);
  padding: 4rem 6vw;
  max-width: none;
}
.directions-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.directions-inner .eyebrow { margin-bottom: 1rem; }
.directions-inner .section-headline { font-size: clamp(1.5rem, 2.5vw, 2.5rem); margin-bottom: 1.5rem; }
.directions-inner .body-text { max-width: 700px; }

/* Notices */
.notices-section {
  background: var(--color-bone-2);
  padding: 3rem 6vw;
}
.notices-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.notice-item {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--color-charcoal);
  line-height: 1.7;
  padding-left: 1.25rem;
  border-left: 2px solid var(--color-terracotta);
}

/* ─── Blog ───────────────────────────────────────────────────────────────── */
.blog-section {
  background: var(--color-charcoal);
  padding: 5rem 6vw;
}
.blog-section-header { text-align: center; margin-bottom: 3rem; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.blog-card { background: var(--color-charcoal-2); overflow: hidden; }
.blog-card-img {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(181, 146, 76, 0.9);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card:hover .blog-card-overlay { clip-path: inset(0% 0 0 0); }
.blog-card-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--color-bone);
  text-align: center;
  padding: 1.5rem;
}
.blog-card-body { padding: 2.25rem 2rem; }
.blog-card-date {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--color-terracotta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--color-bone);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
.blog-card-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  color: var(--color-terracotta);
  border: 1px solid var(--color-terracotta);
  padding: 0.2rem 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.blog-cta { text-align: center; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--color-charcoal);
  padding: 0 6vw 2.5rem;
}
.footer-rule {
  height: 1px;
  background: var(--color-brass);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s ease;
  margin-bottom: 3.5rem;
}
.footer-rule.in-view { transform: scaleX(1); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { display: inline-block; margin-bottom: 1.5rem; }
.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--color-brass);
  letter-spacing: 0.05em;
  display: block;
  transition: letter-spacing 0.3s ease;
}
.footer-logo:hover .footer-logo-name { letter-spacing: 0.15em; }
.footer-logo-sub {
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.65rem;
  color: var(--color-brass);
  letter-spacing: 0.25em;
  display: block;
  margin-top: 0.2rem;
}
.footer-contact {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--color-bone);
  line-height: 2;
}
.footer-contact a { color: var(--color-bone); transition: color 0.2s; }
.footer-contact a:hover { color: var(--color-terracotta); }
.footer-socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.footer-socials a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--color-bone);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.footer-socials a:hover { color: var(--color-brass); transform: scale(1.08); }
.footer-col-title {
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--color-terracotta);
  letter-spacing: 0.22em;
  margin-bottom: 1.5rem;
  display: block;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--color-bone);
  position: relative;
  display: inline-block;
  transition: color 0.2s ease;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.footer-links a:hover { color: var(--color-terracotta); }
.footer-links a:hover::after { transform: scaleX(1); }
.footer-hours {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--color-bone);
  line-height: 2;
}
.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  padding-top: 2rem;
  text-align: center;
}
.footer-copyright {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--color-bone-2);
  letter-spacing: 0.06em;
}
.footer-credit {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--color-brass);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  text-underline-offset: 3px;
}
.footer-credit:hover {
  color: var(--color-terracotta);
  text-decoration: underline;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  body > nav { padding: 1.5rem 2.5rem; }
  body > nav.scrolled { padding: 1.25rem 2.5rem; }
  .section { padding: 7rem 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  footer { padding: 0 2.5rem 2.5rem; }
}

@media (max-width: 900px) {
  .origin-narrative-inner { grid-template-columns: 1fr; gap: 3rem; }
  .chef-inner { grid-template-columns: 1fr; }
  .chef-inner .chef-image-wrap { height: 400px; }
  .contact-inner { grid-template-columns: 1fr; gap: 4rem; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .notices-inner { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body > nav { padding: 1.25rem 5vw; }
  body > nav.scrolled { padding: 1rem 5vw; }
  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .nav-hamburger { display: flex; }

  .section { padding: 4rem 5vw; }
  .hero-headline { font-size: clamp(2.6rem, 9vw, 4.5rem); }

  .origin-strip { padding: 4rem 5vw; }
  .stats-row { grid-template-columns: 1fr; gap: 2rem; }

  .featured-dishes { padding: 4rem 0 4rem 5vw; }
  .featured-dishes-header { padding-right: 5vw; }
  .featured-dishes-cta { padding-right: 5vw; }
  .dish-card { width: 280px; height: 380px; }

  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-strip-header { padding: 2rem 5vw 0.75rem; }
  .marquee-item { font-size: 1.3rem; }

  .early-bird { padding: 3.5rem 5vw; }
  .early-bird-inner { flex-direction: column; gap: 1.75rem; }

  .instagram-strip { padding: 4rem 5vw; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 0 5vw 2rem; }

  .notices-inner { grid-template-columns: 1fr; }
  .directions-block { padding: 3rem 5vw; }
  .menu-section { padding: 3rem 5vw 4rem; }
  .wines-section { padding: 4rem 5vw; }
  .booking-strip { padding: 3.5rem 5vw; }
  .contact-section { padding: 4rem 5vw; }
  .testimonials { padding: 4rem 5vw; }
  .awards-rows { padding: 4rem 5vw; }
  .origin-narrative { padding: 4rem 5vw; }
  .chef-section { padding: 4rem 5vw; }
  .blog-section { padding: 4rem 5vw; }
  .notices-section { padding: 2.5rem 5vw; }

  .pull-quote { font-size: 1.75rem; }
  .pull-quote-mark { font-size: 6rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  body > nav { padding: 1rem 4vw; }
  .section { padding: 3.5rem 4vw; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .tilt-card { padding: 1.75rem; }
  .notices-section { padding: 2rem 4vw; }
}

/* ─── Hero Carousel ─────────────────────────────────────────────────────── */
.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
}
.hero-carousel-slide.active { opacity: 1; }
.carousel-dots {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  background: rgba(245, 240, 232, 0.35);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.carousel-dot.active {
  background: var(--color-brass);
  transform: scale(1.4);
}

/* ─── Beverages Page ─────────────────────────────────────────────────────── */
/* Wine item: two-column Glass / Bottle price layout */
.bev-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.2rem;
}
.bev-prices {
  display: flex;
  gap: 1.75rem;
  flex-shrink: 0;
}
.bev-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}
.bev-price-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  color: var(--color-bone-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* Cocktail / mocktail description */
.menu-item-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-bone-2);
  line-height: 1.7;
  margin-top: 0.35rem;
}
/* "alcohol free" subtitle beneath section toggle name */
.menu-toggle-title { display: flex; flex-direction: column; gap: 0.2rem; }
.menu-toggle-sub {
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.65rem;
  color: var(--color-terracotta);
  letter-spacing: 0.2em;
}
/* 60vh full-bleed image break */
.bev-image-break {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bev-image-break-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.bev-image-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 26, 0.4);
}
.bev-image-break-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 6vw;
  max-width: 900px;
}
.bev-image-break-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: var(--color-bone);
  line-height: 1.25;
  font-style: italic;
  word-break: keep-all;
  hyphens: none;
}
@media (max-width: 768px) {
  .bev-prices { gap: 1.25rem; }
  .bev-image-break { height: 50vh; }
}

/* ─── Footer Safety Rules ────────────────────────────────────────────────── */
/* Ensure footer and all its children are never positioned above the fixed nav */
footer,
footer *,
footer nav,
footer ul,
footer .footer-links {
  position: static !important;
  z-index: auto !important;
  will-change: auto !important;
}
/* Exception: allow the footer-rule scaleX animation to work */
.footer-rule {
  position: static !important;
}
/* Reveal elements inside footer that the IntersectionObserver hasn't fired for
   (e.g. footer just below the fold on load) must not stay stuck mid-animation */
footer .reveal:not(.in-view),
footer .reveal-up:not(.in-view),
footer .reveal-left:not(.in-view),
footer .reveal-right:not(.in-view),
footer .reveal-scale:not(.in-view) {
  transform: none !important;
  opacity: 1 !important;
}

/* ─── Prefers Reduced Motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
