:root {
  --ink: #17372e;
  --ink-deep: #102b24;
  --green: #25765d;
  --green-hover: #1f624f;
  --green-soft: #eef5f1;
  --green-faint: #f7faf8;
  --paper: #ffffff;
  --paper-warm: #fafaf7;
  --muted: #61756e;
  --muted-soft: #82928c;
  --line: #e1e9e4;
  --whatsapp: #218463;
  --page-max: 1180px;
  --page-gutter: clamp(20px, 4vw, 52px);
  --section-space: clamp(88px, 10vw, 150px);
  --image-radius: 28px;
  --control-radius: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

::selection {
  color: var(--ink-deep);
  background: #cfe2d8;
}

.section-shell,
.site-header,
.footer-inner {
  width: min(
    var(--page-max),
    calc(100% - (var(--page-gutter) * 2))
  );
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid #c8d8cf;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--green);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted-soft);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #4e655d;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a,
.mobile-menu nav a,
.email-link,
.contact-email,
.channel-block a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.mobile-menu nav a:hover,
.email-link:hover,
.contact-email:hover,
.channel-block a:hover {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-cta,
.button-primary,
.button-contact {
  border: 1px solid var(--green);
  color: var(--paper);
  background: var(--green);
}

.header-cta {
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--control-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 750;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.header-cta:hover,
.button-primary:hover,
.button-contact:hover {
  border-color: var(--green-hover);
  background: var(--green-hover);
  transform: translateY(-1px);
}

.mobile-menu {
  position: relative;
  display: none;
  border: 0;
}

.mobile-menu > summary {
  min-width: 90px;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid #cad8d1;
  border-radius: var(--control-radius);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  color: var(--ink);
  background: var(--paper);
  font-size: 13px;
  font-weight: 700;
}

.mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.mobile-menu > summary > i {
  width: 16px;
  display: grid;
  gap: 4px;
}

.mobile-menu > summary > i span {
  width: 16px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease;
}

.mobile-menu[open] > summary > i span:first-child {
  transform: translateY(2.5px) rotate(45deg);
}

.mobile-menu[open] > summary > i span:last-child {
  transform: translateY(-2.5px) rotate(-45deg);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(272px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(16, 43, 36, 0.1);
}

.mobile-menu nav a {
  min-height: 48px;
  padding: 0 13px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  color: #476058;
  font-size: 14px;
  font-weight: 650;
}

.mobile-menu nav a:hover {
  background: var(--green-faint);
}

.hero {
  min-height: 650px;
  padding-block: clamp(60px, 7vw, 92px) clamp(104px, 10vw, 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: clamp(52px, 6vw, 78px);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--green);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow.muted,
.eyebrow.light {
  color: #6d837a;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1,
h2 {
  letter-spacing: -0.045em;
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  color: var(--ink-deep);
  font-family: "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 4.2vw, 60px);
  font-weight: 400;
  line-height: 1.02;
}

h1 em {
  display: block;
  color: var(--green);
  font-weight: 400;
}

h2 {
  margin-bottom: 24px;
  color: var(--ink-deep);
  font-family: "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.35vw, 56px);
  font-weight: 400;
  line-height: 1.08;
}

.hero-lead {
  max-width: 61ch;
  margin-bottom: 24px;
  color: #586d65;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.72;
}

.hero-transparency {
  max-width: 61ch;
  margin-bottom: 29px;
  padding: 13px 0 13px 18px;
  border-left: 2px solid #b9d3c6;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  color: #71827c;
  font-size: 13px;
  line-height: 1.55;
}

.hero-transparency strong {
  color: var(--ink);
  font-weight: 650;
}

.hero-transparency b {
  width: 100%;
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
}

.button {
  min-height: 58px;
  padding: 0 27px;
  border-radius: var(--control-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button-secondary {
  border: 1px solid #c6d5ce;
  color: var(--ink);
  background: transparent;
}

.button-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.hero-cta-note {
  max-width: 58ch;
  margin: 1px 0 0;
  color: #7a8b85;
  font-size: 12px;
  line-height: 1.6;
}

.email-link {
  color: #6a7c76;
  font-size: 13px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.email-link strong {
  color: var(--ink);
  font-weight: 700;
}

.portrait-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 5;
  justify-self: end;
}

.portrait-placeholder,
.portrait-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--image-radius);
}

.portrait-image {
  display: block;
  object-fit: cover;
  object-position: center bottom;
}

.portrait-placeholder {
  background: #e8f0eb;
  isolation: isolate;
}

.portrait-placeholder::after,
.portrait-orbit {
  display: none;
}

.portrait-silhouette {
  position: absolute;
  inset: 0;
}

.portrait-head {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 32%;
  height: 32%;
  border-radius: 48% 48% 45% 45%;
  background: rgba(37, 118, 93, 0.15);
  transform: translateX(-50%);
}

.portrait-body {
  position: absolute;
  left: 50%;
  bottom: -18%;
  width: 90%;
  height: 62%;
  border-radius: 50% 50% 0 0;
  background: rgba(37, 118, 93, 0.15);
  transform: translateX(-50%);
}

.portrait-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 15px 17px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
}

.portrait-note span,
.portrait-card span {
  display: block;
  margin-bottom: 4px;
  color: #74877f;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.portrait-note strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.portrait-card {
  position: absolute;
  top: 28px;
  right: 28px;
  bottom: auto;
  width: 218px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
}

.portrait-wrap:has(.portrait-placeholder) .portrait-card {
  top: 28px;
  bottom: auto;
}

.portrait-card strong {
  color: var(--ink);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.32;
}

.section,
.why-section,
.pricing-section,
.fees-section,
.process-section,
.contact-section {
  padding-block: var(--section-space);
}

.section-intro {
  margin-bottom: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: 0.72fr 1.45fr;
  align-items: start;
  gap: clamp(48px, 7vw, 86px);
}

.section-intro h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

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

.service-row {
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 58px minmax(220px, 0.78fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 30px;
}

.service-number {
  padding-top: 5px;
  color: #8da097;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 16px;
  font-style: italic;
}

.service-row h3 {
  margin-bottom: 0;
  color: var(--ink-deep);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.service-row p {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.why-section {
  background: var(--green-faint);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.15fr;
  align-items: center;
  gap: clamp(72px, 10vw, 130px);
}

.why-visual {
  min-height: 350px;
  display: grid;
  place-items: center;
}

.experience-figure {
  text-align: center;
}

.experience-figure > span {
  color: #d5e6dd;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(150px, 17vw, 220px);
  font-style: italic;
  line-height: 0.78;
}

.experience-figure p {
  margin: 30px 0 0;
  color: #789087;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.why-copy {
  max-width: 660px;
}

.why-copy > p:not(.eyebrow) {
  max-width: 61ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.experience-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.experience-list li {
  position: relative;
  padding: 18px 0 18px 22px;
  border-bottom: 1px solid var(--line);
  color: #435e55;
  font-size: 13px;
  line-height: 1.6;
}

.experience-list li::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8ab5a2;
}

.pricing-section {
  position: relative;
}

.rule-badge {
  margin-bottom: 30px;
  color: var(--green);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: start;
  gap: clamp(72px, 9vw, 126px);
}

.pricing-grid h2 {
  max-width: 14ch;
}

.pricing-lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.cost-stack {
  padding: 8px 30px 28px;
  border-radius: 20px;
  background: var(--green-faint);
}

.cost-stack > div {
  min-height: 74px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
}

.cost-stack > div span {
  color: #8fa299;
  font-family: "Iowan Old Style", Georgia, serif;
  font-style: italic;
}

.cost-stack > div strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.cost-stack > p {
  margin: 24px 0 0;
  color: var(--green);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 23px;
}

.cost-stack > p span {
  margin-right: 14px;
  color: #8da097;
}

.pricing-principle {
  display: block;
  margin-top: 22px;
  color: var(--green);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 19px;
  font-weight: 400;
}

.fees-section {
  background: var(--green-soft);
}

.fees-heading {
  margin-bottom: clamp(44px, 6vw, 66px);
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  align-items: end;
  gap: clamp(56px, 8vw, 100px);
}

.fees-heading h2 {
  max-width: 15ch;
  margin-bottom: 0;
}

.fees-heading > p {
  max-width: 52ch;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

.fee-table-wrap {
  overflow: hidden;
  border-top: 1px solid #cbd9d1;
  border-bottom: 1px solid #cbd9d1;
}

.fee-table-wrap table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.fee-table-wrap th,
.fee-table-wrap td {
  padding: 22px 4px;
  text-align: left;
  overflow-wrap: anywhere;
}

.fee-table-wrap th {
  color: #70847c;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.fee-table-wrap th:last-child,
.fee-table-wrap td:last-child {
  text-align: right;
}

.fee-table-wrap td {
  border-top: 1px solid #d5e0da;
  color: var(--ink);
  font-size: 15px;
}

.fee-table-wrap td:last-child {
  color: var(--green);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 29px;
}

.fee-examples {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid #cbd9d1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(42px, 7vw, 82px);
}

.fee-examples p {
  margin: 0;
}

.fee-examples p:first-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fee-examples p + p {
  max-width: 66ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.76;
}

.fee-examples strong {
  color: var(--ink);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.fee-examples span {
  color: #70847c;
  font-size: 11px;
}

.fee-examples b {
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
}

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

.process-heading {
  max-width: 760px;
  margin-bottom: clamp(52px, 7vw, 76px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 52px);
}

.process-grid article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.process-grid span {
  color: #7e958b;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.process-grid h3 {
  margin: 38px 0 13px;
  color: var(--ink-deep);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.24;
}

.process-grid p {
  max-width: 34ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.76fr 1.16fr;
  gap: clamp(72px, 9vw, 124px);
}

.faq-heading {
  max-width: 430px;
}

.faq-heading > p:last-child {
  max-width: 46ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 88px;
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 40px 1fr 22px;
  align-items: center;
  gap: 14px;
  color: var(--ink-deep);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 19px;
  line-height: 1.35;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: #93a69d;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.faq-list summary i {
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 62ch;
  margin: -2px 22px 30px 54px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.76;
}

.contact-section {
  text-align: center;
  background: var(--green-soft);
}

.contact-inner {
  max-width: 900px;
}

.eyebrow.centered {
  justify-content: center;
}

.contact-inner h2 {
  max-width: 15ch;
  margin-inline: auto;
}

.contact-inner > p:not(.eyebrow) {
  max-width: 62ch;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.button-contact {
  min-height: 60px;
  padding-inline: 28px;
}

.contact-email {
  padding-bottom: 3px;
  border-bottom: 1px solid #9fb3aa;
  color: var(--ink);
  font-size: 14px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.channel-block {
  max-width: 650px;
  margin: 66px auto 0;
  padding-top: 24px;
  border-top: 1px solid #d4dfd9;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  color: #71857c;
  font-size: 12px;
}

.channel-block a {
  color: #49645a;
  font-weight: 650;
}

.channel-block p {
  width: 100%;
  max-width: 58ch;
  margin: 8px auto 0;
  color: #83958e;
  font-size: 12px;
  line-height: 1.62;
}

footer {
  background: var(--paper-warm);
}

.footer-inner {
  min-height: 124px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  color: #71837c;
  font-size: 11px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p:last-child {
  text-align: right;
}

.footer-brand {
  font-size: 15px;
}

@media (min-width: 901px) {
  .footer-inner {
    padding-right: max(96px, var(--page-gutter));
  }
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  width: 52px;
  min-height: 52px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--control-radius);
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--paper);
  background: var(--whatsapp);
  box-shadow: 0 10px 28px rgba(23, 72, 58, 0.18);
  font-size: 12px;
  font-weight: 750;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.floating-whatsapp > span:last-child {
  display: none;
}

.floating-whatsapp:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
}

.whatsapp-dot {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Iowan Old Style", Georgia, serif;
  font-style: italic;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.78fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(50px, 5.45vw, 57px);
  }

  .portrait-wrap {
    max-width: 460px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 58px;
  }
}

@media (max-width: 900px) {
  .header-cta {
    display: none;
  }

  .hero {
    padding-block: 64px 108px;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.72fr);
    align-items: start;
    gap: 36px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(45px, 6.5vw, 53px);
  }

  .portrait-wrap {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    justify-self: stretch;
  }

  .section-intro,
  .pricing-grid,
  .fees-heading,
  .why-grid,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service-row {
    grid-template-columns: 48px 1fr;
    gap: 10px 20px;
  }

  .service-row p {
    grid-column: 2;
  }

  .why-visual {
    min-height: 250px;
    order: 2;
  }

  .why-copy {
    max-width: 680px;
    order: 1;
  }

  .experience-figure > span {
    font-size: 170px;
  }

  .pricing-grid h2,
  .fees-heading h2 {
    max-width: 17ch;
  }

  .fee-examples {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-heading {
    max-width: 600px;
  }

  .footer-inner {
    min-height: 0;
    padding-block: 44px 98px;
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .footer-inner p:last-child {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

@media (min-width: 761px) and (max-height: 900px) {
  .hero {
    min-height: auto;
    padding-block: 42px 68px;
    gap: clamp(40px, 5vw, 68px);
  }

  .hero .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(48px, 3.8vw, 56px);
  }

  .hero-lead {
    margin-bottom: 18px;
    font-size: clamp(15px, 1.15vw, 16px);
    line-height: 1.62;
  }

  .hero-transparency {
    margin-bottom: 20px;
    padding-block: 10px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero .button-primary {
    min-height: 54px;
  }

  .portrait-wrap {
    max-width: 430px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 74px;
    gap: 14px;
  }

  .brand {
    gap: 9px;
    font-size: 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .brand small {
    display: none;
  }

  .mobile-menu > summary {
    min-width: 84px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-block: 50px 88px;
    gap: 60px;
  }

  .hero h1 {
    font-size: clamp(43px, 12vw, 50px);
    line-height: 1;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-transparency {
    padding-block: 11px;
    font-size: 12px;
  }

  .hero-actions {
    width: 100%;
    gap: 15px;
  }

  .button {
    min-height: 58px;
    padding-block: 12px;
    text-align: center;
  }

  .button-primary {
    width: 100%;
    padding-inline: 18px;
  }

  .portrait-wrap {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    justify-self: center;
  }

  .portrait-placeholder,
  .portrait-image {
    border-radius: 23px;
  }

  .portrait-card {
    top: 16px;
    right: 16px;
    bottom: auto;
    width: min(205px, 60%);
    padding: 14px 16px;
  }

  .portrait-wrap:has(.portrait-placeholder) .portrait-card {
    top: 16px;
  }

  .portrait-card strong {
    font-size: 15px;
  }

  .portrait-note {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 14px 15px;
  }

  .section-intro,
  .pricing-grid,
  .fees-heading,
  .why-grid,
  .faq-section {
    gap: 44px;
  }

  h2 {
    font-size: clamp(37px, 10.4vw, 47px);
  }

  .service-row {
    padding-block: 29px;
    grid-template-columns: 38px 1fr;
    gap: 9px 13px;
  }

  .service-row h3 {
    font-size: 24px;
  }

  .service-row p {
    font-size: 14.5px;
  }

  .why-visual {
    min-height: 220px;
  }

  .experience-figure > span {
    font-size: 145px;
  }

  .why-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .experience-list li {
    font-size: 13px;
  }

  .pricing-lead {
    font-size: 15px;
  }

  .cost-stack {
    padding-inline: 21px;
  }

  .cost-stack > div {
    min-height: 70px;
    grid-template-columns: 36px 1fr;
  }

  .fees-heading > p {
    font-size: 14px;
  }

  .fee-table-wrap th,
  .fee-table-wrap td {
    padding: 18px 2px;
  }

  .fee-table-wrap th:first-child,
  .fee-table-wrap td:first-child {
    width: 60%;
  }

  .fee-table-wrap th {
    font-size: 9px;
  }

  .fee-table-wrap td {
    font-size: 13px;
  }

  .fee-table-wrap td:last-child {
    font-size: 25px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .process-grid article {
    padding-top: 22px;
  }

  .process-grid h3 {
    margin-top: 30px;
  }

  .process-grid p {
    max-width: 48ch;
    font-size: 14px;
  }

  .faq-list summary {
    min-height: 84px;
    grid-template-columns: 30px 1fr 19px;
    gap: 11px;
    font-size: 18px;
  }

  .faq-list details > p {
    margin: 0 10px 28px 41px;
    font-size: 14px;
  }

  .contact-inner > p:not(.eyebrow) {
    font-size: 15px;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
  }

  .button-contact {
    width: 100%;
    min-height: 60px;
    padding-inline: 15px;
  }

  .channel-block {
    margin-top: 58px;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  :root {
    --page-gutter: 16px;
  }

  .site-header {
    min-height: 72px;
  }

  .mobile-menu > summary {
    min-width: 80px;
    padding-inline: 13px;
  }

  .hero {
    padding-block: 46px 84px;
  }

  .hero h1 {
    font-size: clamp(41px, 11.4vw, 47px);
  }

  .button-primary,
  .button-contact {
    font-size: 13.5px;
  }

  .portrait-note strong {
    font-size: 12px;
  }

  h2 {
    font-size: clamp(36px, 10vw, 43px);
  }

  .fee-table-wrap th {
    letter-spacing: 0.08em;
  }

  .contact-inner h2 {
    overflow-wrap: anywhere;
  }

  .contact-email {
    max-width: 100%;
    line-height: 1.5;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 390px) {
  .brand {
    font-size: 15px;
  }

  .mobile-menu > summary {
    min-width: 76px;
    gap: 8px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(40px, 11.4vw, 44px);
  }

  .hero-lead {
    font-size: 14.5px;
  }

  .fee-table-wrap th {
    font-size: 8.5px;
  }

  .faq-list summary {
    grid-template-columns: 27px 1fr 18px;
    gap: 9px;
    font-size: 17px;
  }

  .faq-list details > p {
    margin-left: 36px;
  }
}

.not-found-page {
  min-height: 100vh;
}

.not-found-shell {
  width: min(
    var(--page-max),
    calc(100% - (var(--page-gutter) * 2))
  );
  min-height: 100vh;
  margin-inline: auto;
  padding-block: 40px;
  display: flex;
  flex-direction: column;
}

.not-found-content {
  width: min(680px, 100%);
  margin-block: auto;
  padding-block: 80px;
}

.not-found-content h1 {
  max-width: 620px;
  margin: 0 0 24px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.not-found-content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 17px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
