/* Solar Pearl — Mindfabricpoint */
:root {
  --ivory: #fbf6ee;
  --ivory-deep: #f3e8d6;
  --champagne: #e8c992;
  --gold: #c9a24a;
  --coral: #e8a090;
  --coral-deep: #d47868;
  --pearl-blue: #c5d8e4;
  --sea: #8fb4c7;
  --ink: #2a2f36;
  --ink-soft: #5a616c;
  --surface: rgba(255, 252, 247, 0.78);
  --surface-strong: #fffaf3;
  --line: rgba(201, 162, 74, 0.28);
  --radius: 14px;
  --shadow: 0 18px 40px rgba(90, 70, 40, 0.08);
  --font-display: "Outfit", sans-serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  background:
    radial-gradient(ellipse 90% 55% at 12% -10%, rgba(232, 201, 146, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 5%, rgba(197, 216, 228, 0.55), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(232, 160, 144, 0.22), transparent 55%),
    linear-gradient(180deg, #fdf8f0 0%, #f7efe3 42%, #eef4f7 100%);
  min-height: 100vh;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

.shell {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.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(12px);
  background: rgba(251, 246, 238, 0.82);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover { color: var(--coral-deep); }

.site-nav ul {
  display: flex;
  gap: 0.35rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

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

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

.nav-cta {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--champagne), var(--coral));
  color: var(--ink) !important;
  box-shadow: 0 0 0 0 rgba(232, 201, 146, 0.5);
  transition: box-shadow 0.35s ease, transform 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 6px rgba(232, 201, 146, 0.25);
}

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

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}

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

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

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--surface-strong);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1.1rem;
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Buttons — pearl ripples */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.35s ease, background 0.2s ease;
  position: relative;
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(145deg, #ffe9c2 0%, var(--champagne) 45%, var(--coral) 100%);
  box-shadow:
    0 0 0 0 rgba(232, 201, 146, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 8px rgba(232, 201, 146, 0.22),
    0 0 0 16px rgba(197, 216, 228, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  color: var(--ink);
  text-decoration: none;
}

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 0 0 6px rgba(197, 216, 228, 0.2);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero — full-bleed visual plane */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: pearlRise 1.4s ease-out both;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 47, 54, 0.15) 0%, rgba(42, 47, 54, 0.55) 55%, rgba(42, 47, 54, 0.78) 100%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(232, 201, 146, 0.25), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  max-width: 38rem;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 500;
  max-width: 22ch;
}

.hero p {
  color: rgba(255, 252, 247, 0.9);
  font-size: 1.08rem;
  max-width: 36ch;
}

.hero .btn-primary {
  margin-top: 0.5rem;
}

@keyframes pearlRise {
  from { transform: scale(1.06); opacity: 0.6; }
  to { transform: scale(1); opacity: 1; }
}

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

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

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

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

.section-head p {
  color: var(--ink-soft);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.nacre {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(232, 201, 146, 0.18) 40%, rgba(197, 216, 228, 0.25)),
    var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Service teasers — not cards for decoration; interactive list links */
.offer-list {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .offer-list { grid-template-columns: repeat(3, 1fr); }
}

.offer-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: softFloat 7s ease-in-out infinite;
}

.offer-link:nth-child(2) { animation-delay: 0.8s; }
.offer-link:nth-child(3) { animation-delay: 1.6s; }

.offer-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 8px rgba(232, 201, 146, 0.18), var(--shadow);
  color: inherit;
  text-decoration: none;
}

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

.offer-link .offer-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.offer-link h3 {
  margin-bottom: 0.35rem;
}

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

.offer-meta {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 0.75rem;
}

/* Evidence */
.evidence-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .evidence-grid { grid-template-columns: 1fr 1fr; }
}

.evidence blockquote {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-style: italic;
}

.evidence cite {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Page heroes (inner) */
.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero h1 {
  max-width: 18ch;
}

.page-hero .lede {
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.bleed-visual {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 0;
  margin: 0 0 2rem;
}

.bleed-wrap {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}

/* Service detail */
.prose {
  max-width: 42rem;
}

.prose + .prose { margin-top: 1rem; }

.detail-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .detail-layout {
    grid-template-columns: 1.4fr 0.8fr;
    align-items: start;
  }
}

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

.include-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.include-list li:last-child { border-bottom: none; }

.price-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

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

.blog-item {
  display: grid;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.blog-item:hover { color: inherit; text-decoration: none; }

@media (min-width: 720px) {
  .blog-item {
    grid-template-columns: 240px 1fr;
    align-items: center;
  }
}

.blog-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.blog-item time {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--gold);
}

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

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

/* Process steps */
.process-steps {
  counter-reset: step;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

.process-step {
  padding: 1.5rem;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--champagne);
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

/* Forms */
.form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

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

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

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

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--champagne);
  outline-offset: 2px;
}

.field-error {
  color: #a94442;
  font-size: 0.85rem;
  font-family: var(--font-display);
  min-height: 1.1em;
}

.form-status {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.form-status.is-success { color: #2f6b4f; }
.form-status.is-error { color: #a94442; }

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 0.85fr;
  }
}

/* Legal */
.legal h2 {
  margin-top: 2rem;
}

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

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 250, 243, 0.95);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 -10px 30px rgba(90, 70, 40, 0.08);
}

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

.cookie-inner p {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.95rem;
}

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

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(197, 216, 228, 0.25));
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.footer-tag {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.92rem;
}

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

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

/* 404 */
.error-page {
  padding: 6rem 0;
  text-align: center;
}

.error-page h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--champagne);
}

/* Split feature */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 820px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.muted { color: var(--ink-soft); }
