:root {
  --navy: #021873;
  --navy-deep: #010c3d;
  --navy-dark: #01124f;
  --gold: #dfa925;
  --gold-soft: #f0d48a;
  --gold-dark: #c4921a;
  --white: #ffffff;
  --mist: #eef3f9;
  --ink: #161b2e;
  --muted: #5a6276;
  --glass: rgba(255, 255, 255, 0.08);
  --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1);
  accent-color: var(--gold);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  font-family: "Figtree", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, color-mix(in srgb, var(--navy) 8%, white), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, color-mix(in srgb, var(--gold) 10%, white), transparent 50%),
    var(--mist);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, .brand-serif {
  font-family: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
  color: var(--navy);
}


p {
  color: color-mix(in srgb, var(--ink) 86%, white);
}

.navbar-amruth {
  background: color-mix(in srgb, var(--navy) 78%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  padding-block: 0.55rem;
  border-block-end: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  transition: background 0.45s var(--ease-luxe), box-shadow 0.45s var(--ease-luxe);
}

.navbar-amruth.is-scrolled {
  background: color-mix(in srgb, var(--navy-deep) 92%, transparent);
  box-shadow: 0 12px 40px rgba(2, 24, 115, 0.22);
}

.navbar-amruth .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  text-transform: uppercase;
  position: relative;
  padding-block: 0.55rem;
}

.navbar-amruth .nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 0.75rem;
  inset-block-end: 0.2rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s var(--ease-luxe);
}

.navbar-amruth .nav-link:hover,
.navbar-amruth .nav-link.active {
  color: var(--gold-soft);
}

.navbar-amruth .nav-link.active::after,
.navbar-amruth .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: -4%;
  z-index: -2;
  background: url("../images/banner.png") center / cover no-repeat;
  animation: drift 28s var(--ease-luxe) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(1, 12, 61, 0.88) 0%, rgba(2, 24, 115, 0.55) 48%, rgba(2, 24, 115, 0.18) 100%),
    radial-gradient(circle at 70% 80%, rgba(223, 169, 37, 0.18), transparent 42%);
}

.hero-caustic {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 20% at 20% 80%, rgba(255, 255, 255, 0.16), transparent 55%),
    radial-gradient(ellipse 30% 18% at 80% 70%, rgba(223, 169, 37, 0.12), transparent 50%);
  animation: caustic 16s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 600;
  color: var(--white);
  font-style: italic;
}

.page-hero .lead-copy {
  font-size: 1.15rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
}

.gold-line {
  width: 88px;
  height: 2px;
  border: 0;
  opacity: 1;
  margin-block: 1.15rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 99px;
}

.btn-gold,
.btn-outline-light-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Figtree", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  min-height: 48px;
  padding: 0.75rem 1.7rem;
  transition: background 0.4s var(--ease-luxe), color 0.4s var(--ease-luxe), box-shadow 0.4s var(--ease-luxe), transform 0.4s var(--ease-luxe);
}

.navbar-amruth .btn-gold {
  min-height: 40px;
  padding: 0.45rem 1.15rem;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: var(--navy);
  border: none;
  box-shadow: 0 8px 24px rgba(223, 169, 37, 0.28);
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(223, 169, 37, 0.35);
}

.btn-outline-light-gold {
  border: 1px solid color-mix(in srgb, var(--gold) 80%, white);
  color: var(--white);
  background: transparent;
}

.btn-outline-light-gold:hover {
  background: color-mix(in srgb, var(--gold) 18%, transparent);
  color: var(--gold-soft);
}

.icon-bar {
  background: color-mix(in srgb, white 70%, var(--mist));
  border-block: 1px solid color-mix(in srgb, var(--navy) 8%, transparent);
}

.icon-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.22), transparent 45%),
    var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin-inline: auto;
  box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.18), 0 10px 24px rgba(2, 24, 115, 0.16);
  transition: transform 0.5s var(--ease-luxe);
}

.icon-bar .col-6:hover .icon-circle {
  transform: translateY(-4px);
}

.icon-bar p {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.section {
  padding-block: 5.25rem;
  position: relative;
}

.section-alt {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--navy) 4%, white), var(--mist));
}

.section-navy {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(223, 169, 37, 0.16), transparent 45%),
    radial-gradient(ellipse at 90% 100%, rgba(120, 180, 255, 0.18), transparent 40%),
    linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--white);
  overflow: hidden;
}

.section-navy h2,
.section-navy p {
  color: var(--white);
}

.eyebrow {
  color: var(--gold-dark);
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.page-hero .eyebrow,
.page-banner .eyebrow,
.section-navy .eyebrow {
  color: var(--gold-soft);
}

.product-card,
.article-card,
.strength-card,
.cert-card {
  border: 1px solid color-mix(in srgb, var(--navy) 8%, transparent);
  border-radius: 1.25rem;
  overflow: hidden;
  background: color-mix(in srgb, white 82%, var(--mist));
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(2, 24, 115, 0.07);
  height: 100%;
  transition: transform 0.55s var(--ease-luxe), box-shadow 0.55s var(--ease-luxe);
}

.product-card:hover,
.strength-card:hover,
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(2, 24, 115, 0.12);
}

.product-card img,
.gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-luxe);
}

.product-card:hover img,
.gallery-item:hover img {
  transform: scale(1.05);
}

.product-card img {
  height: 260px;
  object-position: center;
}

.product-card .card-body {
  padding: 1.4rem 1.35rem 1.5rem;
}

.img-frame {
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2, 24, 115, 0.16);
  position: relative;
}

.img-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent);
  border-radius: 1rem;
  pointer-events: none;
}

.img-frame img {
  width: 100%;
  display: block;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-inline-start: 1.9rem;
  margin-block-end: 0.85rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.55rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, white, var(--gold));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 22%, transparent);
}

.process-step {
  background: color-mix(in srgb, white 88%, var(--mist));
  border-radius: 1.15rem;
  padding: 1.4rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--navy) 7%, transparent);
  border-block-start: 2px solid var(--gold);
  transition: transform 0.5s var(--ease-luxe);
}

.process-step:hover {
  transform: translateY(-4px);
}

.step-num {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-weight: 600;
  font-size: 1.75rem;
  font-style: italic;
}

.form-control,
.form-select {
  min-height: 48px;
  font-size: 1rem;
  border-color: color-mix(in srgb, var(--navy) 16%, white);
  border-radius: 0.7rem;
  background: color-mix(in srgb, white 90%, var(--mist));
}

.form-control:focus,
.form-select:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(223, 169, 37, 0.2);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  margin-block-end: 0.35rem;
}

.spa-view {
  min-height: 60vh;
}

.spa-view.inactive {
  display: none;
}

.page-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  padding-block: 6.2rem 3.6rem;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/bottles-wood.jpeg") center / cover no-repeat;
  transform: scale(1.06);
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, rgba(1, 12, 61, 0.9), rgba(2, 24, 115, 0.72));
}

.page-banner h1 {
  color: var(--white);
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.gallery-item {
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 40px rgba(2, 24, 115, 0.12);
}

.gallery-item img {
  height: 260px;
}

.gallery-caption {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  background: linear-gradient(transparent, rgba(1, 12, 61, 0.88));
  color: white;
  padding: 2.4rem 1.1rem 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-footer {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(223, 169, 37, 0.12), transparent 40%),
    var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  position: relative;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.3s var(--ease-luxe);
}

.site-footer a:hover {
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  inset-inline-end: 1.2rem;
  inset-block-end: 1.2rem;
  background: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  z-index: 1040;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.4s var(--ease-luxe);
}

.whatsapp-float:hover {
  color: white;
  transform: translateY(-3px);
}

.alert-success-brand {
  background: #eaf7ee;
  border: 1px solid #b7e0c2;
  color: #14532d;
}

.map-embed {
  min-height: 320px;
  width: 100%;
  border: 0;
  border-radius: 1.2rem;
}

.wave-break {
  line-height: 0;
  color: var(--mist);
  background: transparent;
}

.wave-break svg {
  width: 100%;
  height: 72px;
  display: block;
}

.wave-break.navy {
  color: var(--navy-deep);
}

.logo-stage {
  background:
    radial-gradient(circle at 50% 40%, rgba(223, 169, 37, 0.18), transparent 55%),
    var(--navy);
  border-radius: 1.4rem;
  padding: 2.5rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.9s var(--ease-luxe) forwards;
  animation-play-state: paused;
}

[data-reveal].is-in {
  animation-play-state: running;
}

[data-reveal]:nth-child(2) { animation-delay: 0.08s; }
[data-reveal]:nth-child(3) { animation-delay: 0.14s; }

.enquiry-card {
  border-radius: 1.4rem;
  box-shadow: 0 24px 50px rgba(2, 24, 115, 0.1);
  background: white;
}

.article-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.filter-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.filter-flow::before {
  content: "";
  position: absolute;
  inset-inline: 8%;
  inset-block-start: 64px;
  height: 0;
  border-block-start: 2px dashed color-mix(in srgb, var(--gold) 55%, var(--navy));
  opacity: 0.45;
  pointer-events: none;
}

.filter-node {
  text-align: center;
  position: relative;
  z-index: 1;
}

.filter-circle {
  width: 128px;
  height: 128px;
  margin-inline: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--gold);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.5), transparent 50%),
    color-mix(in srgb, var(--navy) 92%, white);
  border: 3px solid color-mix(in srgb, var(--gold) 70%, white);
  box-shadow: 0 12px 30px rgba(2, 24, 115, 0.16);
}

@media (max-width: 991px) {
  .filter-flow {
    grid-template-columns: 1fr 1fr;
  }

  .filter-flow::before {
    display: none;
  }
}

@keyframes drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

@keyframes caustic {
  from { opacity: 0.35; transform: translate3d(0, 0, 0); }
  to { opacity: 0.7; transform: translate3d(-2%, 3%, 0); }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes waveShift {
  from { transform: translateX(0); }
  to { transform: translateX(-4%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-media,
  .hero-caustic,
  [data-reveal] {
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .product-card:hover,
  .process-step:hover,
  .btn-gold:hover {
    transform: none;
  }
}

.site-footer p{color:#cbced8;}