:root {
  --silver: #c8cdd6;
  --silver-bright: #e4e7ee;
  --silver-deep: #9aa3b0;
  --peach: #e8b89a;
  --peach-soft: #f3d4c0;
  --gold: #d4b896;
  --gold-soft: #e8d4b0;
  --graphite: #2c3038;
  --graphite-mid: #4a505c;
  --graphite-soft: #6a7280;
  --surface: rgba(232, 235, 242, 0.72);
  --surface-strong: rgba(44, 48, 56, 0.92);
  --line: rgba(74, 80, 92, 0.18);
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
  --space: clamp(1rem, 2vw, 1.75rem);
  --shell: min(1120px, calc(100% - 2.5rem));
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--graphite);
  background:
    radial-gradient(ellipse 90% 55% at 15% -10%, rgba(232, 184, 154, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 5%, rgba(212, 184, 150, 0.35), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(200, 205, 214, 0.55), transparent 55%),
    linear-gradient(168deg, #f4f5f8 0%, #e8ebf1 42%, #dddfe6 100%);
  min-height: 100vh;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(
      115deg,
      transparent 20%,
      rgba(255, 255, 255, 0.35) 35%,
      transparent 48%,
      rgba(232, 184, 154, 0.2) 62%,
      transparent 75%
    );
  background-size: 220% 100%;
  animation: light-band 18s ease-in-out infinite;
  z-index: 0;
}

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

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.2em;
  transition: color 0.25s ease;
}

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

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

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

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

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

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

.site-nav a {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--graphite-mid);
}

.site-nav a:hover {
  color: var(--graphite);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 0.55rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  margin: 0.35rem 0;
  background: var(--graphite);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(145deg, var(--silver-bright), var(--silver) 40%, var(--peach-soft));
  color: var(--graphite);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 8px 24px rgba(44, 48, 56, 0.12);
}

.btn-primary:hover {
  color: var(--graphite);
  transform: scale(0.97);
  box-shadow:
    inset 0 6px 16px rgba(44, 48, 56, 0.14),
    0 4px 12px rgba(44, 48, 56, 0.08);
}

.btn-primary:active {
  transform: scale(0.94);
  box-shadow: inset 0 10px 22px rgba(44, 48, 56, 0.2);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(44, 48, 56, 0.22);
  color: var(--graphite);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.45);
  color: var(--graphite);
  transform: scale(0.97);
}

.text-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--graphite);
  text-decoration: none;
  border-bottom: 1px solid var(--peach);
  padding-bottom: 0.15rem;
}

.text-link:hover {
  color: var(--graphite-mid);
  border-color: var(--gold);
}

.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #f7f4f0;
}

.hero-plane {
  position: absolute;
  inset: 0;
}

.hero-plane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-drift 28s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

.hero-sheen {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(44, 48, 56, 0.25) 0%, rgba(44, 48, 56, 0.55) 45%, rgba(44, 48, 56, 0.82) 100%),
    linear-gradient(90deg, rgba(232, 184, 154, 0.28), transparent 45%, rgba(200, 205, 214, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3.5rem, 7vw, 5rem);
  max-width: 42rem;
  margin-left: max(calc((100% - var(--shell)) / 2), 1.25rem);
  margin-right: auto;
  width: min(42rem, calc(100% - 2.5rem));
  animation: rise-in 0.9s ease both;
}

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

.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.mercury-band {
  height: 3px;
  width: min(100%, 18rem);
  margin-bottom: 1.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--silver-bright), var(--peach), var(--gold), var(--silver));
  background-size: 200% 100%;
  animation: mercury-flow 6s linear infinite;
  box-shadow: 0 0 18px rgba(232, 184, 154, 0.55);
}

@keyframes mercury-flow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 200% 50%;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 1rem;
  color: rgba(247, 244, 240, 0.95);
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: rgba(247, 244, 240, 0.78);
  font-size: 1.05rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.5rem;
  align-items: center;
}

.hero .text-link {
  color: #f7f4f0;
  border-color: rgba(232, 184, 154, 0.85);
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(200, 205, 214, 0.28), rgba(243, 212, 192, 0.18));
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-head h2,
.primary-copy h2,
.close-band h2,
.page-hero h1,
.detail-hero h1,
.process-step h2,
.service-block h2,
.blog-row h2,
.prose h2 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 600;
  color: var(--graphite);
}

.section-head h2,
.primary-copy h2,
.close-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  margin: 0 0 0.75rem;
}

.primary-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.primary-copy p {
  margin: 0 0 1rem;
  color: var(--graphite-mid);
}

.price-line {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--graphite) !important;
  margin: 1.25rem 0 1.5rem !important;
}

.primary-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(44, 48, 56, 0.16);
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.offer-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.offer-row:first-child {
  border-top: 1px solid var(--line);
}

.offer-row img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 14px;
}

.offer-row h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}

.offer-row h3 a {
  text-decoration: none;
  color: var(--graphite);
}

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

.offer-row .price {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--graphite);
  white-space: nowrap;
}

.quote-band {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background:
    linear-gradient(135deg, rgba(44, 48, 56, 0.94), rgba(74, 80, 92, 0.9)),
    linear-gradient(90deg, var(--peach), var(--gold));
  color: #f7f4f0;
}

.quote-band blockquote {
  margin: 0;
  max-width: 46rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 500;
  line-height: 1.45;
}

.quote-band cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(247, 244, 240, 0.7);
}

.close-band {
  max-width: 40rem;
}

.close-band p {
  color: var(--graphite-mid);
  margin: 0 0 1.5rem;
}

.page-hero {
  padding: clamp(3rem, 7vw, 4.5rem) 0 1rem;
}

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

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

.page-hero-media {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  color: #f7f4f0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

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

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 48, 56, 0.35), rgba(44, 48, 56, 0.78));
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 6rem) 0 2.5rem;
}

.page-hero-copy h1,
.page-hero-copy p {
  color: #f7f4f0;
}

.page-hero-copy p {
  color: rgba(247, 244, 240, 0.8);
}

.process-track {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.process-step:first-child {
  border-top: 1px solid var(--line);
}

.step-index {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--peach);
  letter-spacing: 0.04em;
}

.process-step h2 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.75rem;
}

.service-block img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: var(--graphite-soft);
  margin-bottom: 0.5rem;
}

.service-block h2 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}

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

.service-block p {
  color: var(--graphite-mid);
  margin: 0 0 0.85rem;
}

.detail-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.detail-hero img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(44, 48, 56, 0.14);
}

.detail-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 0.35rem 0 0.75rem;
}

.lede {
  font-size: 1.1rem;
  color: var(--graphite-mid);
}

.checklist {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

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

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.blog-row img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--graphite-soft);
  margin: 0 0 0.35rem;
}

.blog-row h2 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

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

.blog-row p {
  margin: 0 0 0.75rem;
  color: var(--graphite-mid);
}

.prose {
  max-width: 42rem;
}

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

.prose h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.55), rgba(200, 205, 214, 0.35));
  border: 1px solid var(--line);
}

.contact-panel p {
  margin: 0 0 0.65rem;
  color: var(--graphite-mid);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-row label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
}

.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  color: var(--graphite);
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--peach);
  box-shadow: 0 0 0 3px rgba(232, 184, 154, 0.25);
}

.field-error {
  min-height: 1.1rem;
  font-size: 0.85rem;
  color: #a14a3a;
}

.form-status {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-size: 0.95rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(212, 184, 150, 0.28);
  color: var(--graphite);
}

.form-status.is-error {
  background: rgba(161, 74, 58, 0.12);
  color: #8a3a2e;
}

.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, transparent, rgba(44, 48, 56, 0.06));
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

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

.footer-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--peach) !important;
  margin-bottom: 0.75rem !important;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: var(--graphite-mid);
  font-size: 0.92rem;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

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

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 520px;
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(244, 245, 248, 0.96), rgba(232, 184, 154, 0.28));
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(44, 48, 56, 0.18);
  backdrop-filter: blur(12px);
}

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

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: var(--shell);
  margin: 0 auto;
  padding: 4rem 0;
}

.error-page h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  margin: 0 0 0.75rem;
  background: linear-gradient(90deg, var(--silver-deep), var(--peach), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.error-page p {
  color: var(--graphite-mid);
  margin: 0 0 1.25rem;
}

@media (max-width: 900px) {
  .primary-split,
  .detail-hero,
  .contact-layout,
  .blog-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .offer-row {
    grid-template-columns: 100px 1fr;
  }

  .offer-row .price {
    grid-column: 2;
  }

  .offer-row img {
    width: 100px;
    height: 80px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(244, 245, 248, 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);
  }

  .hero-content {
    margin-left: 1.25rem;
  }

  .process-step {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
  }
}
