/* SATOK PP — landing styles */
:root {
  --bg: #f4f2ee;
  --bg-tint: #ebe7e0;
  --surface: #ffffff;
  --ink: #1a1714;
  --ink-muted: #5c564e;
  --accent: #c45c2a;
  --accent-hover: #a84d22;
  --dark: #121820;
  --dark-elevated: #1c2430;
  --line: rgba(26, 23, 20, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(26, 23, 20, 0.08);
  --font: "Manrope", system-ui, sans-serif;
  --max: 1120px;
  --narrow: 760px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  max-width: var(--narrow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 242, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--accent-hover);
  color: #fff !important;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 1.35rem;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 1px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1.25rem 1rem;
  border-bottom: 1px solid var(--line);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 880px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(196, 92, 42, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(28, 36, 48, 0.06), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr minmax(280px, 340px);
    gap: 3rem;
  }
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.lead {
  margin: 0 0 1.75rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink-muted);
  color: var(--ink);
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 420px;
}

.hero-stats li {
  padding: 0.85rem 0.75rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--ink);
}

.hero-stats span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-muted);
  line-height: 1.35;
  margin-top: 0.25rem;
}

.hero-card {
  background: var(--dark);
  color: #e8e4dc;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card-kicker {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.checklist {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(232, 228, 220, 0.92);
  font-size: 0.9375rem;
}

.checklist li {
  margin-bottom: 0.65rem;
}

.checklist li::marker {
  color: var(--accent);
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-tint {
  background: var(--bg-tint);
}

.section-dark {
  background: var(--dark);
  color: #e2ddd4;
}

.section-dark a {
  color: #f0a070;
}

.section-dark a:hover {
  color: #ffc09a;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}

.section-title.light {
  color: #fff;
  text-align: left;
}

.section-intro {
  margin: 0 auto 2rem;
  max-width: 62ch;
  color: var(--ink-muted);
  text-align: left;
}

.section-intro.center {
  text-align: center;
}

.section-intro.light {
  color: rgba(226, 221, 212, 0.85);
}

.section-dark .section-intro.light {
  max-width: 70ch;
}

/* About */
.prose-columns {
  columns: 1;
  gap: 2rem;
}

.prose-columns p {
  margin: 0 0 1.25rem;
  color: var(--ink-muted);
}

.prose-columns p:last-child {
  margin-bottom: 0;
}

@media (min-width: 720px) {
  .prose-columns {
    columns: 2;
  }

  .prose-columns p {
    break-inside: avoid;
  }
}

/* Cards */
.cards {
  display: grid;
  gap: 1.25rem;
}

.cards-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(26, 23, 20, 0.04);
}

.card-title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 800;
}

.card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-muted);
}

/* Services */
.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-block {
  background: var(--dark-elevated);
  padding: 1.5rem 1.65rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-block h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.service-block p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(226, 221, 212, 0.82);
}

/* Split */
.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.split p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.split p:last-child {
  margin-bottom: 0;
}

.audience-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}

.audience-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.audience-list li:last-child {
  border-bottom: none;
}

.audience-list span {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  counter-reset: step;
}

.timeline li {
  position: relative;
  padding: 0 0 2rem 2.75rem;
  border-left: 2px solid var(--line);
  margin-left: 0.65rem;
}

.timeline li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.timeline li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -0.65rem;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  top: 0;
}

.timeline strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.timeline p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* Tags */
.tags-block {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: var(--bg-tint);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
}

/* Quote */
.section-quote {
  background: linear-gradient(135deg, #1a1714 0%, #2a221c 100%);
  color: #ebe6df;
}

.quote {
  margin: 0;
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.quote p {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.55;
  font-style: italic;
}

.quote footer {
  font-size: 0.875rem;
  color: rgba(235, 230, 223, 0.55);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 800;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

/* CTA */
.cta-band {
  background: linear-gradient(120deg, #c45c2a 0%, #9a3d18 50%, #1c2430 100%);
  color: #fff;
}

.cta-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .cta-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

.cta-band .section-title {
  text-align: left;
  margin-bottom: 0.75rem;
}

.cta-text {
  margin: 0;
  max-width: 48ch;
  opacity: 0.95;
  line-height: 1.65;
}

.cta-actions {
  text-align: center;
}

@media (min-width: 800px) {
  .cta-actions {
    text-align: right;
  }
}

.cta-actions .btn-primary {
  background: #fff;
  color: var(--accent);
  width: 100%;
  max-width: 280px;
}

.cta-actions .btn-primary:hover {
  background: #f4f2ee;
  color: var(--accent-hover);
}

.cta-note {
  margin: 1rem 0 0;
  font-size: 1.125rem;
}

.cta-note a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.cta-note a:hover {
  text-decoration: underline;
}

.cta-e164 {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(232, 228, 220, 0.75);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.9375rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  margin: 0 0 0.5rem;
  font-weight: 800;
  font-size: 1.125rem;
  color: #fff;
}

.footer-muted {
  margin: 0;
  max-width: 36ch;
}

.footer-label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer a {
  color: #f0a070;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.copyright {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}
