:root {
  --ivory: #f7f1e8;
  --ivory-deep: #efe6d8;
  --champagne: #d4b896;
  --gold: #c9a86c;
  --coral: #e8a598;
  --coral-deep: #d8897a;
  --pale-blue: #b8d4e3;
  --sky-soft: #d7e8f0;
  --sunlight: #f5e6c8;
  --nacre: #fff9f2;
  --ink: #2a2a28;
  --ink-soft: #5a5650;
  --ink-faint: #8a847a;
  --line: rgba(42, 42, 40, 0.12);
  --shadow: 0 18px 40px rgba(80, 60, 40, 0.08);
  --radius: 18px;
  --font-display: "Sora", sans-serif;
  --font-body: "Outfit", sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, var(--sunlight), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, var(--sky-soft), transparent 55%),
    linear-gradient(180deg, var(--ivory) 0%, var(--nacre) 40%, var(--ivory-deep) 100%);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

.shell {
  width: min(100% - 2.5rem, var(--max));
  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(247, 241, 232, 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;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff9f2 0%, var(--champagne) 45%, var(--pale-blue) 100%);
  box-shadow: 0 0 0 3px rgba(212, 184, 150, 0.25), 0 0 0 7px rgba(184, 212, 227, 0.18);
  animation: pearl-breathe 4.5s ease-in-out infinite;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
}

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

.site-nav ul {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--nacre);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-small {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.btn-pearl {
  color: var(--ink);
  background:
    linear-gradient(145deg, #fff9f2 0%, var(--sunlight) 40%, var(--champagne) 100%);
  border-color: rgba(201, 168, 108, 0.45);
  box-shadow: var(--shadow);
}

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

.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;
  border-color: var(--line);
  color: var(--ink-soft);
}

.btn-coral {
  background: linear-gradient(145deg, #f3c4b8, var(--coral));
  border-color: rgba(216, 137, 122, 0.4);
  color: var(--ink);
}

/* Hero — asymmetric brand-led composition */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero-stage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: end;
  min-height: min(78vh, 720px);
}

.hero-brand-block {
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
}

.hero-brand-block .brand-name {
  display: block;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 0 0 1.25rem;
  background: linear-gradient(120deg, var(--ink) 20%, var(--gold) 55%, var(--coral-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rise-in 0.9s ease both;
}

.hero-lede {
  max-width: 28rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0 0 1.75rem;
  animation: rise-in 0.9s ease 0.12s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise-in 0.9s ease 0.22s both;
}

.hero-visual {
  position: relative;
  border-radius: 28px 28px 120px 28px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
  animation: float-in 1.1s ease both;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(247, 241, 232, 0.15), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(232, 165, 152, 0.25), transparent 40%);
  pointer-events: none;
}

.pearl-orbit {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--champagne) 50%, var(--pale-blue));
  opacity: 0.55;
  filter: blur(0.5px);
  animation: drift 8s ease-in-out infinite;
  z-index: 0;
}

.pearl-orbit.one { top: 8%; left: 42%; width: 70px; height: 70px; }
.pearl-orbit.two { top: 48%; left: -2%; width: 110px; height: 110px; animation-delay: -3s; }

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

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

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

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.6rem;
}

/* Primary offer band */
.offer-band {
  background:
    linear-gradient(135deg, rgba(255, 249, 242, 0.9), rgba(245, 230, 200, 0.65) 50%, rgba(184, 212, 227, 0.35));
  border-block: 1px solid var(--line);
}

.offer-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.offer-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
}

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

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

.offer-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.6rem;
  border-top: 1px solid var(--line);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--gold));
  box-shadow: 0 0 0 4px rgba(201, 168, 108, 0.2);
}

.offer-panel {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offer-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

/* Service previews — no cards, list with images */
.service-rail {
  display: grid;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.service-row:first-child {
  border-top: 1px solid var(--line);
}

.service-row:hover {
  background: rgba(255, 249, 242, 0.55);
  color: inherit;
}

.service-row img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
}

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

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

.service-row .meta {
  font-size: 0.88rem;
  color: var(--ink-faint);
  white-space: nowrap;
}

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

.quote-item {
  padding: 0;
  border: none;
  background: transparent;
}

.quote-item blockquote {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.quote-item footer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--ink-faint);
}

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

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

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

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

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

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

.bleed-hero .shell {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3rem;
}

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

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

.bleed-hero p {
  max-width: 32rem;
  margin: 0;
  color: rgba(255, 249, 242, 0.88);
}

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

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

.prose h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

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

.legal-wrap {
  padding-bottom: 4rem;
}

/* Pricing */
.price-list {
  display: grid;
  gap: 0;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.price-row:first-child {
  border-top: 1px solid var(--line);
}

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

.price-row p {
  margin: 0;
  color: var(--ink-soft);
}

.price-amount {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.price-note {
  margin-top: 1.5rem;
  color: var(--ink-faint);
  font-size: 0.95rem;
}

/* Scorecards custom page */
.scorecard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.scorecard-table th,
.scorecard-table td {
  text-align: left;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.scorecard-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.scorecard-table td strong {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.scorecard-mobile {
  display: none;
}

.framework {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

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

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

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

.blog-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.75rem;
  text-decoration: none;
  color: inherit;
}

.blog-item:hover {
  color: inherit;
}

.blog-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
}

.blog-item h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

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

.blog-meta {
  font-size: 0.88rem;
  color: var(--ink-faint);
  margin-bottom: 0.4rem;
}

.article-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 20px;
  margin: 1.5rem 0 2rem;
}

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

.form-field label {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 249, 242, 0.8);
  font: inherit;
  color: var(--ink);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(201, 168, 108, 0.45);
  outline-offset: 1px;
}

.field-error {
  display: none;
  margin-top: 0.35rem;
  color: #a14b3c;
  font-size: 0.88rem;
}

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

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

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

.form-status.is-success {
  display: block;
  background: rgba(184, 212, 227, 0.45);
  border: 1px solid rgba(184, 212, 227, 0.8);
}

.form-status.is-error {
  display: block;
  background: rgba(232, 165, 152, 0.35);
  border: 1px solid rgba(216, 137, 122, 0.55);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.contact-aside {
  padding-top: 0.5rem;
}

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

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

.team-person img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 6px rgba(212, 184, 150, 0.25), 0 0 0 14px rgba(184, 212, 227, 0.18);
}

.team-person h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

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

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(245, 230, 200, 0.35));
}

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

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 0.85rem;
}

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

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

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

.footer-tagline {
  color: var(--ink-soft);
  max-width: 22rem;
}

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

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

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 0;
  right: 0;
  z-index: 60;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 249, 242, 0.96), rgba(245, 230, 200, 0.92));
  border: 1px solid rgba(212, 184, 150, 0.55);
  box-shadow: var(--shadow);
}

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

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

.cookie-error {
  flex-basis: 100%;
  margin: 0;
  color: #a14b3c;
  font-size: 0.88rem;
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 0;
}

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

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

.detail-aside {
  position: sticky;
  top: 5.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.detail-aside dl {
  margin: 0;
}

.detail-aside dt {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1rem;
}

.detail-aside dd {
  margin: 0.25rem 0 0;
}

.detail-hero-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 20px;
  margin: 1.5rem 0 2rem;
}

.cta-band {
  margin: 2rem 0 4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

/* Animations */
@keyframes pearl-ripple {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(14); opacity: 0; }
}

@keyframes pearl-breathe {
  0%, 100% { box-shadow: 0 0 0 3px rgba(212, 184, 150, 0.25), 0 0 0 7px rgba(184, 212, 227, 0.18); }
  50% { box-shadow: 0 0 0 5px rgba(212, 184, 150, 0.32), 0 0 0 12px rgba(184, 212, 227, 0.12); }
}

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

@keyframes float-in {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

@media (max-width: 900px) {
  .hero-stage,
  .offer-layout,
  .quote-grid,
  .contact-split,
  .detail-layout,
  .footer-grid,
  .team-grid,
  .blog-item,
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row .meta {
    white-space: normal;
  }

  .service-row img {
    width: 100%;
    height: 180px;
  }

  .nav-toggle {
    display: inline-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(247, 241, 232, 0.97);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  .header-cta {
    width: fit-content;
  }

  .scorecard-table {
    display: none;
  }

  .scorecard-mobile {
    display: block;
  }

  .hero-visual {
    border-radius: 24px;
    min-height: 280px;
  }

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

  .page-hero h1,
  .bleed-hero h1 {
    max-width: none;
  }
}
