:root {
  --ink: #10263d;
  --ink-deep: #091b2d;
  --ink-soft: #4d5e6f;
  --paper: #f7f5f0;
  --white: #ffffff;
  --line: #d9d7cf;
  --bronze: #9a773f;
  --bronze-light: #dfcfad;
  --whatsapp: #1e6f5c;
  --shadow: 0 22px 58px rgba(13, 34, 54, 0.14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

body {
  margin: 0;
  padding-bottom: calc(70px + env(safe-area-inset-bottom));
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20.8px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.shell {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.topline {
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15.6px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.45;
  text-transform: uppercase;
}

.topline-inner {
  display: flex;
  align-items: center;
  min-height: 46px;
}

.topline-inner span:first-child,
.topline-separator { display: none; }

.topline-separator {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--bronze-light);
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(247, 245, 240, 0.97);
  border-bottom: 1px solid rgba(16, 38, 61, 0.12);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

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

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(16, 38, 61, 0.45);
  border-radius: 2px 2px 12px 2px;
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--bronze);
}

.brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  overflow: hidden;
  max-width: 176px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav { display: none; }

.header-phone {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
}

.header-phone span { display: none; }
.header-phone strong { font-size: 0; }

.header-phone strong::after {
  content: "Llamar";
  display: grid;
  place-items: center;
  min-width: 74px;
  min-height: 46px;
  border: 1px solid rgba(16, 38, 61, 0.34);
  border-radius: 3px;
  font-size: 18.2px;
  line-height: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 56px;
  background:
    radial-gradient(circle at 100% 0%, rgba(169, 134, 75, 0.13), transparent 26%),
    linear-gradient(145deg, #faf9f6 0%, #f4f1ea 68%, #ede7dc 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(169, 134, 75, 0.18);
  border-radius: 50%;
}

.hero::before {
  right: -250px;
  top: -260px;
  width: 520px;
  height: 520px;
}

.hero::after {
  right: -165px;
  top: -175px;
  width: 350px;
  height: 350px;
}

.hero-rule {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(var(--bronze), transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}

.hero-copy { min-width: 0; }

.professional-identity {
  display: grid;
  gap: 7px;
  margin: 0 0 24px;
  padding: 3px 0 4px 17px;
  border-left: 2px solid var(--bronze);
}

.professional-identity strong {
  color: var(--ink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.professional-identity span {
  color: var(--bronze);
  font-size: 14.3px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--bronze);
}

h1 {
  margin: 0;
  color: var(--ink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 11.8vw, 52px);
  font-weight: 500;
  letter-spacing: -0.042em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-lead {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 23.4px;
  line-height: 1.65;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.button {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 19.5px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:focus-visible,
.contact-channel:focus-visible,
.brand:focus-visible,
.desktop-nav a:focus-visible,
.header-phone:focus-visible,
.mobile-contact-dock a:focus-visible,
.final-channel:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(169, 134, 75, 0.42);
  outline-offset: 3px;
}

.button-primary { background: var(--ink); color: var(--white); }

.icon-arrow,
.channel-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-arrow { width: 20px; height: 20px; flex: 0 0 auto; stroke-width: 1.5; }

.assurance-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  margin: 34px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.assurance-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  color: var(--ink-soft);
  font-size: 16.9px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.45;
  text-transform: uppercase;
}

.assurance-list span {
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0;
}

.contact-panel {
  position: relative;
  width: 100%;
  padding: 28px 18px 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 38, 61, 0.13);
  border-top: 4px solid var(--ink);
  box-shadow: var(--shadow);
}

.contact-panel::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 24px;
  height: 24px;
  border-top: 1px solid var(--bronze);
  border-right: 1px solid var(--bronze);
}

.panel-heading {
  margin-bottom: 20px;
  padding-right: 27px;
}

.panel-heading p {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.panel-heading span {
  color: var(--ink-soft);
  font-size: 19.5px;
  line-height: 1.5;
}

.contact-channel {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 12px 8px;
  border-top: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.contact-channel.featured {
  margin-bottom: 6px;
  padding-inline: 12px;
  border: 0;
  background: var(--whatsapp);
  color: var(--white);
}

.icon-frame {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(16, 38, 61, 0.17);
  border-radius: 50%;
}

.featured .icon-frame { border-color: rgba(255, 255, 255, 0.34); }

.channel-icon {
  width: 21px;
  height: 21px;
  stroke-width: 1.55;
}

.channel-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.channel-copy small {
  color: var(--ink-soft);
  font-size: 14.3px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.featured .channel-copy small { color: rgba(255, 255, 255, 0.78); }

.channel-copy strong {
  overflow-wrap: anywhere;
  font-size: 19.5px;
  font-weight: 700;
  line-height: 1.35;
}

.email-copy strong { font-size: 16.9px; }
.channel-arrow { color: var(--bronze); font-size: 20px; }
.featured .channel-arrow { color: rgba(255, 255, 255, 0.88); }

.contact-note {
  margin: 20px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 16.9px;
  line-height: 1.6;
}

.audience-bar {
  background: var(--white);
  border-top: 1px solid rgba(16, 38, 61, 0.09);
  border-bottom: 1px solid rgba(16, 38, 61, 0.09);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-block: 36px;
}

.audience-grid > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.audience-kicker {
  color: var(--bronze);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.audience-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.27;
}

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

.audience-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 19.5px;
  font-weight: 700;
  line-height: 1.5;
}

.audience-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
}

.services-section {
  padding: 72px 0 68px;
  background: #faf9f6;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 23px;
  margin-bottom: 35px;
}

.section-intro .eyebrow { margin-bottom: 16px; }

.section-intro h2,
.process-heading h2,
.details-heading h2,
.final-contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 10.4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.038em;
  line-height: 1.08;
  text-wrap: balance;
}

.section-intro > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 20.8px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 100%;
  padding: 29px 20px 32px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card-heading {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 13px;
  padding-bottom: 22px;
  border-bottom: 1px solid #ebe9e3;
}

.service-card-heading > span {
  padding-top: 4px;
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

.service-card h3 {
  margin: 0 0 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.service-card-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 19.5px;
  line-height: 1.6;
}

.service-card ul {
  display: grid;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding: 14px 0 14px 22px;
  border-bottom: 1px solid #efede8;
  color: #30475c;
  font-size: 20.8px;
  line-height: 1.6;
}

.service-card li:last-child { border-bottom: 0; }

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 9px;
  height: 1px;
  background: var(--bronze);
}

.service-help {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  padding: 26px 21px;
  background: #f0ece3;
  border: 1px solid var(--line);
  border-top: 0;
}

.service-help > span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.3;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--bronze);
  font-size: 18.2px;
  font-weight: 700;
  line-height: 1.45;
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  background: var(--ink-deep);
  color: var(--white);
}

.process-section::after {
  content: "";
  position: absolute;
  left: -250px;
  bottom: -380px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(223, 207, 173, 0.13);
  border-radius: 50%;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 43px;
}

.eyebrow.light { color: var(--bronze-light); }
.eyebrow.light::before { background: var(--bronze-light); }

.process-heading > p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20.8px;
  line-height: 1.72;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--white);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  gap: 14px;
  padding: 26px 0 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list > li > span {
  padding-top: 4px;
  color: var(--bronze-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

.process-list h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 19.5px;
  line-height: 1.72;
}

.details-section {
  padding: 74px 0 58px;
  background: var(--paper);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}

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

.details-list > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.details-list span {
  padding-top: 3px;
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.details-list p {
  margin: 0;
  font-size: 20.8px;
  line-height: 1.6;
}

.legal-note {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 16.9px;
  line-height: 1.7;
}

.final-contact {
  padding: 74px 0;
  background: #17324b;
  color: var(--white);
}

.final-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.final-contact-grid > div:first-child > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 20.8px;
  line-height: 1.7;
}

.final-contact-actions { border-top: 1px solid rgba(255, 255, 255, 0.2); }

.final-channel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 7px 14px;
  align-items: center;
  min-height: 84px;
  padding-block: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: padding 180ms ease, background 180ms ease;
}

.final-channel span {
  grid-column: 1;
  color: var(--bronze-light);
  font-size: 14.3px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.final-channel strong {
  grid-column: 1;
  overflow-wrap: anywhere;
  font-size: 19.5px;
  line-height: 1.4;
}

.final-channel i {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--bronze-light);
  font-size: 20px;
  font-style: normal;
}

.site-footer {
  padding: 52px 0 27px;
  background: #071521;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 39px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark.inverse {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--bronze-light);
}

.footer-brand strong {
  display: block;
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16.9px;
  line-height: 1.55;
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  gap: 12px;
}

.footer-contact > span {
  margin-bottom: 3px;
  color: var(--bronze-light);
  font-size: 14.3px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-contact a {
  max-width: 100%;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18.2px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14.3px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.mobile-contact-dock {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: calc(70px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px rgba(9, 27, 45, 0.14);
}

.mobile-contact-dock a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 19.5px;
  font-weight: 700;
}

.mobile-contact-dock .whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.mobile-contact-dock .channel-icon {
  width: 21px;
  height: 21px;
}

@media (min-width: 641px) {
  body { padding-bottom: 0; }

  .shell { width: min(100% - 48px, 1180px); }

  .topline { font-size: 14.3px; letter-spacing: 0.12em; }

  .topline-inner {
    min-height: 36px;
    gap: 14px;
  }

  .topline-inner span:first-child,
  .topline-separator { display: inline-block; }

  .header-inner { min-height: 86px; gap: 28px; }
  .brand { gap: 13px; }
  .brand-mark { width: 45px; height: 49px; }
  .brand-copy strong { max-width: none; font-size: 19px; }

  .header-phone {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding-left: 22px;
    border-left: 1px solid var(--line);
  }

  .header-phone span {
    display: inline;
    color: var(--ink-soft);
    font-size: 14.3px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .header-phone strong { font-size: 19.5px; letter-spacing: 0.02em; }
  .header-phone strong::after { display: none; }

  .hero { padding: 72px 0 78px; }
  .hero-grid { gap: 50px; }
  .hero-copy { max-width: 760px; }
  .professional-identity strong { font-size: 29px; }
  .professional-identity span { font-size: 15.6px; }
  h1 { max-width: 720px; font-size: clamp(50px, 7.4vw, 64px); }
  .hero-lead { max-width: 660px; font-size: 24.7px; }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .button { width: auto; min-height: 58px; padding-inline: 24px; }

  .assurance-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding-top: 24px;
  }

  .assurance-list li {
    display: block;
    font-size: 16.9px;
  }

  .assurance-list span { display: block; margin-bottom: 7px; }

  .contact-panel {
    max-width: 620px;
    padding: 34px 31px 29px;
  }

  .contact-channel { padding-inline: 13px; }
  .email-copy strong { font-size: 18.2px; }

  .audience-grid { padding-block: 40px; }

  .audience-grid ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .services-section { padding: 94px 0 88px; }

  .section-intro h2,
  .process-heading h2,
  .details-heading h2,
  .final-contact h2 { font-size: clamp(44px, 6.3vw, 56px); }

  .service-card { padding: 34px 32px 37px; }
  .service-card-heading { grid-template-columns: 34px minmax(0, 1fr); gap: 17px; }

  .service-help {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 29px 30px;
  }

  .process-section { padding: 96px 0; }
  .button-light { width: auto; }
  .process-list li { grid-template-columns: 40px minmax(0, 1fr); gap: 22px; }
  .details-section { padding: 94px 0 74px; }
  .final-contact { padding: 88px 0; }

  .final-channel {
    grid-template-columns: 126px minmax(0, 1fr) 24px;
    gap: 20px;
    min-height: 80px;
    padding-block: 0;
  }

  .final-channel span { grid-column: 1; }
  .final-channel strong { grid-column: 2; }
  .final-channel i { grid-column: 3; grid-row: 1; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }

  .footer-bottom {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  .mobile-contact-dock { display: none; }
}

@media (min-width: 981px) {
  html { scroll-padding-top: 28px; }

  .header-inner { min-height: 90px; gap: 32px; }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
    font-size: 18.2px;
    font-weight: 700;
  }

  .desktop-nav a {
    position: relative;
    padding-block: 12px;
  }

  .desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 3px;
    height: 1px;
    background: var(--bronze);
    transition: right 180ms ease;
  }

  .hero { padding: 82px 0 88px; }

  .hero-grid {
    grid-template-columns: minmax(0, 1.13fr) minmax(390px, 0.75fr);
    align-items: center;
    gap: 72px;
  }

  .hero-copy { max-width: 700px; }
  h1 { font-size: clamp(58px, 5.25vw, 70px); }
  .hero-lead { font-size: 26px; }

  .audience-grid {
    min-height: 148px;
    grid-template-columns: 0.9fr 1.18fr;
    align-items: center;
    gap: 74px;
    padding-block: 32px;
  }

  .audience-grid strong { font-size: 26px; }

  .section-intro {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.56fr);
    align-items: end;
    gap: 78px;
    margin-bottom: 52px;
  }

  .section-intro > p { font-size: 22.1px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { padding: 38px 38px 41px; }
  .service-card h3 { font-size: 28px; }

  .process-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
    gap: 100px;
  }

  .process-heading h2,
  .process-heading > p:not(.eyebrow) { max-width: 530px; }

  .details-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1fr);
    align-items: start;
    gap: 98px;
  }

  .details-heading h2 { max-width: 560px; }

  .final-contact-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1fr);
    align-items: center;
    gap: 94px;
  }

  .final-contact h2 { max-width: 560px; }

  .final-contact-grid > div:first-child > p:not(.eyebrow) { max-width: 550px; }
}

@media (hover: hover) {
  .button:hover { transform: translateY(-2px); }
  .button-primary:hover { background: var(--ink-deep); }
  .button-light:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.07); }
  .contact-channel:hover { padding-left: 17px; background: #f6f4ee; }
  .contact-channel.featured:hover { background: #175c4c; }
  .desktop-nav a:hover::after,
  .desktop-nav a:focus-visible::after { right: 0; }
  .final-channel:hover { padding-inline: 12px; background: rgba(255, 255, 255, 0.04); }
  .footer-contact a:hover { color: var(--white); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
