:root {
  --silver: #c5cdd1;
  --silver-bright: #e8eaee;
  --peach: #f0c9a8;
  --peach-deep: #e8a87c;
  --gold: #e8c56a;
  --gold-soft: #f3dfb0;
  --graphite: #2a2e33;
  --graphite-mid: #4a5058;
  --graphite-soft: #6b727c;
  --ink: #1c1f24;
  --foam: #f7f4f0;
  --surface: rgba(247, 244, 240, 0.72);
  --line: rgba(42, 46, 51, 0.12);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --font: "Outfit", sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --shadow: 0 18px 50px rgba(42, 46, 51, 0.12);
  --max: 70rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(240, 201, 168, 0.45), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(232, 197, 106, 0.28), transparent 55%),
    linear-gradient(180deg, #f3f1ee 0%, var(--foam) 40%, #ebe8e3 100%);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

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

.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(14px);
  background: linear-gradient(180deg, rgba(247, 244, 240, 0.92), rgba(247, 244, 240, 0.72));
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  background: linear-gradient(120deg, var(--graphite), var(--peach-deep) 55%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

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

.site-nav__cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--graphite), #3d444d);
  color: var(--silver-bright) !important;
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--graphite);
  position: relative;
  border-radius: 2px;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after { top: 6px; }

.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 560;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-radius 0.35s var(--ease), background 0.35s var(--ease);
}

.btn--primary {
  background: linear-gradient(145deg, #3a4048 0%, #2a2e33 45%, #4a3f35 100%);
  color: var(--silver-bright);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -8px 18px rgba(0, 0, 0, 0.25),
    0 12px 28px rgba(42, 46, 51, 0.22);
}

.btn--primary:hover {
  border-radius: 1.6rem 0.85rem 1.7rem 1rem / 1.2rem 1.5rem 0.9rem 1.4rem;
  transform: translateY(1px) scale(0.985);
  box-shadow:
    inset 0 10px 22px rgba(0, 0, 0, 0.28),
    inset 0 -2px 0 rgba(255, 255, 255, 0.08),
    0 6px 16px rgba(42, 46, 51, 0.18);
}

.btn--ghost {
  background: transparent;
  color: var(--graphite);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  border-radius: 1.4rem 1rem;
  background: rgba(255, 255, 255, 0.45);
}

.hero {
  position: relative;
  min-height: calc(100vh - 4rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--foam);
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: drift 18s var(--ease) infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(28, 31, 36, 0.82) 8%, rgba(42, 46, 51, 0.45) 48%, rgba(232, 168, 124, 0.28) 100%),
    linear-gradient(0deg, rgba(28, 31, 36, 0.75), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 1.25rem 4rem;
  width: 100%;
}

.hero__brand {
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0 0 1.25rem;
  max-width: 12ch;
  background: linear-gradient(120deg, #fff 10%, var(--peach) 45%, var(--gold-soft) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rise 1s var(--ease) both;
}

.hero__lead {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  max-width: 34rem;
  margin: 0 0 1.75rem;
  color: rgba(247, 244, 240, 0.92);
  animation: rise 1s 0.12s var(--ease) both;
}

.hero__actions {
  animation: rise 1s 0.22s var(--ease) both;
}

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

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--graphite-soft);
  margin: 0 0 0.75rem;
}

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.section__text {
  max-width: 40rem;
  color: var(--graphite-mid);
  margin: 0 0 2rem;
}

.mercury-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(197, 205, 209, 0.35), rgba(240, 201, 168, 0.4) 40%, rgba(232, 197, 106, 0.35)),
    var(--graphite);
  color: var(--foam);
  margin: 1rem 0;
}

.mercury-band::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.35), transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(232, 197, 106, 0.35), transparent 40%);
  animation: sheen 10s linear infinite;
  pointer-events: none;
}

.mercury-band .section {
  position: relative;
  z-index: 1;
}

.mercury-band .section__text {
  color: rgba(247, 244, 240, 0.86);
}

.offer-spotlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.offer-spotlight__media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 22rem;
  box-shadow: var(--shadow);
}

.offer-spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 22rem;
}

.offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.25rem 0 1.75rem;
  color: var(--graphite-mid);
  font-size: 0.95rem;
}

.offer-meta span {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--line);
}

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

.list-flow article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  padding: 0;
  border: none;
  background: transparent;
}

.list-flow__index {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--peach-deep);
  line-height: 1;
}

.list-flow h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.list-flow p {
  margin: 0;
  color: var(--graphite-mid);
}

.quote-strip {
  border-left: 3px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 2rem 0 0;
}

.quote-strip p {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  max-width: 36rem;
}

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

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

.service-item {
  display: grid;
  gap: 0.85rem;
}

.service-item a {
  text-decoration: none;
  color: inherit;
}

.service-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.6s var(--ease);
}

.service-item:hover img {
  transform: scale(1.02);
}

.service-item h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

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

.price-note {
  font-size: 0.9rem;
  color: var(--graphite-soft);
}

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

.blog-row {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1.5rem;
  align-items: start;
  text-decoration: none;
  color: inherit;
}

.blog-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

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

.blog-row h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

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

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 1rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  max-width: 16ch;
}

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

.prose {
  max-width: 44rem;
}

.prose h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

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

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

.detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.detail-layout img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.aside-panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.55), rgba(240, 201, 168, 0.22));
  border: 1px solid var(--line);
}

.aside-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

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

.aside-panel .price {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 1rem 0 0.25rem;
}

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

.process-steps li {
  list-style: none;
  position: relative;
  padding-left: 3.5rem;
}

.process-steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--peach-deep);
}

.process-steps h3 {
  margin: 0 0 0.35rem;
}

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

.form {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(232, 168, 124, 0.55);
  outline-offset: 1px;
}

.field-error {
  color: #9b3b2e;
  font-size: 0.85rem;
  font-weight: 400;
  min-height: 1.1em;
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
}

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

.form-status.is-success {
  background: rgba(120, 160, 120, 0.18);
  color: #2f5a36;
}

.form-status.is-error {
  background: rgba(180, 80, 60, 0.14);
  color: #8a3428;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(197, 205, 209, 0.22));
  padding: 3rem 1.25rem 2rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.75rem;
}

.site-footer__name {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.site-footer__tag,
.site-footer__col p,
.site-footer a {
  color: var(--graphite-mid);
  margin: 0.25rem 0;
  display: block;
  text-decoration: none;
}

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

.site-footer__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--graphite-soft) !important;
  margin-bottom: 0.65rem !important;
}

.site-footer__copy {
  max-width: var(--max);
  margin: 2rem auto 0;
  color: var(--graphite-soft);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  max-width: 36rem;
  margin: 0 auto;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(42, 46, 51, 0.96), rgba(58, 52, 46, 0.96));
  color: var(--foam);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 14rem;
  font-size: 0.92rem;
}

.cookie-banner a {
  color: var(--gold-soft);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-banner .btn--ghost {
  color: var(--foam);
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-banner__error {
  margin: 0.75rem 0 0;
  color: #f0c9a8;
  font-size: 0.85rem;
}

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

.not-found h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.04em;
}

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

@keyframes drift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-2%, 1%, 0); }
}

@keyframes sheen {
  from { transform: translateX(-8%) rotate(0.001deg); }
  to { transform: translateX(8%) rotate(0.001deg); }
}

@media (max-width: 900px) {
  .offer-spotlight,
  .detail-layout,
  .contact-grid,
  .site-footer__inner,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .blog-row {
    grid-template-columns: 7rem 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(247, 244, 240, 0.98);
    border-bottom: 1px solid var(--line);
    gap: 0.85rem;
  }

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

  .site-nav__cta {
    text-align: center;
  }

  .hero {
    min-height: 85vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
