:root {
  --silver: #c8cdd4;
  --silver-bright: #e8ebf0;
  --peach: #f0c9b0;
  --peach-deep: #e2a888;
  --gold: #e0c58a;
  --gold-soft: rgba(224, 197, 138, 0.4);
  --graphite: #2c3138;
  --graphite-soft: #4a515c;
  --ink: #1e2228;
  --ink-soft: #5a616c;
  --mist: #f4f1ee;
  --surface: rgba(232, 235, 240, 0.55);
  --line: rgba(44, 49, 56, 0.12);
  --danger: #a65a4a;
  --ok: #3d6b5a;
  --font-display: "Quicksand", sans-serif;
  --font-body: "Figtree", sans-serif;
  --shell: min(1080px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(240, 201, 176, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 45% at 95% 5%, rgba(224, 197, 138, 0.35), transparent 50%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(200, 205, 212, 0.5), transparent 55%),
    linear-gradient(168deg, var(--mist) 0%, #e8e4df 42%, #d9dde3 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(232, 235, 240, 0.15) 35%,
      rgba(240, 201, 176, 0.22) 48%,
      rgba(224, 197, 138, 0.18) 58%,
      transparent 72%
    );
  background-size: 200% 100%;
  animation: lightband 18s ease-in-out infinite;
  opacity: 0.85;
}

@keyframes lightband {
  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 mercury-shift {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 0.85; transform: translateX(2%); }
}

@keyframes liquid-ripple {
  from { transform: scale(0.25); opacity: 0.75; }
  to { transform: scale(2.2); opacity: 0; }
}

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

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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(244, 241, 238, 0.78);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  background:
    linear-gradient(145deg, var(--silver-bright) 0%, var(--peach) 45%, var(--gold) 100%);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.7),
    0 2px 8px rgba(44, 49, 56, 0.12);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--ink-soft);
}

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

.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(232, 235, 240, 0.9), rgba(240, 201, 176, 0.35));
  color: var(--ink) !important;
  position: relative;
  overflow: hidden;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  margin: 0.28rem 0;
  background: var(--ink);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.28s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn-primary {
  background:
    linear-gradient(125deg, var(--silver-bright), var(--peach) 55%, var(--gold));
  border-color: rgba(44, 49, 56, 0.1);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 8px 22px rgba(44, 49, 56, 0.1);
}

.btn-primary:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.btn.is-pressed,
.nav-cta.is-pressed {
  transform: scale(0.94);
  box-shadow:
    inset 0 6px 14px rgba(44, 49, 56, 0.22),
    inset 0 -2px 6px rgba(255, 255, 255, 0.35);
}

.btn-ghost {
  background: rgba(232, 235, 240, 0.4);
  border-color: var(--line);
  color: var(--ink-soft);
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: rgba(44, 49, 56, 0.28);
}

.btn .liquid-ripple,
.nav-cta .liquid-ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(232, 235, 240, 0.7) 0%, rgba(240, 201, 176, 0.35) 45%, transparent 70%);
  animation: liquid-ripple 0.7s ease-out forwards;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero {
  position: relative;
  min-height: min(94vh, 860px);
  display: flex;
  align-items: flex-end;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.88);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 34, 40, 0.25) 0%, rgba(44, 49, 56, 0.35) 35%, rgba(30, 34, 40, 0.78) 100%),
    linear-gradient(95deg, rgba(240, 201, 176, 0.22) 0%, transparent 45%, rgba(224, 197, 138, 0.2) 100%);
  animation: mercury-shift 14s ease-in-out infinite;
}

.hero-horizon-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28%;
  height: 2px;
  z-index: 1;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(232, 235, 240, 0.55) 18%,
    rgba(240, 201, 176, 0.85) 48%,
    rgba(224, 197, 138, 0.7) 72%,
    transparent 100%
  );
  box-shadow: 0 0 28px rgba(224, 197, 138, 0.45);
  animation: mercury-shift 10s ease-in-out infinite;
}

.hero .shell,
.hero-floor {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 40rem;
  animation: fadeup 1s ease both;
}

.hero-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 235, 240, 0.72);
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 1.1rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(30, 34, 40, 0.35);
}

.hero-lead {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(232, 235, 240, 0.92);
  max-width: 32rem;
}

.hero .btn-primary {
  margin-top: 0.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3rem 0 4.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--graphite);
}

.section-lead {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  max-width: 36rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media::before {
  content: "";
  position: absolute;
  inset: -8% -6% auto auto;
  height: 40%;
  width: 55%;
  background: linear-gradient(135deg, var(--peach), var(--gold));
  opacity: 0.35;
  border-radius: 40% 60% 55% 45%;
  z-index: 0;
  filter: blur(2px);
  animation: mercury-shift 10s ease-in-out infinite;
}

.split-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1.5rem 0.4rem 1.5rem 0.4rem;
  box-shadow: 0 24px 48px rgba(44, 49, 56, 0.14);
}

.fade-in {
  animation: fadeup 0.85s ease both;
}

.delay-1 { animation-delay: 0.15s; }

.offer-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.offer-item {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, padding-left 0.25s ease;
}

.offer-item:hover {
  background: rgba(232, 235, 240, 0.4);
  padding-left: 0.55rem;
  color: inherit;
}

.offer-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.35rem;
}

.offer-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.offer-meta {
  white-space: nowrap;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--graphite-soft);
}

.quote-list {
  display: grid;
  gap: 1.5rem;
}

.quote-item {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.quote-item:last-child {
  border-bottom: 1px solid var(--line);
}

.quote-item blockquote {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.quote-item cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.faq-list {
  display: grid;
  gap: 1.25rem;
}

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

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.faq-item p {
  margin: 0;
  color: var(--ink-soft);
}

.page-hero {
  padding: 3.5rem 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: var(--graphite);
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--ink-soft);
}

.page-hero-media {
  margin-top: 1.75rem;
}

.page-hero-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 1.25rem 0.35rem 1.25rem 0.35rem;
}

.price-line {
  margin-top: 1rem !important;
  color: var(--graphite-soft) !important;
  letter-spacing: 0.04em;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin: 2rem 0 0.75rem;
  color: var(--graphite);
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ul {
  padding-left: 1.2rem;
}

.post-meta {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.note-list {
  display: grid;
  gap: 2rem;
}

.note-item {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.note-item:hover {
  color: inherit;
}

.note-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 0.85rem 0.25rem 0.85rem 0.25rem;
}

.note-item h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.4rem;
}

.note-item p {
  margin: 0;
  color: var(--ink-soft);
}

.process-steps {
  display: grid;
  gap: 0;
  counter-reset: step;
}

.process-step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--peach-deep);
}

.process-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
}

.form {
  display: grid;
  gap: 1.1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(224, 197, 138, 0.55);
  outline-offset: 1px;
}

.form-field .error {
  display: block;
  min-height: 1.2em;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: var(--danger);
}

.form-status {
  min-height: 1.4em;
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.form-status.is-ok { color: var(--ok); }
.form-status.is-err { color: var(--danger); }

.contact-aside {
  padding: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
}

.contact-aside p {
  color: var(--ink-soft);
}

.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(200, 205, 212, 0.25), rgba(240, 201, 176, 0.18));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
}

.footer-tag,
.footer-col p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-heading {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--graphite);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col a {
  text-decoration: none;
  color: var(--ink-soft);
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-base {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(244, 241, 238, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  padding: 1rem 0;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

@media (max-width: 900px) {
  .split,
  .footer-grid,
  .note-item {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(244, 241, 238, 0.97);
    border-bottom: 1px solid var(--line);
  }

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

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

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

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

  .hero {
    min-height: 78vh;
    padding-bottom: 3rem;
  }
}
