:root {
  --silver: #c5cad3;
  --silver-bright: #e8ecf2;
  --peach: #f0c9a8;
  --peach-deep: #e4a980;
  --gold: #e8c87a;
  --gold-soft: #f3dfa3;
  --graphite: #2a2e35;
  --graphite-mid: #3d4450;
  --graphite-soft: #5c6573;
  --mist: #f3f1ed;
  --mist-warm: #f7efe6;
  --ink: #1c1f25;
  --line: rgba(42, 46, 53, 0.12);
  --font-display: "Outfit", sans-serif;
  --font-body: "Nunito", sans-serif;
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --shell: min(1120px, calc(100% - 2.5rem));
  --ease-liquid: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 50px rgba(42, 46, 53, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(240, 201, 168, 0.35), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(232, 200, 122, 0.22), transparent 55%),
    linear-gradient(180deg, var(--mist-warm), var(--mist) 40%, #ebe8e3);
  min-height: 100vh;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--graphite);
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

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

.narrow {
  max-width: 42rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    180deg,
    rgba(243, 241, 237, 0.92),
    rgba(243, 241, 237, 0.72)
  );
  border-bottom: 1px solid var(--line);
}

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

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

.brand-mark {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--silver), var(--peach), var(--gold));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 6px 16px rgba(228, 169, 128, 0.35);
  animation: mercury-shift 8s ease-in-out infinite;
}

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

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

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

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

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

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

/* Buttons — liquid depression */
.btn,
.nav-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease-liquid), box-shadow 0.35s var(--ease-liquid),
    background 0.35s var(--ease-liquid), border-color 0.35s ease;
}

.btn-primary,
.nav-cta {
  color: var(--mist) !important;
  background: linear-gradient(135deg, var(--graphite-mid), var(--graphite));
  box-shadow: 0 10px 28px rgba(42, 46, 53, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  color: var(--graphite);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(232, 236, 242, 0.5));
  border-color: rgba(42, 46, 53, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.btn.is-pressed,
.nav-cta.is-pressed {
  transform: scale(0.96);
  box-shadow: inset 0 8px 18px rgba(0, 0, 0, 0.22);
}

.liquid-ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 201, 168, 0.55), transparent 70%);
  transform: scale(0);
  animation: liquid-spread 0.7s var(--ease-liquid) forwards;
  pointer-events: none;
}

@keyframes liquid-spread {
  to {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes mercury-shift {
  0%,
  100% {
    filter: hue-rotate(0deg) brightness(1);
  }
  50% {
    filter: hue-rotate(12deg) brightness(1.08);
  }
}

@keyframes band-drift {
  0% {
    transform: translateX(-8%) skewX(-8deg);
    opacity: 0.35;
  }
  50% {
    transform: translateX(8%) skewX(-4deg);
    opacity: 0.55;
  }
  100% {
    transform: translateX(-8%) skewX(-8deg);
    opacity: 0.35;
  }
}

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

/* Hero — full-bleed Mercury Horizon */
.hero-horizon {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  color: var(--mist);
  overflow: hidden;
}

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

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

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 31, 37, 0.15) 0%, rgba(28, 31, 37, 0.55) 48%, rgba(28, 31, 37, 0.82) 100%),
    linear-gradient(90deg, rgba(42, 46, 53, 0.35), transparent 50%);
}

.hero-band {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 28%;
  height: 22%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(197, 202, 211, 0.25),
    rgba(240, 201, 168, 0.45),
    rgba(232, 200, 122, 0.35),
    transparent
  );
  filter: blur(18px);
  animation: band-drift 14s ease-in-out infinite;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
  max-width: 40rem;
  margin-left: max(calc((100% - var(--shell)) / 2), 1.25rem);
  margin-right: auto;
  width: min(40rem, calc(100% - 2.5rem));
  animation: rise-in 0.9s var(--ease-liquid) both;
}

.brand-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 1.25rem;
  background: linear-gradient(120deg, var(--silver-bright), var(--peach), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.hero-copy h1 {
  color: var(--mist);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 400;
  max-width: 18ch;
}

.hero-copy .lede {
  color: rgba(243, 241, 237, 0.88);
  max-width: 34ch;
  margin-bottom: 1.75rem;
}

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

.page-hero .lede,
.lede {
  font-size: 1.12rem;
  color: var(--graphite-soft);
  max-width: 42ch;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--graphite-soft);
  margin-bottom: 0.75rem;
}

.eyebrow a {
  text-decoration: none;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(232, 236, 242, 0.45));
  border-block: 1px solid var(--line);
}

.section-head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.section-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.spotlight-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.spotlight-visual img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.offer-list li {
  border-bottom: 1px solid var(--line);
}

.offer-list a {
  display: grid;
  grid-template-columns: minmax(12rem, 0.4fr) 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0.25rem;
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.35s var(--ease-liquid);
}

.offer-list a:hover {
  padding-left: 0.6rem;
}

.offer-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--graphite);
}

.offer-summary {
  color: var(--graphite-soft);
}

.quote-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.quote-list blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-list p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--graphite);
}

.quote-list footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--graphite-soft);
  font-size: 0.92rem;
}

.quote-list cite {
  font-style: normal;
  font-weight: 700;
  color: var(--graphite-mid);
}

.steps {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.85rem;
}

.text-link {
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--peach-deep);
  color: var(--graphite);
}

/* Service / blog indexes */
.service-index,
.post-index,
.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}

.service-index article {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.75rem;
  align-items: center;
}

.service-index figure,
.post-index img,
.detail-grid figure,
.post-cover,
.process-hero figure,
.about-hero figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-index img,
.detail-grid img,
.process-hero img,
.about-hero img,
.post-cover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--graphite-soft);
  font-weight: 600;
  font-size: 0.92rem;
}

.post-index a {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
  align-items: center;
}

.post-index img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.post-index time {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--graphite-soft);
  margin-bottom: 0.4rem;
}

.pricing-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.note {
  margin-top: 2rem;
  color: var(--graphite-soft);
}

.detail-grid,
.contact-grid,
.process-hero,
.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.25rem;
  align-items: start;
}

.process-phases {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}

.process-phases h2 {
  font-size: 1.35rem;
}

.plain-list {
  padding-left: 1.1rem;
}

.prose h2 {
  margin-top: 2rem;
}

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

.post-head {
  margin-bottom: 1.5rem;
}

.post-cover {
  margin: 0 0 2rem;
}

/* Forms */
.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(232, 236, 242, 0.55));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

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

.form-field label {
  font-weight: 700;
  font-size: 0.92rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(42, 46, 53, 0.16);
  background: rgba(255, 255, 255, 0.85);
  font: inherit;
  color: var(--ink);
}

.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;
  margin: 0;
  color: #8a4b2f;
  font-size: 0.88rem;
}

.form-status {
  margin: 0.5rem 0 0;
  font-weight: 700;
}

.form-status.is-ok {
  color: #2f6b4f;
}

.form-status.is-err {
  color: #8a4b2f;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

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

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.contact-aside h2 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
}

.contact-aside h2:first-child {
  margin-top: 0;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 1.5rem;
  background: linear-gradient(180deg, rgba(42, 46, 53, 0.94), #1c1f25);
  color: rgba(243, 241, 237, 0.78);
}

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

.footer-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--mist);
  margin-bottom: 0.4rem;
}

.footer-heading {
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 0.65rem;
}

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

.footer-col a {
  color: rgba(243, 241, 237, 0.78);
  text-decoration: none;
}

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

.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  font-size: 0.88rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(61, 68, 80, 0.96), rgba(42, 46, 53, 0.98));
  color: var(--mist);
  border-top: 1px solid rgba(240, 201, 168, 0.35);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.25);
}

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

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

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

.cookie-banner .btn-ghost {
  color: var(--mist);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 900px) {
  .split-spotlight,
  .service-index article,
  .post-index a,
  .detail-grid,
  .contact-grid,
  .process-hero,
  .about-hero,
  .footer-grid,
  .offer-list a {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

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

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