:root {
  --ivory: #f7f1e6;
  --ivory-deep: #efe6d4;
  --champagne: #e4c792;
  --gold: #c9a46a;
  --coral: #e8a88a;
  --blush: #f3cbb8;
  --sea: #b9d0dc;
  --sea-deep: #7fa0b3;
  --ink: #2c3340;
  --ink-soft: #5a6270;
  --nacre: linear-gradient(145deg, #fffaf3 0%, #f3e4c8 42%, #f0d0bc 72%, #d7e6ef 100%);
  --pearl-btn: linear-gradient(160deg, #fff8ee 0%, #f0d7a8 45%, #e8a88a 100%);
  --veil: linear-gradient(105deg, rgba(247, 241, 230, 0.94) 0%, rgba(247, 241, 230, 0.78) 48%, rgba(185, 208, 220, 0.35) 100%);
  --shadow: 0 18px 40px rgba(127, 160, 179, 0.18);
  --radius: 18px;
  --font-display: "Sora", sans-serif;
  --font-body: "Figtree", 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(232, 168, 138, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(185, 208, 220, 0.45), transparent 50%),
    linear-gradient(180deg, var(--ivory) 0%, #f3efe4 40%, #eef3f6 100%);
  min-height: 100vh;
  line-height: 1.65;
}

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

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

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

h1, h2, h3, .brand-name, .brand-lockup, .footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); margin: 0 0 0.75rem; }
h2 { font-size: clamp(1.45rem, 2.6vw, 2rem); margin: 0 0 0.65rem; }
h3 { font-size: 1.15rem; margin: 0 0 0.4rem; }

p { margin: 0 0 1rem; }

.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(247, 241, 230, 0.82);
  border-bottom: 1px solid rgba(201, 164, 106, 0.25);
}

.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.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--pearl-btn);
  box-shadow: 0 0 0 3px rgba(255, 248, 238, 0.9), 0 0 0 6px rgba(201, 164, 106, 0.25);
  animation: pearl-breathe 4.5s ease-in-out infinite;
}

.brand-name {
  font-size: 1.05rem;
}

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

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

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

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid rgba(201, 164, 106, 0.35);
}

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

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.25s ease;
}

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

.btn-pearl {
  color: var(--ink);
  background: var(--pearl-btn);
  box-shadow: var(--shadow);
}

.btn-pearl::before,
.btn-pearl::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

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

.btn-pearl:hover::after,
.btn-pearl:focus-visible::after {
  animation: pearl-ripple 1.1s ease-out 0.18s;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(127, 160, 179, 0.45);
  color: var(--ink-soft);
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 164, 106, 0.55);
  color: var(--ink);
}

.text-link.spaced {
  margin-left: 1.25rem;
}

.hero-bleed {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

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

.hero-veil {
  position: absolute;
  inset: 0;
  background: var(--veil);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 4rem;
  max-width: 40rem;
  margin-left: max(calc((100% - var(--shell)) / 2), 1.25rem);
  margin-right: auto;
  animation: fade-up 0.9s ease-out 0.15s both;
}

.brand-lockup {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 0.85rem;
  color: var(--ink);
}

.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 36rem;
}

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

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

.page-hero.tight {
  padding-top: 1rem;
}

.page-hero.narrow {
  max-width: 34rem;
  padding-bottom: 5rem;
}

.section {
  padding: 4rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.55), rgba(185, 208, 220, 0.18));
}

.section-intro {
  max-width: 38rem;
  margin-bottom: 2rem;
}

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

.feature-offer-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.plain-list.dense li + li {
  margin-top: 0.55rem;
}

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

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

.offer-item {
  text-decoration: none;
  color: inherit;
  display: block;
}

.offer-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 0.85rem;
  transition: transform 0.35s ease;
}

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

.offer-item p {
  color: var(--ink-soft);
}

.quote-stack {
  display: grid;
  gap: 1.25rem;
}

blockquote {
  margin: 0;
  padding: 1.4rem 1.6rem;
  background: var(--nacre);
  border-radius: var(--radius);
  border-left: 3px solid var(--coral);
}

blockquote p {
  font-size: 1.08rem;
}

cite {
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.section-cta {
  padding-bottom: 5rem;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--nacre);
  box-shadow: var(--shadow);
}

.split-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-story img {
  width: 100%;
  border-radius: var(--radius);
}

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

.service-row,
.blog-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.75rem;
  align-items: center;
}

.service-row img,
.blog-cover img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.service-row h2 a,
.blog-row h2 a {
  text-decoration: none;
  color: var(--ink);
}

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

.article-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-body {
  max-width: 42rem;
}

.process-hero img {
  width: 100%;
  border-radius: var(--radius);
  max-height: 420px;
  object-fit: cover;
}

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

.step-index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 0 0 0.35rem;
}

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

.contact-form,
.contact-aside {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(201, 164, 106, 0.28);
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(127, 160, 179, 0.45);
  background: #fffdf9;
  font: inherit;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(201, 164, 106, 0.55);
  outline-offset: 1px;
}

.field-error,
.form-status {
  font-size: 0.9rem;
  margin: 0.35rem 0 0;
}

.field-error {
  color: #9a3f2e;
}

.form-status[data-state="success"] {
  color: #2f6b4f;
}

.form-status[data-state="error"] {
  color: #9a3f2e;
}

.address-block {
  font-style: normal;
  margin-bottom: 1.5rem;
}

.legal {
  max-width: 46rem;
}

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

.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(185, 208, 220, 0.28));
  border-top: 1px solid rgba(201, 164, 106, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 0.8fr;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.footer-name {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.footer-label {
  font-weight: 600;
  margin-bottom: 0.45rem;
}

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

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

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

.footer-base {
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 164, 106, 0.2);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

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

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--nacre);
  border: 1px solid rgba(201, 164, 106, 0.35);
  box-shadow: var(--shadow);
}

.cookie-banner-inner p {
  margin: 0;
  flex: 1 1 16rem;
}

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

@keyframes pearl-ripple {
  0% { opacity: 0.7; width: 12px; height: 12px; }
  100% { opacity: 0; width: 160px; height: 160px; }
}

@keyframes pearl-breathe {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 248, 238, 0.9), 0 0 0 6px rgba(201, 164, 106, 0.22); }
  50% { box-shadow: 0 0 0 4px rgba(255, 248, 238, 1), 0 0 0 9px rgba(232, 168, 138, 0.28); }
}

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

@keyframes soft-rise {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

@media (max-width: 900px) {
  .feature-offer,
  .split-story,
  .service-row,
  .blog-row,
  .contact-grid,
  .footer-grid,
  .offer-rail,
  .process-steps,
  .cta-row {
    grid-template-columns: 1fr;
  }

  .cta-row {
    display: grid;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(247, 241, 230, 0.98);
    border-bottom: 1px solid rgba(201, 164, 106, 0.25);
  }

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

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

  .hero-copy {
    margin-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .text-link.spaced {
    display: inline-block;
    margin: 1rem 0 0;
  }
}
