/* Gentle Spay — page-specific styles */

/* ==========================================================================
   TWEAKS — Mood / Density variants
   ========================================================================== */

/* Mood: Warm — terracotta + cream, gentler family feel */
body[data-mood="warm"] {
  --brand: #C8553D;
  --navy: #2D1B0E;
  --crimson: #8B3A1F;
  --surface: #FAF3E8;
}
body[data-mood="warm"] .gs-hero { background: linear-gradient(180deg, #FDF6EC 0%, #FFFFFF 100%); }
body[data-mood="warm"] .gs-hero::before { background: linear-gradient(180deg, #C8553D, #E8A06B); }
body[data-mood="warm"] .gs-hero-image { background: linear-gradient(160deg, #E8A06B, #FAF3E8); }
body[data-mood="warm"] .gs-flag-badge { background: rgba(200,85,61,0.10); color: #C8553D; }
body[data-mood="warm"] .gs-equipment { background: #2D1B0E; }
body[data-mood="warm"] .gs-table thead th.lumi { background: #C8553D; }
body[data-mood="warm"] .gs-table td.lumi { background: rgba(200,85,61,0.05); color: #8B3A1F; }
body[data-mood="warm"] .gs-what-quote { background: #2D1B0E; }
body[data-mood="warm"] .gs-what-quote::before { color: #E8A06B; }
body[data-mood="warm"] .gs-journey-step .num-badge { border-color: #C8553D; color: #C8553D; }

/* Mood: Premium — deep navy + gold, boutique luxe */
body[data-mood="premium"] {
  --brand: #B8924C;
  --navy: #0A1929;
  --crimson: #8C6A2F;
  --surface: #F5F1E8;
}
body[data-mood="premium"] .gs-hero {
  background: linear-gradient(180deg, #0A1929 0%, #1A2942 100%);
  color: #fff;
}
body[data-mood="premium"] .gs-hero::before { background: linear-gradient(180deg, #B8924C, #D4B370); }
body[data-mood="premium"] .gs-hero h1 { color: #fff; }
body[data-mood="premium"] .gs-hero-sub { color: rgba(255,255,255,0.85); }
body[data-mood="premium"] .gs-hero-bullet { color: rgba(255,255,255,0.9); }
body[data-mood="premium"] .gs-hero-bullet .check { background: #B8924C; }
body[data-mood="premium"] .gs-flag-badge {
  background: rgba(184,146,76,0.18); color: #D4B370;
  border: 1px solid rgba(184,146,76,0.3);
}
body[data-mood="premium"] .gs-hero-image {
  background: linear-gradient(160deg, #1A2942, #B8924C);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
body[data-mood="premium"] .gs-hero-card .num { color: #B8924C; }
body[data-mood="premium"] .gs-table thead th.lumi { background: #B8924C; }
body[data-mood="premium"] .gs-table td.lumi { background: rgba(184,146,76,0.06); color: #8C6A2F; }
body[data-mood="premium"] .gs-equipment { background: #050D1A; }
body[data-mood="premium"] .gs-journey-step .num-badge { border-color: #B8924C; color: #B8924C; }
body[data-mood="premium"] .gs-what-quote { background: #0A1929; }
body[data-mood="premium"] .gs-what-quote::before { color: #B8924C; }

/* Density: Editorial — magazine, refined, lighter weights */
body[data-density="editorial"] section { padding: 64px 0; }
body[data-density="editorial"] .gs-hero { padding: 48px 0; }
body[data-density="editorial"] .gs-hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.03em;
}
body[data-density="editorial"] .gs-hero-sub {
  font-size: clamp(17px, 1.4vw, 19px); max-width: 38ch; font-weight: 300;
}
body[data-density="editorial"] .container { max-width: 1040px; }
body[data-density="editorial"] h2 { font-weight: 400; letter-spacing: -0.025em; }
body[data-density="editorial"] .gs-hero-grid { gap: 80px; }
body[data-density="editorial"] .gs-hero-bullets { gap: 10px; }
body[data-density="editorial"] .gs-what p { font-size: 17px; }

/* Density: Punchy — compressed, momentum, bold */
body[data-density="punchy"] section { padding: 56px 0; }
body[data-density="punchy"] .gs-hero { padding: 40px 0; }
body[data-density="punchy"] .gs-hero h1 {
  font-size: clamp(56px, 7.5vw, 104px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
}
body[data-density="punchy"] .gs-hero-sub {
  font-size: clamp(18px, 1.6vw, 22px); font-weight: 500;
}
body[data-density="punchy"] h2 {
  font-size: clamp(32px, 4.2vw, 56px); font-weight: 700; letter-spacing: -0.035em;
}
body[data-density="punchy"] .gs-hero-bullets { gap: 8px; margin: 20px 0; }
body[data-density="punchy"] .gs-hero-bullet { font-size: 15px; }
body[data-density="punchy"] .gs-flag-badge { font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
body[data-density="punchy"] .btn-lg { font-size: 17px; padding: 16px 28px; }

/* GS Hero — flagship-feeling hero with brand-blue accent rail */
.gs-hero {
  position: relative;
  background: linear-gradient(180deg, #F8F6F2 0%, #FFFFFF 100%);
  padding: 90px 0 80px;
  overflow: hidden;
}
.gs-hero::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 0; bottom: 0;
  width: 6px; background: linear-gradient(180deg, var(--brand), #BF124D);
}
.gs-hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 64px; align-items: center;
}
@media (max-width: 960px) {
  .gs-hero { padding: 56px 0 56px; }
  .gs-hero::before { width: 4px; }
  .gs-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .gs-hero-grid > div:first-child { order: 2; }
  .gs-hero-grid > div:last-child { order: 1; }
}
@media (max-width: 600px) {
  .gs-hero { padding: 40px 0 48px; }
}

.gs-flag-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,70,255,0.08); color: var(--brand);
  padding: 8px 14px; border-radius: 999px;
  font-weight: 500; font-size: 13px; letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.gs-hero h1 {
  font-size: clamp(40px, 8vw, 84px);
  font-weight: 600; line-height: 0.98;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .gs-hero h1 br { display: none; }
}
.gs-hero-sub {
  font-size: clamp(17px, 2.4vw, 26px); color: var(--navy);
  line-height: 1.45; max-width: 32ch; margin-bottom: 28px;
  text-wrap: pretty;
}
.gs-hero-bullets {
  display: grid; gap: 12px; margin: 28px 0;
}
.gs-hero-bullet {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--navy); line-height: 1.45;
}
@media (max-width: 600px) { .gs-hero-bullet { font-size: 14px; } }
.gs-hero-bullet .check {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
}
.gs-hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #E8C287, #F8F6F2);
  box-shadow: var(--shadow-hero);
}
@media (max-width: 960px) {
  .gs-hero-image { aspect-ratio: 16/11; max-height: 380px; border-radius: 18px; }
  .gs-hero-image img { object-position: center 30%; }
}
.gs-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs-hero-card {
  position: absolute; bottom: 20px; right: 20px; left: 20px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 12px 32px rgba(0,14,52,0.18);
}
@media (max-width: 600px) {
  .gs-hero-card { bottom: 14px; right: 14px; left: 14px; padding: 12px 14px; }
  .gs-hero-card .num { font-size: 26px; }
  .gs-hero-card .label { font-size: 12px; }
}
.gs-hero-card .num {
  font-size: 32px; font-weight: 600; color: var(--brand);
  line-height: 1; letter-spacing: -0.02em;
}
.gs-hero-card .label { font-size: 13px; color: var(--navy); line-height: 1.3; }

/* What + Why */
.gs-what {
  padding: 100px 0; background: #fff;
}
.gs-what-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .gs-what-grid { grid-template-columns: 1fr; gap: 40px; } }
.gs-what p {
  font-size: 18px; color: var(--navy); line-height: 1.7;
  margin-bottom: 18px; text-wrap: pretty;
}
.gs-what-quote {
  background: var(--navy); color: #fff;
  padding: 32px 36px; border-radius: 20px;
  font-size: 22px; line-height: 1.45; font-weight: 500;
  position: relative; max-width: 520px;
}
.gs-what-quote::before {
  content: """; position: absolute; top: -8px; right: 24px;
  font-size: 96px; line-height: 1; color: #7CA2FF;
  font-family: Georgia, serif;
}
.gs-what-quote .attribution { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 16px; font-weight: 400; }

/* Comparison table — full 6 rows */
.gs-comparison { padding: 100px 0; background: var(--surface); }
.gs-table-wrap {
  background: #fff; border-radius: 24px;
  overflow: hidden; box-shadow: var(--shadow-elev);
  border: 1px solid var(--line);
}
.gs-table { width: 100%; border-collapse: collapse; }
.gs-table thead th {
  background: #fff; padding: 28px 24px;
  font-weight: 600; font-size: 18px; color: var(--navy);
  text-align: start; border-bottom: 2px solid var(--line);
}
.gs-table thead th.lumi {
  background: var(--brand); color: #fff;
  position: relative;
}
.gs-table thead th.lumi::before {
  content: "★"; position: absolute; top: 8px; inset-inline-end: 12px;
  font-size: 12px; color: #FFD700;
}
.gs-table tbody td {
  padding: 22px 24px;
  font-size: 16px;
  border-bottom: 1px solid var(--line);
}
.gs-table tbody tr:last-child td { border-bottom: none; }
.gs-table .row-label {
  font-weight: 500; color: var(--navy); width: 30%;
  background: var(--surface);
}
.gs-table td.trad { color: #8B7355; }
.gs-table td.lumi {
  background: rgba(0,70,255,0.04);
  color: var(--brand); font-weight: 500;
}
@media (max-width: 720px) {
  .gs-table thead th, .gs-table tbody td { padding: 14px 12px; font-size: 14px; }
}

/* Journey — 5 step horizontal flow */
.gs-journey { padding: 100px 0; background: #fff; }
.gs-journey-track {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 56px;
  position: relative;
}
.gs-journey-track::before {
  content: ""; position: absolute; top: 36px; right: 8%; left: 8%;
  height: 2px; background: linear-gradient(90deg, var(--brand) 0%, var(--brand) 100%);
  opacity: 0.2;
}
@media (max-width: 900px) {
  .gs-journey-track { grid-template-columns: 1fr; gap: 28px; }
  .gs-journey-track::before { display: none; }
}
.gs-journey-step {
  text-align: center; padding: 0 12px; position: relative;
}
.gs-journey-step .num-badge {
  width: 72px; height: 72px; border-radius: 50%;
  background: #fff; border: 2px solid var(--brand);
  color: var(--brand); font-weight: 600; font-size: 28px;
  display: grid; place-items: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  letter-spacing: -0.02em;
}
.gs-journey-step h3 {
  font-size: 18px; font-weight: 600; color: var(--navy);
  margin-bottom: 8px;
}
.gs-journey-step p {
  font-size: 14px; color: var(--muted); line-height: 1.5;
}

/* Equipment callout */
.gs-equipment {
  position: relative;
  padding: 80px 0; background: var(--navy); color: #fff;
  overflow: hidden;
}
.gs-equipment::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/8/89/Operation_minimal_invasive.JPG/1280px-Operation_minimal_invasive.JPG");
  background-size: cover; background-position: center;
  opacity: 0.10;
  filter: grayscale(0.4) contrast(1.05);
  pointer-events: none;
}
.gs-equipment::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(0,14,52,0.85) 50%, rgba(0,14,52,0.6) 100%);
  pointer-events: none;
}
.gs-equipment .container { position: relative; z-index: 1; }
.gs-equipment-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 48px;
  justify-content: space-between;
}
.gs-equipment-text {
  flex: 1; min-width: 280px; max-width: 540px;
}
.gs-equipment-text h2 { color: #fff; font-size: 32px; margin-bottom: 14px; }
.gs-equipment-text p { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.6; }
/* Inset photo composition — same direction as procedure pages, tuned for dark bg */
.gs-equipment-scene-wrap {
  flex: 1; min-width: 280px; max-width: 420px;
}
.gs-equipment-scene {
  position: relative;
  height: clamp(220px, 26vw, 280px);
}
.gs-equipment-scene img {
  position: absolute;
  display: block; width: auto;
  filter: grayscale(0.2) saturate(0.85) contrast(1.02) brightness(1.08);
  opacity: 0.95;
  -webkit-mask-image: linear-gradient(to bottom, #000 65%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 65%, transparent 100%);
}
.gs-equipment-img--tower {
  right: 18%; bottom: 0;
  height: clamp(200px, 24vw, 260px);
}
.gs-equipment-img--erbe {
  left: 10%; bottom: 0;
  height: clamp(50px, 6.5vw, 68px);
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}
.gs-equipment-caption {
  display: flex; justify-content: center; align-items: baseline;
  gap: 14px; margin-top: 8px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; opacity: 0.65; font-weight: 600;
}
.gs-equipment-caption .sep { opacity: 0.5; font-weight: 400; }
.gs-equipment-caption em { font-style: normal; font-weight: 400; text-transform: none; letter-spacing: 0.02em; opacity: 0.7; margin-inline-start: 6px; }

.gs-equipment-logos {
  display: flex; gap: 32px; flex-wrap: wrap; align-items: center;
}
.gs-equipment-logo {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px 28px 20px 88px;
  font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.92);
  min-width: 200px;
  backdrop-filter: blur(8px);
}
.gs-equipment-logo .thumb {
  position: absolute; top: 50%; right: 16px; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 10px;
  background-size: cover; background-position: center;
  opacity: 0.85;
  border: 1px solid rgba(255,255,255,0.15);
}
.gs-equipment-logo span { display: block; font-size: 11px; opacity: 0.6; letter-spacing: 0.12em; margin-top: 4px; }

/* Recovery story callout (single big) */
.gs-story {
  padding: 100px 0; background: var(--surface);
}
.gs-story-card {
  background: #fff; border-radius: 28px;
  display: grid; grid-template-columns: 1fr 1.1fr;
  overflow: hidden; box-shadow: var(--shadow-elev);
  max-width: 1080px; margin: 0 auto;
}
@media (max-width: 900px) { .gs-story-card { grid-template-columns: 1fr; } }
.gs-story-photo {
  background: linear-gradient(160deg, #E8C287, #F8F6F2);
  position: relative; min-height: 360px;
}
.gs-story-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gs-story-photo .timestamp {
  position: absolute; top: 20px; right: 20px;
  background: rgba(0,14,52,0.85); color: #fff;
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 500; backdrop-filter: blur(8px);
}
.gs-story-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.gs-story-body .eyebrow { color: var(--brand); }
.gs-story-body h3 { font-size: 28px; color: var(--navy); margin: 8px 0 20px; }
.gs-story-body blockquote {
  font-size: 19px; line-height: 1.55; color: var(--navy);
  border-inline-start: 3px solid var(--brand);
  padding-inline-start: 20px;
  margin-bottom: 20px; font-weight: 400;
}
.gs-story-body .owner { color: var(--muted); font-size: 14px; }
.gs-story-tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 12px; color: var(--muted);
}
.gs-story-tag .dot { width: 8px; height: 8px; background: #D9D9D9; border-radius: 50%; }
