:root {
  --bg: #050505;
  --bg-2: #101010;
  --text: #f7f4ee;
  --muted: #c6c0b4;
  --muted-2: #9b9488;
  --accent: #c9a24e;
  --accent-2: #ead08d;
  --line: rgba(255, 255, 255, 0.12);
  --line-2: rgba(201, 162, 78, 0.26);
  --container: 1180px;
  --header-offset: 154px;
}

@media (max-width: 920px) {
  :root {
    --header-offset: 222px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-offset: 248px;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 16px);
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 162, 78, 0.13), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 22%),
    radial-gradient(circle at 82% 42%, rgba(201, 162, 78, 0.07), transparent 28%),
    radial-gradient(circle at 18% 74%, rgba(234, 208, 141, 0.055), transparent 32%),
    radial-gradient(circle at 74% 94%, rgba(201, 162, 78, 0.075), transparent 28%),
    linear-gradient(180deg, #050505 0%, #090909 48%, #030303 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.28;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 94%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 3, 3, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 2px));
}

.utility-bar {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.utility-bar p {
  margin: 0;
}

.utility-bar a {
  color: var(--accent-2);
  font-weight: 700;
}

.nav-shell {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 12px 24px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 76px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  mix-blend-mode: screen;
  filter: contrast(1.12) saturate(1.08) brightness(1.08);
}

.brand-copy {
  display: grid;
  gap: 3px;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Fraunces", serif;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.brand-copy span {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-links {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.language-toggle {
  width: 52px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 162, 78, 0.56);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(234, 208, 141, 0.22), transparent 64%),
    rgba(255, 255, 255, 0.035);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent-2);
  background: rgba(201, 162, 78, 0.12);
  outline: none;
}

.nav-link {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  transform: translateY(-1px);
  border-color: rgba(201, 162, 78, 0.84);
  background: rgba(201, 162, 78, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--gold {
  color: #111111;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 16px 30px rgba(201, 162, 78, 0.24);
}

.button--outline {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
}

.nav-cta {
  flex-shrink: 0;
}

.page-section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-head h2,
.hero-copy h1,
.hero-media__caption,
.brand-band__copy h2,
.wellness-icon h3,
.process-item h3,
.service-slide h3,
.steps-line__item h3,
.blog-row h3,
.blog-visual__text,
.logo-visual img {
  font-family: "Fraunces", serif;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 0.98;
  max-width: 14ch;
}

.section-copy,
.copy,
.process-item p,
.stat-item p,
.brand-band__copy p,
.wellness-icon p,
.service-slide p,
.service-slide li,
.steps-line__item p,
.blog-row p,
.blog-note,
.booking-panel p,
.contact-line p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(201, 162, 78, 0.12);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: center;
  min-height: calc(100vh - var(--header-offset) - 40px);
}

.hero-layout--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.hero-copy {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  max-width: 11ch;
}

.lead {
  margin: 0;
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
  line-height: 1.72;
  color: #f1eee8;
  max-width: 62ch;
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-notes span {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: 640px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.66)),
    url("assets/citrus-boost.png") var(--bg-pos, center center)/cover no-repeat;
}

.hero-media--hydration {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.54)),
    url("assets/hydration-pack.png") var(--bg-pos, center center)/cover no-repeat;
}

.hero-media--home-photo {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.34), rgba(5, 5, 5, 0.04) 52%, rgba(5, 5, 5, 0.5)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.62)),
    url("assets/home-hero-photo.png") center center/cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(201, 162, 78, 0.2), 0 28px 80px rgba(0, 0, 0, 0.34);
}

.hero-media--services-photo {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.02) 48%, rgba(5, 5, 5, 0.56)),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.64)),
    url("assets/service-hero-photo.png") center center/cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(201, 162, 78, 0.2), 0 28px 80px rgba(0, 0, 0, 0.34);
}

.hero-media--booking-photo {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.04) 48%, rgba(5, 5, 5, 0.58)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.66)),
    url("assets/booking-hero-photo.png") center center/cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(201, 162, 78, 0.2), 0 28px 80px rgba(0, 0, 0, 0.34);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 12%, rgba(201, 162, 78, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58));
}

.hero-media__tag {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 22px;
  color: var(--accent-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-media__caption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  max-width: 12ch;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  line-height: 1.02;
  color: var(--text);
}

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

.stat-item {
  padding: 22px 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.stat-item strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  line-height: 1.02;
}

.brand-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: center;
  padding: 8px 0 18px;
}

.brand-band__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-band__logo img {
  width: min(100%, 430px);
  height: auto;
  mix-blend-mode: screen;
  filter: contrast(1.14) saturate(1.08) brightness(1.08);
}

.brand-band__copy h2 {
  margin: 14px 0 0;
  max-width: 16ch;
  font-size: clamp(2rem, 3vw, 3.45rem);
  line-height: 0.98;
}

.brand-band__copy p {
  margin-top: 14px;
  max-width: 58ch;
}

.welcome-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
  padding-top: 34px;
}

.welcome-band__copy {
  display: grid;
  gap: 12px;
}

.welcome-band__copy h2 {
  margin: 0;
  max-width: 13ch;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 0.98;
}

.welcome-band__text {
  max-width: 64ch;
}

.home-icons {
  position: relative;
}

.home-icons::before {
  content: "";
  position: absolute;
  inset: 18px -7vw 4px;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 162, 78, 0.12), transparent 26%),
    radial-gradient(circle at 84% 46%, rgba(234, 208, 141, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(201, 162, 78, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.home-icons .section-head h2 {
  max-width: 18ch;
}

.wellness-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.wellness-icon {
  position: relative;
  isolation: isolate;
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 14px 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 78, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 18%, rgba(201, 162, 78, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.wellness-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(140deg, rgba(201, 162, 78, 0.16), transparent 38%);
  opacity: 0.58;
}

.wellness-icon img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin-bottom: 4px;
  mix-blend-mode: screen;
  filter: contrast(1.16) saturate(1.18) brightness(1.08);
}

.wellness-icon h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.04;
}

.wellness-icon p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

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

.process-item {
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.process-item + .process-item {
  padding-left: 0;
  border-left: none;
}

.process-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.process-item h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.02;
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-strip h2 {
  margin: 10px 0 0;
  max-width: 16ch;
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.03;
}

.inhouse-strip {
  position: relative;
  margin-top: 10px;
}

.inhouse-strip::before {
  content: "";
  position: absolute;
  inset: -18px -5vw;
  z-index: -1;
  background: radial-gradient(circle at 14% 48%, rgba(201, 162, 78, 0.11), transparent 32%);
  pointer-events: none;
}

.inhouse-strip .section-copy {
  max-width: 66ch;
  margin-top: 12px;
}

.logo-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  background: transparent;
}

.logo-visual img {
  width: min(100%, 600px);
  height: auto;
  mix-blend-mode: screen;
  filter: contrast(1.16) saturate(1.1) brightness(1.08);
}

.reel-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.reel-controls {
  display: flex;
  gap: 10px;
}

.icon-button {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.service-reel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 82vw);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-color: rgba(201, 162, 78, 0.7) rgba(255, 255, 255, 0.08);
}

.service-reel::-webkit-scrollbar {
  height: 10px;
}

.service-reel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.service-reel::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.service-slide {
  position: relative;
  min-height: 560px;
  scroll-snap-align: start;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.66)),
    url("assets/citrus-boost.png");
  background-size: cover;
  background-position: var(--bg-pos, center center);
}

.service-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 12%, rgba(201, 162, 78, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.72));
}

.service-slide__content {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.service-slide__meta {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.service-slide h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.96;
}

.service-slide p,
.service-slide li {
  color: var(--text);
  line-height: 1.75;
}

.service-slide ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.service-slide li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-slide li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  flex: 0 0 auto;
}

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

.pack-card {
  min-width: 0;
  display: grid;
  gap: 14px;
  padding: 12px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pack-card:hover,
.pack-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 78, 0.7);
  background: rgba(201, 162, 78, 0.055);
}

.pack-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  background: #080808;
}

.pack-card span {
  color: var(--text);
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.02;
}

.pack-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-flow {
  overflow: hidden;
}

.product-marquee {
  overflow: hidden;
  margin-top: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.product-marquee__track {
  width: max-content;
  display: flex;
  gap: 16px;
  animation: marquee-left 38s linear infinite;
}

.product-marquee--right .product-marquee__track {
  animation-name: marquee-right;
}

.product-marquee:hover .product-marquee__track,
.product-marquee:focus-within .product-marquee__track {
  animation-play-state: paused;
}

.product-marquee a {
  flex: 0 0 auto;
  width: clamp(118px, 15vw, 184px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-marquee a:hover,
.product-marquee a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(234, 208, 141, 0.75);
}

.product-marquee img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

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

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

  to {
    transform: translateX(0);
  }
}

.pack-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - var(--header-offset) - 40px);
}

.pack-detail__copy {
  display: grid;
  gap: 20px;
}

.pack-detail__copy h1 {
  margin: 0;
  max-width: 10ch;
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
}

.pack-detail__media {
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(234, 208, 141, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.018);
}

.pack-detail__media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.pack-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pack-info-list li {
  display: flex;
  gap: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.pack-info-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.back-link {
  width: fit-content;
  color: var(--accent-2);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.steps-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.steps-line__item {
  padding: 18px 16px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.steps-line__item:last-child {
  border-right: none;
}

.steps-line__item span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.steps-line__item h3 {
  margin: 0 0 8px;
  font-family: "Fraunces", serif;
  font-size: 1.38rem;
  line-height: 1.02;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: center;
}

.blog-hero--simple {
  grid-template-columns: minmax(0, 0.72fr);
  min-height: auto;
}

.blog-hero--simple .hero-copy h1,
.blog-hero--simple .lead,
.blog-hero--simple .copy {
  max-width: 760px;
}

.blog-visual {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.68)),
    url("assets/citrus-boost.png") center/cover no-repeat;
}

.blog-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 14%, rgba(201, 162, 78, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.62));
}

.blog-visual__text {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  max-width: 16ch;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.04;
}

.blog-list {
  margin-top: 34px;
}

.blog-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

.blog-row__index {
  color: var(--accent-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-top: 6px;
}

.blog-row h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  line-height: 1.02;
}

.blog-row p {
  max-width: 62ch;
}

.blog-row a {
  align-self: start;
  color: var(--accent-2);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-note {
  margin-top: 18px;
  color: var(--muted-2);
}

.book-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 32px;
  align-items: start;
}

.booking-panel {
  display: grid;
  gap: 18px;
}

.section-head__title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.98;
  max-width: 14ch;
}

.contact-lines {
  display: grid;
  gap: 14px;
  padding-top: 18px;
}

.contact-line {
  display: grid;
  gap: 6px;
}

.contact-line span {
  color: var(--accent-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-line a,
.contact-line p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  padding-top: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text);
  padding: 12px 0 14px;
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(198, 192, 180, 0.72);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--accent-2);
}

.field select {
  color-scheme: dark;
  padding-right: 34px;
  background:
    linear-gradient(45deg, transparent 50%, var(--accent-2) 50%) calc(100% - 18px) 50%/6px 6px no-repeat,
    linear-gradient(135deg, var(--accent-2) 50%, transparent 50%) calc(100% - 13px) 50%/6px 6px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
}

.field select:required:invalid {
  color: rgba(198, 192, 180, 0.72);
}

.field select option {
  background: #080705;
  color: var(--text);
}

.field select option:checked,
.field select option:hover {
  background: #21190c;
  color: var(--accent-2);
}

.booking-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 6px;
}

.booking-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  color: var(--accent-2);
  font-weight: 700;
}

.site-footer {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 58px;
  border-radius: 0;
  mix-blend-mode: screen;
  filter: contrast(1.12) saturate(1.08) brightness(1.08);
}

.footer-brand strong {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
}

.footer-brand p {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 12px 0 14px;
}

.footer-links a {
  color: var(--accent-2);
  font-weight: 700;
}

.footer-note {
  margin: 0;
  line-height: 1.7;
  color: var(--muted-2);
}

.footer-copy {
  margin: 10px 0 0;
  color: var(--muted-2);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body[data-lang="ru"] .section-head h2,
body[data-lang="ru"] .hero-copy h1,
body[data-lang="ru"] .hero-media__caption,
body[data-lang="ru"] .brand-band__copy h2,
body[data-lang="ru"] .wellness-icon h3,
body[data-lang="ru"] .process-item h3,
body[data-lang="ru"] .service-slide h3,
body[data-lang="ru"] .steps-line__item h3,
body[data-lang="ru"] .blog-row h3,
body[data-lang="ru"] .blog-visual__text,
body[data-lang="ru"] .section-head__title,
body[data-lang="ru"] .cta-strip h2 {
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
}

body[data-lang="ru"] .eyebrow,
body[data-lang="ru"] .brand-copy span,
body[data-lang="ru"] .hero-media__tag,
body[data-lang="ru"] .service-slide__meta,
body[data-lang="ru"] .contact-line span {
  letter-spacing: 0.14em;
}

body[data-lang="ru"] .button,
body[data-lang="ru"] .nav-link {
  letter-spacing: 0;
}

body[data-lang="ru"].page-home .hero-copy h1 {
  max-width: 12.5ch;
  font-size: clamp(2.7rem, 4.5vw, 4.35rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  hyphens: auto;
}

body[data-lang="ru"].page-home .hero-copy .lead,
body[data-lang="ru"].page-home .hero-copy .copy {
  max-width: 56ch;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

@media (max-width: 1100px) {
  .hero-layout,
  .hero-layout--reverse,
  .brand-band,
  .welcome-band,
  .blog-hero,
  .book-layout,
  .pack-detail {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .logo-visual,
  .blog-visual,
  .pack-detail__media,
  .pack-detail__media img {
    min-height: 440px;
  }

  .process-grid,
  .steps-line,
  .stats-row,
  .pack-grid,
  .pack-info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-row {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .blog-row a {
    grid-column: 2;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .wellness-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav-shell {
    flex-wrap: wrap;
  }

  .brand-logo {
    width: 68px;
  }

  .nav-links {
    width: auto;
  }

  .nav-cta {
    width: auto;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .utility-bar {
    padding: 10px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 12px 20px 18px;
    gap: 12px;
  }

  .brand {
    grid-column: 1 / -1;
    width: 100%;
    align-items: center;
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
    margin-top: 4px;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 4px;
    position: relative;
    z-index: 1;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .language-toggle {
    grid-column: 1;
    width: 52px;
  }

  .nav-cta {
    grid-column: 1 / -1;
  }

  .page-section {
    width: min(var(--container), calc(100% - 20px));
    padding: 64px 0;
  }

  .hero-layout {
    min-height: auto;
  }

  .hero-actions,
  .booking-actions,
  .footer-top {
    flex-direction: column;
    align-items: stretch;
  }

  .stats-row,
  .process-grid,
  .steps-line,
  .pack-grid,
  .pack-info-list {
    grid-template-columns: 1fr;
  }

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

  .wellness-icon {
    min-height: 224px;
  }

  .wellness-icon img {
    width: 72px;
    height: 72px;
  }

  .stat-item,
  .process-item,
  .steps-line__item,
  .blog-row {
    border-right: none;
  }

  .process-item + .process-item {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 18px;
    padding-top: 18px;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .nav-link {
    width: auto;
    flex: 0 0 auto;
    padding: 9px 12px;
  }

  .hero-media,
  .logo-visual,
  .blog-visual,
  .pack-detail__media,
  .pack-detail__media img {
    min-height: 360px;
  }

  .brand-logo {
    width: 62px;
  }
}

@media (max-width: 480px) {
  .wellness-icon-grid {
    grid-template-columns: 1fr;
  }
}
