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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--leading-body);
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--green-700);
  color: var(--white);
  padding: 0.6rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  padding-inline: var(--gutter);
  margin-inline: auto;
  box-sizing: border-box;
}

.container--wide {
  max-width: var(--container-wide);
}

.kicker {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: var(--space-3);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.kicker--light {
  color: var(--gold-500);
}

.kicker--red {
  color: var(--red-600);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 18ch;
}

.section-lead {
  margin-top: var(--space-4);
  max-width: 42rem;
  color: var(--ink-2);
}

.section-head {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}

@media (min-width: 768px) {
  .section-head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: var(--space-6);
  }

  .section-head .section-lead {
    margin-top: 0;
  }
}

.section {
  padding: var(--space-8) 0;
}

.section--tight {
  padding: var(--space-7) 0;
}

.section--paper {
  background: var(--white);
}

.section--muted {
  background: var(--paper-2);
}

.section--dark {
  background-color: var(--green-900);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  color: var(--white);
}

.section--dark .section-title,
.section--dark .section-lead {
  color: var(--white);
}

.section--dark .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: var(--space-5);
}

.grid > *,
.split > *,
.trust > *,
.cta-band > *,
.footer-grid > *,
.split-media,
.hero-content,
.header-inner,
.logo,
.form,
.contact-aside {
  min-width: 0;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3,
.grid-4,
.grid-6 {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.btn .icon {
  width: 1.05rem;
  height: 1.05rem;
  display: inline-flex;
}

.btn .icon svg {
  width: 100%;
  height: 100%;
}

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

.btn--primary {
  background: var(--green-700);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-600);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

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

.btn--outline:hover {
  border-color: var(--green-700);
  color: var(--green-700);
}

.btn--light {
  background: var(--white);
  color: var(--green-800);
}

.btn--light:hover {
  background: var(--paper);
}

.btn--whatsapp {
  background: var(--green-800);
  color: var(--white);
}

.btn--whatsapp:hover {
  background: var(--green-700);
}

.icon {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 245, 242, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  max-width: 100%;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.logo img,
.logo-mark,
.logo-mark-svg {
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
}

.logo-mark-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--green-700);
  line-height: 1;
}

.logo-tag {
  margin-top: 0.28rem;
  font-family: var(--font-cond);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 16rem;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
}

.nav a:hover,
.nav a.is-active {
  color: var(--green-700);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.header-actions .btn {
  min-height: 2.6rem;
  padding: 0.45rem 1rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  border: 1.5px solid var(--green-700);
  background: var(--white);
  color: var(--green-700);
  cursor: pointer;
  flex: 0 0 2.75rem;
  position: relative;
  z-index: 6;
}

.nav-toggle .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 1rem 0 1.5rem;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .nav,
  .header-actions {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }

  .logo-tag {
    max-width: 22rem;
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--green-900);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 14, 0.88) 0%, rgba(7, 20, 14, 0.62) 48%, rgba(7, 20, 14, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 20, 14, 0.18) 0%, rgba(7, 20, 14, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 4rem;
  width: 100%;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
  max-width: 18ch;
}

.hero p {
  margin-top: var(--space-5);
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.86);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: var(--space-6);
}

.hero-note {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.62);
  max-width: 32rem;
}

.page-hero {
  background: var(--green-900);
  color: var(--white);
  padding: 4.25rem 0 3.5rem;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 20ch;
}

.page-hero p {
  margin-top: var(--space-4);
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.78);
}

.trust {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}

.trust-number {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--green-700);
}

.trust-number span {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

.trust-copy {
  color: var(--ink-2);
  max-width: 34rem;
}

.pillars {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pillar {
  background: var(--white);
  padding: 1.4rem 1.25rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

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

  .pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.6rem 1.45rem 1.4rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.card:hover {
  border-color: var(--green-700);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 2.7rem;
  height: 2.7rem;
  color: var(--green-700);
  margin-bottom: var(--space-4);
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card .kicker {
  margin-bottom: 0.4rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}

.card p {
  color: var(--ink-2);
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green-700);
  transition: gap 220ms ease, color 220ms ease;
}

.card:hover .card-link {
  gap: 0.7rem;
}

.problem {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.problem:last-child {
  border-bottom: 1px solid var(--line);
}

.problem-index {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-600);
}

.problem h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.problem p {
  margin-top: 0.3rem;
  color: var(--ink-2);
}

.process {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step {
  background: rgba(7, 20, 14, 0.35);
  padding: 1.5rem 1.3rem;
  transition: background 220ms ease, transform 220ms ease;
}

.process-step:hover {
  background: rgba(7, 20, 14, 0.55);
}

.process-step span {
  display: block;
  font-family: var(--font-cond);
  letter-spacing: 0.16em;
  color: var(--gold-500);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.process-step p {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.74);
}

@media (min-width: 900px) {
  .process {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process--light {
  background: var(--line);
  border-color: var(--line);
}

.process--light .process-step {
  background: var(--white);
  color: var(--ink);
}

.process--light .process-step p {
  color: var(--ink-2);
}

.scope span {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-2);
  font-weight: 400;
}

.accordion-item.is-open .accordion-trigger span:last-child {
  transform: rotate(45deg);
}

.split {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
  aspect-ratio: 4 / 3;
}

.split-media figcaption {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  color: var(--ink-3);
}

.frame {
  position: relative;
}

.frame::before,
.frame::after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: 1.5px solid var(--gold-600);
  z-index: 1;
  pointer-events: none;
}

.frame::before {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.frame::after {
  right: 10px;
  bottom: 10px;
  border-left: 0;
  border-top: 0;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-8);
  }

  .split--reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split--reverse .split-media {
    order: -1;
  }
}

.cta-band {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.cta-band p {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
}

@media (min-width: 800px) {
  .cta-band {
    grid-template-columns: 1.4fr auto;
  }
}

.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 1.5rem;
}

.site-footer .logo-name {
  color: var(--white);
}

.site-footer .logo-tag {
  color: #efb4ae;
}

.footer-cta {
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  gap: var(--space-6);
}

.footer-brand p {
  margin-top: 0.9rem;
  max-width: 26rem;
}

.footer-title {
  font-family: var(--font-cond);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold-500);
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-list a:hover {
  color: var(--white);
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.bio-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-top: var(--space-5);
}

.bio-list li {
  display: grid;
  grid-template-columns: 0.7rem 1fr;
  gap: 0.8rem;
  align-items: start;
}

.bio-list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.45rem;
  background: var(--gold-600);
}

.stat-row {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: var(--space-6);
}

.stat {
  background: var(--white);
  padding: 1.15rem 1rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.stat span {
  color: var(--ink-3);
  font-size: var(--text-sm);
}

@media (min-width: 700px) {
  .stat-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.step {
  display: grid;
  gap: 0.65rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step-num {
  font-family: var(--font-cond);
  color: var(--green-700);
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.8rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.step p {
  color: var(--ink-2);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.15rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
}

.accordion-trigger span:last-child {
  color: var(--green-700);
  display: inline-flex;
  transition: transform var(--trans);
}

.accordion-panel {
  display: none;
  padding: 0 0 1.2rem;
  color: var(--ink-2);
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.6rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-span {
    grid-column: 1 / -1;
  }
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-700);
  background: var(--white);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--red-600);
  background: #fdf4f3;
}

.field-error {
  display: none;
  color: var(--red-600);
  font-size: 0.82rem;
}

.field.is-invalid .field-error {
  display: block;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
}

.form-status.is-visible {
  display: block;
}

.form-status--error {
  border-color: var(--red-600);
  color: var(--red-700);
  background: #fdf4f3;
}

.form-status--success {
  border-color: var(--green-700);
  color: var(--green-800);
  background: #eef6f1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.2rem;
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.72;
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.contact-item {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.15rem 1.2rem;
}

.contact-item h3 {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.45rem;
}

.contact-item a:hover {
  color: var(--green-700);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 1.2rem;
}

.breadcrumb a:hover {
  color: var(--white);
}

.scope {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.scope div {
  background: var(--paper);
  padding: 1rem 1.1rem;
}

.scope strong {
  display: block;
  font-family: var(--font-display);
}

@media (min-width: 700px) {
  .scope {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-anim .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.has-anim .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.has-anim .hero-media img {
  animation: heroZoom 22s ease-out forwards;
}

.has-anim .page-hero .container > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.has-anim .page-hero .container > *.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .has-anim .reveal,
  .has-anim .page-hero .container > *,
  .has-anim .hero-media img {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

body.nav-open {
  overflow: hidden;
}

.prose h2,
.prose h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.prose h2 {
  font-size: var(--text-xl);
  margin: 2rem 0 0.8rem;
}

.prose h3 {
  font-size: 1.2rem;
  margin: 1.4rem 0 0.5rem;
}

.prose p + p {
  margin-top: 0.9rem;
}

.prose p {
  color: var(--ink-2);
}

.service-hero-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 900px) {
  .service-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

.notice {
  font-size: var(--text-sm);
  color: var(--ink-3);
  margin-top: var(--space-4);
}

.stack-top {
  margin-top: 1.5rem;
}

.stack-top-lg {
  margin-top: 2rem;
}

@media (max-width: 1023px) {
  .logo-tag {
    display: none;
  }
}

@media (max-width: 699px) {
  .section {
    padding: 3.25rem 0;
  }

  .form {
    padding: 1.15rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3.25rem 0 2.75rem;
  }

  .kicker {
    letter-spacing: 0.06em;
    font-size: 0.72rem;
  }

  .hero h1,
  .section-title,
  .page-hero h1 {
    overflow-wrap: anywhere;
  }
}
