/* =====================================================================
   Relax Ayurvedic — Design System
   Palette drawn from Kerala's own visual language: kasavu (ivory + zari
   gold) cloth borders, temple-mural maroon, palm green, sandalwood.
   ===================================================================== */

:root{
  /* ---- Color tokens ---- */
  --color-bg:          #FBF6EC; /* kasavu ivory */
  --color-surface:     #FFFFFF;
  --color-sandal:      #F1E6D3; /* sandalwood paste — alt section bg */
  --color-maroon:      #7A1F2B; /* temple mural red */
  --color-maroon-dark: #591620;
  --color-green:       #2F4F3A; /* palm / banana leaf */
  --color-green-dark:  #223A2A;
  --color-gold:        #C89B3C; /* brass / turmeric / zari */
  --color-gold-light:  #E4C77E;
  --color-ink:         #2B211B; /* warm near-black for text */
  --color-ink-soft:    #6B5F54;
  --color-line:        rgba(43,33,27,0.12);

  /* ---- Type tokens (English default; overridden per-language below) --- */
  --font-display: 'Fraunces', 'Noto Serif Tamil', 'Noto Serif Malayalam', serif;
  --font-body:    'Work Sans', 'Noto Sans Tamil', 'Noto Sans Malayalam', sans-serif;

  /* ---- Layout ---- */
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 12px 30px -14px rgba(43,33,27,0.28);
  --shadow-lift: 0 20px 40px -16px rgba(122,31,43,0.35);
  --nav-height: 74px;
}

html[lang="ta"]{
  --font-display: 'Noto Serif Tamil', serif;
  --font-body: 'Noto Sans Tamil', sans-serif;
}
html[lang="ml"]{
  --font-display: 'Noto Serif Malayalam', serif;
  --font-body: 'Noto Sans Malayalam', sans-serif;
}

/* =====================================================================
   Base
   ===================================================================== */
*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 16px); }

body{
  margin:0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,.font-display{
  font-family: var(--font-display);
  color: var(--color-maroon-dark);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1{ font-size: clamp(2.4rem, 4.4vw, 3.6rem); font-weight: 600; }
h2{ font-size: clamp(1.9rem, 3vw, 2.5rem); }
h3{ font-size: clamp(1.25rem, 1.8vw, 1.5rem); }

p{ color: var(--color-ink-soft); margin-bottom: 1rem; }

a{ color: var(--color-maroon); text-decoration: none; }
a:hover{ color: var(--color-gold); }

::selection{ background: var(--color-gold-light); color: var(--color-ink); }

:focus-visible{
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.container-xl{
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section{ padding-block: clamp(3.5rem, 7vw, 6rem); }
.section-sandal{ background: var(--color-sandal); }
.section-maroon{ background: var(--color-maroon); color: #F6E9D8; }
.section-maroon h1, .section-maroon h2, .section-maroon h3{ color: #FBF6EC; }
.section-maroon p{ color: #E9D3C4; }

.eyebrow{
  display:inline-flex; align-items:center; gap:.5rem;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-green);
  font-weight: 600;
  margin-bottom: .9rem;
}
.eyebrow::before{
  content:"";
  width: 22px; height: 2px;
  background: var(--color-gold);
  display:inline-block;
}

.text-center{ text-align:center; }
.mx-auto-measure{ max-width: 640px; margin-inline:auto; }

/* =====================================================================
   Signature motif: hand-built kasavu (zari) border
   A repeating gold linework pattern on maroon — the site's one
   recurring signature element, echoing the gold border woven into
   Kerala's traditional ivory-and-gold settu-mundu cloth.
   ===================================================================== */
.kasavu-border{
  height: 14px;
  width: 100%;
  background-color: var(--color-maroon);
  background-image:
    repeating-linear-gradient(115deg,
      transparent 0 6px,
      rgba(200,155,60,0.9) 6px 8px,
      transparent 8px 22px);
  position: relative;
}
.kasavu-border::after{
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(circle at 11px 7px, var(--color-gold) 2px, transparent 2.4px);
  background-size: 22px 14px;
  background-repeat: repeat-x;
  opacity:.9;
}

.motif-divider{
  display:flex; align-items:center; justify-content:center; gap:.6rem;
  color: var(--color-gold);
  margin: 0 auto 1.75rem;
}
.motif-divider .line{ width:46px; height:1px; background: var(--color-gold); }
.motif-divider i{ font-size: .8rem; }

/* =====================================================================
   Buttons
   ===================================================================== */
.btn{
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 999px;
  padding: .8rem 1.7rem;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  display:inline-flex; align-items:center; gap:.55rem;
}
.btn-brand{
  background: var(--color-maroon);
  color: #FBF6EC;
  box-shadow: var(--shadow-lift);
}
.btn-brand:hover{ background: var(--color-maroon-dark); color:#fff; transform: translateY(-2px); }

.btn-outline-brand{
  background: transparent;
  border-color: var(--color-maroon);
  color: var(--color-maroon);
}
.btn-outline-brand:hover{ background: var(--color-maroon); color:#fff; transform: translateY(-2px); }

.btn-gold{
  background: var(--color-gold);
  color: var(--color-maroon-dark);
}
.btn-gold:hover{ background: var(--color-gold-light); color: var(--color-maroon-dark); transform: translateY(-2px); }

.btn-lg{ padding: 1rem 2.1rem; font-size: 1.02rem; }

/* =====================================================================
   Navbar — icon-only routes
   ===================================================================== */
.navbar-ra{
  position: sticky;
  top: 0;
  z-index: 1030;
  height: var(--nav-height);
  background: rgba(251,246,236,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.navbar-ra .container-xl{
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scrollbar-width: none;
}
.navbar-ra .container-xl::-webkit-scrollbar{ display:none; }
.navbar-ra .brand-mark{
  display:flex; align-items:center; gap:.65rem;
  font-family: var(--font-display);
  font-weight:600;
  font-size: 1.28rem;
  color: var(--color-maroon-dark);
  flex: none;
}
.navbar-ra .brand-mark .logo-dot{
  width:38px; height:38px; border-radius:50%;
  background: conic-gradient(from 210deg, var(--color-gold), var(--color-maroon), var(--color-green), var(--color-gold));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:1.05rem;
  box-shadow: 0 4px 12px -4px rgba(122,31,43,.5);
  overflow:hidden;
  flex:none;
}
.navbar-ra .brand-mark .logo-dot img{
  width:100%; height:100%;
  object-fit:cover;
  border-radius:50%;
  display:block;
}

.nav-icons{ display:flex; align-items:center; gap:.25rem; flex:none; }
.nav-icon-link{
  position:relative;
  width:44px; height:44px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 50%;
  color: var(--color-ink);
  font-size: 1.15rem;
  transition: background-color .18s ease, color .18s ease;
}
.nav-icon-link:hover, .nav-icon-link:focus-visible{
  background: var(--color-sandal);
  color: var(--color-maroon);
}
.nav-icon-link.active{
  background: var(--color-maroon);
  color: #fff;
}
.nav-icon-link .nav-tooltip{
  position:absolute; top: 52px; left:50%; transform: translateX(-50%);
  background: var(--color-ink); color:#fff;
  font-family: var(--font-body); font-size:.72rem; font-weight:500;
  padding: .3rem .6rem; border-radius: 6px; white-space:nowrap;
  opacity:0; pointer-events:none; transition: opacity .15s ease, transform .15s ease;
}
.nav-icon-link:hover .nav-tooltip, .nav-icon-link:focus-visible .nav-tooltip{
  opacity:1; transform: translateX(-50%) translateY(2px);
}

.lang-switch{
  display:flex; align-items:center; gap:.2rem;
  background: var(--color-sandal);
  border-radius: 999px;
  padding: .2rem;
  margin-left:.5rem;
  flex: none;
}
.lang-switch button{
  border:none;
  background: rgba(255,255,255,.55);
  font-family: var(--font-body); font-weight:700; font-size:.74rem;
  color: var(--color-ink-soft);
  min-width: 34px; min-height: 34px;
  padding: .3rem .5rem; border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition: background-color .18s ease, color .18s ease;
}
.lang-switch button.active{ background: var(--color-maroon); color:#fff; }
.lang-switch button:hover:not(.active){ background: rgba(255,255,255,.9); color: var(--color-maroon); }

@media (max-width: 767.98px){
  .nav-icons{ gap:.05rem; }
  .nav-icon-link{ width:36px; height:36px; font-size:.95rem; }
  .nav-icon-link .nav-tooltip{ display:none; }
  .lang-switch{ margin-left:.3rem; }
  .lang-switch button{ min-width:30px; min-height:30px; padding:.25rem .4rem; font-size:.7rem; }
}
@media (max-width: 400px){
  .navbar-ra .container-xl{ padding-inline:.6rem; }
  .navbar-ra .brand-mark{ gap:.4rem; }
  .nav-icons{ gap:0; }
  .nav-icon-link{ width:33px; height:33px; font-size:.88rem; }
  .lang-switch button{ min-width:27px; min-height:27px; padding:.2rem .32rem; font-size:.66rem; }
}

/* =====================================================================
   Hero
   ===================================================================== */
.hero{
  position:relative;
  padding-top: 3.4rem;
  padding-bottom: 4.5rem;
  overflow:hidden;
  background:
    radial-gradient(1100px 480px at 82% -8%, rgba(200,155,60,0.16), transparent 60%),
    radial-gradient(900px 460px at -6% 12%, rgba(47,79,58,0.10), transparent 55%),
    var(--color-bg);
}
.hero-grid{
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items:center;
}
@media (max-width: 991.98px){ .hero-grid{ grid-template-columns: 1fr; } }

.hero-art{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.hero-art img{ width:100%; height:100%; object-fit:cover; display:block; }
.hero-badge{
  position:absolute; top:1.2rem; left:1.2rem; z-index:2;
  background: rgba(251,246,236,.94); color:var(--color-maroon-dark);
  font-weight:700; font-size:.78rem; letter-spacing:.03em;
  padding:.5rem .8rem; border-radius: 999px;
  display:flex; align-items:center; gap:.4rem;
  box-shadow: var(--shadow-soft);
}

/* Controlled photo frame for content images (about-snippet, about.html photos).
   Crops to a fixed aspect ratio via object-fit:cover so a source image's own
   proportions/baked-in text can never blow up the layout on small screens. */
.content-photo{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3.4;
}
.content-photo img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
@media (max-width: 767.98px){
  .content-photo{ aspect-ratio: 16 / 10; }
}

/* Wide panoramic banner variant — for cropped product-photo strips that
   read better as a full-width band than as a portrait/square frame. */
.banner-photo{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 21 / 6;
  margin-bottom: 2.2rem;
}
.banner-photo img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
@media (max-width: 767.98px){
  .banner-photo{ aspect-ratio: 16 / 9; }
}

.hero-stats{
  display:flex; flex-wrap:wrap; gap: 1.6rem 2.2rem;
  margin-top: 2.2rem; padding-top: 1.8rem;
  border-top: 1px solid var(--color-line);
}
.hero-stat b{ display:block; font-family: var(--font-display); font-size:1.5rem; color: var(--color-maroon-dark); }
.hero-stat span{ font-size:.82rem; color: var(--color-ink-soft); }

/* =====================================================================
   Cards: services / values / options
   ===================================================================== */
.service-card{
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  height:100%;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.service-icon{
  width:54px; height:54px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  background: var(--color-sandal); color: var(--color-maroon);
  font-size:1.35rem; margin-bottom:1.1rem;
}
.service-card ul{ padding-left: 1.1rem; margin: .6rem 0 0; }
.service-card ul li{ color: var(--color-ink-soft); font-size:.93rem; margin-bottom:.25rem; }

.value-card{
  text-align:center; padding: 1.5rem 1rem;
}
.value-card .service-icon{ margin-inline:auto; }

/* =====================================================================
   Footer
   ===================================================================== */
.footer-ra{
  background: var(--color-green-dark);
  color: #DCE7DE;
  padding-block: 3.4rem 1.6rem;
}
.footer-ra h5{
  font-family: var(--font-display);
  color: var(--color-gold-light);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}
.footer-ra a{ color:#DCE7DE; }
.footer-ra a:hover{ color: var(--color-gold-light); }
.footer-ra .footer-brand{
  font-family: var(--font-display); color:#fff; font-size:1.4rem; margin-bottom:.7rem;
}
.footer-ra ul{ list-style:none; padding:0; margin:0; }
.footer-ra ul li{ margin-bottom:.55rem; font-size:.94rem; }
.footer-ra ul li i{ width: 18px; color: var(--color-gold-light); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2.2rem; padding-top: 1.3rem;
  font-size: .82rem; color:#B9C7BC;
  display:flex; flex-wrap:wrap; gap:.6rem 1.2rem; justify-content:space-between;
}
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  background: rgba(255,255,255,.08);
  display:inline-flex; align-items:center; justify-content:center;
  margin-right:.5rem;
}
.footer-social a:hover{ background: var(--color-gold); color: var(--color-green-dark); }

.footer-credit{
  text-align:center;
  font-size:.8rem;
  color:#9fb0a5;
  margin-top:1.1rem;
  padding-top:1.1rem;
  border-top:1px dashed rgba(228,199,126,.25);
  letter-spacing:.02em;
}
.footer-credit i{ color: var(--color-gold-light); margin-right:.4rem; }
.footer-credit a{
  color: var(--color-gold-light);
  font-weight:700;
  text-decoration:none;
  border-bottom:1px dotted rgba(228,199,126,.55);
  transition: color .18s ease, border-color .18s ease;
}
.footer-credit a:hover{ color:#fff; border-color:#fff; }

/* =====================================================================
   WhatsApp floating action button
   ===================================================================== */
/* =====================================================================
   Fixed floating action button stack (WhatsApp + Doorstep).
   position:fixed with explicit inset values — anchored permanently to
   the viewport corner, never draggable or repositionable by the user.
   ===================================================================== */
.fab-stack{
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .7rem;
  pointer-events: none; /* wrapper is inert; children re-enable it */
}
.fab-stack > *{ pointer-events: auto; }

.whatsapp-fab{
  position: static; /* positioning now comes from the .fab-stack parent */
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.6rem;
  box-shadow: 0 14px 28px -10px rgba(37,211,102,.6);
  animation: fab-pulse 2.6s ease-in-out infinite;
}
.whatsapp-fab:hover{ color:#fff; transform: scale(1.06); }
@media (max-width: 480px){
  .whatsapp-fab{ width:50px; height:50px; font-size:1.4rem; }
}
@keyframes fab-pulse{
  0%,100%{ box-shadow: 0 14px 28px -10px rgba(37,211,102,.6); }
  50%{ box-shadow: 0 14px 28px -6px rgba(37,211,102,.85), 0 0 0 8px rgba(37,211,102,.12); }
}

.doorstep-fab{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:.15rem;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(160deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-maroon-dark);
  font-size: 1.15rem;
  box-shadow: 0 14px 28px -10px rgba(200,155,60,.65);
  text-decoration:none;
  border: 2px solid rgba(255,255,255,.5);
  transition: transform .18s ease, box-shadow .18s ease;
}
.doorstep-fab span{
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1;
}
.doorstep-fab:hover{ color: var(--color-maroon-dark); transform: translateY(-2px) scale(1.05); box-shadow: 0 18px 32px -10px rgba(200,155,60,.8); }
@media (max-width: 480px){
  .doorstep-fab{ width:50px; height:50px; font-size:1rem; }
  .doorstep-fab span{ font-size:.46rem; }
}

/* =====================================================================
   FAQ accordion
   ===================================================================== */
.accordion-ra .accordion-item{
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-line);
  border-radius: 0;
}
.accordion-ra .accordion-button{
  background: transparent;
  font-family: var(--font-display);
  font-weight:600; font-size:1.08rem;
  color: var(--color-maroon-dark);
  padding: 1.4rem .25rem;
  box-shadow:none;
}
.accordion-ra .accordion-button:not(.collapsed){ color: var(--color-maroon); background: transparent; }
.accordion-ra .accordion-button::after{
  filter: sepia(1) saturate(3) hue-rotate(320deg) brightness(.85);
}
.accordion-ra .accordion-body{ padding: 0 .25rem 1.6rem; color: var(--color-ink-soft); }

/* =====================================================================
   Forms
   ===================================================================== */
.form-ra label{ font-weight:600; font-size:.88rem; color: var(--color-ink); margin-bottom:.4rem; }
.form-ra .form-control, .form-ra .form-select{
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: .72rem .9rem;
  background: var(--color-surface);
}
.form-ra .form-control:focus, .form-ra .form-select:focus{
  border-color: var(--color-gold);
  box-shadow: 0 0 0 .22rem rgba(200,155,60,.22);
}
.form-panel{
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-line);
}
.contact-strip{
  display:flex; gap:1rem; align-items:flex-start;
  padding: 1rem 0;
}
.contact-strip i{
  width:42px; height:42px; border-radius:50%;
  background: var(--color-sandal); color: var(--color-maroon);
  display:flex; align-items:center; justify-content:center; flex:none;
}

/* =====================================================================
   Legal pages (Terms / Privacy)
   ===================================================================== */
.legal-content h2{ font-size:1.35rem; margin-top: 2.2rem; }
.legal-content h2:first-child{ margin-top:0; }
.legal-content p, .legal-content li{ color: var(--color-ink-soft); }
.legal-updated{
  display:inline-block; font-size:.82rem; color: var(--color-green);
  background: var(--color-sandal); padding:.35rem .8rem; border-radius:999px;
  margin-bottom: 1.6rem; font-weight:600;
}

/* =====================================================================
   Reveal-on-scroll (respects reduced motion)
   ===================================================================== */
.reveal{ transition: opacity .6s ease, transform .6s ease; }
.js .reveal{ opacity:0; transform: translateY(18px); }
.reveal.is-visible{ opacity:1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .whatsapp-fab{ animation:none; }
}

/* Page hero banner used on inner pages (about/faq/terms/privacy/booking) */
.inner-hero{
  padding-top: 2.6rem;
  padding-bottom: 2.8rem;
  background: var(--color-sandal);
  border-bottom: 1px solid var(--color-line);
}

/* =====================================================================
   Homepage hero carousel (auto-advancing, no arrows/dots — decorative
   background only) with a glassmorphism intro card on top.
   ===================================================================== */
.hero-carousel-wrap{
  position: relative;
  height: 82vh;
  min-height: 560px;
  max-height: 780px;
  overflow: hidden;
  background: var(--color-ink);
}
.hero-carousel-wrap .carousel,
.hero-carousel-wrap .carousel-inner,
.hero-carousel-wrap .carousel-item{ height:100%; }
.hero-carousel-wrap .carousel-item img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.hero-carousel-scrim{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(20,10,10,.35) 0%, rgba(20,10,10,.55) 100%);
  z-index:1;
}
.hero-intro-card{
  background: rgba(47,24,28,0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200,155,60,0.4);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: 0 20px 45px -12px rgba(0,0,0,.55);
  color: #FBF6EC;
}
.hero-intro-card h1{ color:#fff; }
.hero-intro-card .eyebrow{ color: var(--color-gold-light); justify-content:center; }
.hero-intro-card .eyebrow::before{ display:none; }
.hero-intro-card p.lead{ color: rgba(251,246,236,.88); }

.availability-badge{
  display:inline-flex; align-items:center; gap:.4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #FBF6EC;
  font-size:.78rem; font-weight:600;
  padding:.4rem .8rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.availability-badge i{ font-size:.85rem; }
.availability-badge-gold{
  background: rgba(200,155,60,.22);
  border-color: rgba(228,199,126,.55);
  color: var(--color-gold-light);
}

.hero-price-pill{
  display:inline-flex; align-items:center; gap:.6rem;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(200,155,60,.55);
  border-radius: 999px;
  padding: .6rem 1.4rem;
  margin-bottom: 1.6rem;
  animation: hero-price-pulse 2.5s infinite;
}
.hero-price-pill .offer-label{ font-size:1.05rem; color:#fff; }
.hero-price-pill .offer-price{
  font-family: var(--font-display);
  font-weight:800; font-size:1.6rem; color: var(--color-gold-light);
  text-shadow: 0 2px 10px rgba(200,155,60,.4);
}
@keyframes hero-price-pulse{
  0%,100%{ box-shadow: 0 0 0 0 rgba(200,155,60,.55); }
  70%{ box-shadow: 0 0 0 10px rgba(200,155,60,0); }
}

@media (max-width: 767.98px){
  .hero-carousel-wrap{ height:auto; min-height:600px; padding-block:3rem 0; }
}
@media (prefers-reduced-motion: reduce){
  .hero-price-pill{ animation:none; }
}