:root {
  --ink: #10100f;
  --charcoal: #161616;
  --soft: #f7f2e8;
  --paper: #fffaf0;
  --muted: #7c756b;
  --line: rgba(16, 16, 15, 0.14);
  --line-light: rgba(255, 250, 240, 0.16);
  --accent: #d8ff3e;
  --accent-2: #ff6b4a;
  --radius: 26px;
  --max: 1180px;
}

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.4;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   Noise overlay
   ========================================================================== */

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Nav
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(247, 242, 232, 0.76);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max);
  margin: auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 22px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #39342f;
}

.nav-cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(216, 255, 62, 0.42), transparent 24%),
    linear-gradient(135deg, #fffaf0 0%, #f5efe2 52%, #e7decd 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: 16vh;
  width: 46vw;
  height: 46vw;
  border: 1px solid rgba(16, 16, 15, 0.15);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(16, 16, 15, 0.04));
  box-shadow: inset 0 0 0 44px rgba(255, 250, 240, 0.28);
}

.container {
  max-width: var(--max);
  margin: auto;
  padding: 0 22px;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: end;
  padding: 90px 0 64px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: #39342f;
  margin-bottom: 26px;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--ink);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.07em;
  line-height: 0.88;
  margin: 0;
}

h1 {
  font-size: clamp(64px, 10.4vw, 148px);
  max-width: 900px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(46px, 7vw, 94px);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 520px;
  font-size: 20px;
  color: #39342f;
  margin: 26px 0 30px;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.hero-card {
  align-self: stretch;
  min-height: 520px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--paper);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 38px 80px rgba(16, 16, 15, 0.18);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -34% auto;
  width: 90%;
  height: 62%;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(0);
  opacity: 0.92;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid var(--line-light);
  border-radius: 20px;
}

.card-top,
.card-bottom {
  position: relative;
  z-index: 2;
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 700;
}

.card-bottom {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 4.6vw, 66px);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
  max-width: 360px;
  color: #fffaf0;
}

/* ==========================================================================
   Ticker
   ========================================================================== */

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
}

.ticker span {
  display: block;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 0;
  color: #282420;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   Sections (shared)
   ========================================================================== */

section {
  padding: 104px 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 48px;
}

.section-num {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 52px;
  align-items: start;
}

.lead {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #332f2b;
  margin: 0 0 28px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 14px;
  background: rgba(255, 250, 240, 0.6);
  font-weight: 700;
  font-size: 14px;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
  background: var(--charcoal);
  color: var(--paper);
}

.services .section-num,
.services p {
  color: rgba(255, 250, 240, 0.7);
}

.services .section-head {
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.service {
  background: #1d1d1b;
  min-height: 310px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service:hover {
  background: #25251f;
  transform: translateY(-3px);
}

.service-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 44px;
  color: var(--accent);
  letter-spacing: -0.08em;
}

.service h3 {
  margin-bottom: 18px;
  color: var(--paper);
}

.service p {
  font-size: 15px;
  margin: 0;
  color: rgba(255, 250, 240, 0.66);
}

/* ==========================================================================
   Stats
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.stat {
  background: var(--accent);
  border-radius: 22px;
  padding: 24px;
  color: var(--ink);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 54px;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.stat span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

/* ==========================================================================
   Process
   ========================================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 250, 240, 0.52);
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-card .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 52px;
  letter-spacing: -0.08em;
  color: var(--accent-2);
}

.process-card p {
  color: #514b44;
  margin: 14px 0 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  background: #fffaf0;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  padding: 20px 22px;
}

summary {
  font-weight: 900;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: -0.02em;
}

details p {
  margin: 16px 0 0;
  color: #4b463f;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--accent);
  right: -170px;
  top: 70px;
  opacity: 0.9;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact .section-num,
.contact p {
  color: rgba(255, 250, 240, 0.7);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: start;
}

.form-preview {
  background: #fffaf0;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.field {
  border-bottom: 1px solid rgba(16, 16, 15, 0.24);
  padding: 18px 0;
  color: var(--muted);
  font-weight: 700;
}

.send {
  margin-top: 24px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 17px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background: var(--ink);
  color: rgba(255, 250, 240, 0.7);
  padding: 24px 22px;
  font-size: 14px;
}

.footer-inner {
  max-width: var(--max);
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-light);
  padding-top: 22px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .section-head,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 380px;
  }

  .hero-grid {
    padding-left: 22px;
    padding-right: 22px;
  }

  .service-grid,
  .stats,
  .process-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 76px 0;
  }

  h1 {
    font-size: 64px;
  }

  .section-head {
    gap: 18px;
  }
}

/* ==========================================================================
   WordPress admin bar offset
   ========================================================================== */

body.admin-bar .nav {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .nav {
    top: 46px;
  }
}

/* ==========================================================================
   Contact form (WordPress-rendered)
   ========================================================================== */

.cd-contact-form {
  background: #fffaf0;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cd-contact-form input,
.cd-contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.28);
  background: transparent;
  color: var(--ink);
  padding: 18px 0;
  border-radius: 0;
  font: inherit;
  font-weight: 700;
  outline: none;
  box-shadow: none;
}

.cd-contact-form textarea {
  min-height: 90px;
  resize: vertical;
}

.cd-contact-form button {
  margin-top: 22px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 17px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cd-honey {
  display: none !important;
}