
@font-face {
  font-family: "Manrope Local";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond Local";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
}

:root {
  --font-manrope: "Manrope Local", Arial, sans-serif;
  --font-cormorant: "Cormorant Garamond Local", Georgia, serif;
  --ink: #16332b;
  --muted: #64756f;
  --green-950: #032d23;
  --green-900: #063e31;
  --green-800: #07513f;
  --green-700: #0a6850;
  --sage: #98aa96;
  --sage-light: #dfe8df;
  --cream: #f8f5ed;
  --paper: #fffdf8;
  --gold: #c79b52;
  --gold-light: #e4c992;
  --white: #ffffff;
  --border: rgba(21, 66, 52, 0.13);
  --shadow: 0 24px 70px rgba(3, 45, 35, 0.12);
  --radius-lg: 36px;
  --radius-md: 26px;
  --section: clamp(5.5rem, 9vw, 8.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--green-700);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding-block: var(--section);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 50px rgba(3, 45, 35, 0.13);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease var(--delay, 0ms), transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1) var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 10px 30px rgba(6, 62, 49, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1240px, calc(100% - 48px));
  min-height: 58px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: block;
  width: 205px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #38564d;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 46px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-900);
  border-radius: 999px;
  background: var(--green-900);
  color: white;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(6, 62, 49, 0.2);
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav-cta:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 145px 0 118px;
  background:
    radial-gradient(circle at 78% 20%, rgba(219, 228, 211, 0.85), transparent 34%),
    linear-gradient(135deg, #fffdf8 0%, #f6f2e9 46%, #eaf1e9 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  content: "";
  opacity: 0.35;
  background-image: linear-gradient(rgba(6, 62, 49, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 62, 49, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to left, black, transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -220px;
  left: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(199, 155, 82, 0.17);
  box-shadow: inset 0 0 80px rgba(199, 155, 82, 0.08);
}

.hero-glow-two {
  right: -80px;
  bottom: 30px;
  width: 260px;
  height: 260px;
  background: rgba(199, 155, 82, 0.13);
  filter: blur(60px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(470px, 1.09fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-700);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 26px;
  padding: 9px 14px;
  border: 1px solid rgba(6, 62, 49, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.8);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(199, 155, 82, 0.13);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--green-950);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(3.75rem, 6vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.048em;
  line-height: 0.92;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: 500;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 34px;
  color: #536b63;
  font-size: 1.04rem;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 39px;
}

.button {
  display: inline-flex;
  min-height: 55px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 999px;
  font-size: 0.81rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--green-900);
  color: white;
  box-shadow: 0 14px 32px rgba(6, 62, 49, 0.23);
}

.button-primary:hover {
  background: var(--green-700);
  box-shadow: 0 18px 38px rgba(6, 62, 49, 0.28);
}

.button-ghost {
  border: 1px solid rgba(6, 62, 49, 0.18);
  background: rgba(255, 255, 255, 0.55);
  color: var(--green-900);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px 15px 15px 5px;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 9px 18px rgba(6, 62, 49, 0.17);
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  margin-bottom: 3px;
  color: var(--green-900);
  font-size: 0.78rem;
}

.hero-trust span {
  color: var(--muted);
  font-size: 0.71rem;
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.hero-image-wrap {
  position: absolute;
  inset: 8px 14px 38px 34px;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.62);
  border-radius: 48% 48% 28px 28px;
  background: #dae4d6;
  box-shadow: var(--shadow);
}

.hero-image-wrap::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: inherit;
  content: "";
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-visual:hover .hero-image-wrap img {
  transform: scale(1.035);
}

.hero-image-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(3, 45, 35, 0.28));
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  padding: 15px 18px;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  animation: gentleFloat 5s ease-in-out infinite;
}

.floating-card-top {
  top: 108px;
  left: 0;
}

.floating-card-bottom {
  right: -12px;
  bottom: 78px;
  animation-delay: -2.3s;
}

.floating-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-light);
}

.floating-card strong,
.floating-card small {
  display: block;
  white-space: nowrap;
}

.floating-card strong {
  margin-bottom: 3px;
  color: var(--green-900);
  font-size: 0.72rem;
}

.floating-card small {
  color: #688078;
  font-size: 0.62rem;
}

.pulse-ring {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(6, 62, 49, 0.15);
  border-radius: 50%;
}

.pulse-ring::before,
.pulse-ring i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.pulse-ring::before {
  position: absolute;
  animation: pulse 2.2s infinite;
}

.hero-seal {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 20px;
  display: grid;
  width: 118px;
  height: 118px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(6, 62, 49, 0.89);
  color: white;
  text-align: center;
  box-shadow: 0 14px 35px rgba(3, 45, 35, 0.25);
}

.hero-seal::before {
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(228, 201, 146, 0.55);
  border-radius: 50%;
  content: "";
}

.hero-seal span {
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-seal strong {
  color: var(--gold-light);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.85rem;
}

.hero-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(6, 62, 49, 0.1);
  border-bottom: 1px solid rgba(6, 62, 49, 0.1);
  background: rgba(255, 255, 255, 0.44);
  color: var(--green-900);
  backdrop-filter: blur(8px);
}

.hero-marquee div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  animation: marquee 28s linear infinite;
}

.hero-marquee span {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.06em;
}

.hero-marquee i {
  color: var(--gold);
  font-style: normal;
}

.section-kicker {
  margin-bottom: 19px;
}

.section-kicker::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-heading h2,
.concept-copy h2,
.vital-copy h2,
.hours-copy h2,
.faq-intro h2 {
  margin-bottom: 23px;
  color: var(--green-950);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.concept {
  position: relative;
  background: var(--paper);
}

.concept::after {
  position: absolute;
  top: 15%;
  right: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(199, 155, 82, 0.15);
  border-radius: 50%;
  content: "";
}

.concept-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(70px, 9vw, 126px);
}

.concept-images {
  position: relative;
  min-height: 650px;
}

.image-panel {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.image-panel:hover img {
  transform: scale(1.04);
}

.image-panel-main {
  inset: 0 25% 0 0;
  border-radius: 180px 24px 24px 24px;
}

.image-panel-main img {
  object-position: 50% center;
}

.image-panel-small {
  right: 0;
  bottom: 24px;
  width: 43%;
  height: 44%;
  border: 8px solid var(--paper);
  border-radius: 20px 90px 20px 20px;
}

.concept-badge {
  position: absolute;
  top: 37%;
  right: 1%;
  display: flex;
  padding: 17px 19px;
  align-items: center;
  gap: 12px;
  border-radius: 17px;
}

.concept-badge > span {
  color: var(--gold);
  font-size: 1.2rem;
}

.concept-badge p {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.45;
}

.concept-badge strong {
  color: var(--green-900);
  font-size: 0.75rem;
}

.section-intro,
.concept-copy > p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.85;
}

.concept-list {
  margin: 34px 0 31px;
  border-top: 1px solid var(--border);
}

.concept-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 21px 0;
  border-bottom: 1px solid var(--border);
}

.concept-list article > span {
  padding-top: 4px;
  color: var(--gold);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.concept-list h3 {
  margin-bottom: 5px;
  color: var(--green-900);
  font-size: 0.94rem;
}

.concept-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--green-900);
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 800;
  padding-bottom: 8px;
}

.text-link span {
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.services {
  position: relative;
  overflow: hidden;
  background: #eff3ec;
}

.services::before {
  position: absolute;
  top: -170px;
  left: 50%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(199, 155, 82, 0.18);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.centered {
  position: relative;
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.centered .section-kicker {
  justify-content: center;
}

.centered > p:last-child {
  max-width: 580px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 33px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.9), 0 18px 50px rgba(3, 45, 35, 0.07);
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.service-card::after {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(199, 155, 82, 0.18);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 25px 60px rgba(3, 45, 35, 0.12);
  transform: translateY(-8px);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(6, 62, 49, 0.3);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1rem;
}

.service-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 36px;
  place-items: center;
  border: 1px solid rgba(6, 62, 49, 0.11);
  border-radius: 50% 50% 50% 14px;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--gold-light);
  font-size: 1.4rem;
  box-shadow: 0 12px 24px rgba(6, 62, 49, 0.18);
}

.service-card h3 {
  margin-bottom: 14px;
  color: var(--green-950);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
}

.service-card > p {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.service-note {
  position: absolute;
  right: 33px;
  bottom: 28px;
  left: 33px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green-700);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.service-note i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.vital-section {
  position: relative;
  overflow: hidden;
  background: var(--green-950);
  color: white;
}

.vital-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.13;
  background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 20% 50%, black, transparent 66%);
}

.vital-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.vital-orb-one {
  top: -180px;
  right: -130px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(228, 201, 146, 0.16);
}

.vital-orb-two {
  bottom: -120px;
  left: 28%;
  width: 300px;
  height: 300px;
  background: rgba(10, 104, 80, 0.32);
  filter: blur(70px);
}

.vital-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.87fr;
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.authorized-pill {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 8px 13px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(228, 201, 146, 0.28);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.authorized-pill span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: rgba(228, 201, 146, 0.15);
  font-size: 0.6rem;
}

.vital-brand {
  margin-bottom: 24px;
  color: white;
  font-size: 0.83rem;
  font-weight: 300;
  letter-spacing: 0.42em;
}

.vital-brand strong {
  color: var(--gold-light);
}

.vital-copy h2 {
  color: white;
}

.vital-copy > p:not(.vital-brand) {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.vital-points {
  display: grid;
  margin: 32px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.vital-points > div {
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.vital-points span {
  padding-top: 3px;
  color: var(--gold-light);
  font-family: var(--font-cormorant), Georgia, serif;
}

.vital-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.6;
}

.vital-points strong {
  display: block;
  margin-bottom: 2px;
  color: white;
  font-size: 0.84rem;
}

.health-note {
  display: block;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  line-height: 1.65;
}

.vital-photo {
  position: relative;
  min-height: 650px;
}

.vital-photo::before {
  position: absolute;
  top: 24px;
  right: -34px;
  bottom: -24px;
  left: 34px;
  border: 1px solid rgba(228, 201, 146, 0.22);
  border-radius: 220px 220px 26px 26px;
  content: "";
}

.vital-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 220px 220px 26px 26px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.vital-photo-card {
  position: absolute;
  right: -28px;
  bottom: 45px;
  display: flex;
  padding: 18px 21px;
  align-items: center;
  gap: 13px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--green-900);
}

.vital-photo-card > span {
  color: var(--gold);
  font-size: 1.25rem;
}

.vital-photo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.45;
}

.vital-photo-card strong {
  display: block;
  color: var(--green-900);
  font-size: 0.75rem;
}

.products {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(199, 155, 82, 0.12), transparent 22%),
    linear-gradient(145deg, #f8f5ed 0%, #edf3ec 52%, #f9f7f0 100%);
}

.products::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(6, 62, 49, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 62, 49, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.products-shell {
  position: relative;
  z-index: 1;
}

.products-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.products-orb-one {
  top: -210px;
  right: -150px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(199, 155, 82, 0.17);
}

.products-orb-two {
  bottom: 8%;
  left: -100px;
  width: 310px;
  height: 310px;
  background: rgba(152, 170, 150, 0.18);
  filter: blur(65px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.82);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.9), 0 18px 48px rgba(3, 45, 35, 0.08);
  transition: transform 0.38s cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 0.38s ease, background 0.38s ease;
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 26px 62px rgba(3, 45, 35, 0.14);
  transform: translateY(-8px);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  margin: 8px 8px 0;
  border-radius: 19px;
  background: #e8eee7;
}

.product-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.045);
}

.product-number {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-800);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.product-copy {
  min-height: 112px;
  padding: 20px 20px 22px;
}

.product-copy p {
  margin-bottom: 7px;
  color: var(--green-700);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
}

.catalog-download {
  display: flex;
  margin-top: 31px;
  padding: 22px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-color: rgba(255, 255, 255, 0.84);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
}

.catalog-download > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.catalog-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 16px 16px 16px 6px;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--gold-light);
  font-size: 1.1rem;
  box-shadow: 0 10px 24px rgba(6, 62, 49, 0.2);
}

.catalog-download p {
  margin: 0;
}

.catalog-download small,
.catalog-download strong {
  display: block;
}

.catalog-download small {
  margin-bottom: 4px;
  color: var(--green-700);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.catalog-download strong {
  color: var(--green-950);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.catalog-button {
  flex: 0 0 auto;
}

.products-note {
  max-width: 740px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.61rem;
  line-height: 1.6;
  text-align: center;
}

.experience {
  background: var(--paper);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 60px;
}

.split-heading h2 {
  max-width: 710px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.steps-grid article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.step-line {
  position: relative;
  height: 1px;
  margin-bottom: 24px;
  background: var(--border);
}

.step-line i {
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--green-700);
  box-shadow: 0 0 0 1px var(--green-700);
}

.steps-grid h3 {
  margin-bottom: 9px;
  color: var(--green-950);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.experience-banner {
  position: relative;
  overflow: hidden;
  height: 470px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.experience-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(3, 45, 35, 0.63), transparent 58%);
}

.experience-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}

.experience-banner-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 7%;
  padding: 25px 28px;
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.17);
  color: white;
  transform: translateY(-50%);
}

.experience-banner-copy span {
  display: block;
  margin-bottom: 11px;
  color: var(--gold-light);
}

.experience-banner-copy p {
  margin: 0;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.hours {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(199, 155, 82, 0.18), transparent 27%),
    linear-gradient(135deg, var(--green-900), var(--green-950));
  color: white;
}

.hours::before {
  position: absolute;
  right: -140px;
  bottom: -310px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(228, 201, 146, 0.13);
  border-radius: 50%;
  content: "";
}

.hours-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.section-kicker.light {
  color: var(--gold-light);
}

.hours-copy h2 {
  color: white;
}

.hours-copy > p:not(.section-kicker) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
}

.open-indicator {
  display: inline-flex;
  margin-top: 17px;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 700;
}

.open-indicator i {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7fcea4;
}

.open-indicator i::before {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(127, 206, 164, 0.45);
  border-radius: 50%;
  content: "";
  animation: pulseSoft 2s infinite;
}

.schedule-card {
  padding: 34px;
  border-color: rgba(255, 255, 255, 0.21);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.schedule-heading {
  display: flex;
  margin-bottom: 25px;
  padding-bottom: 23px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.schedule-heading > span {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.schedule-heading small,
.schedule-heading strong {
  display: block;
}

.schedule-heading small {
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.schedule-heading strong {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.schedule-row {
  display: flex;
  padding: 17px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.schedule-row span {
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.79rem;
}

.schedule-row strong {
  color: white;
  font-size: 0.82rem;
}

.schedule-button {
  display: flex;
  min-height: 52px;
  margin-top: 24px;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: white;
  color: var(--green-900);
  font-size: 0.75rem;
  font-weight: 800;
  transition: background 0.25s ease, transform 0.25s ease;
}

.schedule-button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  gap: clamp(60px, 9vw, 130px);
}

.faq-intro {
  position: relative;
}

.faq-intro > p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.75;
}

.faq-symbol {
  display: grid;
  width: 78px;
  height: 78px;
  margin-top: 34px;
  place-items: center;
  border: 1px solid rgba(6, 62, 49, 0.13);
  border-radius: 50% 50% 50% 18px;
  color: var(--gold);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 2.8rem;
  background: rgba(255, 255, 255, 0.55);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item button {
  display: flex;
  width: 100%;
  padding: 25px 0;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item button > span {
  color: var(--green-950);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.faq-item button i {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(6, 62, 49, 0.14);
  border-radius: 50%;
  color: var(--green-700);
  font-size: 1.1rem;
  font-style: normal;
  transition: background 0.25s ease, color 0.25s ease;
}

.faq-item.is-open button i {
  background: var(--green-900);
  color: white;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.35s ease, opacity 0.35s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 25px;
  opacity: 1;
}

footer {
  position: relative;
  overflow: hidden;
  padding: 78px 0 25px;
  background: #021f18;
  color: white;
}

.footer-glow {
  position: absolute;
  top: -200px;
  left: 10%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(10, 104, 80, 0.18);
  filter: blur(90px);
}

.footer-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  padding-bottom: 60px;
}

.footer-logo-wrap {
  width: 250px;
  margin-bottom: 20px;
  padding: 11px 16px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
}

.footer-brand p {
  max-width: 410px;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-links small {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-bottom {
  position: relative;
  display: flex;
  padding-top: 23px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.61rem;
  letter-spacing: 0.02em;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes pulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(3.5); }
}

@keyframes pulseSoft {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(1.5); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 0.68rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 5.6vw, 4.8rem);
  }

  .hero-visual {
    min-height: 550px;
  }

  .concept-grid,
  .vital-grid {
    gap: 70px;
  }

  .concept-images,
  .vital-photo {
    min-height: 580px;
  }
}

@media (max-width: 900px) {
  .section-shell,
  .nav-shell {
    width: min(100% - 36px, 760px);
  }

  .site-header,
  .site-header.is-scrolled {
    padding: 9px 0;
  }

  .nav-shell {
    min-height: 56px;
  }

  .brand {
    width: 185px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(6, 62, 49, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.73);
    cursor: pointer;
    backdrop-filter: blur(12px);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--green-900);
    transition: transform 0.3s ease;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(3.8px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-3.8px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: grid;
    padding: 110px 26px 35px;
    place-items: center;
    background: rgba(248, 245, 237, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(20px);
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-menu nav {
    width: min(100%, 480px);
  }

  .mobile-menu nav > a {
    display: flex;
    padding: 17px 0;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    color: var(--green-950);
    font-family: var(--font-cormorant), Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
  }

  .mobile-menu nav > a > span {
    color: var(--gold);
    font-family: var(--font-manrope), Arial, sans-serif;
    font-size: 0.66rem;
  }

  .mobile-menu .mobile-menu-cta {
    margin-top: 26px;
    padding: 17px 22px;
    justify-content: space-between;
    border: 0;
    border-radius: 999px;
    background: var(--green-900);
    color: white;
    font-family: var(--font-manrope), Arial, sans-serif;
    font-size: 0.82rem;
  }

  .mobile-menu .mobile-menu-cta > span {
    color: white;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 0;
    padding: 122px 0 104px;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(4rem, 10vw, 5.5rem);
  }

  .hero-lead {
    max-width: 640px;
  }

  .hero-visual {
    min-height: 650px;
  }

  .hero-image-wrap {
    inset: 0 5% 30px;
  }

  .floating-card-top {
    top: 105px;
    left: 1%;
  }

  .floating-card-bottom {
    right: 0;
  }

  .concept-grid,
  .vital-grid,
  .hours-shell,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .concept-grid {
    gap: 70px;
  }

  .concept-images {
    max-width: 610px;
    min-height: 690px;
    margin-inline: auto;
  }

  .concept-copy {
    max-width: 700px;
  }

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

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 340px;
  }

  .vital-grid {
    gap: 75px;
  }

  .vital-copy {
    max-width: 720px;
  }

  .vital-photo {
    width: min(100%, 580px);
    min-height: 700px;
    margin-inline: auto;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .split-heading > p {
    max-width: 580px;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 44px;
  }

  .hours-shell {
    gap: 50px;
  }

  .schedule-card {
    max-width: 650px;
  }

  .faq-grid {
    gap: 48px;
  }

  .faq-intro {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  :root {
    --section: 5.5rem;
    --radius-lg: 26px;
  }

  .section-shell,
  .nav-shell {
    width: calc(100% - 30px);
  }

  .brand {
    width: 163px;
  }

  .hero {
    padding-top: 111px;
  }

  .eyebrow {
    margin-bottom: 22px;
    padding: 8px 11px;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.45rem, 16vw, 4.5rem);
    line-height: 0.91;
  }

  .hero-lead {
    margin-bottom: 27px;
    font-size: 0.91rem;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    margin-top: 30px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-image-wrap {
    inset: 0 0 20px;
    border-width: 6px;
    border-radius: 120px 120px 25px 25px;
  }

  .hero-image-wrap img {
    object-position: 58% center;
  }

  .floating-card {
    padding: 12px 13px;
  }

  .floating-card-top {
    top: 66px;
    left: -4px;
  }

  .floating-card-bottom {
    right: -4px;
    bottom: 60px;
  }

  .floating-card strong {
    font-size: 0.64rem;
  }

  .floating-card small {
    font-size: 0.54rem;
  }

  .floating-icon,
  .pulse-ring {
    width: 30px;
    height: 30px;
  }

  .hero-seal {
    right: 11px;
    bottom: 0;
    width: 94px;
    height: 94px;
  }

  .hero-seal strong {
    font-size: 1.45rem;
  }

  .hero-marquee {
    padding: 15px 0;
  }

  .section-heading h2,
  .concept-copy h2,
  .vital-copy h2,
  .hours-copy h2,
  .faq-intro h2 {
    font-size: clamp(2.75rem, 13vw, 3.7rem);
  }

  .concept-images {
    min-height: 520px;
  }

  .image-panel-main {
    right: 18%;
    border-radius: 120px 20px 20px 20px;
  }

  .image-panel-small {
    width: 48%;
    height: 39%;
    border-width: 5px;
    border-radius: 16px 65px 16px 16px;
  }

  .concept-badge {
    top: 39%;
    right: -2%;
    padding: 13px 12px;
  }

  .concept-badge p {
    font-size: 0.58rem;
  }

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

  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: 360px;
    padding: 29px;
  }

  .service-note {
    right: 29px;
    left: 29px;
  }

  .products-grid {
    gap: 11px;
  }

  .product-card {
    border-radius: 18px;
  }

  .product-image {
    margin: 5px 5px 0;
    border-radius: 14px;
  }

  .product-number {
    top: 8px;
    left: 8px;
    width: 28px;
    height: 28px;
    font-size: 0.65rem;
  }

  .product-copy {
    min-height: 96px;
    padding: 15px 12px 17px;
  }

  .product-copy p {
    min-height: 2.8em;
    margin-bottom: 6px;
    font-size: 0.49rem;
    letter-spacing: 0.055em;
  }

  .product-copy h3 {
    font-size: clamp(1.13rem, 5.6vw, 1.45rem);
  }

  .catalog-download {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .catalog-download strong {
    font-size: 1.18rem;
  }

  .catalog-button {
    width: 100%;
  }

  .vital-photo {
    min-height: 530px;
  }

  .vital-photo::before {
    right: -10px;
    left: 15px;
  }

  .vital-photo > img {
    border-radius: 120px 120px 23px 23px;
  }

  .vital-photo-card {
    right: -4px;
    bottom: 25px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .experience-banner {
    height: 470px;
  }

  .experience-banner::after {
    background: linear-gradient(0deg, rgba(3, 45, 35, 0.69), transparent 65%);
  }

  .experience-banner > img {
    object-position: 62% center;
  }

  .experience-banner-copy {
    top: auto;
    right: 18px;
    bottom: 18px;
    left: 18px;
    transform: none;
  }

  .schedule-card {
    padding: 25px 21px;
  }

  .schedule-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .faq-symbol {
    display: none;
  }

  .faq-item button > span {
    font-size: 1.35rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-logo-wrap {
    width: 220px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
