/* Premium layer — motion, carousel, corporate polish */

:root {
  --font-display-lux: "Playfair Display", Georgia, serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --lux-gold: #c9a962;
  --lux-gold-soft: rgba(201, 169, 98, 0.35);
  --lux-night: #0f1f18;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--lux-night) 0%, var(--color-forest) 45%, #1a3328 100%);
  transition: opacity 0.55s var(--ease-out-expo), visibility 0.55s;
}

.preloader.preloader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
  max-width: 220px;
}

.preloader__logo {
  margin: 0 auto 1.25rem;
  filter: brightness(1.08) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  animation: preloader-pulse 1.4s ease-in-out infinite;
}

.preloader__bar {
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
  background-size: 200% 100%;
  animation: preloader-shine 1.2s linear infinite;
}

@keyframes preloader-pulse {
  0%, 100% { opacity: 0.88; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

@keyframes preloader-shine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Ambient background --- */
body {
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--lux-gold-soft), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(125, 155, 131, 0.12), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(196, 92, 62, 0.06), transparent);
}

/* --- Header luxury --- */
.site-header--lux {
  border-bottom: 1px solid rgba(232, 223, 210, 0.85);
}

.top-bar--lux {
  background: linear-gradient(90deg, var(--lux-night) 0%, #162e25 50%, var(--lux-night) 100%);
}

.top-bar__inner {
  align-items: center;
}

.top-bar__social {
  display: flex;
  gap: 0.65rem;
}

.top-bar__social-link {
  color: rgba(255, 255, 255, 0.82);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.2s, background 0.2s, transform 0.2s;
  text-decoration: none;
}

.top-bar__social-link:hover {
  color: #fff;
  background: rgba(201, 169, 98, 0.2);
  transform: translateY(-1px);
}

.top-bar__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .top-bar__contact {
    justify-content: flex-end;
  }
}

.nav-wrap--lux {
  padding-block: 0.5rem;
}

.brand--lux img {
  max-height: 54px;
  transition: transform 0.35s var(--ease-out-expo);
}

.brand--lux:hover img {
  transform: scale(1.02);
}

.site-nav--lux .site-nav__list a.is-active,
.site-nav--lux .site-nav__list .is-active-branch > .site-nav__dropdown-btn {
  color: var(--color-forest);
  background: transparent;
  font-weight: 600;
  border-radius: 0;
  box-shadow: inset 0 -2px 0 0 rgba(201, 169, 98, 0.95);
}

.site-nav--lux .site-nav__list a:hover {
  background: rgba(232, 223, 210, 0.42);
  color: var(--color-forest);
}

.site-nav--lux .site-nav__list a.is-active:hover {
  background: transparent;
}

@media (max-width: 959px) {
  .site-nav--lux .site-nav__list a.is-active,
  .site-nav--lux .site-nav__list .is-active-branch > .site-nav__dropdown-btn {
    border-radius: 8px;
    box-shadow: none;
    background: rgba(232, 223, 210, 0.52);
  }

  .site-nav--lux .site-nav__list a.is-active:hover {
    background: rgba(232, 223, 210, 0.58);
  }
}

/* Dropdown */
.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}

.site-nav__dropdown-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.6;
  margin-left: 0.15rem;
}

.site-nav__dropdown-btn:hover,
.site-nav__dropdown-btn:focus-visible {
  background: var(--color-sand);
  outline: none;
}

.site-nav__dropdown-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 0.35rem);
  min-width: min(420px, 90vw);
  max-height: min(70vh, 480px);
  overflow-y: auto;
  padding: 1rem;
  background: rgba(255, 254, 251, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-sand);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 31, 24, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo), visibility 0.3s;
  z-index: 2000;
}

@media (min-width: 960px) {
  .site-nav__dropdown:hover .site-nav__dropdown-panel,
  .site-nav__dropdown:focus-within .site-nav__dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 959px) {
  .site-nav__dropdown-panel {
    position: static;
    min-width: 100%;
    max-height: none;
    box-shadow: none;
    border: none;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    margin-top: 0.35rem;
    display: none;
  }

  .site-nav__dropdown.is-open .site-nav__dropdown-panel {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

.site-nav__dropdown-grid {
  display: grid;
  gap: 0.35rem;
}

@media (min-width: 520px) {
  .site-nav__dropdown-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.site-nav__dropdown-item {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.site-nav__dropdown-item:hover {
  background: #fff;
  border-color: var(--color-sand);
  transform: translateX(2px);
}

.site-nav__dropdown-item-title {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-forest);
}

.site-nav__dropdown-item-hint {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.site-nav__dropdown-all {
  display: block;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-sand);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-clay);
  text-decoration: none;
}

.site-nav__dropdown-all:hover {
  text-decoration: underline;
}

/* Buttons shine */
.btn--shine {
  position: relative;
  overflow: hidden;
}

.btn--shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn--shine:hover::after {
  transform: translateX(100%);
}

/* --- Hero Swiper --- */
.hero-lux {
  position: relative;
  min-height: min(88vh, 920px);
  margin: 0;
  padding: 0;
}

.hero-swiper {
  width: 100%;
  height: min(88vh, 920px);
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

/* Real <img> + gentle zoom — sharper than scaled background-image on HiDPI */
.hero-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--lux-night);
}

.hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02) translateZ(0);
  animation: hero-kenburns-img 18s ease-in-out infinite alternate;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-slide__img--focus-58 {
  object-position: 58% 42%;
}

.hero-slide__img--focus-62 {
  object-position: 62% 48%;
}

@keyframes hero-kenburns-img {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.06) translate3d(-0.35%, 0.35%, 0);
  }
}

/* Consult / legacy blocks still using background-image */
@keyframes hero-kenburns {
  0% {
    transform: scale(1.04) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-0.5%, 0.5%);
  }
}

.hero-slide__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Full-bleed scrim — not a card — keeps type readable while photo stays visible */
  background:
    linear-gradient(180deg, rgba(15, 31, 24, 0) 0%, rgba(15, 31, 24, 0.08) 52%, rgba(15, 31, 24, 0.45) 100%),
    linear-gradient(
      105deg,
      rgba(15, 31, 24, 0.55) 0%,
      rgba(15, 31, 24, 0.22) 36%,
      rgba(15, 31, 24, 0.06) 56%,
      transparent 78%
    );
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 4rem 0 5rem;
}

.hero-slide__inner {
  position: relative;
  width: 100%;
  max-width: min(38rem, 100%);
  padding: 0;
}

.hero-slide__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f2e6c8;
  font-weight: 600;
  margin: 0 0 0.85rem;
  padding-bottom: 0;
  border-bottom: none;
  max-width: 22rem;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(12px);
}

.swiper-slide-active .hero-slide__eyebrow {
  animation: hero-text-in 0.9s var(--ease-out-expo) 0.15s forwards;
}

.hero-slide__title {
  font-family: var(--font-display-lux);
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  font-weight: 600;
  line-height: 1.14;
  color: #fff;
  margin: 0 0 1.1rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.45), 0 1px 4px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(18px);
}

.swiper-slide-active .hero-slide__title {
  animation: hero-text-in 0.95s var(--ease-out-expo) 0.28s forwards;
}

.hero-slide__lead {
  font-size: clamp(0.98rem, 1.35vw, 1.065rem);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.96);
  margin: 0 0 1.75rem;
  max-width: 31rem;
  font-weight: 400;
  letter-spacing: 0.008em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42), 0 1px 3px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(16px);
}

.swiper-slide-active .hero-slide__lead {
  animation: hero-text-in 1s var(--ease-out-expo) 0.4s forwards;
}

@keyframes hero-text-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(12px);
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.35));
}

.swiper-slide-active .hero-slide__actions {
  animation: hero-text-in 1s var(--ease-out-expo) 0.52s forwards;
}

@media (max-width: 640px) {
  .hero-slide__veil {
    background:
      linear-gradient(180deg, rgba(15, 31, 24, 0.06) 0%, rgba(15, 31, 24, 0.52) 100%),
      linear-gradient(165deg, rgba(15, 31, 24, 0.58) 0%, rgba(15, 31, 24, 0.25) 55%, rgba(15, 31, 24, 0.08) 100%);
  }

  .hero-slide__eyebrow {
    max-width: none;
  }
}

.hero-swiper .swiper-pagination {
  bottom: 2rem !important;
}

.hero-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--lux-gold);
  transform: scale(1.15);
}

a.plan-card {
  text-decoration: none;
  color: inherit;
}

a.plan-card:hover {
  color: inherit;
}
.trust-marquee {
  padding: 1rem 0;
  background: linear-gradient(90deg, var(--color-forest) 0%, #243d32 50%, var(--color-forest) 100%);
  overflow: hidden;
  border-block: 1px solid rgba(201, 169, 98, 0.25);
}

.trust-marquee__track {
  display: flex;
  gap: 2.5rem;
  animation: marquee 38s linear infinite;
  width: max-content;
}

.trust-marquee:hover .trust-marquee__track {
  animation-play-state: paused;
}

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

.trust-marquee__item {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.trust-marquee__item strong {
  color: var(--lux-gold);
  font-weight: 600;
}

/* --- Stats lux --- */
.stats--lux {
  position: relative;
  background: linear-gradient(180deg, #fffefb 0%, var(--color-bg) 100%);
  padding: 2.75rem 0;
}

.stats--lux::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60 L60 0' stroke='%231e3d2f' stroke-opacity='0.04' fill='none'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.stats__grid--lux {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats__grid--lux {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 1.25rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--color-sand);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-card__value {
  font-family: var(--font-display-lux);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--color-forest);
  margin: 0;
  line-height: 1;
}

.stat-card__suffix {
  font-size: 1.1rem;
  vertical-align: top;
  opacity: 0.85;
}

.stat-card__label {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Plan cards lift */
.plan-card--lux {
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
  position: relative;
}

.plan-card--lux::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0);
  transition: box-shadow 0.4s;
}

.plan-card--lux:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(30, 61, 47, 0.15);
}

.plan-card--lux:hover::after {
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.4);
}

.plan-card__img--lux {
  transition: transform 0.6s var(--ease-out-expo);
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.plan-card--lux:hover .plan-card__img--lux {
  transform: scale(1.028);
}

/* Why grid (Activeat-style) */
.why-lux {
  padding: 3.5rem 0;
  background: var(--color-bg-alt);
}

.why-lux__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .why-lux__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .why-lux__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--color-sand);
  box-shadow: 0 4px 18px rgba(30, 61, 47, 0.06);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s, background 0.3s, border-color 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(30, 61, 47, 0.12);
  background: linear-gradient(160deg, #fff 0%, #faf7f2 100%);
  border-color: rgba(201, 169, 98, 0.45);
}

.why-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-forest-soft), var(--color-forest));
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  transition: transform 0.35s var(--ease-out-expo);
}

.why-card:hover .why-card__icon {
  transform: scale(1.06);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: var(--color-forest);
}

.why-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
}

/* Testimonials swiper */
.testimonials-lux {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, #fff 40%, var(--color-bg) 100%);
}

.testimonials-lux__head .section__head h2 {
  font-family: var(--font-display-lux);
}

.testimonial-swiper {
  padding-bottom: 3rem !important;
}

.testimonial-card {
  height: auto;
  padding: 2rem 1.75rem;
  border-radius: 20px;
  background: linear-gradient(155deg, #fff 0%, #faf8f4 100%);
  border: 1px solid var(--color-sand);
  box-shadow: var(--shadow-sm);
  margin: 0.5rem 0;
}

.testimonial-card__stars {
  color: var(--lux-gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1.1rem;
  font-style: italic;
  color: var(--color-text);
}

.testimonial-card footer strong {
  display: block;
  font-family: var(--font-display-lux);
  font-size: 1.05rem;
  color: var(--color-forest);
}

.testimonial-card footer span {
  font-size: 0.88rem;
  color: var(--color-muted);
}

.testimonial-card--spotlight {
  border-color: rgba(201, 169, 98, 0.55);
  box-shadow: 0 16px 48px rgba(30, 61, 47, 0.1);
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--color-clay);
}

/* CTA band lux */
.cta-band--lux {
  position: relative;
  overflow: hidden;
}

.cta-band--lux::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 50%, rgba(201, 169, 98, 0.2) 0%, transparent 45%);
  animation: cta-glow 8s ease-in-out infinite alternate;
}

@keyframes cta-glow {
  0% { transform: rotate(0deg); opacity: 0.6; }
  100% { transform: rotate(15deg); opacity: 1; }
}

.cta-band--lux .container {
  position: relative;
  z-index: 1;
}

/* Newsletter */
.newsletter-band {
  background: linear-gradient(90deg, var(--lux-night), #1a3d30);
  color: #e8f0e9;
  padding: 2.25rem 0;
}

.newsletter-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 880px) {
  .newsletter-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.newsletter-band__title {
  font-family: var(--font-display-lux);
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
  color: #fff;
}

.newsletter-band__sub {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.85;
}

.newsletter-band__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: 100%;
  max-width: 420px;
}

.newsletter-band__input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-body);
}

.newsletter-band__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-band__btn {
  border-radius: 999px;
}

/* Footer lux */
.site-footer--lux {
  margin-top: 0;
  background: linear-gradient(180deg, #0f1f18 0%, var(--lux-night) 100%);
}

.site-footer__grid--lux {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .site-footer__grid--lux {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

.site-footer__social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.site-footer__social a {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.site-footer__social a:hover {
  background: rgba(201, 169, 98, 0.3);
  transform: translateY(-2px);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9000;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--color-sand);
  background: rgba(255, 254, 251, 0.92);
  backdrop-filter: blur(8px);
  color: var(--color-forest);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, background 0.2s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-forest);
  color: #fff;
}

/* Section titles lux */
.section__head .eyebrow-pipe {
  margin-bottom: 0.65rem;
}

.section--lux .section__head h2 {
  font-family: var(--font-display-lux);
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
}

.section__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-clay);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

/* Process steps lux */
.process-step--lux {
  transition: transform 0.35s var(--ease-out-expo);
}

.process-step--lux:hover {
  transform: translateY(-3px);
}

.process-step__num--lux {
  background: linear-gradient(135deg, var(--lux-gold), #a3843d);
}

/* Service detail hero */
.service-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 3rem 0;
  color: #fff;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.service-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 31, 24, 0.92) 0%, rgba(15, 31, 24, 0.45) 100%);
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.service-hero h1 {
  font-family: var(--font-display-lux);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.5rem;
}

.service-hero p {
  margin: 0;
  max-width: 36rem;
  opacity: 0.9;
}

/* ========== Consultation page ========== */
.consult-hero {
  position: relative;
  min-height: clamp(360px, 52vh, 520px);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 0 3.25rem;
  color: #fff;
}

.consult-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: hero-kenburns 18s ease-in-out infinite alternate;
}

.consult-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 31, 24, 0.94) 0%, rgba(15, 31, 24, 0.5) 55%, rgba(30, 61, 47, 0.35) 100%);
}

.consult-hero__content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
}

.consult-hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lux-gold);
  font-weight: 600;
  margin: 0 0 0.85rem;
}

.consult-hero__title {
  font-family: var(--font-display-lux);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1rem;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.consult-hero__lead {
  margin: 0 0 1.35rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 38rem;
}

.consult-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.consult-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.consult-chip i {
  color: var(--lux-gold);
  font-size: 0.9rem;
}

.consult-body {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.consult-split {
  display: grid;
  gap: 2.5rem 3rem;
  align-items: start;
}

@media (min-width: 992px) {
  .consult-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  }
}

@media (max-width: 991px) {
  .consult-form-column {
    order: -1;
  }

  .consult-split {
    display: flex;
    flex-direction: column;
  }
}

.consult-aside__title {
  font-family: var(--font-display-lux);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  color: var(--color-forest);
  margin: 0 0 1.25rem;
}

.consult-timeline {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.consult-timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--color-sand);
}

.consult-timeline__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.consult-timeline__mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(145deg, var(--color-forest-soft), var(--color-forest));
  box-shadow: 0 8px 24px rgba(30, 61, 47, 0.2);
}

.consult-timeline__item strong {
  display: block;
  font-size: 1rem;
  color: var(--color-forest);
  margin-bottom: 0.25rem;
}

.consult-timeline__item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.consult-aside__cta {
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(165deg, #fff 0%, #f6f2eb 100%);
  border: 1px solid var(--color-sand);
  box-shadow: var(--shadow-sm);
}

.consult-aside__cta-label {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-muted);
}

.consult-aside__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-forest);
  text-decoration: none;
  margin-bottom: 0.85rem;
}

.consult-aside__phone:hover {
  color: var(--color-clay);
}

.consult-aside__wa {
  width: 100%;
  justify-content: center;
  gap: 0.5rem;
}

.consult-aside__fine {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.consult-form-card {
  position: relative;
  border-radius: 20px;
  padding: 2rem 1.75rem 2.25rem;
  background: rgba(255, 254, 251, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(232, 223, 210, 0.85);
  box-shadow:
    0 4px 24px rgba(30, 61, 47, 0.06),
    0 28px 70px rgba(15, 31, 24, 0.1);
}

.consult-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.45), transparent 40%, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.consult-form-card__head {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-sand);
}

.consult-form-card__title {
  font-family: var(--font-display-lux);
  font-size: 1.55rem;
  color: var(--color-forest);
  margin: 0 0 0.5rem;
}

.consult-form-card__sub {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.consult-req {
  color: var(--color-clay);
  font-weight: 700;
}

.consult-opt {
  font-weight: 400;
  color: var(--color-muted);
  font-size: 0.88em;
}

.consult-form .form-row {
  margin-bottom: 1.2rem;
}

.consult-form .form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--color-forest);
}

.consult-form__grid--2 {
  display: grid;
  gap: 0 1rem;
}

@media (min-width: 560px) {
  .consult-form__grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.consult-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.consult-input-icon {
  position: absolute;
  left: 1rem;
  color: var(--color-sage);
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 1;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  padding: 0.72rem 1rem 0.72rem 2.65rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-sand);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.consult-form textarea {
  padding-left: 1rem;
  min-height: 120px;
  resize: vertical;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  outline: none;
  border-color: rgba(201, 169, 98, 0.75);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.2);
}

.consult-input-wrap--select select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231e3d2f' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.consult-char {
  text-align: right;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0.35rem 0 0;
}

.consult-form__submit {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-sand);
}

.consult-submit-btn {
  width: 100%;
  justify-content: center;
  gap: 0.55rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  font-size: 1.02rem;
}

.consult-form__hint {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--color-muted);
  text-align: center;
  line-height: 1.45;
}

.consult-alt {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(30, 61, 47, 0.04);
}

.consult-alt__label {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-muted);
}

.consult-alt__link {
  font-weight: 600;
  color: var(--color-forest-soft);
  text-decoration: none;
}

.consult-alt__link:hover {
  color: var(--color-clay);
  text-decoration: underline;
}

.consult-faq__list {
  max-width: 720px;
  margin-inline: auto;
}

.consult-details {
  border: 1px solid var(--color-sand);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 0.65rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.consult-details:hover {
  box-shadow: var(--shadow);
}

.consult-details summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--color-forest);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.consult-details summary::-webkit-details-marker {
  display: none;
}

.consult-details summary::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--color-sage);
  border-bottom: 2px solid var(--color-sage);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease-out-expo);
  flex-shrink: 0;
}

.consult-details[open] summary::after {
  transform: rotate(225deg);
}

.consult-details p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.93rem;
  color: var(--color-muted);
  line-height: 1.6;
  border-top: 1px solid var(--color-sand);
  padding-top: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
  .consult-hero__bg {
    animation: none;
    transform: none;
  }

  .hero-slide__img {
    animation: none;
    transform: scale(1.02) translateZ(0);
  }

  .story-collage__decor--1,
  .story-collage__decor--2 {
    animation: none;
  }

  .story-collage__media:hover,
  .story-collage__media:hover img {
    transform: none;
  }

  .showcase-frame:hover,
  .showcase-frame:hover img {
    transform: none;
  }
}

/* ========== Editorial “story” pattern (About + reusable strips) ========== */
.page-story {
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 50%, var(--color-bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.page-story::before {
  content: "";
  position: absolute;
  width: min(560px, 95vw);
  height: min(560px, 95vw);
  right: -18%;
  top: 4%;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.story-split {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .story-split {
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.12fr);
    gap: 3rem 3.5rem;
  }
}

/* Photo mosaic + logo */
.story-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  grid-template-rows: repeat(3, minmax(92px, 1fr));
  gap: 0.65rem;
  max-width: 470px;
  margin-inline: auto;
  isolation: isolate;
}

@media (min-width: 900px) {
  .story-collage {
    margin-inline: 0;
    margin-right: auto;
  }
}

.story-collage__decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.story-collage__decor--1 {
  width: clamp(110px, 28vw, 150px);
  height: clamp(110px, 28vw, 150px);
  left: -8%;
  top: 6%;
  background: radial-gradient(circle, rgba(125, 155, 131, 0.38) 0%, transparent 72%);
  animation: story-glow 8s ease-in-out infinite;
}

.story-collage__decor--2 {
  width: clamp(88px, 22vw, 120px);
  height: clamp(88px, 22vw, 120px);
  right: 2%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(196, 92, 62, 0.18) 0%, transparent 72%);
  animation: story-glow 9s ease-in-out infinite reverse;
}

@keyframes story-glow {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.story-collage__media {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(30, 61, 47, 0.18);
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s;
}

.story-collage__media:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(30, 61, 47, 0.24);
}

.story-collage__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease-out-expo);
}

.story-collage__media:hover img {
  transform: scale(1.06);
}

.story-collage__media--tall {
  grid-column: 1;
  grid-row: 1 / -1;
  border-radius: 26px;
}

.story-collage__media--round {
  border-radius: 999px;
  aspect-ratio: 1;
}

.story-collage__media--r1c2 {
  grid-column: 2;
  grid-row: 1;
  max-height: 148px;
}

.story-collage__media--r1c3 {
  grid-column: 3;
  grid-row: 1;
}

.story-collage__media--logo {
  grid-column: 2 / span 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.15rem;
  background: linear-gradient(165deg, #fff 0%, #e8f2ec 100%);
  border: 1px solid var(--color-sand);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.story-collage__media--logo img {
  width: 100%;
  max-height: 64px;
  height: auto;
  object-fit: contain;
  transition: transform 0.45s var(--ease-out-expo);
}

.story-collage__media--logo:hover img {
  transform: scale(1.04);
}

.story-collage__media--r3c2 {
  grid-column: 2;
  grid-row: 3;
}

.story-collage__media--r3c3 {
  grid-column: 3;
  grid-row: 3;
}

/* Copy column */
.eyebrow-pipe {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-forest-soft);
  margin: 0 0 0.75rem;
}

.eyebrow-pipe__mark {
  color: var(--color-forest);
  margin-right: 0.35rem;
}

.story-panel__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  line-height: 1.14;
  color: var(--color-text);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.story-panel__lead {
  margin: 0 0 0.9rem;
  font-size: 1.02rem;
  color: var(--color-muted);
  line-height: 1.65;
  max-width: 38rem;
}

.story-panel__lead--tight {
  margin-bottom: 0;
}

.story-panel__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-top: 1.85rem;
}

.story-panel__cta .btn--primary i {
  margin-right: 0.35rem;
  opacity: 0.9;
}

/* Feature tiles — pair with About or any “proof points” row */
.feature-grid--lux {
  list-style: none;
  padding: 0;
  margin: 1.85rem 0 0;
  display: grid;
  gap: 1rem 1.2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .feature-grid--lux {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid--lux__full {
    grid-column: 1 / -1;
  }
}

.feature-grid--lux > li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.95rem 1.05rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(232, 223, 210, 0.95);
  box-shadow: 0 4px 20px rgba(30, 61, 47, 0.07);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s, border-color 0.35s;
}

.feature-grid--lux > li:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(30, 61, 47, 0.12);
  border-color: rgba(201, 169, 98, 0.4);
}

.feature-grid--lux__icon {
  flex-shrink: 0;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(30, 61, 47, 0.09), rgba(125, 155, 131, 0.22));
  color: var(--color-forest);
  font-size: 1.12rem;
}

.feature-grid--lux__text {
  min-width: 0;
}

.feature-grid--lux__text strong {
  display: block;
  font-size: 0.98rem;
  color: var(--color-forest);
  margin-bottom: 0.12rem;
  font-weight: 600;
}

.feature-grid--lux__text span {
  display: block;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.feature-grid--lux.feature-grid--single {
  grid-template-columns: 1fr;
  max-width: 36rem;
}

.feature-grid--lux.feature-grid--single > li .feature-grid--lux__text strong {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-forest);
  line-height: 1.45;
}

.feature-grid--lux.feature-grid--single > li .feature-grid--lux__text strong:only-child {
  margin-bottom: 0;
}

.insight-card a {
  color: var(--color-forest-soft);
  font-weight: 600;
  text-decoration: none;
}

.insight-card a:hover {
  color: var(--color-clay);
  text-decoration: underline;
}

.service-hero .eyebrow-pipe {
  margin: 0 0 0.35rem;
}

.story-panel__subhead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-forest);
  margin: 1.75rem 0 0.35rem;
}

/* ========== Site-wide inner page chrome (Contact, Plans, Shop, Nutrition, etc.) ========== */
.page-hero--lux {
  padding: clamp(2.35rem, 5vw, 3.65rem) 0;
  background: linear-gradient(165deg, var(--lux-night) 0%, #1a3328 44%, var(--color-forest-soft) 100%);
  color: #f0f7f2;
  position: relative;
  overflow: hidden;
}

.page-hero--lux::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 85% 15%, rgba(201, 169, 98, 0.2), transparent 55%);
  pointer-events: none;
}

.page-hero--lux .container {
  position: relative;
  z-index: 1;
}

.page-hero--lux h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.page-hero--lux p {
  margin: 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.62;
}

.page-hero--lux a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero--lux a:hover {
  color: #fff;
}

.page-hero--lux .eyebrow-pipe {
  color: rgba(232, 245, 233, 0.9);
}

.page-hero--lux .eyebrow-pipe__mark {
  color: var(--lux-gold);
}

.section-strip {
  padding: clamp(2.75rem, 4.5vw, 4rem) 0;
}

.section-strip--alt {
  background: var(--color-bg-alt);
}

.split-showcase {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin-top: 1.75rem;
}

@media (min-width: 768px) {
  .split-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 2.35rem 3rem;
  }

  .split-showcase--rev .split-showcase__text {
    order: 2;
  }

  .split-showcase--rev .split-showcase__visual {
    order: 1;
  }
}

.split-showcase__text .btn {
  margin-top: 0.25rem;
}

.showcase-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(30, 61, 47, 0.18);
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s;
}

.showcase-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(30, 61, 47, 0.23);
}

.showcase-frame img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease-out-expo);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.showcase-frame:hover img {
  transform: scale(1.032);
}

.contact-lux-grid {
  display: grid;
  gap: 2.35rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-lux-grid {
    grid-template-columns: 1fr minmax(300px, 1.08fr);
    gap: 2.5rem 3.25rem;
  }
}

.contact-lux-panel .story-panel__cta {
  margin-top: 1.65rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.contact-channel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.05rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--color-sand);
  box-shadow: 0 4px 22px rgba(30, 61, 47, 0.07);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s, border-color 0.35s;
}

.contact-channel:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(30, 61, 47, 0.11);
  border-color: rgba(201, 169, 98, 0.38);
}

.contact-channel__icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(30, 61, 47, 0.09), rgba(125, 155, 131, 0.22));
  color: var(--color-forest);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-channel__body {
  min-width: 0;
}

.contact-channel__body strong {
  display: block;
  font-size: 0.98rem;
  color: var(--color-forest);
  margin-bottom: 0.35rem;
}

.contact-channel__body p,
.contact-channel__body .contact-channel__lines {
  margin: 0;
  font-size: 0.93rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.contact-channel__body a {
  font-weight: 600;
  text-decoration: none;
  color: var(--color-forest-soft);
}

.contact-channel__body a:hover {
  color: var(--color-clay);
  text-decoration: underline;
}

.map-embed--lux {
  min-height: 300px;
  border-radius: 20px;
  border: 1px solid rgba(232, 223, 210, 0.95);
  box-shadow: 0 16px 44px rgba(30, 61, 47, 0.14);
  overflow: hidden;
  background: var(--color-sand);
}

.map-embed--lux iframe {
  width: 100%;
  height: min(420px, 55vw);
  min-height: 280px;
  border: 0;
  display: block;
}

.shop-split__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  max-width: 420px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .shop-split__visual {
    margin-inline: 0;
    margin-right: auto;
  }
}

.shop-split__visual .showcase-frame {
  margin: 0;
}

.shop-split__visual .showcase-frame:nth-child(1) {
  border-radius: 22px 10px 10px 22px;
}

.shop-split__visual .showcase-frame:nth-child(2) {
  border-radius: 10px 22px 22px 10px;
  margin-top: 1.5rem;
}

.insight-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

@media (min-width: 720px) {
  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1.4rem;
  }

  .insight-grid .insight-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

.insight-card {
  padding: 1.45rem 1.35rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--color-sand);
  box-shadow: 0 4px 22px rgba(30, 61, 47, 0.07);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s, border-color 0.35s;
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(30, 61, 47, 0.11);
  border-color: rgba(201, 169, 98, 0.35);
}

.insight-card h2 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--color-forest);
  margin: 0 0 0.55rem;
  line-height: 1.3;
}

.insight-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.58;
}

.service-detail-split {
  align-items: start;
}

@media (min-width: 900px) {
  .service-detail-split .showcase-frame {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}
