:root {
  --navy: #3a516d;
  --navy-deep: #26384c;
  --rose: #db9691;
  --rose-deep: #9a5559;
  --peach: #edc9bc;
  --paper: #fdf8f5;
  --paper-soft: #fffaf8;
  --white: #ffffff;
  --ink: #29394d;
  --muted: #5d6a78;
  --line: rgba(58, 81, 109, 0.2);
  --line-strong: rgba(58, 81, 109, 0.38);
  --shadow: 0 24px 80px rgba(38, 56, 76, 0.12);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.preview-toast-open {
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

.page-cirurgia .hero :focus-visible,
.page-cirurgia .section-navy :focus-visible,
.page-cirurgia .cta-section :focus-visible,
.page-cirurgia .site-footer :focus-visible {
  outline-color: var(--peach);
}

.cta-section :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--peach);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--navy-deep);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.skip-link:focus-visible,
.sticky-cta .button:focus-visible {
  outline-color: var(--white);
  box-shadow:
    0 0 0 3px var(--navy-deep),
    0 14px 40px rgba(38, 56, 76, 0.24);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: flex-start;
}

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

.brand-logo {
  width: 236px;
  height: auto;
  object-fit: contain;
}

.brand-fallback {
  display: grid;
  color: var(--navy);
  line-height: 1.1;
}

.brand-fallback strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.brand-fallback span {
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  width: 280px;
  height: 280px;
  top: -155px;
  left: -120px;
  border: 1px solid rgba(219, 150, 145, 0.46);
}

.hero::after {
  width: 160px;
  height: 160px;
  right: 7%;
  bottom: -120px;
  background: rgba(237, 201, 188, 0.24);
}

.hero-inner {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  padding-block: clamp(48px, 6vw, 80px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: var(--rose-deep);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-deep);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  text-wrap: balance;
}

h1 {
  max-width: 18ch;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 0.99;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4.2vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: -0.028em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.18;
}

p {
  margin-top: 0;
}

.hero-subheadline {
  max-width: 60ch;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--navy-deep);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--navy-deep);
}

.button-secondary:hover {
  background: var(--peach);
}

.location-line {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 11% -8% -5% 10%;
  border: 1px solid rgba(154, 85, 89, 0.38);
  border-radius: 48% 48% 22px 22px;
  content: "";
}

.hero-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 48% 48% 22px 22px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-visual picture,
.bio-photo-wrap picture {
  display: block;
}

.hero-trust {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.trust-grid {
  display: grid;
  padding: 0;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.trust-item {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  color: var(--navy-deep);
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.35;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-mark {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--peach);
  color: var(--navy-deep);
  font-size: 0.78rem;
  font-weight: 600;
}

.section {
  position: relative;
  padding-block: clamp(78px, 10vw, 136px);
}

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

.section-peach {
  background: rgba(237, 201, 188, 0.5);
}

.section-peach .section-kicker {
  color: var(--navy-deep);
}

.section-navy {
  background: var(--navy-deep);
  color: var(--paper);
}

.section-navy h2,
.section-navy h3 {
  color: var(--paper);
}

.section-navy .section-kicker,
.section-navy .section-lead {
  color: var(--peach);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(42px, 8vw, 110px);
}

.section-grid-balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-heading {
  position: sticky;
  top: 120px;
}

.section-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.13rem;
}

.editorial-copy {
  max-width: 720px;
}

.editorial-copy p:last-child {
  margin-bottom: 0;
}

.pull-quote {
  margin: 34px 0 0;
  padding: 24px 0 24px 28px;
  border-left: 4px solid var(--rose);
  color: var(--navy-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.3;
}

.pain-list,
.check-list,
.credential-list,
.process-list,
.location-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pain-list {
  display: grid;
  gap: 2px;
}

.pain-list li {
  position: relative;
  padding: 20px 18px 20px 50px;
  border-bottom: 1px solid var(--line);
}

.pain-list li::before {
  position: absolute;
  top: 23px;
  left: 18px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--rose-deep);
  border-radius: 50%;
  content: "";
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-soft);
}

.service-card h3 {
  color: var(--navy-deep);
}

.check-list {
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--rose-deep);
  content: "✓";
  font-weight: 600;
}

.bridge-panel {
  display: grid;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 0%, rgba(219, 150, 145, 0.26), transparent 35%),
    var(--paper-soft);
}

.bridge-panel p {
  max-width: 72ch;
}

.bio-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
}

.bio-photo-wrap {
  position: relative;
}

.bio-photo-wrap::after {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 72%;
  height: 72%;
  border-radius: var(--radius-md);
  background: var(--peach);
  content: "";
}

.bio-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.doctor-quote {
  margin: 26px 0 30px;
  color: var(--navy);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  line-height: 1.35;
}

.credential-list {
  display: grid;
  gap: 12px;
}

.credential-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.process-list {
  display: grid;
  counter-reset: process;
}

.process-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(237, 201, 188, 0.28);
  counter-increment: process;
}

.process-item::before {
  color: var(--rose);
  content: "0" counter(process);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.65rem;
}

.process-item h3 {
  margin-bottom: 6px;
}

.process-item p {
  margin-bottom: 0;
  color: rgba(253, 248, 245, 0.82);
}

.indication-grid {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.indication-item {
  min-height: 160px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-soft);
  color: var(--navy-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.35;
}

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

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

.faq-item summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  color: var(--navy-deep);
  cursor: pointer;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.35;
  list-style: none;
}

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

.faq-item summary::after {
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  content: "+";
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 820px;
  padding: 0 54px 24px 0;
  color: var(--muted);
}

.location-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.cta-section {
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--paper);
}

.cta-panel {
  position: relative;
  display: grid;
  justify-items: start;
  padding-block: clamp(78px, 10vw, 120px);
}

.cta-panel::after {
  position: absolute;
  width: 320px;
  height: 320px;
  right: -110px;
  bottom: -220px;
  border: 1px solid rgba(237, 201, 188, 0.52);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  max-width: 18ch;
  color: var(--paper);
}

.cta-panel p {
  max-width: 68ch;
  color: rgba(253, 248, 245, 0.82);
}

.cta-panel .button {
  margin-top: 12px;
  background: var(--rose-deep);
}

.cta-panel .button:hover {
  background: #84464a;
}

.site-footer {
  padding-block: 52px 38px;
  background: #1e2d3e;
  color: rgba(253, 248, 245, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
}

.footer-brand {
  color: var(--paper);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.5rem;
}

.footer-copy {
  max-width: 760px;
  font-size: 0.92rem;
}

.footer-bottom {
  display: flex;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(237, 201, 188, 0.2);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.85rem;
}

.privacy-controls {
  display: flex;
  margin-top: 18px;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  font-size: 0.85rem;
}

.privacy-controls a,
.privacy-controls button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--peach);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

a[data-track="whatsapp_click"][aria-disabled="true"] {
  opacity: 0.68;
  cursor: not-allowed;
}

.contact-status {
  position: fixed;
  z-index: 1000;
  right: 16px;
  bottom: 16px;
  max-width: min(380px, calc(100vw - 32px));
  padding: 14px 17px;
  transform: translateY(12px);
  border: 1px solid rgba(237, 201, 188, 0.28);
  border-radius: 12px;
  background: var(--navy-deep);
  box-shadow: 0 16px 38px rgba(38, 56, 76, 0.3);
  color: var(--paper);
  font-size: 0.92rem;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-status.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.consent-banner {
  position: fixed;
  z-index: 980;
  right: 16px;
  bottom: 16px;
  left: 16px;
  max-width: 760px;
  margin-inline: auto;
  padding: 18px 20px;
  border: 1px solid rgba(237, 201, 188, 0.34);
  border-radius: 16px;
  background: var(--navy-deep);
  box-shadow: 0 18px 48px rgba(38, 56, 76, 0.34);
  color: var(--paper);
  font-size: 0.92rem;
  line-height: 1.5;
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner p {
  max-width: none;
}

.consent-banner a {
  color: var(--peach);
}

.consent-actions {
  display: flex;
  margin-top: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.consent-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.consent-deny {
  border: 1px solid rgba(237, 201, 188, 0.52);
  background: transparent;
  color: var(--paper);
}

.consent-grant {
  border: 1px solid var(--peach);
  background: var(--peach);
  color: var(--navy-deep);
}

.page-cirurgia .hero {
  background: var(--navy-deep);
  color: var(--paper);
}

.page-cirurgia .hero::before {
  border-color: rgba(237, 201, 188, 0.26);
}

.page-cirurgia .hero::after {
  background: rgba(219, 150, 145, 0.17);
}

.page-cirurgia .hero h1 {
  color: var(--paper);
}

.page-cirurgia .hero .eyebrow,
.page-cirurgia .hero .location-line {
  color: var(--peach);
}

.page-cirurgia .hero .eyebrow::before {
  background: var(--rose);
}

.page-cirurgia .hero-subheadline {
  color: rgba(253, 248, 245, 0.84);
}

.page-cirurgia .hero .button {
  background: var(--rose-deep);
}

.page-cirurgia .hero .button:hover {
  background: #84464a;
}

.page-cirurgia .hero-visual::before {
  border-color: rgba(237, 201, 188, 0.42);
  border-radius: var(--radius-md);
}

.page-cirurgia .hero-photo {
  border-radius: var(--radius-md);
}

.page-cirurgia .hero-trust {
  border-color: rgba(237, 201, 188, 0.18);
  background: #203147;
}

.page-cirurgia .trust-item {
  border-color: rgba(237, 201, 188, 0.18);
  color: var(--paper);
}

.page-cirurgia .trust-mark {
  background: var(--rose-deep);
  color: var(--white);
}

.sticky-cta {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  display: flex;
  transform: translateY(12px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
}

.sticky-cta-ready .sticky-cta {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.sticky-cta .button {
  box-shadow: 0 14px 40px rgba(38, 56, 76, 0.24);
}

.sticky-cta .button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.page-cirurgia .sticky-cta .button {
  background: var(--rose-deep);
}

.page-cirurgia .sticky-cta .button:hover {
  background: #84464a;
}

.preview-toast {
  position: fixed;
  z-index: 200;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  max-width: min(420px, calc(100% - 36px));
  padding: 16px 20px;
  transform: translateY(24px);
  border-radius: var(--radius-sm);
  background: var(--navy-deep);
  box-shadow: var(--shadow);
  color: var(--white);
  font-size: 0.94rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.preview-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-cta-ready .preview-toast {
  bottom: calc(82px + env(safe-area-inset-bottom));
}

@media (max-width: 980px) {
  .hero-inner {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
    gap: 36px;
  }

  h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .page-cirurgia .trust-item:nth-child(-n + 2) {
    border-bottom-color: rgba(237, 201, 188, 0.18);
  }

  .section-grid,
  .section-grid-balanced,
  .bio-grid {
    gap: 48px;
  }

  .section-heading {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-inner {
    min-height: 74px;
    justify-content: center;
  }

  .brand-logo {
    width: 168px;
    height: auto;
  }

  .brand-fallback strong {
    font-size: 1rem;
  }

  .brand-fallback span {
    display: none;
  }

  .hero-inner,
  .page-cirurgia .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 30px 56px;
  }

  .hero-visual {
    width: min(100%, 520px);
    justify-self: center;
  }

  .hero-photo {
    aspect-ratio: 4 / 5;
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.25rem, 10.4vw, 2.8rem);
  }

  .eyebrow {
    display: block;
    gap: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-wrap: balance;
  }

  .eyebrow::before {
    display: none;
  }

  .trust-grid,
  .service-grid,
  .section-grid,
  .section-grid-balanced,
  .bio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .page-cirurgia .trust-item:nth-child(-n + 3) {
    border-bottom-color: rgba(237, 201, 188, 0.18);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 72px;
  }

  .section-grid,
  .section-grid-balanced,
  .bio-grid {
    gap: 34px;
  }

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

  .indication-item {
    min-height: auto;
  }

  .process-item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
  }

  .faq-item summary {
    font-size: 1.08rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
  }

  .sticky-cta .button {
    width: 100%;
    box-shadow: 0 14px 40px rgba(38, 56, 76, 0.24);
  }

  .site-footer {
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }

  .preview-toast {
    right: 12px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    left: 12px;
    max-width: none;
  }

  .sticky-cta-ready .preview-toast {
    bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .bio-photo-wrap::after {
    right: -12px;
    bottom: -12px;
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual::before {
    right: -4%;
  }

  .service-card,
  .bridge-panel {
    padding: 24px;
  }
}

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

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