:root {
  --ivory: #faf6ee;
  --ivory-deep: #f3ebe0;
  --champagne: #e8c992;
  --champagne-deep: #d4a85c;
  --coral: #e8a090;
  --coral-soft: #f3c4b8;
  --pale-blue: #c9dde8;
  --sea: #7eb0c8;
  --sunlight: #ffe9b8;
  --ink: #2a3340;
  --ink-soft: #5a6573;
  --nacre: linear-gradient(145deg, #fffaf2 0%, #f7e8d2 42%, #f0d0c4 72%, #d9e8f0 100%);
  --pearl-glow: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.85), rgba(232, 201, 146, 0.35) 45%, rgba(126, 176, 200, 0.25) 100%);
  --shadow: 0 18px 40px rgba(90, 70, 50, 0.08);
  --radius: 1.25rem;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Outfit", sans-serif;
  --shell: min(1120px, 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(ellipse 80% 50% at 10% -10%, rgba(255, 233, 184, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 5%, rgba(201, 221, 232, 0.55), transparent 50%),
    radial-gradient(ellipse 50% 35% at 70% 100%, rgba(232, 160, 144, 0.18), transparent 55%),
    var(--ivory);
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--sea);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--champagne-deep);
}

.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(14px);
  background: rgba(250, 246, 238, 0.82);
  border-bottom: 1px solid rgba(232, 201, 146, 0.35);
}

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

.brand-mark {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--pearl-glow);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 0 0 4px rgba(232, 201, 146, 0.18);
  animation: pearl-float 6s ease-in-out infinite;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

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

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: var(--nacre);
  cursor: pointer;
  place-items: center;
  gap: 4px;
  padding: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  margin: 3px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-pearl {
  position: relative;
  color: var(--ink);
  background: var(--nacre);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.btn-pearl::before,
.btn-pearl::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  border: 1px solid rgba(232, 201, 146, 0.55);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.btn-pearl:hover {
  transform: translateY(-1px);
}

.btn-pearl:hover::before {
  animation: pearl-ripple 1.1s ease-out;
}

.btn-pearl:hover::after {
  animation: pearl-ripple 1.1s ease-out 0.15s;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(126, 176, 200, 0.45);
}

.btn-ghost:hover {
  background: rgba(201, 221, 232, 0.35);
}

.hero-dawn {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-dawn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250, 246, 238, 0.15) 0%, rgba(250, 246, 238, 0.78) 62%, var(--ivory) 100%),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  z-index: -2;
  animation: dawn-drift 18s ease-in-out infinite alternate;
}

.hero-dawn::after {
  content: "";
  position: absolute;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  right: 12%;
  top: 18%;
  background: var(--pearl-glow);
  filter: blur(2px);
  opacity: 0.75;
  z-index: -1;
  animation: pearl-float 7s ease-in-out infinite;
}

.hero-copy {
  padding: 5.5rem 0 3.5rem;
  max-width: 38rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  background: linear-gradient(120deg, var(--ink) 20%, #6a4e3a 55%, var(--sea) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0 0 1.6rem;
  max-width: 32rem;
}

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

.section {
  padding: 4.5rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(243, 235, 224, 0.55));
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

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

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

.nacre-panel {
  background: var(--nacre);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.nacre-panel img {
  border-radius: calc(var(--radius) - 0.4rem);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.offer-list {
  display: grid;
  gap: 1.25rem;
}

.offer-row {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(232, 201, 146, 0.35);
}

.offer-row:last-child {
  border-bottom: 0;
}

.offer-thumb {
  width: 7rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 0.85rem;
}

.offer-row h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

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

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

.quote-block {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(232, 201, 146, 0.4);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.quote-block p {
  margin: 0 0 1rem;
}

.quote-meta {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.quote-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

.card-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(201, 221, 232, 0.55);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.service-card-body {
  padding: 1.2rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.service-card h2,
.service-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.meta-chip {
  font-size: 0.8rem;
  color: var(--champagne-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

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

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.7rem;
  margin: 2rem 0 0.7rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

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

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

.price-tier {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(232, 201, 146, 0.4);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.price-tier.featured {
  background: var(--nacre);
  box-shadow: var(--shadow);
}

.price-tier h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-amount {
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0.4rem 0;
}

.price-tier ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

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

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

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

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(232, 201, 146, 0.55);
  border-radius: 0.85rem;
  padding: 0.75rem 0.9rem;
}

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

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

.form-status {
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  display: none;
}

.form-status.is-success {
  display: block;
  background: rgba(201, 221, 232, 0.55);
  color: var(--ink);
}

.form-status.is-error {
  display: block;
  background: rgba(232, 160, 144, 0.35);
  color: #6d3030;
}

.map-steps {
  display: grid;
  gap: 1rem;
}

.map-step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(201, 221, 232, 0.5);
}

.map-step span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--champagne-deep);
  line-height: 1;
}

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

.blog-item {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1.25rem;
  text-decoration: none;
  color: inherit;
  align-items: center;
}

.blog-item img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
  border-radius: 1rem;
}

.blog-item h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.blog-item p {
  margin: 0;
  color: var(--ink-soft);
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(243, 235, 224, 0.8));
  border-top: 1px solid rgba(232, 201, 146, 0.35);
}

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

.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.footer-label {
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--champagne-deep);
}

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

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

.footer-links a,
.site-footer a {
  color: var(--ink-soft);
  text-decoration: none;
}

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

.footer-base {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 201, 146, 0.3);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 1rem 0;
  background: rgba(250, 246, 238, 0.94);
  border-top: 1px solid rgba(232, 201, 146, 0.55);
  box-shadow: 0 -12px 30px rgba(90, 70, 50, 0.08);
}

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

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

.cookie-inner p {
  margin: 0;
  max-width: 42rem;
  color: var(--ink-soft);
}

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

.cookie-error {
  width: 100%;
  color: #a04545;
  font-size: 0.9rem;
}

.legal-list {
  max-width: 44rem;
}

.cta-band {
  margin: 1rem 0 3rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--nacre);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cta-band p {
  margin: 0;
  color: var(--ink-soft);
}

@keyframes pearl-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pearl-ripple {
  0% {
    width: 0.4rem;
    height: 0.4rem;
    opacity: 0.7;
  }
  100% {
    width: 8rem;
    height: 8rem;
    opacity: 0;
  }
}

@keyframes dawn-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.04);
  }
}

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

  .offer-row {
    grid-template-columns: 5.5rem 1fr;
  }

  .offer-row .btn {
    grid-column: 2;
    justify-self: start;
  }

  .blog-item {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(250, 246, 238, 0.98);
    border-bottom: 1px solid rgba(232, 201, 146, 0.4);
    padding: 0.75rem 1.25rem 1.25rem;
  }

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

  .site-nav a {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(232, 201, 146, 0.25);
  }
}

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