:root {
  --ink: #17130f;
  --ink-raised: #241d17;
  --ink-line: rgba(251,246,239,0.12);
  --paper: #fbf6ef;
  --paper-raised: #f2e9dc;
  --paper-line: rgba(23,19,15,0.09);
  --accent: #dd8a3f;
  --accent-dark: #b6692a;
  --accent-2: #6b8563;
  --text-on-dark: #efe6da;
  --text-on-dark-muted: #b6a996;
  --text-on-light: #221b14;
  --text-on-light-muted: #6b5f52;
  --shadow-sm: 0 1px 2px rgba(23,19,15,0.08), 0 1px 1px rgba(23,19,15,0.05);
  --shadow-md: 0 14px 32px -12px rgba(23,19,15,0.28), 0 4px 12px rgba(23,19,15,0.10);
  --shadow-lg: 0 30px 60px -20px rgba(23,19,15,0.38), 0 10px 20px rgba(23,19,15,0.14);
  --shadow-dark-md: 0 14px 32px -10px rgba(0,0,0,0.55), 0 4px 14px rgba(0,0,0,0.35);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  background: var(--paper);
  color: var(--text-on-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 2.75rem);
  padding-right: clamp(1.25rem, 4vw, 2.75rem);
}

.space-section { padding-top: clamp(4.5rem, 7vw, 7.5rem); padding-bottom: clamp(4.5rem, 7vw, 7.5rem); }
.space-card { padding: clamp(1.75rem, 3vw, 2.75rem); }

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; margin: 0; }
p { margin: 0; }

.text-display {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 4vw + 1.2rem, 4.75rem);
  margin-bottom: 1.5rem;
}
.text-display-sm {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-size: clamp(1.85rem, 2.4vw + 1rem, 2.85rem);
  margin-bottom: 1rem;
}
.text-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.text-body { font-family: 'Work Sans', sans-serif; font-weight: 400; line-height: 1.75; font-size: 1.02rem; }
.text-body-lg { font-family: 'Work Sans', sans-serif; font-weight: 400; line-height: 1.75; font-size: 1.2rem; }
.text-caption { font-family: 'Work Sans', sans-serif; font-size: 0.85rem; line-height: 1.5; opacity: 0.75; }

.surface--dark { background: var(--ink); color: var(--text-on-dark); }
.surface--light { background: var(--paper); color: var(--text-on-light); }
.surface--gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 52%, var(--ink) 135%);
  color: var(--text-on-dark);
  position: relative;
}

.surface--dark .text-body, .surface--dark .text-caption { color: var(--text-on-dark-muted); }
.surface--dark .text-display, .surface--dark .text-display-sm { color: var(--text-on-dark); }
.surface--light .text-body, .surface--light .text-caption { color: var(--text-on-light-muted); }
.surface--light .text-display, .surface--light .text-display-sm { color: var(--text-on-light); }
.surface--gradient .text-body { color: rgba(239,230,218,0.92); }
.surface--gradient .text-eyebrow { color: var(--ink); }

.surface-raised {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s ease;
  overflow: hidden;
}
.surface-raised:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.surface-raised--light { background: #ffffff; }
.surface-raised--dark { background: var(--ink-raised); box-shadow: var(--shadow-dark-md); }
.surface-raised--dark:hover { box-shadow: 0 40px 70px -20px rgba(0,0,0,0.6); }

.surface-inset { border-radius: var(--radius-md); }
.surface-inset--dark { background: rgba(255,255,255,0.04); border: 1px solid var(--ink-line); }
.surface-inset--light { background: var(--paper-raised); border: 1px solid var(--paper-line); }

.action-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.9rem; border-radius: var(--radius-pill);
  background: var(--accent); color: #1c1204; font-weight: 600;
  font-family: 'Outfit', sans-serif; font-size: 0.98rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1), box-shadow 0.35s ease, background 0.35s ease;
  min-height: 44px;
}
.action-primary:hover { background: var(--accent-dark); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.action-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.9rem; border-radius: var(--radius-pill);
  border: 1.5px solid currentColor; font-weight: 600; font-family: 'Outfit', sans-serif;
  font-size: 0.98rem; background: transparent;
  transition: all 0.35s ease; min-height: 44px;
}
.action-ghost:hover { background: rgba(221,138,63,0.14); border-color: var(--accent); transform: translateY(-4px); }


.nav-bar {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--paper-line);
  transition: box-shadow 0.3s ease;
}
.nav-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; padding-bottom: 1rem;
}
.nav-bar__brand { display: flex; align-items: center; gap: 0.7rem; }
.nav-bar__logo { width: 42px; height: 42px; }
.nav-bar__brand-text { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--text-on-light); }
.nav-bar__links { display: none; gap: 2rem; align-items: center; }
.nav-link {
  position: relative; font-family: 'Outfit', sans-serif; font-weight: 500;
  font-size: 0.95rem; color: var(--text-on-light-muted); padding-bottom: 6px;
  transition: color 0.3s ease;
}
.nav-link:hover { color: var(--text-on-light); }
.nav-link__bar {
  position: absolute; bottom: 0; left: 0; height: 3px; width: 100%;
  background: var(--accent); border-radius: var(--radius-pill);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.nav-link:hover .nav-link__bar { transform: scaleX(0.5); }
.nav-link.is-active { color: var(--text-on-light); }
.nav-link.is-active .nav-link__bar { transform: scaleX(1); }

.nav-bar__toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: transparent; border: none; padding: 0;
  align-items: center;
}
.nav-bar__toggle span { width: 24px; height: 2px; background: var(--text-on-light); transition: all 0.3s ease; border-radius: 2px; }
.nav-bar__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-bar__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-bar__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 960px) {
  .nav-bar__links { display: flex; }
  .nav-bar__toggle { display: none; }
}


.menu-curtain {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(.65,0,.35,1);
  padding: 2rem;
}
.menu-curtain.is-open { transform: translateY(0); }
.menu-curtain__links { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.menu-curtain__link {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.6rem; color: var(--text-on-dark);
  opacity: 0; transform: translateY(-24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.menu-curtain.is-open .menu-curtain__link { opacity: 1; transform: translateY(0); }
.menu-curtain.is-open .menu-curtain__link:nth-child(1) { transition-delay: 0.12s; }
.menu-curtain.is-open .menu-curtain__link:nth-child(2) { transition-delay: 0.2s; }
.menu-curtain.is-open .menu-curtain__link:nth-child(3) { transition-delay: 0.28s; }
.menu-curtain.is-open .menu-curtain__link:nth-child(4) { transition-delay: 0.36s; }
.menu-curtain.is-open .menu-curtain__link:nth-child(5) { transition-delay: 0.44s; }
.menu-curtain__close {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  background: transparent; border: 1.5px solid var(--text-on-dark-muted);
  color: var(--text-on-dark); padding: 0.8rem 1.6rem; border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif; font-weight: 600; display: flex; gap: 0.6rem; align-items: center;
  transition: all 0.3s ease; min-height: 44px;
}
.menu-curtain__close:hover { background: rgba(255,255,255,0.08); }


.hero { position: relative; overflow: hidden; }
.hero__shape {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; z-index: 0;
}
.hero__shape--1 { width: 420px; height: 420px; background: var(--accent); top: -120px; right: -100px; }
.hero__shape--2 { width: 320px; height: 320px; background: var(--accent-2); bottom: -140px; left: -80px; }
.hero__grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; position: relative; z-index: 1; }
.hero__lead { max-width: 46ch; margin-bottom: 2rem; }
.hero__lead--page { max-width: 60ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.1rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06); border: 1px solid var(--ink-line);
  font-size: 0.85rem; color: var(--text-on-dark-muted);
}
.hero__media { position: relative; }
.hero__image { border-radius: var(--radius-lg); box-shadow: var(--shadow-dark-md); width: 100%; height: auto; object-fit: cover; }
.hero--sm .text-body-lg { margin-bottom: 0; }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; }
}


.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__lead { margin-top: 1rem; }


.intro-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.intro-grid--reverse .intro-grid__image { order: 2; }
@media (min-width: 900px) {
  .intro-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid--reverse .intro-grid__image { order: 2; }
  .intro-grid--reverse .intro-grid__text { order: 1; }
}
.intro-grid__image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }


.concept-card { text-align: left; }
.concept-card__icon { font-size: 1.6rem; color: var(--accent); margin-bottom: 1rem; display: block; }
.concept-card__title { font-size: 1.25rem; margin-bottom: 0.6rem; }


.step-card { position: relative; text-align: left; }
.step-card__number {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 2.4rem;
  color: var(--accent); display: block; margin-bottom: 0.5rem; line-height: 1;
}
.step-card__icon { display: none; }
.step-card__image { border-radius: var(--radius-md); margin: 1rem 0 1.25rem; aspect-ratio: 4/3; object-fit: cover; }
.step-card__title { font-size: 1.35rem; }
.steps-row { position: relative; }


.process-steps {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; position: relative;
}
@media (min-width: 900px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .process-steps::before {
    content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px;
    background: rgba(23,19,15,0.25); z-index: 0;
  }
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step__number {
  width: 68px; height: 68px; border-radius: 50%; background: var(--ink);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 1.25rem; box-shadow: var(--shadow-dark-md);
}
.process-step__title { font-size: 1.2rem; color: var(--ink); margin-bottom: 0.5rem; }
.surface--gradient .process-step__title { color: #1c1204; }
.surface--gradient .process-step .text-body { color: rgba(28,18,4,0.78); }


.module-preview-grid { margin-top: 1rem; }
.module-card { display: block; }
.module-card__image { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.module-card__tag { color: var(--accent); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 1; display: block; margin-bottom: 0.4rem; }
.module-card__title { font-size: 1.25rem; }
.module-preview-cta { margin-top: 2.5rem; text-align: center; }


.insight-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .insight-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }
.insight-quote { font-style: normal; }
.insight-quote .text-display-sm { color: var(--text-on-light); }
.faq__heading { margin-bottom: 1.5rem; }
.faq__item { border-top: 1px solid var(--paper-line); }
.faq__item:last-child { border-bottom: 1px solid var(--paper-line); }
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; padding: 1.25rem 0; font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 1.02rem; color: var(--text-on-light); text-align: left;
  transition: color 0.3s ease;
}
.faq__question:hover { color: var(--accent-dark); }
.faq__question i { transition: transform 0.35s ease; color: var(--accent); }
.faq__item.is-open .faq__question i { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq__item.is-open .faq__answer { max-height: 200px; padding-bottom: 1.25rem; }


.compare-grid__title { display: flex; align-items: center; gap: 0.6rem; font-size: 1.3rem; }
.compare-list { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: 0.7rem; }
.compare-list li { padding-left: 1.5rem; position: relative; }
.compare-list li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.compare-note { margin-top: 2rem; max-width: 70ch; }


.angle-card { display: block; text-align: left; }
.angle-card__icon { font-size: 1.6rem; color: var(--accent); margin-bottom: 0.9rem; }
.angle-card__title { font-size: 1.2rem; }


.pattern-row__tag { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--accent); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 1; margin-bottom: 0.8rem; }


.module-row__tag { display: inline-block; color: var(--accent); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 1; margin-bottom: 0.6rem; }


.cta-block { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-block__lead { margin: 1rem auto 2rem; max-width: 60ch; }
.cta-block .hero__actions { justify-content: center; }


.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.contact-info__item { display: flex; align-items: flex-start; gap: 1rem; margin: 1.4rem 0; }
.contact-info__item i { color: var(--accent); font-size: 1.15rem; margin-top: 0.2rem; }
.contact-map { margin-top: 2rem; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-form { display: flex; flex-direction: column; gap: 1.3rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field input[type="text"], .form-field input[type="email"], .form-field select, .form-field textarea {
  border: 1.5px solid var(--paper-line); border-radius: var(--radius-sm);
  padding: 0.85rem 1rem; font-family: 'Work Sans', sans-serif; font-size: 1rem;
  background: var(--paper); color: var(--text-on-light); transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 44px;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(221,138,63,0.18);
}
.form-field--checkbox { flex-direction: row; align-items: flex-start; gap: 0.7rem; }
.form-field--checkbox input { width: 20px; height: 20px; margin-top: 3px; flex-shrink: 0; }


.team-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .team-grid { grid-template-columns: 0.7fr 1.3fr; } }
.team-grid__image img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.team-grid__role { color: var(--accent); opacity: 1; margin-bottom: 1rem; display: block; }


.thanks-page { min-height: 70vh; display: flex; align-items: center; background: var(--paper-raised); }
.thanks-page__wrap { width: 100%; display: flex; justify-content: center; padding-top: 5rem; padding-bottom: 5rem; }
.thanks-card { max-width: 520px; text-align: center; }
.thanks-card__icon { font-size: 3rem; color: var(--accent); margin-bottom: 1.5rem; }
.thanks-card .action-primary { margin-top: 1.5rem; }


.legal-layout { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .legal-layout { grid-template-columns: 280px 1fr; align-items: start; } }
.legal-toc {
  position: relative; background: var(--paper-raised); border-radius: var(--radius-md);
  padding: 1.5rem; border: 1px solid var(--paper-line);
}
@media (min-width: 960px) { .legal-toc { position: sticky; top: 110px; } }
.legal-toc__toggle {
  display: flex; width: 100%; justify-content: space-between; align-items: center;
  background: none; border: none; font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 1rem; color: var(--text-on-light); padding: 0.3rem 0;
}
.legal-toc__updated { margin: 0.75rem 0; }
.legal-toc__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.legal-toc__list a { font-size: 0.92rem; color: var(--text-on-light-muted); transition: color 0.3s ease; display: block; padding: 0.2rem 0; }
.legal-toc__list a:hover, .legal-toc__list a.is-active { color: var(--accent-dark); font-weight: 600; }
@media (min-width: 960px) {
  .legal-toc__toggle { display: none; }
  .legal-toc__list { max-height: none !important; }
}
.legal-toc.is-open .legal-toc__list { max-height: 600px; }
.legal-content { max-width: 74ch; }
.legal-content__heading { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 0.9rem; scroll-margin-top: 120px; }
.legal-content h2:first-of-type { margin-top: 1.5rem; }
.legal-content .text-body { margin-bottom: 1rem; max-width: none; }


.site-footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; margin-bottom: 3rem; }
@media (min-width: 800px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer__logo { width: 42px; height: 42px; margin-bottom: 1rem; }
.site-footer__desc { max-width: 32ch; }
.site-footer__heading { text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); opacity: 1; margin-bottom: 1rem; display: block; }
.site-footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.site-footer__col a { color: var(--text-on-dark-muted); font-size: 0.95rem; transition: color 0.3s ease; }
.site-footer__col a:hover { color: var(--accent); }
.site-footer__bottom { border-top: 1px solid var(--ink-line); padding-top: 1.75rem; }


.cookie-card {
  position: fixed; bottom: 1.25rem; left: 1.25rem; z-index: 300;
  max-width: 360px; width: calc(100% - 2.5rem);
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 1.5rem; border: 1px solid var(--paper-line);
  transform: translateY(140%); opacity: 0; transition: transform 0.5s cubic-bezier(.2,.7,.3,1), opacity 0.5s ease;
}
.cookie-card.is-visible { transform: translateY(0); opacity: 1; }
.cookie-card__title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--text-on-light); }
.cookie-card__text { font-size: 0.88rem; line-height: 1.6; color: var(--text-on-light-muted); margin-bottom: 1.1rem; }
.cookie-card__actions { display: flex; flex-direction: column; gap: 0.6rem; }
.cookie-card__btn {
  width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius-pill); font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 0.9rem; border: none; transition: all 0.3s ease; min-height: 44px;
}
.cookie-card__btn--primary { background: var(--accent); color: #1c1204; }
.cookie-card__btn--primary:hover { background: var(--accent-dark); }
.cookie-card__btn--ghost { background: transparent; border: 1.5px solid var(--paper-line); color: var(--text-on-light); }
.cookie-card__btn--ghost:hover { background: var(--paper-raised); }
.cookie-card__btn--link { background: none; color: var(--accent-dark); text-decoration: underline; padding: 0.4rem; }
.cookie-card__settings { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.cookie-card__settings.is-open { max-height: 400px; margin-top: 1rem; }
.cookie-card__option { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0; border-top: 1px solid var(--paper-line); }
.cookie-card__option-label { font-size: 0.88rem; }
.cookie-card__option-desc { font-size: 0.75rem; opacity: 0.65; }


.rellax { will-change: transform; }
</section>