:root {
  --silver: #d8dee6;
  --silver-bright: #eef2f6;
  --silver-deep: #aeb8c4;
  --peach: #f4c9a8;
  --peach-soft: #f7dcc6;
  --gold: #c9a45c;
  --gold-soft: #e0c58a;
  --graphite: #2b3036;
  --graphite-mid: #4a515a;
  --graphite-soft: #6b7380;
  --line: rgba(43, 48, 54, 0.14);
  --surface: rgba(238, 242, 246, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.55);
  --danger: #a85a48;
  --ok: #3d7a62;
  --font-display: "Nunito", sans-serif;
  --font-body: "Outfit", sans-serif;
  --shell: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.35rem;
  --radius: 1.15rem;
  --shadow-liquid: 0 18px 48px rgba(43, 48, 54, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 350;
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--graphite);
  background:
    radial-gradient(ellipse 65% 50% at 8% 12%, rgba(244, 201, 168, 0.55), transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(201, 164, 92, 0.28), transparent 52%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(174, 184, 196, 0.45), transparent 55%),
    linear-gradient(168deg, var(--silver-bright) 0%, var(--silver) 42%, #c5ccd6 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(
      105deg,
      transparent 0%,
      rgba(255, 255, 255, 0.18) 28%,
      transparent 42%,
      rgba(244, 201, 168, 0.12) 68%,
      transparent 82%
    );
  background-size: 220% 100%;
  animation: mercury-band 18s ease-in-out infinite;
  opacity: 0.85;
}

@keyframes mercury-band {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fadeup {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pool-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes liquid-press {
  0% { border-radius: 999px; transform: scale(1); }
  40% { border-radius: 40% 55% 48% 52%; transform: scale(0.96); }
  100% { border-radius: 999px; transform: scale(1); }
}

@keyframes sheen {
  0%, 100% { transform: translateX(-12%) skewX(-8deg); opacity: 0.35; }
  50% { transform: translateX(18%) skewX(-8deg); opacity: 0.7; }
}

main,
.site-header,
.site-footer,
.cookie-banner {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--graphite-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--gold);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(238, 242, 246, 0.78);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  width: var(--shell);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
  position: relative;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--graphite);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--graphite);
  border-radius: 2px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--graphite-mid);
  font-size: 0.95rem;
  font-weight: 400;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--graphite);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-radius 0.35s ease;
}

.btn--mercury {
  background: linear-gradient(145deg, var(--peach) 0%, var(--gold-soft) 48%, var(--gold) 100%);
  color: var(--graphite);
  box-shadow: 0 12px 28px rgba(201, 164, 92, 0.28);
}

.btn--mercury:hover {
  color: var(--graphite);
  transform: translateY(-1px);
}

.btn--mercury.is-pressed,
.btn--mercury:active {
  animation: liquid-press 0.45s ease;
  border-radius: 42% 58% 50% 50%;
  transform: scale(0.97);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.35);
  color: var(--graphite);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  color: var(--graphite);
}

.text-link {
  font-weight: 500;
  color: var(--graphite);
}

.hero--pool {
  position: relative;
  min-height: min(94vh, 900px);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  isolation: isolate;
}

.hero__pool-surface {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(244, 201, 168, 0.55), transparent 60%),
    linear-gradient(180deg, #cfd6e0 0%, #b8c0cb 45%, #9aa4b0 100%);
}

.hero__mercury {
  position: absolute;
  inset: 35% -10% -20%;
  background:
    linear-gradient(180deg, rgba(238, 242, 246, 0.15), rgba(174, 184, 196, 0.85) 40%, rgba(74, 81, 90, 0.55)),
    repeating-linear-gradient(
      95deg,
      rgba(255, 255, 255, 0.12) 0 2px,
      transparent 2px 14px
    );
  border-radius: 50% 50% 0 0 / 18% 18% 0 0;
  filter: blur(0.4px);
  box-shadow: inset 0 20px 60px rgba(255, 255, 255, 0.25);
}

.hero__mercury::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  width: 40%;
  animation: sheen 10s ease-in-out infinite;
}

.hero__sunrise {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(42vw, 320px);
  height: min(42vw, 320px);
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, #fff6ea, var(--peach) 35%, var(--gold-soft) 58%, transparent 72%);
  opacity: 0.85;
  filter: blur(2px);
}

.hero__pool-grid {
  width: var(--shell);
  margin: 0 auto;
  padding: 5.5rem 0 2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: end;
  animation: pool-rise 1s ease both;
}

.hero__brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--graphite);
  max-width: 9ch;
  text-shadow: 0 10px 40px rgba(255, 255, 255, 0.35);
}

.hero__liquid-line {
  display: block;
  margin-top: 1.25rem;
  width: min(100%, 14rem);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--peach), transparent);
  box-shadow: 0 0 18px rgba(201, 164, 92, 0.45);
}

.hero__copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--graphite);
  max-width: 28ch;
}

.hero__lead {
  margin: 1rem 0 1.5rem;
  max-width: 36rem;
  color: var(--graphite-mid);
  font-size: 1.05rem;
  font-weight: 300;
}

.hero__anchor {
  margin: 0;
  height: min(34vh, 320px);
  overflow: hidden;
  border-radius: 2.5rem 2.5rem 0 0;
  box-shadow: 0 -12px 40px rgba(43, 48, 54, 0.12);
}

.hero__anchor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.section {
  width: var(--shell);
  margin-inline: auto;
  padding: 4.5rem 0;
}

.section--mercury {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.45), rgba(216, 222, 230, 0.35));
  border-radius: calc(var(--radius) + 0.5rem);
  padding-inline: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-liquid);
}

.section--peach {
  background: linear-gradient(145deg, rgba(244, 201, 168, 0.35), rgba(224, 197, 138, 0.18));
  border-radius: calc(var(--radius) + 0.5rem);
  padding-inline: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid rgba(201, 164, 92, 0.25);
}

.section__grid--split,
.section.section__grid--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.section__kicker,
.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.section h2,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--graphite);
}

.section h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.section__head {
  margin-bottom: 1.75rem;
}

.section__head p,
.page-hero > p {
  margin: 0.85rem 0 0;
  max-width: 38rem;
  color: var(--graphite-soft);
}

.section__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.price-line {
  margin: 1rem 0;
  font-weight: 500;
  color: var(--gold);
}

.media-frame {
  margin: 0;
  border-radius: calc(var(--radius) + 0.35rem);
  overflow: hidden;
  box-shadow: var(--shadow-liquid);
  background: var(--silver);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.media-frame--sm {
  max-width: 220px;
}

.media-frame--sm img {
  min-height: 150px;
  height: 150px;
}

.offer-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.offer-rail a {
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  gap: 0.75rem 1.25rem;
  align-items: baseline;
  padding: 1.15rem 1.35rem;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.offer-rail a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-liquid);
  border-color: rgba(201, 164, 92, 0.45);
  color: inherit;
}

.offer-rail__meta {
  font-size: 0.85rem;
  color: var(--graphite-soft);
}

.offer-rail__title {
  grid-column: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.offer-rail__short {
  grid-column: 2;
  color: var(--graphite-soft);
  font-size: 0.95rem;
}

.offer-rail__price {
  grid-row: 1 / span 2;
  grid-column: 3;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

.evidence {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
  counter-reset: ev;
}

.evidence li {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.evidence li::before {
  counter-increment: ev;
  content: counter(ev);
  position: absolute;
  left: 1.15rem;
  top: 1.25rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(145deg, var(--peach), var(--gold-soft));
}

.evidence h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.evidence p {
  margin: 0;
  color: var(--graphite-soft);
}

.quote {
  margin: 0;
  padding: 2rem 2.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(216, 222, 230, 0.4));
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-liquid);
}

.quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.quote footer {
  margin-top: 1rem;
  color: var(--graphite-soft);
  font-size: 0.95rem;
}

.page-hero {
  width: var(--shell);
  margin-inline: auto;
  padding: 3.5rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.page-hero--media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.service-index {
  display: grid;
  gap: 1.5rem;
}

.service-index__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-index__row h2 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
}

.service-index__row h2 a {
  text-decoration: none;
  color: var(--graphite);
}

.blog-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.blog-index__item a {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-index__item a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-liquid);
  color: inherit;
}

.blog-index time {
  display: block;
  font-size: 0.88rem;
  color: var(--graphite-soft);
  margin-bottom: 0.35rem;
}

.blog-index h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.blog-index p {
  margin: 0;
  color: var(--graphite-soft);
}

.prose {
  max-width: 44rem;
}

.prose p {
  margin: 0 0 1.1rem;
  color: var(--graphite-mid);
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.prose ul {
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
  color: var(--graphite-mid);
}

.legal code {
  font-size: 0.9em;
  background: rgba(255, 255, 255, 0.55);
  padding: 0.1em 0.35em;
  border-radius: 0.35rem;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--peach), var(--gold));
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

.process-steps li {
  position: relative;
  padding: 1.35rem 1.35rem 1.35rem 4.2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.process-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.15rem;
  top: 1.25rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(145deg, var(--peach), var(--gold-soft));
}

.process-steps h2 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.process-steps p {
  margin: 0;
  color: var(--graphite-soft);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-weight: 500;
  font-size: 0.95rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  font: inherit;
  color: var(--graphite);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--peach);
  outline-offset: 1px;
}

.form-field.is-invalid input,
.form-field.is-invalid textarea {
  border-color: var(--danger);
}

.field-error {
  margin: 0;
  min-height: 1.1em;
  color: var(--danger);
  font-size: 0.88rem;
}

.form-status {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.form-status--success { color: var(--ok); }
.form-status--error { color: var(--danger); }

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: rgba(43, 48, 54, 0.04);
}

.site-footer__inner {
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.site-footer__brand p:last-child {
  margin: 0.5rem 0 0;
  color: var(--graphite-soft);
  max-width: 22rem;
}

.site-footer__contact p {
  margin: 0 0 0.4rem;
  color: var(--graphite-soft);
}

.site-footer__legal {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.site-footer__legal a {
  text-decoration: none;
}

.site-footer__copy {
  width: var(--shell);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--graphite-soft);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0;
  background: rgba(43, 48, 54, 0.92);
  color: var(--silver-bright);
  border-top: 1px solid rgba(244, 201, 168, 0.35);
  backdrop-filter: blur(12px);
}

.cookie-banner__inner {
  width: var(--shell);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cookie-banner__inner p {
  margin: 0;
  max-width: 46rem;
  font-size: 0.95rem;
}

.cookie-banner__inner a {
  color: var(--peach);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cookie-banner .btn--ghost {
  color: var(--silver-bright);
  border-color: rgba(238, 242, 246, 0.25);
  background: transparent;
}

.cookie-banner .form-status {
  width: var(--shell);
  margin: 0.5rem auto 0;
}

.error-page {
  width: var(--shell);
  margin: 0 auto;
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.error-page h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
}

.error-page p {
  margin: 1rem auto;
  max-width: 28rem;
  color: var(--graphite-soft);
}

@media (max-width: 900px) {
  .hero__pool-grid,
  .section__grid--split,
  .section.section__grid--split,
  .page-hero--media,
  .service-index__row,
  .blog-index__item a,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .offer-rail a {
    grid-template-columns: 1fr;
  }

  .offer-rail__price {
    grid-row: auto;
    grid-column: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(238, 242, 246, 0.96);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1.25rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero--pool {
    min-height: 0;
  }

  .hero__pool-grid {
    padding-top: 3.5rem;
  }

  .hero__anchor {
    height: 220px;
  }

  .media-frame--sm {
    max-width: none;
  }
}
