: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: "Quicksand", sans-serif;
  --font-body: "Nunito", 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 horizon-rise {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@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); }
}

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);
}

.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(238, 242, 246, 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(--graphite);
}

.brand-mark {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, var(--peach), transparent 42%),
    radial-gradient(circle at 70% 70%, var(--gold-soft), var(--silver-deep));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 4px 12px rgba(43, 48, 54, 0.15);
}

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

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

.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);
}

.nav-cta {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--graphite) 0%, var(--graphite-mid) 100%);
  color: var(--silver-bright) !important;
  box-shadow: var(--shadow-liquid);
}

.nav-cta:hover {
  color: var(--peach) !important;
}

.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;
}

.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;
}

.btn:active {
  animation: liquid-press 0.45s ease;
}

.btn-primary {
  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-primary:hover {
  color: var(--graphite);
  transform: translateY(-1px);
}

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

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

.liquid-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: wave-out 0.85s ease-out forwards;
  pointer-events: none;
}

@keyframes wave-out {
  to { transform: scale(1); opacity: 0; }
}

.hero-horizon {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

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

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

.hero-horizon-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(43, 48, 54, 0.78) 0%, rgba(43, 48, 54, 0.42) 48%, rgba(244, 201, 168, 0.18) 100%),
    linear-gradient(180deg, transparent 0%, rgba(43, 48, 54, 0.55) 100%);
}

.hero-horizon-copy {
  width: var(--shell);
  margin: 0 auto;
  padding: 5rem 0 4rem;
  color: var(--silver-bright);
  animation: horizon-rise 1s ease both;
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 11ch;
  text-shadow: 0 10px 44px rgba(0, 0, 0, 0.28);
}

.hero-line {
  margin: 1.4rem 0 0;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  font-weight: 300;
  color: rgba(238, 242, 246, 0.92);
}

.hero-meta {
  margin-top: 1rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--peach-soft);
}

.signal-lanes {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.signal-lane {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.signal-lane strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
}

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

@media (max-width: 640px) {
  .signal-lane {
    grid-template-columns: 1fr;
  }
}

.section {
  padding: 4.5rem 0;
}

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

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

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

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

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

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

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

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

.offer-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.offer-item {
  display: flex;
  justify-content: space-between;
  gap: 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-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-liquid);
  border-color: rgba(201, 164, 92, 0.45);
  color: inherit;
}

.offer-item h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

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

.offer-meta {
  flex-shrink: 0;
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 500;
}

.quote-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.quote-item {
  padding: 1.4rem 1.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(216, 222, 230, 0.45));
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.quote-item blockquote {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 400;
}

.quote-item cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--graphite-soft);
}

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

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

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

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

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

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
}

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

.page-hero-media {
  margin-top: 2rem;
  border-radius: calc(var(--radius) + 0.4rem);
  overflow: hidden;
  max-height: 360px;
  box-shadow: var(--shadow-liquid);
}

.page-hero-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.service-grid,
.post-grid,
.price-grid {
  display: grid;
  gap: 1.35rem;
  margin-top: 2rem;
}

.service-grid,
.post-grid {
  grid-template-columns: repeat(2, 1fr);
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-link,
.post-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-link:hover,
.post-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-liquid);
  color: inherit;
}

.service-link img,
.post-link img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-link-body,
.post-link-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.service-link h2,
.post-link h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.service-link p,
.post-link p {
  margin: 0;
  color: var(--graphite-soft);
  font-size: 0.95rem;
}

.price-tier {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.price-tier h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.price-tier .amount {
  margin: 0.7rem 0;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gold);
}

.price-tier ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  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);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 1rem 0 1.5rem;
  color: var(--graphite-soft);
  font-size: 0.95rem;
}

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

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

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

.form-field input,
.form-field select,
.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 select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--peach);
  outline-offset: 1px;
}

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

.form-status {
  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;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(244, 201, 168, 0.35), rgba(216, 222, 230, 0.55));
  border: 1px solid var(--line);
}

.process-steps {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  counter-reset: step;
}

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

.process-step::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: 600;
  color: var(--graphite);
  background: linear-gradient(145deg, var(--peach), var(--gold-soft));
}

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

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

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

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

.footer-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}

.footer-tag {
  margin: 0.5rem 0 0;
  color: var(--graphite-soft);
  max-width: 22rem;
}

.footer-heading {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite-soft);
}

.footer-col {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.footer-col a {
  text-decoration: none;
}

.footer-base {
  margin-top: 2rem;
  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-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

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

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

.cookie-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;
}

.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.not-found h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
}

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

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

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(238, 242, 246, 0.96);
    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: 78vh;
  }

  .hero-horizon-copy {
    margin-bottom: 3rem;
  }
}
