:root {
  --ivory: #f7f1e8;
  --ivory-deep: #efe6d8;
  --champagne: #c9a86c;
  --champagne-soft: #dcc49a;
  --gold: #b8894a;
  --coral: #d4897a;
  --coral-soft: #e8a090;
  --blush: #f0cfc6;
  --pale-blue: #c5dce8;
  --sea: #9ec0d4;
  --sunlight: #ffe8b0;
  --nacre: #fff9f2;
  --ink: #2a2420;
  --ink-soft: #5c534c;
  --line: rgba(42, 36, 32, 0.12);
  --shadow: 0 18px 40px rgba(184, 137, 74, 0.12);
  --radius: 18px;
  --font-display: "Sora", 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);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(255, 232, 176, 0.55), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(197, 220, 232, 0.5), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(232, 160, 144, 0.18), transparent 55%),
    linear-gradient(180deg, var(--ivory) 0%, var(--nacre) 45%, var(--ivory-deep) 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

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

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

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

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

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

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

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

.nav-cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--champagne-soft), var(--coral-soft));
  color: var(--ink) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

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

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

.btn-pearl {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.85), transparent 40%),
    linear-gradient(145deg, var(--sunlight), var(--champagne-soft) 45%, var(--coral-soft));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.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.7);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}

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

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

@keyframes pearl-ripple {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.4);
  }
  100% {
    opacity: 0;
    width: 140px;
    height: 140px;
    transform: translate(-50%, -50%) scale(1);
  }
}

.btn-ghost {
  background: rgba(255, 249, 242, 0.7);
  border-color: var(--line);
  color: var(--ink);
}

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

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--nacre);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(42, 36, 32, 0.72) 0%, rgba(42, 36, 32, 0.35) 48%, rgba(184, 137, 74, 0.2) 100%),
    linear-gradient(0deg, rgba(42, 36, 32, 0.55), transparent 45%);
}

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

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

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 0 1rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-lead {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
  max-width: 28ch;
}

.hero-support {
  margin: 0 0 1.75rem;
  color: rgba(255, 249, 242, 0.88);
  max-width: 36ch;
}

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

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

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

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  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;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

/* Feature / offer strips */
.offer-primary {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.offer-primary img {
  width: 100%;
  height: min(460px, 60vw);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
}

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

.offer-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne), var(--coral-soft));
  box-shadow: 0 0 0 4px rgba(201, 168, 108, 0.18);
}

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

.preview-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0;
  background: transparent;
  border: 0;
  transition: transform 0.25s ease;
}

.preview-item:hover {
  transform: translateY(-4px);
}

.preview-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0.9rem;
}

.preview-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

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

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

.evidence blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.evidence p {
  font-size: 1.05rem;
  margin: 0 0 1rem;
  color: var(--ink);
}

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

.pearl-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.65), rgba(197, 220, 232, 0.25)),
    var(--nacre);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

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

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

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

.page-hero-visual {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
}

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

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

.service-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.1rem;
  text-decoration: none;
  color: inherit;
  align-items: start;
}

.service-row img {
  width: 140px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.25rem 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

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

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

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

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

.blog-item h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 0.45rem;
  letter-spacing: -0.025em;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}

.prose {
  max-width: 42rem;
}

.prose p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
}

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

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

.activation-item img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0.85rem;
}

.activation-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
}

.activation-channel {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.35rem;
}

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

/* Forms */
.form-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.form {
  display: grid;
  gap: 1rem;
}

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

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

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

.form textarea {
  min-height: 140px;
  resize: vertical;
}

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

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

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

.form-status.is-success {
  display: block;
  background: rgba(158, 192, 212, 0.35);
  color: var(--ink);
}

.form-status.is-error {
  display: block;
  background: rgba(212, 137, 122, 0.28);
  color: #6d2f26;
}

/* Legal */
.legal {
  max-width: 46rem;
  padding-bottom: 3rem;
}

.legal h1 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  margin-bottom: 0.5rem;
}

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

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

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

/* 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);
  margin: 0 0 0.75rem;
  letter-spacing: -0.04em;
}

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

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

.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.footer-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

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

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

.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 var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 1rem 0 1.25rem;
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.96), rgba(220, 196, 154, 0.9));
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px rgba(184, 137, 74, 0.12);
}

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

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

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

.cookie-error {
  text-align: center;
  color: #9a3d2f;
  margin: 0.5rem 0 0;
}

.cta-band {
  text-align: center;
  padding: 3.5rem 0;
}

.cta-band h2 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  margin: 0 0 0.75rem;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.split-steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

.split-steps li {
  list-style: none;
  position: relative;
  padding-left: 3rem;
}

.split-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: linear-gradient(145deg, var(--sunlight), var(--pale-blue));
  color: var(--ink);
}

.split-steps {
  margin: 0;
  padding: 0;
}

.split-steps h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.split-steps p {
  margin: 0;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .offer-primary,
  .service-detail,
  .form-layout,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .preview-grid,
  .evidence,
  .activation-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 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 a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .service-row {
    grid-template-columns: 100px 1fr;
  }

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

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