:root {
  --yellow: #ffd400;
  --yellow-soft: #ffef9a;
  --red: #ff3131;
  --dark: #121212;
  --dark-soft: #1f1f1f;
  --bg: #fffdf6;
  --text: #222;
  --radius-lg: 18px;
  --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* NAV */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--dark-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--red);
}

/* MOBILE NAV TOGGLE */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  padding:0;
  border-radius:12px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}

.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--dark-soft);
  border-radius:2px;
  transition:transform .18s ease, opacity .18s ease;
}

.nav-toggle:hover{ background:rgba(0,0,0,0.04); }

.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.nav-links.open{ display:flex; }

/* HERO */

.hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 212, 0, 0.5), transparent),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
}

.hero-content {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-tagline {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.8rem;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  max-width: 26rem;
  line-height: 1.1;
  margin: 0;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-sub {
  max-width: 28rem;
  margin-top: 0.9rem;
  font-size: 0.95rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-badge {
  margin-top: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero-badge span {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--green, #27ae60);
  font-weight: 600;
}

/* COMMON LAYOUT */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0 0 0.4rem;
  font-size: 2rem;
}

.section-header p {
  margin: 0;
  color: #777;
}

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

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

/* BUTTONS */

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), #ff7a00);
  color: white;
}

.btn-ghost {
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: var(--dark-soft);
  background: rgba(255, 255, 255, 0.72);
  opacity: 1;
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* Ghost buttons on dark hero/page-hero backgrounds */
.hero .btn-ghost,
.page-hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
}

.hero .btn-ghost:hover,
.page-hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover{
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}

.btn-accent {
  background: var(--yellow);
}

/* HIGHLIGHTS */

.highlights {
  position: relative;
  margin-top: -2rem;
}

.highlight-card {
  border-radius: 1.2rem;
  background: white;
}

/* MENU */

.menu-section {
  background: #fff9df;
}

.menu-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}

#menu-search {
  flex: 1;
  min-width: 220px;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #e0cf7f;
  font-size: 0.9rem;
}

.menu-cart-summary {
  display: flex;
  align-items: center;
}

/* MENU CATEGORIES & ITEMS */

.menu-category {
  margin-bottom: 2rem;
}

.menu-category h3 {
  margin-bottom: 0.8rem;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.menu-item-card {
  display: flex;
  gap: 0.9rem;
  background: white;
  border-radius: 1rem;
  padding: 0.8rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.menu-item-img {
  width: 90px;
  height: 90px;
  border-radius: 0.8rem;
  object-fit: cover;
  flex-shrink: 0;
  filter: saturate(1.08) contrast(1.06);
}

.menu-item-card {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.menu-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.10);
}

.menu-item-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.menu-item-header h4 {
  margin: 0;
  font-size: 0.95rem;
}

.menu-item-price {
  font-weight: 600;
}

.menu-item-desc {
  margin: 0.2rem 0 0.4rem;
  font-size: 0.8rem;
  color: #666;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #fff3c2;
  color: #9a6800;
}

/* CART PANEL */

.cart-panel {
  position: fixed;
  top: 0;
  right: -360px;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background: white;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 80;
  transition: right 0.3s ease-in-out;
}

.cart-panel.open {
  right: 0;
}

.cart-header {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.cart-item-title {
  font-weight: 500;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-item-controls button {
  border-radius: 999px;
  border: 1px solid #ddd;
  width: 22px;
  height: 22px;
  background: #fafafa;
  cursor: pointer;
}

.cart-footer {
  padding: 1rem 1.1rem 1.4rem;
  border-top: 1px solid #f1f1f1;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}

.btn-full {
  width: 100%;
}

.cart-note {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: #777;
}

/* ABOUT */

.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text p {
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: #555;
}

.about-image-stack {
  position: relative;
}

.about-img {
  border-radius: 1.3rem;
  box-shadow: var(--shadow-soft);
  width: 100%;
  object-fit: cover;
}

.about-img.overlay {
  position: absolute;
  width: 60%;
  bottom: -1.2rem;
  left: -1.2rem;
  border: 4px solid #fff;
}

/* GALLERY */

.gallery-section {
  background: #fff9df;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 1.1rem;
  object-fit: cover;
  height: 200px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  filter: saturate(1.10) contrast(1.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.gallery-note {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

/* INSTAGRAM FEATURE (GALLERY) */
.ig-feature{
  padding: 1.4rem;
}
.ig-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.ig-embed-wrap{
  display: flex;
  justify-content: center;
}
.instagram-media{
  width: 100% !important;
  max-width: 540px !important;
  margin: 0 auto !important;
  border-radius: 1.2rem;
  overflow: hidden;
}
.ig-actions{
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ORDER SECTION */

.order-section {
  background: #fff;
}

.order-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.order-steps {
  padding-left: 1.1rem;
  color: #555;
  font-size: 0.9rem;
}

.order-card {
  border-left: 6px solid var(--yellow);
}

/* LOCATION */

.location-section {
  background: #fff9df;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

.map-card iframe {
  border-radius: 1.1rem;
  width: 100%;
  max-width: 100%;
}

/* FOOTER */

.footer {
  background: var(--dark-soft);
  color: #eee;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  margin-right: 0.4rem;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-right a {
  color: #ffef9a;
  text-decoration: none;
  margin-left: 0.8rem;
  font-weight: 500;
}


/* PAGE HERO */
.page-hero {
  position: relative;
  padding: 5.5rem 0 3.2rem;
  overflow: hidden;
  background: var(--dark);
  color: white;
}
.page-hero .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(1.12);
}
.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 0 1.25rem;
}
.breadcrumbs {
  opacity: 0.85;
  font-size: 0.9rem;
}
.breadcrumbs a { color: var(--yellow-soft); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

.promo-section {
  padding: 2.2rem 0;
}
.promo-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 1.2rem;
}
.promo-card img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
  filter: saturate(1.10) contrast(1.06);
}
.promo-copy h2 { margin-top: 0; }
.notice {
  background: rgba(255, 212, 0, 0.14);
  border: 1px solid rgba(255, 212, 0, 0.35);
  padding: 0.9rem 1rem;
  border-radius: 14px;
  margin: 1rem 0;
}
.notice strong { color: var(--dark-soft); }
.form-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 1.2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.form-grid .full { grid-column: 1 / -1; }
.input, textarea.input {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  font: inherit;
}
textarea.input { min-height: 140px; resize: vertical; }

/* RESPONSIVE */

@media (max-width: 840px) {
  .nav-inner { position: relative; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 62px;
    right: 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    padding: 0.8rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    min-width: 210px;
  }
  .nav-links a { padding: 0.55rem 0.7rem; border-radius: 12px; }
  .nav-links a:hover { background: rgba(0,0,0,0.04); }

  .hero {
    height: auto;
  }

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

  .about-grid,
  .order-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .about-img.overlay {
    display: none;
  }
}

.developer-credit {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 1.1rem;
  text-align: center;
  font-size: 0.75rem;
  color: #cfcfcf;
  opacity: 0.9;
}

.developer-credit a {
  color: #ffd400;
  text-decoration: none;
  font-weight: 600;
}


@media (max-width: 520px) {
  .hero-content {
    padding-top: 5rem;
  }

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

  .menu-item-card {
    flex-direction: column;
  }

  .menu-item-img {
    width: 100%;
    height: 160px;
  }
}


/* REVIEWS */

.reviews-section {
  background: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.reviews-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.2rem;
}

.btn-dark {
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--dark);
  background: white;
}

.review-tip h3 {
  margin-top: 0;
}

.muted {
  color: #777;
}

@media (max-width: 840px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}


/* POPULAR PICKS (HOME) */

.popular-section {
  background: radial-gradient(circle at top, rgba(255, 212, 0, 0.20), transparent 55%),
    linear-gradient(to bottom, rgba(255, 239, 154, 0.25), transparent 60%);
}

.popular-items {
  gap: 1.1rem;
}

.popular-card {
  align-items: center;
}

.popular-img {
  width: 96px;
  height: 96px;
}

.clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}



/* TEXT LINK (for secondary actions) */
.text-link{
  color: var(--dark);
  text-decoration: underline;
  font-weight: 600;
}
.text-link:hover{
  color: var(--red);
}

/* FOOD MARQUEE (HOME) */
.food-marquee{
  background: #fff;
  padding: 1.3rem 0 2.2rem;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.marquee{
  overflow: hidden;
  padding: 0 1.25rem;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track{
  display: flex;
  gap: 0.9rem;
  width: max-content;
  padding: 0;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee-track img{
  width: 180px;
  height: 120px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
  transform: translateZ(0);
}
.marquee-cta{
  max-width: 1120px;
  margin: 1.1rem auto 0;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.marquee-note{
  color: #666;
  font-size: 0.9rem;
}

@keyframes marqueeScroll{
  from { transform: translateX(0); }
  /* Distance is set per-track in JS so the marquee never shows a blank gap */
  to { transform: translateX(calc(-1 * var(--marquee-distance, 50%))); }
}

/* HOME REVIEWS */
.home-reviews{
  background: #fff9df;
}
.home-reviews-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}
.home-vibes{
  padding: 1.4rem;
}
.home-vibes-title{
  margin: 0 0 0.35rem;
}
.home-vibes-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
  color: #444;
}

/* Simple photo slider */
.photo-slider{
  overflow: hidden;
  border-radius: 1.2rem;
  margin-top: 0.9rem;
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}
.photo-track{
  display: flex;
  will-change: transform;
}

.photo-track img{
  width: 100%;
  flex: 0 0 100%;
  height: 260px;
  object-fit: cover;
}

/* Review slider */
.review-slider{
  padding: 1.4rem;
  overflow: hidden;
}
.review-track{
  display: flex;
  gap: 0;
  overflow: hidden;
}
.review-slide{
  flex: 0 0 100%;
  padding: 0.4rem 0.2rem 0;
}
.review-slide p{
  margin: 0.7rem 0 0.9rem;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.55;
}
.reviewer{
  font-weight: 700;
  color: var(--dark);
}
.stars{
  letter-spacing: 1px;
  color: #d18b00;
  font-size: 1.05rem;
  user-select: none;
}
.review-controls{
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.slider-btn{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: white;
  cursor: pointer;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover{
  border-color: rgba(0,0,0,0.22);
}
.review-dots{
  display: flex;
  gap: 0.5rem;
}
.review-dots button{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.18);
  cursor: pointer;
}
.review-dots button.active{
  background: var(--red);
}


/* Live Google embed */
.google-live{
  align-self: start;

  padding: 1.4rem;
}
.google-live h3{
  margin: 0;
}
.google-live-frame{
  margin-top: 0.9rem;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.06);
}
.google-live-frame iframe{
  width: 100%;
  height: 340px;
  border: 0;
}
@media (max-width: 840px){
  .google-live-frame iframe{
    height: 280px;
  }
}

@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; }
  .photo-track{ animation: none; }
}

@media (max-width: 840px){
  .home-reviews-grid{
    grid-template-columns: 1fr;
  }
  .marquee-track img{
    width: 150px;
    height: 105px;
  }
  .photo-track img{
    height: 220px;
  }
}

/* --- Micro-interactions & polish --- */

/* Active / hover nav underline */
.nav-links a{
  position: relative;
  transition: color 160ms ease;
}
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  opacity: 0.35;
}
.nav-links a:hover::after{ transform: scaleX(1); }
.nav-links a.active{
  color: var(--red);
}
.nav-links a.active::after{
  transform: scaleX(1);
  opacity: 0.85;
}

/* Scroll progress under nav */
.nav-progress{
  height: 3px;
  background: rgba(0,0,0,0.06);
  position: relative;
}
.nav-progress span{
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--yellow), var(--red));
  border-radius: 0 999px 999px 0;
  transition: width 120ms linear;
}

/* Hero text improvements */
.hero-sub{
  max-width: 44rem;
  line-height: 1.65;
  opacity: 0.92;
}
.hero-sub .hero-sub-lead{
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* Buttons feel clickable */
.btn{
  transition: transform 120ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.btn:hover{
  filter: brightness(1.02);
}
.btn:active{
  transform: translateY(1px) scale(0.98);
}

/* Reveal on scroll */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

/* Toast */
.toast{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  max-width: 360px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-soft);
  border-radius: 16px;
  padding: 14px 14px 12px;
  backdrop-filter: blur(10px);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}
.toast.show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.toast-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.toast-title{
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}
.toast-close{
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0.7;
}
.toast p{
  margin: 0.5rem 0 0.8rem;
  font-size: 0.88rem;
  color: var(--dark-soft);
}
.toast-actions{
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* Exit-intent modal */
.modal{
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.modal.open{ display: flex; }
.modal-card{
  width: min(520px, 100%);
  background: var(--bg);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.modal-card h3{ margin: 0 0 0.4rem; }
.modal-card p{ margin: 0 0 1.1rem; color: var(--dark-soft); }
.modal-actions{ display:flex; gap: 0.7rem; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; }
  .toast{ transition: none; }
}

/* --- Magic touch: scroll progress + micro-interactions + toast/modal --- */
#scroll-progress{
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--yellow), #ff7a00);
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.btn{
  transition: transform 140ms ease, box-shadow 140ms ease, opacity 140ms ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}
.btn:active{
  transform: translateY(0) scale(0.98);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.btn:focus-visible{
  outline: 3px solid rgba(255, 212, 0, 0.55);
  outline-offset: 3px;
}

.nav-links a.active{
  color: var(--yellow);
  position: relative;
}
.nav-links a.active::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--yellow);
}

/* Make ghost buttons readable everywhere */
.page-hero .btn-ghost{
  background: rgba(0,0,0,0.20);
  border-color: rgba(255,255,255,0.7);
}

/* Instagram embeds grid */
.ig-embed-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.ig-embed-grid .instagram-media{
  max-width: 100% !important;
}
@media (max-width: 900px){
  .ig-embed-grid{ grid-template-columns: 1fr; }
}

/* Toast */
.lc-toast{
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  width: min(420px, calc(100vw - 2rem));
  background: rgba(16, 16, 16, 0.92);
  color: white;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}
.lc-toast.show{ transform: translateY(0); opacity: 1; }
.lc-toast .row{ display:flex; align-items:flex-start; gap:0.8rem; }
.lc-toast .title{ font-weight: 700; margin:0; }
.lc-toast .text{ margin:0.25rem 0 0; opacity:0.92; font-size:0.9rem; }
.lc-toast .actions{ margin-top:0.85rem; display:flex; gap:0.7rem; flex-wrap:wrap; }
.lc-toast .close{
  margin-left:auto;
  border:none;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}

/* Exit-intent modal */
.lc-modal-overlay{
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.lc-modal-overlay.open{ display:flex; }
.lc-modal{
  width: min(520px, 100%);
  background: white;
  border-radius: 22px;
  padding: 1.2rem 1.2rem 1.1rem;
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
}
.lc-modal h3{ margin: 0 0 0.35rem; }
.lc-modal p{ margin: 0; color:#444; }
.lc-modal .actions{ margin-top: 1rem; display:flex; gap:0.7rem; flex-wrap:wrap; justify-content:flex-end; }


/* -------- Premium touch overrides -------- */
.nav{
  border-bottom: 1px solid rgba(255,255,255,0.55);
}
.nav.scrolled{
  background: rgba(255,255,255,0.88);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-inner{
  transition: padding .25s ease;
}
.nav.scrolled .nav-inner{
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}
.nav-links a{
  position: relative;
  padding: 0.35rem 0.15rem;
  transition: color .2s ease, transform .2s ease;
}
.nav-links a:not(.btn)::after{
  content:"";
  position:absolute;
  left: 0.15rem;
  right: 0.15rem;
  bottom: 0.18rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
  opacity: 0.9;
}
.nav-links a:not(.btn):hover{
  transform: translateY(-1px);
}
.nav-links a:not(.btn):hover::after{
  transform: scaleX(1);
}
.nav-links a.active{
  color: var(--dark);
}
.nav-links a.active:not(.btn)::after{
  transform: scaleX(1);
}

/* Page transitions */
.js body{
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.js body.page-ready{
  opacity: 1;
  transform: none;
}
.js body.page-leave{
  opacity: 0;
  transform: translateY(8px);
}

/* Subtle hero motion */
@keyframes kenburns {
  0% { transform: scale(1.04); }
  100% { transform: scale(1.12); }
}
.hero-bg, .page-hero .bg{
  transform-origin: center;
  animation: kenburns 16s ease-in-out infinite alternate;
}


/* =========================
   Premium Gallery + Lightbox
   ========================= */
.no-scroll { overflow: hidden; }

.gallery-section .section-head { margin-bottom: 18px; }
.gallery-section .section-head p { max-width: 56ch; opacity: 0.9; }

.featured-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 18px 0 22px;
}

.strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px;
  border-radius: var(--radius-lg);
  background: rgba(0,0,0,0.02);
  -webkit-overflow-scrolling: touch;
}

.strip::-webkit-scrollbar { height: 8px; }
.strip::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 999px; }
.strip::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); border-radius: 999px; }

.strip-item {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
  width: clamp(160px, 22vw, 240px);
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.strip-item:hover img { transform: scale(1.03); }

.strip-nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.strip-nav:hover { transform: translateY(-1px); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
  /* Keep tiles consistent regardless of photo orientation */
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: rgba(255,255,255,0.55);

  position: relative;

  text-decoration: none;
  color: inherit;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img { transform: scale(1.03); }

/* Make it feel “premium” with a masonry-style layout */
.gallery-item:nth-child(12n+1),
.gallery-item:nth-child(12n+2),
.gallery-item:nth-child(12n+3),
.gallery-item:nth-child(12n+4) { grid-column: span 3; }

.gallery-item:nth-child(12n+5),
.gallery-item:nth-child(12n+6),
.gallery-item:nth-child(12n+7) { grid-column: span 4; }

.gallery-item:nth-child(12n+8),
.gallery-item:nth-child(12n+9) { grid-column: span 6; }

.gallery-item:nth-child(12n+10),
.gallery-item:nth-child(12n+11),
.gallery-item:nth-child(12n+12) { grid-column: span 4; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .gallery-item:nth-child(n) { grid-column: span 3; }
  .featured-strip { grid-template-columns: auto 1fr auto; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(n) { grid-column: span 2; }
  .strip-nav { display: none; }
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.lightbox.open { display: block; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
}

.lightbox-panel {
  position: relative;
  width: min(980px, calc(100% - 24px));
  margin: 54px auto;
  background: rgba(18,18,18,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  padding: 14px;
}

.lightbox-image {
  width: 100%;
  height: min(72vh, 720px);
  object-fit: contain;
  display: block;
  border-radius: 16px;
  background: rgba(0,0,0,0.4);
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.lightbox-nav.prev { left: 10px; }
.lightbox-nav.next { right: 10px; }

.lightbox-counter {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

/* =========================
   Welcome Bubble (Namaste)
   ========================= */
.welcome-bubble {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 340px;
}

.welcome-bubble-inner {
  position: relative;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 12px 14px 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.20);
  /* Hero section sets text to white; override for readability inside the bubble */
  color: #111;
}

.welcome-bubble-inner::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -10px;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.96);
  border-left: 1px solid rgba(0,0,0,0.10);
  border-bottom: 1px solid rgba(0,0,0,0.10);
  transform: rotate(45deg);
}

.welcome-bubble-title {
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 4px;
  color: #111;
}

.welcome-bubble-text {
  font-size: 14px;
  line-height: 1.35;
  opacity: 0.92;
  padding-right: 26px;
  color: rgba(0,0,0,0.74);
}

.welcome-bubble-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 520px) {
  .welcome-bubble { left: 12px; right: 12px; max-width: none; }
}

.home-reviews-left {
  display:flex;
  flex-direction:column;
  gap:18px;
}

.welcome-bubble-inner * {
  color: inherit;
}


/* Moments strip labels */
.strip-item{ position: relative; }
.photo-label{
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.62);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* Marquee items clickable */
.marquee-track a{ display:block; }
.marquee-track a:hover img{ transform: scale(1.02); }


/* Fix: make the "See more photos" button fully visible */
#gallery .btn,
#gallery a.btn {
  opacity: 1 !important;
  filter: none !important;
}

/* Fix: Make outline buttons readable on dark hero sections */
.hero .btn-ghost,
.hero a.btn-ghost,
.page-hero .btn-ghost,
.page-hero a.btn-ghost,
.hero .btn-outline,
.page-hero .btn-outline {
  color: #fff !important;
  border-color: rgba(255,255,255,.85) !important;
  background: rgba(0,0,0,.18) !important;
  opacity: 1 !important;
}

.hero .btn-ghost:hover,
.page-hero .btn-ghost:hover,
.hero .btn-outline:hover,
.page-hero .btn-outline:hover {
  background: rgba(255,255,255,.12) !important;
  transform: translateY(-1px);
}

/* TOP CALL/UBER CTA BAR */
.top-cta-bar{
  background: rgba(18,18,18,0.94);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-cta-inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-cta-text{
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.top-cta-text a{
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
}
.top-cta-sub{
  opacity: 0.85;
  font-size: 0.85rem;
}
.top-cta-actions{
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* GOOGLE REVIEWS (HOME + PAGE) */
.google-title{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}
.google-icon{
  width: 28px;
  height: 28px;
}
.google-icon-sm{
  width: 18px;
  height: 18px;
}

.google-reviews{
  background: #fff9df;
}

.google-reviews-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.2rem 1.25rem;
  margin-bottom: 1.2rem;
}
.google-rating .big{
  font-size: 1.25rem;
}
.google-actions{
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.review-cards-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.review-cards-grid--page{
  margin-top: 1rem;
}

.review-card{
  padding: 1.15rem 1.1rem;
}
.review-head{
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}
.review-name{
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}
.review-source{
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: #666;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.review-text{
  margin: 0.65rem 0 0;
  color: #333;
  font-size: 0.92rem;
  line-height: 1.55;
}
.review-verify{
  margin-top: 0.7rem;
  font-size: 0.75rem;
  color: #777;
}

.reviews-map-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  margin-top: 1.4rem;
  align-items: start;
}

/* Responsive tweaks */
@media (max-width: 980px){
  .review-cards-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px){
  .review-cards-grid{ grid-template-columns: 1fr; }
  .reviews-map-grid{ grid-template-columns: 1fr; }
}

/* ---- Enhancements: review carousel + gallery animations ---- */

.review-carousel{
  margin-top: 1rem;
  overflow: hidden;
}

.review-carousel .review-track{
  display: flex;
  gap: 0;
  will-change: transform;
}

.review-carousel .review-track > *{
  /* JS sets exact widths; keep as fallback */
  flex: 0 0 100%;
  max-width: 100%;
}

.review-carousel .review-card{
  height: 100%;
}

/* Scroll-in animation (used in Gallery) */
.animate-on-scroll{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.animate-on-scroll.in-view{
  opacity: 1;
  transform: translateY(0);
}

/* Gallery hover: a bit more premium */
.gallery-item{
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.38), rgba(0,0,0,0) 55%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.gallery-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.14);
}

.gallery-item:hover::after{ opacity: 1; }

.gallery-item .photo-label{
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-item:hover .photo-label{
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce){
  .animate-on-scroll{ opacity: 1; transform: none; transition: none; }
  .gallery-item, .gallery-item img{ transition: none; }
}


/* ---- Reviews: 3-per-page layout (Old Durbar style) ---- */
.review-page{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0.25rem;
}
@media (max-width: 980px){
  .review-page{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .review-page{ grid-template-columns: 1fr; }
}

.review-avatar.is-blur{ filter: blur(2.2px); }

.google-view-more{
  margin-top: 0.9rem;
  text-align: center;
}
.google-more-link{
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 2px solid rgba(0,0,0,0.18);
  padding-bottom: 2px;
}
.google-more-link:hover{ border-bottom-color: rgba(0,0,0,0.45); }

/* Make the map look clean and avoid stretched card padding */
.map-card.card{ padding: 0; overflow: hidden; }
.map-card iframe{ display:block; width:100%; height: 280px; border:0; border-radius: 0; }
.reviews-map-grid{ grid-auto-rows: auto; }
.reviews-map-grid > *{ align-self: start; }

/* Welcome bubble entrance */
.welcome-bubble-inner{ animation: bubbleIn 700ms ease-out both; }
.welcome-bubble-actions{ margin-top: 10px; display:flex; gap:10px; }
@keyframes bubbleIn{
  from{ opacity:0; transform: translateY(10px) scale(0.98); }
  to{ opacity:1; transform: translateY(0) scale(1); }
}

/* Safety: hide old highlight cards if any leftover */
.highlights{ display:none !important; }

/* Instagram embeds (reliable + visible buttons/links) */
.ig-embed-wrap{
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.ig-frame{
  width: 100%;
  max-width: 540px;
  height: 680px;
  border: 0;
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}
@media (max-width: 520px){
  .ig-frame{ height: 600px; }
}
.ig-fallback{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 2px solid rgba(0,0,0,0.18);
  padding-bottom: 2px;
}
.ig-fallback:hover{ border-bottom-color: rgba(0,0,0,0.45); }

/* Make sure old Instagram blockquote embeds never get clipped */
.instagram-media{ overflow: visible !important; }

/* Entrance animations (page load) */
.hero-content{ animation: heroIn 760ms ease-out both; }
.page-hero .container{ animation: heroIn 760ms ease-out both; }
.top-cta-inner{ animation: fadeDown 620ms ease-out both; }

@keyframes heroIn{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown{
  from{ opacity: 0; transform: translateY(-8px); }
  to{ opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  .hero-content,
  .page-hero .container,
  .top-cta-inner{ animation: none !important; }
}
