:root {
  --ivory: #fbf6ee;
  --ivory-deep: #f3eadc;
  --champagne: #e8c9a0;
  --gold: #d4a574;
  --coral: #e8a090;
  --coral-deep: #c97b6c;
  --pale-blue: #c5d9e8;
  --sea: #7aa7c7;
  --sea-deep: #4a7290;
  --ink: #2a3340;
  --ink-soft: #5a6573;
  --nacre: linear-gradient(135deg, #fffaf3 0%, #f0d4a8 42%, #e8a090 78%, #c5d9e8 100%);
  --sunrise: linear-gradient(165deg, #fff8ef 0%, #f7e6cf 28%, #f0d0c4 55%, #d6e6f2 100%);
  --radius: 1.25rem;
  --shadow: 0 18px 40px rgba(74, 114, 144, 0.12);
  --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, 201, 160, 0.45), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(197, 217, 232, 0.55), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(232, 160, 144, 0.2), transparent 60%),
    var(--ivory);
  line-height: 1.65;
  min-height: 100vh;
}

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(--coral-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;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(251, 246, 238, 0.82);
  border-bottom: 1px solid rgba(232, 201, 160, 0.45);
}

.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.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--nacre);
  box-shadow: 0 0 0 3px rgba(255, 250, 243, 0.8), 0 6px 16px rgba(212, 165, 116, 0.35);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  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-weight: 500;
  font-size: 0.95rem;
}

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

.nav-cta {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--nacre);
  color: var(--ink) !important;
  box-shadow: 0 4px 14px rgba(212, 165, 116, 0.28);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

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

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-pearl {
  color: var(--ink);
  background: var(--nacre);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
  overflow: hidden;
}

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

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

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

.btn-ghost {
  background: rgba(255, 250, 243, 0.7);
  color: var(--ink);
  border: 1px solid rgba(232, 201, 160, 0.7);
}

.btn-ghost:hover {
  border-color: var(--sea);
}

/* Hero — split composition (brand-forward, image edge-bleed on right) */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: stretch;
}

.hero-bleed {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: inherit;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2.5rem, 6vw, 5rem) max(1.25rem, calc((100vw - 1120px) / 2));
  padding-right: clamp(1.5rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 0 1rem;
  background: linear-gradient(120deg, var(--ink) 10%, var(--sea-deep) 55%, var(--coral-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-line {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.85rem;
  max-width: 28ch;
}

.hero-support {
  margin: 0 0 1.75rem;
  color: var(--ink-soft);
  max-width: 38ch;
  font-size: 1.05rem;
}

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

.hero-visual {
  position: relative;
  min-height: 320px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: min(88vh, 760px);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ivory) 0%, rgba(251, 246, 238, 0.35) 18%, transparent 40%),
    linear-gradient(180deg, transparent 70%, rgba(197, 217, 232, 0.25) 100%);
  pointer-events: none;
}

.pearl-float {
  position: absolute;
  border-radius: 50%;
  background: var(--nacre);
  opacity: 0.55;
  animation: float-pearl 8s ease-in-out infinite;
  pointer-events: none;
}

.pearl-float.p1 {
  width: 70px;
  height: 70px;
  top: 18%;
  left: 8%;
  animation-delay: 0s;
}

.pearl-float.p2 {
  width: 36px;
  height: 36px;
  top: 62%;
  left: 22%;
  animation-delay: 1.4s;
}

.pearl-float.p3 {
  width: 52px;
  height: 52px;
  bottom: 16%;
  right: 12%;
  animation-delay: 2.2s;
}

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

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

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

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: -0.035em;
  margin: 0 0 0.6rem;
  line-height: 1.15;
}

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sea-deep);
  margin-bottom: 0.55rem;
}

.surface {
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(232, 201, 160, 0.4);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Service previews — list, not card grid SaaS style */
.offer-list {
  display: grid;
  gap: 1.25rem;
}

.offer-row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 250, 243, 0.65);
  border: 1px solid rgba(232, 201, 160, 0.35);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.offer-row:hover {
  border-color: var(--sea);
  transform: translateX(4px);
}

.offer-row img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 0.35rem);
}

.offer-row h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}

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

.offer-meta {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral-deep);
  white-space: nowrap;
}

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

.spotlight img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.spotlight-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  margin: 0.4rem 0 0.75rem;
}

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

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--nacre);
  box-shadow: 0 0 0 2px rgba(232, 201, 160, 0.5);
}

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

.evidence blockquote {
  margin: 0;
  padding: 1.35rem;
  background: linear-gradient(160deg, rgba(255, 250, 243, 0.9), rgba(197, 217, 232, 0.25));
  border-left: 3px solid var(--champagne);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.evidence p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.evidence footer {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* Page heroes (inner) */
.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.75rem;
  line-height: 1.12;
  max-width: 18ch;
}

.page-hero p {
  margin: 0;
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.page-hero-media {
  margin-top: 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 360px;
}

.page-hero-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* Service & blog grids */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.tile {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 250, 243, 0.7);
  border: 1px solid rgba(232, 201, 160, 0.35);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.tile img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

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

.tile h2,
.tile h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
}

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

.tile-meta {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--sea-deep);
  font-weight: 600;
}

/* Detail pages */
.detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.prose h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin: 1.75rem 0 0.6rem;
}

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

.side-panel {
  padding: 1.35rem;
  position: sticky;
  top: 5.5rem;
}

.side-panel h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

.side-panel ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.price-note {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--coral-deep);
  margin-bottom: 0.35rem;
}

/* Pulse room (custom page) */
.pulse-schedule {
  display: grid;
  gap: 0.85rem;
}

.pulse-row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 250, 243, 0.75);
  border-radius: var(--radius);
  border: 1px solid rgba(197, 217, 232, 0.55);
}

.pulse-row strong {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--sea-deep);
}

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

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  counter-increment: step;
  padding: 1.15rem 1.15rem 1.15rem 3.5rem;
  position: relative;
  background: rgba(255, 250, 243, 0.7);
  border-radius: var(--radius);
  border: 1px solid rgba(232, 201, 160, 0.35);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--nacre);
}

.steps h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

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

/* Forms */
.form-wrap {
  max-width: 560px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(232, 201, 160, 0.75);
  background: rgba(255, 250, 243, 0.9);
  font: inherit;
  color: var(--ink);
}

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

.field-error {
  display: none;
  color: var(--coral-deep);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.form-group.is-invalid .field-error {
  display: block;
}

.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea {
  border-color: var(--coral-deep);
}

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

.form-status.is-success {
  display: block;
  background: rgba(197, 217, 232, 0.45);
  border: 1px solid var(--sea);
}

.form-status.is-error {
  display: block;
  background: rgba(232, 160, 144, 0.2);
  border: 1px solid var(--coral);
}

/* Legal prose */
.legal {
  max-width: 46rem;
}

.legal h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin: 2rem 0 0.6rem;
  font-size: 1.25rem;
}

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

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(197, 217, 232, 0.28));
  border-top: 1px solid rgba(232, 201, 160, 0.4);
}

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

.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}

.footer-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sea-deep);
  margin: 0 0 0.55rem;
}

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

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

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

.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, 160, 0.35);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 1rem;
  background: rgba(255, 250, 243, 0.95);
  border-top: 1px solid rgba(232, 201, 160, 0.55);
  box-shadow: 0 -12px 32px rgba(74, 114, 144, 0.12);
  backdrop-filter: blur(10px);
}

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

.cookie-inner p {
  margin: 0;
  flex: 1 1 280px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

.cookie-error {
  flex-basis: 100%;
  color: var(--coral-deep);
  font-size: 0.88rem;
}

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

.error-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: -0.05em;
  margin: 0 0 0.5rem;
  background: var(--nacre);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

/* Responsive */
@media (max-width: 900px) {
  .hero-bleed,
  .spotlight,
  .detail-layout,
  .evidence,
  .tile-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 2.5rem 1.25rem 1.5rem;
  }

  .hero-visual img {
    min-height: 280px;
  }

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

  .offer-meta {
    white-space: normal;
  }

  .nav-toggle {
    display: flex;
  }

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

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

  .pulse-row {
    grid-template-columns: 1fr;
  }
}
