:root {
  --silver: #c5cdd6;
  --silver-bright: #e8ecf0;
  --peach: #f0c9a8;
  --peach-deep: #e8a87c;
  --gold: #d4b483;
  --gold-soft: #e8d4a8;
  --graphite: #3a3f47;
  --graphite-soft: #5c636e;
  --ink: #2c3038;
  --line: rgba(58, 63, 71, 0.14);
  --surface: rgba(232, 236, 240, 0.72);
  --danger: #b85c4a;
  --ok: #4a7c59;
  --font-display: "Outfit", sans-serif;
  --font-body: "Manrope", sans-serif;
  --shell: min(1080px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
  --radius: 1.15rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--ink);
  background:
    radial-gradient(ellipse 65% 45% at 12% 0%, rgba(240, 201, 168, 0.45), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 8%, rgba(212, 180, 131, 0.28), transparent 50%),
    radial-gradient(ellipse 70% 45% at 50% 100%, rgba(197, 205, 214, 0.55), transparent 55%),
    linear-gradient(165deg, var(--silver-bright) 0%, #d9dee6 42%, #c8cfd8 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      rgba(232, 212, 168, 0.12) 28%,
      rgba(240, 201, 168, 0.18) 48%,
      rgba(197, 205, 214, 0.2) 68%,
      transparent 100%
    );
  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(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes horizon-glow {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.85; }
}

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

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

a {
  color: var(--graphite);
  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(232, 236, 240, 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.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, var(--gold-soft), transparent 45%),
    linear-gradient(145deg, var(--silver-bright), var(--peach) 55%, var(--gold));
  box-shadow:
    inset 0 0 0 1px rgba(58, 63, 71, 0.12),
    0 4px 14px rgba(58, 63, 71, 0.12);
}

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

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

.site-nav a {
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--graphite-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 rgba(58, 63, 71, 0.14);
  background:
    linear-gradient(145deg, rgba(232, 236, 240, 0.95), rgba(240, 201, 168, 0.45));
  color: var(--ink) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta.is-pressed,
.btn.is-pressed {
  transform: scale(0.965);
  box-shadow:
    inset 0 6px 16px rgba(58, 63, 71, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.35);
}

.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: 550;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background:
    linear-gradient(145deg, var(--silver-bright) 0%, var(--peach) 48%, var(--gold-soft) 100%);
  border-color: rgba(212, 180, 131, 0.45);
  color: var(--ink);
  box-shadow:
    0 10px 28px rgba(58, 63, 71, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

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

.btn-ghost {
  background: rgba(232, 236, 240, 0.45);
  border-color: var(--line);
  color: var(--graphite-soft);
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: rgba(58, 63, 71, 0.28);
}

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

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

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

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(58, 63, 71, 0.18) 0%, rgba(58, 63, 71, 0.28) 35%, rgba(44, 48, 56, 0.78) 100%),
    radial-gradient(ellipse 55% 40% at 70% 18%, rgba(240, 201, 168, 0.35), transparent 60%),
    radial-gradient(ellipse 40% 35% at 18% 70%, rgba(197, 205, 214, 0.25), transparent 55%);
  animation: horizon-glow 14s ease-in-out infinite;
}

.hero-stage {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  animation: fadeup 0.95s ease both;
}

.hero-brand-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
  color: var(--silver-bright);
  text-shadow: 0 8px 40px rgba(44, 48, 56, 0.35);
  background: linear-gradient(120deg, #ffffff 10%, var(--peach) 48%, var(--gold-soft) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-statement {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  color: #f5f7fa;
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: rgba(232, 236, 240, 0.86);
  max-width: 32rem;
  font-size: 1.05rem;
}

.section {
  padding: 4.5rem 0;
}

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

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

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

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

.band-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow:
    0 24px 50px rgba(58, 63, 71, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

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

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

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.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.35rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  border-radius: 0.5rem;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.offer-item:hover {
  background: rgba(255, 255, 255, 0.35);
  padding-left: 0.55rem;
  color: inherit;
}

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

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

.offer-meta {
  white-space: nowrap;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--peach-deep);
  font-weight: 550;
}

.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.12rem;
  letter-spacing: 0.005em;
}

.quote-item cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--graphite-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: 600;
}

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

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

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: -0.025em;
  margin: 0 0 0.85rem;
  color: var(--graphite);
}

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

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

.page-hero-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.price-line {
  margin-top: 1rem !important;
  color: var(--peach-deep) !important;
  font-weight: 550;
}

.prose {
  max-width: 42rem;
}

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

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

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

.prose code {
  font-size: 0.92em;
  background: rgba(197, 205, 214, 0.45);
  padding: 0.1em 0.35em;
  border-radius: 0.35rem;
}

.post-meta {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--graphite-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: calc(var(--radius) - 0.25rem);
}

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

.note-item p {
  margin: 0;
  color: var(--graphite-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: 600;
  letter-spacing: 0.04em;
  color: var(--peach-deep);
}

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

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

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

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

.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);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(232, 168, 124, 0.55);
  box-shadow: 0 0 0 3px rgba(240, 201, 168, 0.35);
}

.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.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

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

.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(197, 205, 214, 0.35), rgba(58, 63, 71, 0.08));
}

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

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

.footer-tag,
.footer-col p {
  margin: 0;
  color: var(--graphite-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);
  font-weight: 600;
}

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

.footer-col a {
  text-decoration: none;
  color: var(--graphite-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(--graphite-soft);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(232, 236, 240, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  padding: 1rem 0;
  box-shadow: 0 -12px 40px rgba(58, 63, 71, 0.1);
}

.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(--graphite-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) {
  .band,
  .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(232, 236, 240, 0.98);
    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-horizon {
    min-height: 82vh;
  }
}
