:root {
  --paper: #f6f1e8;
  --paper-deep: #ece4d6;
  --white: #fffdf8;
  --ink: #1c1917;
  --ink-soft: #57534e;
  --ink-faint: #8a847b;
  --forest: #1d3d32;
  --forest-deep: #132820;
  --forest-mid: #2a5646;
  --sage: #d5e0d6;
  --sage-deep: #b7c8b9;
  --copper: #c46a3a;
  --copper-deep: #a3542b;
  --copper-soft: #f3d9c8;
  --line: rgba(28, 25, 23, 0.1);
  --shadow: 0 18px 50px rgba(19, 40, 32, 0.1);
  --radius: 22px;
  --radius-sm: 14px;
  --header: 76px;
  --max: 1120px;
  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(196, 106, 58, 0.08), transparent 50%),
    radial-gradient(900px 400px at -10% 20%, rgba(29, 61, 50, 0.07), transparent 45%),
    var(--paper);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  letter-spacing: -0.011em;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--forest-mid);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.display {
  font-family: var(--font-serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1,
.display {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.lede {
  max-width: 38rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.section {
  padding: 88px 0;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  border-bottom: 1px solid transparent;
  background: rgba(246, 241, 232, 0.78);
  backdrop-filter: blur(16px);
}

.header.is-scrolled {
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand .mark,
.brand img {
  width: 34px;
  height: 44px;
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text small {
  color: var(--forest-mid);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-text strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 560;
  letter-spacing: -0.03em;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.nav-toggle span {
  position: relative;
  margin: 0 auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

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

.btn-primary {
  background: var(--copper);
  color: #fff;
}

.btn-primary:hover {
  background: var(--copper-deep);
}

.btn-dark {
  background: var(--forest);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--forest-deep);
}

.btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--white);
}

.btn-arrow {
  font-weight: 500;
  line-height: 1;
}

.nav {
  gap: 18px;
}

.nav .btn {
  white-space: nowrap;
  padding: 0 16px;
  font-size: 0.86rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0 28px;
}

.hero-copy p {
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 22px;
  color: var(--ink-faint);
  font-size: 0.92rem;
}

.payslip {
  position: relative;
  padding: 28px 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.payslip::before {
  content: "";
  position: absolute;
  inset: 10px auto auto 10px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 106, 58, 0.16), transparent 68%);
}

.payslip-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.payslip-top span {
  color: var(--ink-faint);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payslip-top strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.stamp {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border: 1.5px solid var(--forest);
  border-radius: 6px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.payslip-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.payslip-row.total {
  margin-top: 6px;
  border-top: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 650;
}

.payslip-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  color: var(--ink-faint);
  font-size: 0.82rem;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 18px 0 10px;
}

.trust-item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.65);
}

.trust-item strong {
  display: block;
  font-size: 0.98rem;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.partner-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin: 22px auto 0;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.partner-line p {
  margin: 0;
  color: var(--ink-soft);
}

.partner-line strong {
  color: var(--ink);
}

.partner-line a {
  color: var(--forest);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.band {
  background: var(--forest);
  color: var(--white);
}

.band .lede,
.band .eyebrow {
  color: #d7e4dc;
}

.band .eyebrow::before {
  background: var(--copper);
}

.band .card,
.band .step,
.band .service-card {
  color: var(--ink);
}

.band .card h3,
.band .step h3,
.band .service-card h3 {
  color: var(--ink);
}

.band .card p,
.band .card li,
.band .step p,
.band .service-card p {
  color: var(--ink-soft);
}

.band .card .checklist li {
  border-bottom-color: var(--line);
}

.band .checklist li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.avoid-grid,
.card-grid,
.split-grid,
.steps,
.service-grid {
  display: grid;
  gap: 18px;
}

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

.card,
.step,
.service-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

.card-num,
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 700;
}

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

.who-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.who-list li {
  padding: 18px 20px;
  border-left: 3px solid var(--copper);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--white);
}

.quote {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.quote blockquote {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 520;
  line-height: 1.25;
}

.quote cite {
  color: var(--ink-soft);
  font-style: normal;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(196, 106, 58, 0.16), transparent 40%),
    var(--forest);
  color: var(--white);
}

.cta-panel h2 {
  margin-bottom: 10px;
}

.cta-panel p {
  max-width: 36rem;
  margin: 0;
  color: #d7e4dc;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: none;
}

.page-hero {
  padding: 54px 0 10px;
}

.page-hero .lede {
  font-size: 1.2rem;
}

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

.service-card h3 {
  font-size: 1.35rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.checklist {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--copper);
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.timeline-item strong {
  color: var(--forest);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.contact-card,
.form {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-card p {
  color: var(--ink-soft);
}

.contact-card a {
  color: var(--forest);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

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

.form-success {
  display: none;
  padding: 18px;
  border-radius: 14px;
  background: var(--sage);
  color: var(--forest-deep);
}

.form-error {
  display: none;
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--copper-soft);
  color: var(--copper-deep);
}

.form.is-sent .form-success {
  display: block;
}

.form.is-sent .form-fields,
.form.is-sent .form-error {
  display: none;
}

.form.is-error .form-error {
  display: block;
}

.form.is-sending [type="submit"] {
  opacity: 0.7;
  pointer-events: none;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 140, 70, 0.38);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 32px rgba(18, 140, 70, 0.46);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(37, 211, 102, 0.45);
  border-radius: 50%;
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::after {
    animation: none;
  }
}

.price-hero-sum {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 36px;
}

.price-highlight,
.price-setup {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.price-highlight {
  background: var(--forest);
  color: var(--white);
}

.price-highlight p,
.price-setup p {
  margin: 8px 0 0;
  color: inherit;
}

.price-highlight p {
  color: #d7e4dc;
}

.price-amount {
  display: block;
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
}

.price-amount small {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.price-table th,
.price-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  color: var(--ink-faint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table td:last-child {
  font-weight: 650;
}

.examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.example {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.example strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
}

.example span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

.estimator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.estimator label {
  display: block;
  margin-bottom: 8px;
  font-weight: 650;
}

.estimator input[type="number"] {
  width: 100%;
  max-width: 180px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.estimator-result {
  padding: 22px;
  border-radius: 16px;
  background: var(--sage);
}

.estimator-result strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
}

.estimator-result p {
  margin: 8px 0 0;
  color: var(--forest-deep);
}

.footer {
  padding: 48px 0 96px;
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

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

.footer h3 {
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .contact-layout,
  .footer-top,
  .cta-panel,
  .trust,
  .avoid-grid,
  .card-grid,
  .steps,
  .values,
  .who-list,
  .service-grid,
  .form-row,
  .timeline-item,
  .price-hero-sum,
  .examples,
  .include-grid,
  .estimator {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .footer-bottom {
    display: block;
  }

  .cta-actions {
    margin-top: 22px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .nav a,
  .nav .btn {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 0;
  }

  .hero {
    gap: 32px;
    padding-top: 28px;
  }

  .section {
    padding: 64px 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 1140px) {
  .header {
    position: sticky;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .nav a,
  .nav .btn {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 0;
    white-space: normal;
    font-size: 0.95rem;
  }
}
