:root {
  --black: #080706;
  --ink: #17120e;
  --soft-ink: #5e5248;
  --muted: #8a7c70;
  --paper: #fffdf8;
  --ivory: #f6efe4;
  --champagne: #eadcc8;
  --line: #e6d7c2;
  --gold: #b88a44;
  --gold-soft: #d8bf8b;
  --gold-dark: #80602e;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

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

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

button,
input {
  font: inherit;
}

textarea {
  font: inherit;
}

::selection {
  background: rgba(184, 138, 68, 0.24);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 70px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(22, 18, 15, 0.08);
  backdrop-filter: blur(16px);
  padding-block: 12px;
}

.site-header.site-header--solid {
  background: rgba(255, 253, 249, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(22, 18, 15, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
}

.brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(215, 189, 138, 0.56);
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  opacity: 0.86;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 18px;
  background: #0f1e13;
  color: var(--white);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float::before {
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: #27d366;
  box-shadow: 0 0 0 6px rgba(39, 211, 102, 0.13);
  content: "";
}

.whatsapp-float:hover {
  background: #0d2815;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.screen {
  min-height: 100svh;
  padding: 96px clamp(18px, 5vw, 76px);
}

.screen-content {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding-top: 132px;
  padding-bottom: 72px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.96) contrast(1.08) brightness(0.82);
  transform: scale(1.035);
}

.hero-overlay {
  background:
    radial-gradient(circle at 22% 68%, rgba(184, 138, 68, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(8, 7, 6, 0.86), rgba(8, 7, 6, 0.56) 48%, rgba(8, 7, 6, 0.3)),
    linear-gradient(0deg, rgba(8, 7, 6, 0.78), rgba(8, 7, 6, 0.08) 58%, rgba(8, 7, 6, 0.44));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0;
  animation: heroEntrance 900ms ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: 3.05rem;
  letter-spacing: 0;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

h2 {
  margin-bottom: 20px;
  font-size: 2.34rem;
}

.hero p:not(.eyebrow),
.authority-copy > p,
.final-box h2 {
  text-wrap: pretty;
}

.hero p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
}

.social-strip {
  display: grid;
  gap: 12px;
}

.social-strip--hero {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.76);
}

.social-strip span {
  max-width: 440px;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(215, 189, 138, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: var(--gold-soft);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.social-links a:hover {
  border-color: rgba(215, 189, 138, 0.78);
  background: rgba(215, 189, 138, 0.14);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.platform-mark {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 21px;
  overflow: hidden;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.28) 48%, transparent 76%);
  content: "";
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform 650ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::before {
  transform: translateX(120%);
}

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

.button-primary {
  border: 1px solid var(--gold-soft);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 52%, var(--gold-dark));
  color: var(--white);
  box-shadow: 0 18px 42px rgba(184, 138, 68, 0.26);
}

.button-dark {
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 13px 32px rgba(22, 18, 15, 0.16);
}

.biography {
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 85% 16%, rgba(184, 138, 68, 0.1), transparent 34%),
    linear-gradient(180deg, var(--paper), var(--ivory));
}

.bio-layout {
  display: grid;
  gap: 44px;
  align-items: center;
}

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

.bio-copy h2 {
  max-width: 780px;
}

.bio-text {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.bio-text p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 1.04rem;
  text-wrap: pretty;
}

.bio-stats {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.bio-stats div {
  border-top: 1px solid rgba(184, 138, 68, 0.28);
  padding-top: 16px;
}

.bio-stats strong {
  display: block;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 2.55rem;
  font-weight: 600;
  line-height: 1;
}

.bio-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.bio-carousel {
  position: relative;
  height: min(680px, 74svh);
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(184, 138, 68, 0.22);
  background: var(--black);
  box-shadow: 0 24px 72px rgba(22, 18, 15, 0.14);
}

.bio-carousel::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(8, 7, 6, 0.42), transparent 42%, rgba(8, 7, 6, 0.18));
  content: "";
  pointer-events: none;
}

.bio-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.bio-carousel-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.94) contrast(1.04);
  animation: bioFade 36s infinite;
}

.bio-carousel-track img:nth-child(2) {
  animation-delay: 6s;
}

.bio-carousel-track img:nth-child(3) {
  animation-delay: 12s;
}

.bio-carousel-track img:nth-child(4) {
  animation-delay: 18s;
}

.bio-carousel-track img:nth-child(5) {
  animation-delay: 24s;
}

.bio-carousel-track img:nth-child(6) {
  animation-delay: 30s;
}

.video-authority {
  display: grid;
  align-items: center;
  background: var(--paper);
}

.split {
  display: grid;
  gap: 42px;
  align-items: center;
}

.video-card {
  border: 1px solid rgba(184, 138, 68, 0.22);
  background: var(--black);
  padding: 8px;
  box-shadow: 0 24px 64px rgba(22, 18, 15, 0.12);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
  object-fit: cover;
}

.video-teaser {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
}

.video-teaser img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.58);
  transform: scale(1.02);
}

.video-teaser div {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.video-teaser span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-teaser p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.82);
}

.authority-copy {
  max-width: 560px;
}

.authority-copy p {
  color: var(--soft-ink);
  font-size: 1.06rem;
}

.quick-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
}

.quick-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
}

.quick-points span::before {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--gold-soft);
  content: "";
}

.gallery-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(184, 138, 68, 0.08), transparent 30%),
    linear-gradient(180deg, var(--paper), #f5eee3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  grid-auto-flow: dense;
}

.gallery-grid img,
.gallery-quote {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.gallery-grid img {
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-grid img:hover {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.018);
}

.gallery-quote {
  display: grid;
  align-content: end;
  justify-items: end;
  border: 1px solid rgba(184, 138, 68, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(246, 239, 228, 0.94));
  padding: clamp(22px, 3vw, 34px);
  text-align: right;
}

.gallery-quote--dark {
  background:
    linear-gradient(180deg, rgba(23, 18, 14, 0.96), rgba(8, 7, 6, 0.96));
  color: var(--white);
}

.gallery-quote p {
  margin: 0 0 18px;
  color: inherit;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.gallery-quote strong {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-quote--dark strong {
  color: var(--gold-soft);
}

.conversion {
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(11, 9, 7, 0.78), rgba(11, 9, 7, 0.82)),
    url("assets/cta-casal.jpg") center/cover;
  color: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading h2 {
  color: var(--ink);
}

.final-box h2 {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  gap: 18px;
}

.testimonial-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(215, 189, 138, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 4 / 3.25;
  object-fit: cover;
  filter: saturate(0.9);
}

.testimonial-card div {
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 24px;
}

.testimonial-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--serif);
  font-size: 1.34rem;
  line-height: 1.18;
}

.testimonial-card strong {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.testimonial-card.featured {
  border-color: rgba(215, 189, 138, 0.45);
  background: rgba(215, 189, 138, 0.08);
}

.final-box {
  display: grid;
  justify-items: start;
  max-width: 920px;
  margin-top: 44px;
  border-top: 1px solid rgba(215, 189, 138, 0.28);
  padding-top: 34px;
}

.final-box h2 {
  max-width: 880px;
  font-size: 2rem;
}

.conversion-layout {
  display: grid;
  justify-items: start;
  max-width: 880px;
}

.conversion-layout h2 {
  max-width: 820px;
  color: var(--white);
  font-size: 3rem;
}

.conversion-layout p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.site-footer {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 40px clamp(18px, 5vw, 76px) 94px;
  border-top: 1px solid rgba(184, 138, 68, 0.22);
  background: var(--paper);
  color: var(--ink);
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 1.58rem;
  font-weight: 600;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: var(--soft-ink);
}

.social-links--footer a {
  background: rgba(184, 138, 68, 0.06);
  color: var(--gold-dark);
}

.social-links--footer a:hover {
  background: var(--black);
  color: var(--gold-soft);
  box-shadow: 0 14px 34px rgba(22, 18, 15, 0.16);
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 9, 7, 0.68);
  backdrop-filter: blur(10px);
}

.lead-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(88svh, 820px);
  overflow: auto;
  border: 1px solid rgba(215, 189, 138, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(247, 241, 232, 0.98)),
    var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  padding: clamp(24px, 4vw, 42px);
  transform: scale(0.96) translateY(10px);
  transition: transform 220ms ease;
}

.lead-modal.is-open .lead-modal__dialog {
  transform: scale(1) translateY(0);
}

.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(184, 138, 68, 0.24);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.72);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.lead-modal__kicker {
  max-width: 540px;
  margin: 0 42px 14px 0;
  color: var(--gold-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.lead-modal h2 {
  margin-bottom: 24px;
  font-size: 2.42rem;
}

.lead-form {
  display: grid;
  gap: 15px;
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 7px;
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(22, 18, 15, 0.16);
  border-radius: 0;
  background: rgba(255, 253, 249, 0.84);
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-form input {
  min-height: 50px;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(184, 138, 68, 0.12);
}

.form-grid {
  display: grid;
  gap: 15px;
}

.lead-form fieldset {
  border: 1px solid rgba(184, 138, 68, 0.22);
  padding: 16px;
}

.lead-form legend {
  padding: 0 8px;
  color: var(--gold-dark);
}

.radio-option {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
  color: var(--soft-ink) !important;
  font-weight: 700 !important;
  text-transform: none !important;
}

.radio-option input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--gold);
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
  border: 1px solid var(--gold-soft);
}

.subpage {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(246, 239, 228, 0.86)),
    radial-gradient(circle at 82% 16%, rgba(216, 191, 139, 0.18), transparent 32%);
}

.page-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 148px 0 82px;
}

.page-card {
  border: 1px solid rgba(184, 138, 68, 0.22);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 28px 80px rgba(22, 18, 15, 0.08);
  padding: clamp(30px, 6vw, 72px);
}

.page-card h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--black);
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.94;
}

.page-card h2 {
  margin: 36px 0 12px;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
}

.page-card p,
.page-card li {
  color: var(--soft-ink);
  font-size: 1rem;
}

.page-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.78rem;
}

.footer-legal a {
  border-bottom: 1px solid rgba(216, 191, 139, 0.36);
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-legal a:hover {
  color: var(--white);
  border-color: var(--gold-soft);
}

body.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (min-width: 720px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .hero p:not(.eyebrow),
  .authority-copy p {
    font-size: 1.12rem;
  }

  .screen {
    padding-top: 116px;
    padding-bottom: 116px;
  }

  .bio-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .whatsapp-float {
    right: 26px;
    bottom: 26px;
    padding-inline: 22px;
  }

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

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

  .gallery-quote {
    grid-column: 3;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding-bottom: 40px;
  }

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

  .testimonial-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .testimonial-card.featured img {
    height: 100%;
    min-height: 410px;
    aspect-ratio: auto;
  }
}

@media (min-width: 980px) {
  .nav {
    display: flex;
  }

  h1 {
    font-size: 5.9rem;
  }

  h2 {
    font-size: 4rem;
  }

  .split {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
    gap: 72px;
  }

  .bio-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.52fr);
    gap: 72px;
  }

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

  .gallery-quote {
    grid-column: 4;
  }

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

  .testimonial-card.featured {
    grid-column: span 2;
  }

  .testimonial-card p {
    font-size: 1.46rem;
  }
}

@media (max-width: 440px) {
  .brand span {
    max-width: 214px;
  }

  h1 {
    font-size: 2.78rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  .screen {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 88px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 126px;
  }

  .whatsapp-float {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .testimonial-card p {
    font-size: 1.22rem;
  }

  .bio-carousel {
    height: 520px;
    min-height: 520px;
  }

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

  .conversion-layout h2 {
    font-size: 2.3rem;
  }

  .lead-modal {
    align-items: end;
    padding: 10px;
  }

  .lead-modal__dialog {
    width: 100%;
    max-height: 92svh;
    padding: 24px 18px;
  }

  .lead-modal h2 {
    font-size: 2.05rem;
  }
}

@keyframes bioFade {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.025);
  }

  8%,
  24% {
    opacity: 1;
    transform: scale(1);
  }

  32% {
    opacity: 0;
    transform: scale(1.015);
  }
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition: none !important;
    animation: none !important;
  }

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