/* ===== CUSTOM PROPERTIES ===== */
:root {
  --terracotta: #7A3B2E;
  --terracotta-dark: #5C2A1E;
  --rose-gold: #C9956B;
  --blush: #F5DDD3;
  --cream: #FAF3EC;
  --deep-brown: #2D1810;
  --text: #7A4A38;
  --white: #FFFFFF;
  --peach: #F0C9A8;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 64px;

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--deep-brown);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 6px 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== SHARED ===== */
.section-label {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.5rem;
}

.section-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--deep-brown);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 2.5rem;
}

/* ===== NAV ===== */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}

#site-nav.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(122, 59, 46, 0.08);
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.4s ease;
}

#site-nav.scrolled .nav-logo {
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.nav-cta) {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

#site-nav.scrolled .nav-links a:not(.nav-cta) {
  color: var(--text);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--white);
}

#site-nav.scrolled .nav-links a:not(.nav-cta):hover {
  color: var(--terracotta);
}

.nav-cta {
  background: var(--white);
  color: var(--terracotta);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.45rem 1.25rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

#site-nav.scrolled .nav-cta {
  background: var(--terracotta);
  color: var(--white);
}

.nav-cta:hover {
  box-shadow: 0 4px 16px rgba(122, 59, 46, 0.25);
}

/* Focus visible styles */
.nav-cta:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.contact-cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.social-link:focus-visible,
.footer-card-value a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.nav-links a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
  border-radius: 2px;
}

#site-nav.scrolled .nav-links a:focus-visible {
  outline-color: var(--terracotta);
}

/* ===== HERO ===== */
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(30px, -20px); }
  66%       { transform: translate(-15px, 25px); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(-20px, 15px); }
  66%       { transform: translate(25px, -10px); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(12px, -18px) scale(1.08); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--terracotta-dark) 0%, var(--terracotta) 35%, var(--rose-gold) 70%, var(--peach) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255, 220, 180, 0.22) 0%, transparent 65%);
  top: -160px; right: -100px;
  animation: drift1 12s ease-in-out infinite;
}
.orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
  bottom: -80px; left: -60px;
  animation: drift2 15s ease-in-out infinite;
}
.orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245, 221, 211, 0.18) 0%, transparent 65%);
  top: 40%; left: 35%;
  animation: drift3 9s ease-in-out infinite;
}
.orb-4 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
  top: 20%; right: 30%;
  animation: drift1 11s ease-in-out infinite reverse;
}

/* Hero text column */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-height) + 4rem) 3rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 221, 211, 0.75);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s ease forwards;
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s ease forwards;
}

.hero-divider {
  width: 40px;
  height: 2px;
  background: rgba(245, 221, 211, 0.5);
  border-radius: 2px;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s ease forwards;
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(250, 243, 236, 0.8);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s ease forwards;
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--terracotta);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.btn-ghost {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 0.25s ease, border-color 0.25s ease;
  padding-bottom: 1px;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Hero photo column */
.hero-photo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 4rem 2.5rem;
}

.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(122, 59, 46, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-placeholder span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Glass card */
.hero-glass-card {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 1s ease forwards;
}

.glass-card-label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 221, 211, 0.7);
  margin-bottom: 1rem;
}

.glass-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.glass-stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.glass-stat-label {
  font-size: 0.62rem;
  color: rgba(245, 221, 211, 0.65);
  margin-top: 0.2rem;
}

.glass-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.glass-quote {
  grid-column: 1 / -1;
}
.glass-quote-text {
  font-size: 0.82rem;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 0.3rem;
}
.glass-quote-attr {
  font-size: 0.6rem;
  color: rgba(245, 221, 211, 0.55);
  letter-spacing: 0.04em;
}

/* ===== TICKER ===== */
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker {
  background: var(--deep-brown);
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}

.ticker-label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-track {
  display: flex;
  gap: 1rem;
  align-items: center;
  overflow: hidden;
}

.ticker-item {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush);
  white-space: nowrap;
}

.ticker-sep {
  color: var(--rose-gold);
  opacity: 0.5;
  font-size: 0.55rem;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
  background: var(--white);
  padding: 5rem 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.svc-card {
  background: var(--cream);
  border: 1px solid rgba(201, 149, 107, 0.15);
  border-radius: 10px;
  padding: 1.75rem 1.25rem;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, border-color 0.3s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(122, 59, 46, 0.1);
  border-color: rgba(201, 149, 107, 0.35);
}

.svc-icon {
  width: 36px;
  height: 36px;
  color: var(--rose-gold);
  margin-bottom: 1rem;
}

.svc-name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--deep-brown);
  margin-bottom: 0.4rem;
}

.svc-desc {
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.65;
}

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  height: 380px;
}

.gal-cell {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gal-cell:first-child {
  grid-row: 1 / -1;
}

.gal-cell-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-smooth);
}

.gal-cell:hover .gal-cell-bg {
  transform: scale(1.05);
}

.gal-cell-1 .gal-cell-bg { background: linear-gradient(145deg, #E8C9B8, #C9956B, #A0604A); }
.gal-cell-2 .gal-cell-bg { background: linear-gradient(145deg, #C9956B, #7A3B2E); }
.gal-cell-3 .gal-cell-bg { background: linear-gradient(145deg, #7A3B2E, #5C2A1E); }
.gal-cell-4 .gal-cell-bg { background: linear-gradient(145deg, #F0D5C4, #E8C9B8); }
.gal-cell-5 .gal-cell-bg { background: linear-gradient(145deg, #E8C9B8, #C9956B); }

.gal-label {
  position: relative;
  z-index: 1;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.gal-cell-4 .gal-label,
.gal-cell-5 .gal-label {
  color: rgba(122, 59, 46, 0.3);
}

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.about-photo {
  background: linear-gradient(145deg, #C9956B 0%, #7A3B2E 60%, #5C2A1E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-text {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
}

.about-text .section-h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ===== HOURS ===== */
.hours {
  background: var(--white);
  padding: 5rem 2.5rem;
}

.hours-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.hours-intro {
  display: flex;
  flex-direction: column;
}

.hours-note {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.7;
}

.hours-table {
  display: flex;
  flex-direction: column;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(201, 149, 107, 0.15);
}

.hours-row:first-child {
  border-top: 1px solid rgba(201, 149, 107, 0.15);
}

.hours-day {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--deep-brown);
}

.hours-time {
  font-size: 0.83rem;
  color: var(--text);
}

.hours-closed {
  color: rgba(122, 74, 56, 0.4);
  font-style: italic;
}

/* ===== DEPOSIT BANNER ===== */
.deposit-banner {
  background: var(--deep-brown);
  padding: 4rem 2.5rem;
  text-align: center;
}

.deposit-tag {
  display: inline-block;
  background: var(--rose-gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 3px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.deposit-banner h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}

.deposit-banner p {
  font-size: 0.88rem;
  color: rgba(245, 221, 211, 0.75);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}

.deposit-banner strong {
  color: var(--white);
}

/* ===== FOOTER / CONTACT ===== */
.contact {
  background: var(--terracotta);
  padding: 5rem 2.5rem 3rem;
  text-align: center;
}

.contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.contact-sub {
  font-size: 0.88rem;
  color: rgba(245, 221, 211, 0.75);
  margin-bottom: 2.5rem;
}

.footer-cards {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 1.25rem 2rem;
  text-align: left;
  transition: background 0.3s ease;
}

.footer-card:hover {
  background: rgba(255, 255, 255, 0.16);
}

.footer-card-label {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 221, 211, 0.65);
  margin-bottom: 0.35rem;
}

.footer-card-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

.footer-card-value a {
  color: inherit;
  transition: opacity 0.2s;
}
.footer-card-value a:hover {
  opacity: 0.8;
}

.contact-cta {
  display: inline-block;
  background: var(--white);
  color: var(--terracotta);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.85rem 2.25rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.social-link {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 0.4rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(245, 221, 211, 0.45);
}

/* ===== RESPONSIVE: MOBILE (≤768px) ===== */
@media (max-width: 768px) {

  /* Nav */
  #site-nav {
    padding: 0 1.25rem;
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-text {
    padding: 6rem 1.5rem 2.5rem;
    justify-content: flex-start;
  }
  .hero-photo {
    padding: 2rem 1.5rem 3rem;
  }
  .hero-glass-card {
    animation-delay: 0.5s;
  }
  .orb-1 { width: 300px; height: 300px; }
  .orb-2 { width: 200px; height: 200px; }

  /* Ticker */
  .ticker {
    padding: 0.75rem 1.25rem;
    gap: 1rem;
  }
  .ticker-track {
    animation: tickerScroll 20s linear infinite;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 100%;
  }

  /* Services */
  .services {
    padding: 3.5rem 1.25rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  /* Gallery */
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .gal-cell:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 200px;
  }
  .gal-cell:not(:first-child) {
    min-height: 120px;
  }

  /* About */
  .about {
    grid-template-columns: 1fr;
  }
  .about-photo {
    order: -1;
    min-height: 240px;
  }
  .about-text {
    padding: 2.5rem 1.5rem;
  }

  /* Hours */
  .hours {
    padding: 3.5rem 1.25rem;
  }
  .hours-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Deposit */
  .deposit-banner {
    padding: 3rem 1.25rem;
  }

  /* Footer */
  .contact {
    padding: 3.5rem 1.25rem 2.5rem;
  }
  .footer-cards {
    flex-direction: column;
    align-items: center;
  }
  .footer-card {
    width: 100%;
    max-width: 320px;
  }

  /* Section h2 */
  .section-h2 {
    margin-bottom: 1.5rem;
  }
}

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