:root {
  --ivory: #fff8ef;
  --ivory-deep: #f6ebd9;
  --champagne: #e8c99a;
  --gold: #d4a574;
  --coral: #e8a090;
  --coral-deep: #d47b6a;
  --pale-blue: #b9d6e2;
  --sea: #8fb9c9;
  --sun: #ffe6b8;
  --ink: #2f2a26;
  --ink-soft: #5c534c;
  --nacre: rgba(255, 252, 246, 0.78);
  --line: rgba(212, 165, 116, 0.35);
  --shadow: 0 16px 36px rgba(88, 64, 42, 0.08);
  --radius: 1.15rem;
  --font-display: "Archivo", "Outfit", sans-serif;
  --font-body: "Outfit", "Archivo", sans-serif;
  --shell: min(1100px, calc(100% - 2.4rem));
}

*,
*::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 70% 45% at 0% 0%, var(--sun), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 5%, var(--pale-blue), transparent 48%),
    linear-gradient(180deg, var(--ivory) 0%, #fff3e4 45%, #eef5f7 100%);
  min-height: 100vh;
  line-height: 1.65;
}

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

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

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

.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: color-mix(in srgb, var(--ivory) 84%, transparent);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 28%, #fff 0 18%, transparent 19%),
    linear-gradient(135deg, var(--champagne), var(--coral), var(--sea));
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.45), 0 8px 18px rgba(212, 165, 116, 0.35);
  animation: pearl-float 5s ease-in-out infinite;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 90%;
  letter-spacing: -0.03em;
  font-size: 1.02rem;
}

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

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

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

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

.nav-toggle {
  display: none;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--nacre);
  cursor: pointer;
}

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

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.82rem 1.3rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-pearl {
  color: var(--ink);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.85), transparent 42%),
    linear-gradient(135deg, var(--sun), var(--champagne) 45%, var(--coral));
  box-shadow:
    0 0 0 0 rgba(232, 201, 154, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    var(--shadow);
  animation: pearl-ripple 3.2s ease-out infinite;
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
}

.hero-dawn {
  padding: 3.25rem 0 0;
  animation: soft-rise 0.85s ease-out both;
}

.hero-dawn-copy {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.hero-dawn .hero-brand {
  font-family: var(--font-display);
  font-stretch: 90%;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 0 0 1rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--ink) 20%, #7a5a45 55%, var(--coral-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-dawn .hero-lead {
  margin: 0 0 1.5rem;
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 34rem;
}

.hero-dawn-visual {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: min(58vh, 560px);
  overflow: hidden;
}

.hero-dawn-visual img {
  width: 100%;
  height: 100%;
  min-height: min(58vh, 560px);
  object-fit: cover;
  animation: soft-rise 1.1s 0.1s ease-out both;
}

.hero-dawn-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.55) 0%, transparent 28%),
    linear-gradient(0deg, rgba(255, 248, 239, 0.35) 0%, transparent 35%),
    radial-gradient(circle at 18% 70%, rgba(255, 230, 184, 0.35), transparent 40%);
  pointer-events: none;
}

.pearl-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.pearl-orbs span {
  position: absolute;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 28%, #fff 0 16%, transparent 17%),
    linear-gradient(145deg, var(--champagne), var(--pale-blue));
  opacity: 0.72;
  animation: pearl-float 6s ease-in-out infinite;
  box-shadow: 0 10px 24px rgba(143, 185, 201, 0.25);
}

.pearl-orbs span:nth-child(1) {
  width: 2.4rem;
  height: 2.4rem;
  left: 12%;
  top: 28%;
}

.pearl-orbs span:nth-child(2) {
  width: 1.5rem;
  height: 1.5rem;
  left: 28%;
  top: 58%;
  animation-delay: 0.8s;
}

.pearl-orbs span:nth-child(3) {
  width: 1.9rem;
  height: 1.9rem;
  right: 18%;
  top: 36%;
  animation-delay: 1.4s;
}

.section {
  padding: 4.25rem 0;
}

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

.section-head h2,
.offer-copy h2,
.cta-band h2,
.page-hero h1,
.item-body h3,
.prose h2,
.footer-brand,
.process-step h3 {
  font-family: var(--font-display);
  font-stretch: 92%;
  letter-spacing: -0.03em;
}

.section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

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

.nacre-panel {
  background: var(--nacre);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.offer-spotlight {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
}

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

.offer-copy {
  padding: clamp(1.4rem, 4vw, 2.6rem);
  order: 2;
}

.offer-spotlight img {
  order: 1;
}

.offer-copy h2 {
  margin: 0 0 0.85rem;
}

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

.service-list,
.blog-list,
.process-list,
.evidence-list {
  display: grid;
  gap: 1.2rem;
}

.service-list {
  grid-template-columns: repeat(3, 1fr);
}

.blog-list,
.process-list {
  grid-template-columns: repeat(2, 1fr);
}

.evidence-list {
  grid-template-columns: repeat(3, 1fr);
}

.service-item,
.blog-item,
.evidence-item {
  overflow: hidden;
}

.service-item img,
.blog-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.item-body {
  padding: 1.2rem 1.3rem 1.45rem;
}

.item-body h3 {
  font-size: 1.12rem;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.item-body h3 a {
  color: inherit;
  text-decoration: none;
}

.item-body h3 a:hover {
  color: var(--coral-deep);
}

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

.item-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.evidence-item {
  padding: 1.35rem 1.45rem;
}

.evidence-item blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
}

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

.page-hero {
  padding: 3.4rem 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 0.85rem;
}

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

.prose {
  max-width: 46rem;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
}

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

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

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

.detail-layout img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.feature-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(185, 214, 226, 0.28));
}

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

.footer-brand {
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.footer-tag,
.footer-grid p,
.footer-links a {
  color: var(--ink-soft);
}

.footer-label {
  font-weight: 700;
  margin: 0 0 0.6rem !important;
  color: var(--ink) !important;
}

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

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

.footer-links a {
  text-decoration: none;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card,
.form-card {
  padding: 1.5rem;
}

.form-card label {
  display: block;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.form-card .field {
  margin-bottom: 1rem;
}

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

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: 2px solid color-mix(in srgb, var(--sea) 65%, white);
  border-color: var(--sea);
}

.field-error {
  color: #a33d2d;
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
  min-height: 1.1em;
}

.form-status {
  margin-top: 0.85rem;
  font-weight: 600;
}

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

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

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--ivory) 92%, var(--champagne));
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(88, 64, 42, 0.08);
}

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

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

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

.process-hero {
  position: relative;
  min-height: 400px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.process-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.process-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(47, 42, 38, 0.12), rgba(47, 42, 38, 0.7));
}

.process-hero .shell {
  color: #fff8ef;
  padding-bottom: 2.4rem;
}

.process-hero h1 {
  font-family: var(--font-display);
  font-stretch: 92%;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.7rem;
}

.process-step {
  padding: 1.4rem 1.5rem;
}

.process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--sun), var(--champagne));
  color: var(--ink);
}

.process-step h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
}

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

.cta-band {
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-band h2 {
  margin: 0 0 0.4rem;
}

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

.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-stretch: 92%;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.75rem;
}

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

@keyframes pearl-ripple {
  0% { box-shadow: 0 0 0 0 rgba(232, 201, 154, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.7), var(--shadow); }
  70% { box-shadow: 0 0 0 14px rgba(232, 201, 154, 0), inset 0 1px 0 rgba(255, 255, 255, 0.7), var(--shadow); }
  100% { box-shadow: 0 0 0 0 rgba(232, 201, 154, 0), inset 0 1px 0 rgba(255, 255, 255, 0.7), var(--shadow); }
}

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

@media (max-width: 960px) {
  .service-list,
  .evidence-list,
  .footer-grid,
  .detail-layout,
  .contact-grid,
  .offer-spotlight {
    grid-template-columns: 1fr;
  }

  .blog-list,
  .process-list {
    grid-template-columns: 1fr;
  }

  .offer-copy {
    order: 1;
  }

  .offer-spotlight img {
    order: 2;
    min-height: 240px;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 1.2rem;
    left: 1.2rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(255, 248, 239, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .nav-cta {
    text-align: center;
  }

  .hero-dawn-visual {
    min-height: 46vh;
  }

  .hero-dawn-visual img {
    min-height: 46vh;
  }
}
