:root {
  --silver: #c8ced8;
  --silver-deep: #7f8a9a;
  --peach: #f3c2a4;
  --peach-deep: #df9368;
  --gold: #d6ba8e;
  --gold-soft: #c4a56a;
  --graphite: #2a2f38;
  --graphite-mid: #3b4350;
  --graphite-soft: #5c6574;
  --mist: #e8ecf1;
  --ink: #171b22;
  --foam: rgba(248, 250, 252, 0.88);
  --line: rgba(42, 47, 56, 0.14);
  --shadow: 0 20px 48px rgba(42, 47, 56, 0.14);
  --radius: 1.35rem;
  --font-display: "Lexend", sans-serif;
  --font-body: "Figtree", sans-serif;
  --shell: min(1100px, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(243, 194, 164, 0.48), transparent 58%),
    radial-gradient(900px 480px at 96% 4%, rgba(196, 165, 106, 0.28), transparent 52%),
    radial-gradient(700px 400px at 50% 100%, rgba(127, 138, 154, 0.22), transparent 55%),
    linear-gradient(180deg, #e6ebf1 0%, #dde3ea 40%, #d4dbe4 100%);
  min-height: 100vh;
  line-height: 1.65;
}

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

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

.sr-only {
  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(230, 235, 241, 0.82);
  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.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #fff6, transparent 40%),
    linear-gradient(135deg, var(--peach), var(--gold-soft), var(--silver-deep));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 8px 18px rgba(196, 165, 106, 0.35);
  animation: mercuryPulse 6s ease-in-out infinite;
}

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

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

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

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

.nav-cta {
  padding: 0.55rem 1rem;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, var(--graphite), var(--graphite-mid));
  color: #f5f7fa !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--foam);
  padding: 0.65rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

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

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  border-radius: 1.15rem;
  padding: 0.85rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-radius 0.28s ease;
}

.btn-primary {
  color: #fff8f2;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 40%),
    linear-gradient(145deg, var(--peach-deep), var(--gold-soft) 45%, var(--silver-deep));
  box-shadow: 0 12px 28px rgba(223, 147, 104, 0.35), inset 0 -6px 14px rgba(42, 47, 56, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  border-radius: 1.35rem;
}

.btn-primary:active {
  transform: scale(0.96);
  border-radius: 1.55rem 1.1rem 1.45rem 1.2rem;
  box-shadow: inset 0 10px 22px rgba(42, 47, 56, 0.28), 0 4px 10px rgba(223, 147, 104, 0.2);
}

.btn-ghost {
  color: var(--graphite);
  background: rgba(248, 250, 252, 0.72);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.btn-ghost:active {
  transform: scale(0.97);
  border-radius: 1.4rem 1.05rem 1.3rem 1.15rem;
  box-shadow: inset 0 8px 16px rgba(42, 47, 56, 0.12);
}

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

/* Full-bleed sunrise hero */
.hero-bleed {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-bleed > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: drift 20s ease-in-out infinite alternate;
}

.hero-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(23, 27, 34, 0.2) 0%, rgba(23, 27, 34, 0.55) 45%, rgba(23, 27, 34, 0.82) 100%),
    linear-gradient(90deg, rgba(243, 194, 164, 0.25), transparent 45%, rgba(196, 165, 106, 0.18));
  pointer-events: none;
}

.hero-bleed::after {
  content: "";
  position: absolute;
  inset: 18% -15% auto;
  height: 55%;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  filter: blur(10px);
  animation: lightBand 14s ease-in-out infinite;
  pointer-events: none;
}

.hero-bleed-copy {
  position: relative;
  z-index: 2;
  padding: 4rem 0 3.5rem;
  color: #f7f3ee;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0 0 1rem;
  max-width: 12ch;
  background: linear-gradient(120deg, #fff 10%, var(--peach) 55%, var(--gold) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brandRise 1.1s ease-out both;
}

.hero-line {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  max-width: 28ch;
  animation: brandRise 1.1s ease-out 0.12s both;
}

.hero-support {
  margin: 0;
  max-width: 34rem;
  color: rgba(247, 243, 238, 0.86);
  font-size: 1.05rem;
  animation: brandRise 1.1s ease-out 0.22s both;
}

.hero-bleed .btn-row {
  animation: brandRise 1.1s ease-out 0.32s both;
}

.section {
  padding: 4rem 0;
}

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

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.section-head p {
  margin: 0;
  color: var(--graphite-mid);
}

.metal-panel {
  background:
    linear-gradient(145deg, rgba(248, 250, 252, 0.92), rgba(200, 206, 216, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
}

.service-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.service-feature img {
  border-radius: 1.5rem;
  min-height: 320px;
  object-fit: cover;
  width: 100%;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.offer-item {
  padding: 0;
  border-radius: 1.25rem;
  background: transparent;
  border: 0;
}

.offer-item img {
  border-radius: 0.9rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 1rem;
}

.offer-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

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

.offer-meta {
  font-size: 0.9rem;
  color: var(--graphite-soft);
  font-weight: 700;
}

.quote-band {
  margin: 1rem 0 0;
  padding: 2.5rem;
  border-radius: 1.75rem;
  background:
    linear-gradient(120deg, rgba(42, 47, 56, 0.95), rgba(59, 67, 80, 0.92));
  color: #f5f1eb;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% 40%;
  height: 140%;
  background: radial-gradient(circle, rgba(243, 194, 164, 0.35), transparent 60%);
  animation: lightBand 10s ease-in-out infinite reverse;
}

.quote-band blockquote {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  max-width: 42rem;
}

.quote-band cite {
  position: relative;
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--peach);
  font-weight: 600;
}

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

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 0.85rem;
  max-width: 16ch;
}

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

.bleed-hero {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.bleed-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bleed-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 47, 56, 0.15), rgba(42, 47, 56, 0.74));
}

.bleed-copy {
  position: relative;
  z-index: 1;
  color: #fff7f0;
  padding: 3rem 0;
}

.bleed-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.75rem;
  max-width: 14ch;
}

.bleed-copy p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 247, 240, 0.88);
}

.prose {
  max-width: 46rem;
}

.prose h2 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 2rem 0 0.75rem;
}

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

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

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.65rem;
}

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

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

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

.step:last-child {
  border-bottom: 0;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-weight: 700;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(145deg, var(--peach), var(--silver));
}

.step h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.map-lanes {
  display: grid;
  gap: 1.5rem;
}

.map-lane {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.map-lane:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.map-lane h3 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.02em;
}

.map-lane p {
  margin: 0;
  color: var(--graphite-mid);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.team-card img {
  border-radius: 1.25rem;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  margin-bottom: 0.85rem;
}

.team-card h3 {
  margin: 0;
  font-family: var(--font-display);
}

.team-card p {
  margin: 0.25rem 0 0;
  color: var(--graphite-soft);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.blog-card img {
  border-radius: 1rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 0.9rem;
}

.blog-card h2,
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

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

.meta {
  font-size: 0.88rem;
  color: var(--graphite-soft);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.form-panel {
  max-width: 40rem;
}

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

.form-grid label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--graphite);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  font: inherit;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.9);
  padding: 0.85rem 1rem;
  color: var(--ink);
}

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

.field-error {
  color: #9a3b2f;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  font-weight: 700;
}

.form-status[data-state="success"] {
  background: rgba(120, 170, 130, 0.2);
  color: #245536;
}

.form-status[data-state="error"] {
  background: rgba(180, 80, 60, 0.15);
  color: #8a3226;
}

.form-status[hidden],
.field-error:empty {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 1rem;
}

.cookie-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(145deg, rgba(248, 250, 252, 0.95), rgba(200, 206, 216, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

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

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

.cookie-error {
  width: var(--shell);
  margin: 0.5rem auto 0;
  color: #8a3226;
  font-weight: 700;
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(42, 47, 56, 0.05));
}

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

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

.footer-label {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 0.65rem;
}

.footer-text {
  margin: 0 0 0.75rem;
  color: var(--graphite-mid);
}

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

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

.footer-links a {
  text-decoration: none;
  font-weight: 600;
}

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

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

.not-found {
  padding: 6rem 0;
  text-align: center;
}

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

@keyframes mercuryPulse {
  0%, 100% { transform: scale(1); filter: saturate(1); }
  50% { transform: scale(1.06); filter: saturate(1.15); }
}

@keyframes lightBand {
  0%, 100% { transform: translateX(-4%) skewX(-6deg); opacity: 0.65; }
  50% { transform: translateX(4%) skewX(-2deg); opacity: 1; }
}

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

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

@media (max-width: 900px) {
  .service-feature,
  .offer-list,
  .blog-grid,
  .team-grid,
  .footer-grid,
  .grid-2,
  .map-lane {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(230, 235, 241, 0.96);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 0.75rem 0;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-bleed {
    min-height: 72vh;
  }
}
