:root {
  --bg: #f5f1ed;
  --bg-soft: #faf6f2;
  --surface: rgba(255, 251, 247, 0.78);
  --surface-strong: rgba(255, 252, 249, 0.96);
  --surface-dark: #5a3d32;
  --text: #3a2923;
  --muted: #78675d;
  --line: rgba(90, 61, 50, 0.12);
  --gold: #be9a78;
  --gold-strong: #8f6a56;
  --gold-soft: rgba(190, 154, 120, 0.12);
  --white: #fffaf6;
  --shadow-soft: 0 20px 44px rgba(88, 61, 49, 0.08);
  --shadow-medium: 0 34px 94px rgba(88, 61, 49, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.94), transparent 22%),
    radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.52), transparent 18%),
    radial-gradient(circle at 16% 78%, rgba(214, 188, 166, 0.18), transparent 20%),
    linear-gradient(145deg, #fdfaf7 0%, var(--bg) 48%, #eadfd6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 50%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 30%);
}

html.has-lightbox,
body.has-lightbox {
  overflow: hidden;
}

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

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

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

.page-shell {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 36px;
}

.site-main {
  display: grid;
  gap: 28px;
}

.section {
  position: relative;
  scroll-margin-top: 32px;
}

.site-header {
  position: static;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 22px;
  margin-bottom: 26px;
  border: 1px solid rgba(90, 61, 50, 0.1);
  border-radius: 999px;
  background: rgba(252, 247, 242, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(88, 61, 49, 0.07);
  transition:
    box-shadow 200ms ease,
    transform 200ms ease,
    background 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(252, 247, 242, 0.92);
  box-shadow: 0 24px 56px rgba(88, 61, 49, 0.12);
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(90, 61, 50, 0.08);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 12px 26px rgba(88, 61, 49, 0.05);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 22px rgba(88, 61, 49, 0.08);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(90, 61, 50, 0.1);
  border-radius: 18px;
  background: rgba(255, 251, 247, 0.84);
  box-shadow: 0 12px 26px rgba(88, 61, 49, 0.06);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease,
    border-color 200ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 30px rgba(88, 61, 49, 0.1);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #6d4c3f 0%, #8e6b57 100%);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(109, 76, 63, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 38px rgba(109, 76, 63, 0.34);
}

.button-secondary {
  border-color: rgba(109, 76, 63, 0.14);
  background: rgba(255, 255, 255, 0.34);
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 12px 24px rgba(88, 61, 49, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.88);
}

.button-large {
  min-height: 58px;
  padding: 0 28px;
}

.eyebrow {
  margin: 0;
  color: var(--gold-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 247, 239, 0.74);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  text-wrap: balance;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

.about-layout,
.location-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 34px;
  align-items: center;
}

.hero-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  gap: clamp(26px, 4vw, 34px);
  min-height: clamp(760px, calc(100vh - 120px), 940px);
  padding: clamp(42px, 6vw, 72px) clamp(22px, 4vw, 44px) clamp(36px, 5vw, 56px);
  border: 1px solid rgba(90, 61, 50, 0.08);
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), transparent 24%),
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.5), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.46), transparent 18%),
    linear-gradient(180deg, #fbf7f2 0%, #f4ece3 58%, #efe3d8 100%);
  box-shadow: var(--shadow-medium);
  text-align: center;
}

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

.hero-shell::before {
  top: -140px;
  left: 50%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 74%);
  transform: translateX(-50%);
}

.hero-shell::after {
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(190, 154, 120, 0.18) 0%, rgba(190, 154, 120, 0) 74%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 720px;
}

.hero-label {
  margin: 0;
  color: var(--gold-strong);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1 {
  max-width: none;
  font-size: clamp(4.4rem, 7vw, 6.1rem);
  line-height: 0.92;
}

.hero-subtitle {
  max-width: 30ch;
  color: rgba(120, 103, 93, 0.9);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-wrap: pretty;
  text-transform: uppercase;
}

.hero-headline {
  max-width: 11ch;
  font-size: clamp(3.6rem, 6.2vw, 5.2rem);
  line-height: 0.96;
}

.hero-headline span {
  color: #ca9562;
  font-style: italic;
}

.hero-description {
  max-width: 34ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.66;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.hero-actions .button {
  min-width: 228px;
  gap: 10px;
}

.button-whatsapp {
  background: linear-gradient(135deg, #11a74d 0%, #24bf5a 100%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(28, 169, 87, 0.26);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  box-shadow: 0 22px 40px rgba(28, 169, 87, 0.34);
}

.button-whatsapp-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.button-whatsapp-mark img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.button-outline-soft {
  border-color: rgba(202, 149, 98, 0.75);
  background: rgba(255, 255, 255, 0.38);
  color: var(--gold-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    0 12px 28px rgba(88, 61, 49, 0.06);
}

.button-outline-soft:hover,
.button-outline-soft:focus-visible {
  background: rgba(255, 255, 255, 0.86);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 26px;
  margin-top: 10px;
}

.hero-trust span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0 0 0 16px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
}

.hero-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #20ba5a 0%, var(--gold) 100%);
  transform: translateY(-50%);
}

.hero-scroll {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: 4px;
  border: 1px solid rgba(109, 76, 63, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 14px 26px rgba(88, 61, 49, 0.06);
  color: var(--muted);
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease;
}

.hero-scroll:hover,
.hero-scroll:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(109, 76, 63, 0.18);
}

.hero-scroll span {
  font-size: 1.35rem;
  line-height: 1;
}

.hero-media {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 14px 0 0;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 36px 22px 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 149, 98, 0.18) 0%, rgba(202, 149, 98, 0) 72%);
  filter: blur(18px);
  z-index: -1;
}

.hero-media-frame {
  position: relative;
  width: clamp(280px, 31vw, 430px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid rgba(255, 247, 239, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(232, 221, 212, 0.1));
  box-shadow: 0 36px 92px rgba(88, 61, 49, 0.18);
}

.hero-media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 26%);
  pointer-events: none;
  z-index: 1;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero-note {
  position: absolute;
  right: clamp(-8px, 2vw, 30px);
  bottom: 34px;
  z-index: 2;
  display: grid;
  gap: 4px;
  max-width: 220px;
  padding: 18px 20px 16px;
  border: 1px solid rgba(109, 76, 63, 0.08);
  border-radius: 20px;
  background: rgba(255, 252, 248, 0.94);
  color: var(--text);
  text-align: left;
  box-shadow: 0 24px 42px rgba(88, 61, 49, 0.14);
}

.hero-note strong {
  font-size: 1.1rem;
  line-height: 1.15;
}

.hero-note span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.proof-grid,
.services-grid {
  display: grid;
  gap: 18px;
}

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

.proof-card,
.service-card,
.about-photo-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.proof-card {
  padding: 26px 24px;
  border-radius: 28px;
}

.icon-chip,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--gold-soft);
  color: var(--gold-strong);
}

.icon-chip svg,
.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-card h3,
.service-card h3 {
  margin-top: 18px;
  font-size: 1.7rem;
  line-height: 1.02;
}

.proof-card p,
.service-card p,
.about-copy p,
.section-support {
  color: var(--muted);
  line-height: 1.8;
  text-wrap: pretty;
}

.proof-card p,
.service-card p {
  margin-top: 12px;
  font-size: 0.98rem;
}

.proof {
  display: grid;
  gap: 24px;
}

.proof-heading h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.proof-actions {
  display: flex;
  justify-content: center;
}

.reviews {
  display: grid;
  gap: 20px;
}

.reviews-header {
  display: block;
  text-align: center;
}

.reviews-header h2 {
  margin: 0 auto;
  text-align: center;
  font-size: clamp(3rem, 4.8vw, 4.4rem);
  line-height: 0.96;
}

.reviews-carousel-button[disabled] {
  opacity: 0.34;
  cursor: default;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

.reviews-carousel-shell {
  --review-card-width: min(31vw, 360px);
  position: relative;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.92), transparent 24%),
    radial-gradient(circle at 16% 82%, rgba(190, 154, 120, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(244, 235, 226, 0.88));
  box-shadow: var(--shadow-soft);
}

.reviews-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  translate: 0 -50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--gold-strong);
  border-color: rgba(109, 76, 63, 0.14);
  box-shadow: 0 16px 28px rgba(88, 61, 49, 0.12);
}

.reviews-carousel-button-prev {
  left: max(2px, calc((100% - var(--review-card-width)) / 2 - 24px));
}

.reviews-carousel-button-next {
  right: max(2px, calc((100% - var(--review-card-width)) / 2 - 24px));
}

.reviews-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--review-card-width);
  gap: 18px;
  overflow-x: auto;
  padding:
    28px
    max(18px, calc((100% - var(--review-card-width)) / 2))
    28px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(18px, calc((100% - var(--review-card-width)) / 2));
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.reviews-carousel-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 100%;
  padding: 26px 24px;
  border: 1px solid rgba(109, 76, 63, 0.08);
  border-radius: 28px;
  background: rgba(255, 251, 247, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 20px 34px rgba(88, 61, 49, 0.08);
  scroll-snap-align: center;
  transform: scale(0.9);
  opacity: 0.52;
  filter: saturate(0.82);
  transition:
    transform 320ms ease,
    opacity 320ms ease,
    box-shadow 320ms ease,
    filter 320ms ease;
}

.review-card.is-active {
  transform: scale(1);
  opacity: 1;
  filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 30px 52px rgba(88, 61, 49, 0.14);
}

.review-card--soft {
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.88), transparent 24%),
    linear-gradient(145deg, rgba(243, 233, 224, 0.92), rgba(255, 252, 248, 0.88));
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 18px;
  color: rgba(143, 106, 86, 0.12);
  font-family: "Playfair Display", serif;
  font-size: 5.2rem;
  line-height: 1;
  pointer-events: none;
}

.review-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 14px;
}

.review-card-stars {
  color: var(--gold);
  font-size: 1.02rem;
  letter-spacing: 0.14em;
}

.review-card-quote {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-card-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b88a68 0%, #7f5747 100%);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 14px 28px rgba(88, 61, 49, 0.14);
}

.review-card--soft .review-card-avatar {
  background: linear-gradient(135deg, #c3a183 0%, #9a7666 100%);
}

.review-card-meta {
  display: grid;
  gap: 3px;
}

.review-card-meta strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.review-card-meta span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.location-copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.1rem);
  line-height: 0.98;
}

.section-support {
  max-width: 60ch;
  margin: 0 auto;
}

.about-layout {
  align-items: stretch;
}

.about-media {
  display: grid;
}

.about-photo-card {
  position: relative;
  min-height: 520px;
  padding: 14px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.54), transparent 18%),
    linear-gradient(180deg, rgba(255, 251, 247, 0.96), rgba(241, 227, 215, 0.92));
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}

.about-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 10px 0;
}

.about-copy p {
  font-size: 1rem;
}

.about-points {
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.about-points li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.7;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  transform: translateY(-50%);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2px;
}

.about-stat {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(109, 76, 63, 0.08);
  border-radius: 22px;
  background: rgba(255, 252, 248, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 14px 28px rgba(88, 61, 49, 0.06);
}

.about-stat strong {
  color: var(--gold-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-stat span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
  text-wrap: pretty;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-actions .button {
  min-width: 210px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  padding: 26px 22px;
  border-radius: 28px;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(181, 129, 69, 0.22);
  box-shadow: 0 24px 46px rgba(96, 69, 54, 0.12);
}

.portfolio-shell {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.portfolio-intro,
.portfolio-carousel {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.portfolio-intro {
  display: grid;
  gap: 16px;
  padding: 28px 24px;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(150deg, rgba(255, 252, 248, 0.98), rgba(239, 228, 219, 0.82));
}

.portfolio-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(109, 76, 63, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-intro p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.84;
  text-wrap: pretty;
}

.portfolio-intro h3 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.98;
}

.portfolio-mini-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portfolio-mini-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.74;
  text-wrap: pretty;
}

.portfolio-mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  transform: translateY(-50%);
}

.portfolio-intro .button {
  width: fit-content;
  margin-top: 2px;
}

.portfolio-carousel {
  --portfolio-slide-width: min(42vw, 430px);
  position: relative;
  padding: 30px 30px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.92), transparent 28%),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.99), rgba(244, 235, 226, 0.88));
}

.portfolio-carousel::before {
  content: "";
  position: absolute;
  inset: 68px 12% 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(202, 149, 98, 0.16) 0%, rgba(202, 149, 98, 0) 72%);
  filter: blur(26px);
  pointer-events: none;
}

.portfolio-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.portfolio-counter {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  color: var(--muted);
}

.portfolio-counter strong {
  color: var(--text);
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 0.9;
}

.portfolio-counter span {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.portfolio-stage {
  position: relative;
}

.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(109, 76, 63, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  box-shadow: 0 12px 24px rgba(88, 61, 49, 0.07);
  cursor: pointer;
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(109, 76, 63, 0.16);
  box-shadow: 0 16px 28px rgba(88, 61, 49, 0.12);
}

.carousel-button-side {
  position: absolute;
  top: 50%;
  z-index: 3;
  translate: 0 -50%;
}

.carousel-button-side-prev {
  left: max(2px, calc((100% - var(--portfolio-slide-width)) / 2 - 24px));
}

.carousel-button-side-next {
  right: max(2px, calc((100% - var(--portfolio-slide-width)) / 2 - 24px));
}

.portfolio-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--portfolio-slide-width);
  gap: 24px;
  overflow-x: hidden;
  padding:
    10px
    max(10px, calc((100% - var(--portfolio-slide-width)) / 2))
    26px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(10px, calc((100% - var(--portfolio-slide-width)) / 2));
  scroll-behavior: smooth;
  scrollbar-width: none;
  touch-action: pan-y;
}

.portfolio-track::-webkit-scrollbar {
  display: none;
}

.portfolio-slide {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  overflow: hidden;
  scroll-snap-align: center;
  border: 1px solid rgba(255, 250, 245, 0.62);
  box-shadow: 0 28px 64px rgba(82, 58, 47, 0.12);
  transform: scale(0.86);
  opacity: 0.46;
  cursor: zoom-in;
  transition:
    transform 320ms ease,
    opacity 320ms ease,
    box-shadow 320ms ease,
    filter 320ms ease;
  filter: saturate(0.82);
}

.portfolio-slide::before {
  content: none;
}

.portfolio-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(33, 20, 16, 0.06) 0%, rgba(33, 20, 16, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 24%);
  pointer-events: none;
}

.portfolio-slide.is-active {
  transform: scale(1.02);
  opacity: 1;
  box-shadow: 0 34px 82px rgba(82, 58, 47, 0.2);
  filter: none;
}

.portfolio-slide.is-active::after {
  background:
    linear-gradient(180deg, rgba(33, 20, 16, 0) 54%, rgba(33, 20, 16, 0.22) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 22%);
}

.portfolio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition:
    transform 360ms ease,
    filter 360ms ease;
}

.portfolio-slide:not(.is-active) img {
  filter: saturate(0.82) brightness(0.9);
}

.portfolio-slide.is-active img {
  transform: scale(1);
  filter: none;
}

.portfolio-details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding: 8px 8px 0;
}

.portfolio-details-copy {
  display: grid;
  gap: 10px;
}

.portfolio-detail-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(109, 76, 63, 0.08);
  color: var(--gold-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-details h3 {
  max-width: 13ch;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.portfolio-details p {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.84;
  text-wrap: pretty;
}

.portfolio-detail-cta {
  min-width: 216px;
}

.portfolio-progress {
  height: 5px;
  margin-top: 22px;
  border-radius: 999px;
  background: rgba(109, 76, 63, 0.08);
  overflow: hidden;
}

.portfolio-progress span {
  display: block;
  width: 9.09%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c78f62 0%, #7a503d 100%);
  transition: width 260ms ease;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding: clamp(16px, 3vw, 28px);
  background: rgba(30, 19, 15, 0.82);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.portfolio-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-lightbox-close,
.portfolio-lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 250, 245, 0.14);
  border-radius: 50%;
  background: rgba(255, 250, 245, 0.1);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(15, 10, 8, 0.18);
  cursor: pointer;
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease;
}

.portfolio-lightbox-close:hover,
.portfolio-lightbox-close:focus-visible,
.portfolio-lightbox-nav:hover,
.portfolio-lightbox-nav:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 250, 245, 0.18);
  border-color: rgba(255, 250, 245, 0.24);
}

.portfolio-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.9rem;
  line-height: 1;
}

.portfolio-lightbox-figure {
  display: grid;
  gap: 14px;
  width: min(100%, 1040px);
  margin: 0 auto;
}

.portfolio-lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 60px rgba(15, 10, 8, 0.28);
}

.portfolio-lightbox-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  color: rgba(255, 250, 245, 0.9);
}

.portfolio-lightbox-caption strong {
  font-size: 1rem;
  font-weight: 600;
}

.portfolio-lightbox-caption span {
  color: rgba(255, 250, 245, 0.7);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.offer-card,
.community-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.offer-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 28px 24px;
  background: var(--surface);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.offer-card:hover,
.offer-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(181, 129, 69, 0.2);
  box-shadow: 0 24px 46px rgba(96, 69, 54, 0.12);
}

.offer-media,
.community-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(232, 221, 212, 0.14));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 18px 32px rgba(88, 61, 49, 0.08);
}

.offer-media {
  aspect-ratio: 1 / 1;
}

.community-media {
  aspect-ratio: 4 / 3;
}

.offer-media img,
.community-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.offer-card:hover .offer-media img,
.offer-card:focus-within .offer-media img,
.community-card:hover .community-media img,
.community-card:focus-visible .community-media img {
  transform: scale(1.04);
}

.offer-card--feature {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.92), transparent 24%),
    linear-gradient(150deg, rgba(255, 252, 248, 0.98), rgba(240, 228, 219, 0.88));
}

.offer-type,
.community-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(109, 76, 63, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--gold-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer-card h3,
.community-card h3 {
  font-size: clamp(2rem, 2.5vw, 2.45rem);
  line-height: 0.98;
}

.offer-card p,
.community-card p {
  color: var(--muted);
  line-height: 1.8;
  text-wrap: pretty;
}

.offer-card .button {
  width: fit-content;
  margin-top: auto;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.community-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px 22px 22px;
  background: rgba(255, 251, 247, 0.78);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.community-card:hover,
.community-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(181, 129, 69, 0.18);
  background: var(--surface-strong);
  box-shadow: 0 24px 46px rgba(96, 69, 54, 0.12);
}

.community-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 4px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.community-link::after {
  content: "\2197";
  font-size: 0.92rem;
}

.location-shell {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.location-copy,
.location-map-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.location-copy {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 30px 28px;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(150deg, rgba(255, 252, 248, 0.98), rgba(239, 228, 219, 0.84));
}

.location-copy h2 {
  font-size: clamp(2.7rem, 4.2vw, 4.1rem);
  line-height: 0.98;
}

.location-copy p,
.location-point span {
  color: var(--muted);
  line-height: 1.8;
  text-wrap: pretty;
}

.location-points {
  display: grid;
  gap: 12px;
}

.location-point {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(109, 76, 63, 0.08);
  border-radius: 22px;
  background: rgba(255, 252, 248, 0.78);
}

.location-point strong {
  color: var(--gold-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-map-card {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.78), transparent 22%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(244, 235, 226, 0.88));
}

.location-map {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.site-footer {
  margin-top: 24px;
  padding-bottom: 24px;
}

.site-footer p {
  margin: 0;
  text-align: center;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 12px;
  font-size: 0.95rem;
}

.footer-credit {
  color: rgba(120, 103, 93, 0.82);
  font-size: 0.86rem;
}

.footer-credit::before {
  content: "\2022";
  margin-right: 8px;
  color: rgba(120, 103, 93, 0.5);
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--text);
}

.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: transparent;
  overflow: hidden;
  box-shadow:
    0 18px 34px rgba(31, 168, 85, 0.28),
    0 6px 18px rgba(38, 117, 74, 0.16);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    filter 200ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 22px 38px rgba(31, 168, 85, 0.34),
    0 8px 20px rgba(38, 117, 74, 0.2);
  filter: saturate(1.03);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: inherit;
}

.whatsapp-float span {
  display: none;
}

.reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(12px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay),
    filter 720ms ease var(--reveal-delay);
  will-change: opacity, transform, filter;
}

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

.delay-1 {
  --reveal-delay: 120ms;
}

@media (max-width: 1100px) {
  .about-layout,
  .portfolio-shell,
  .location-shell {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: clamp(720px, calc(100vh - 120px), 860px);
    padding: clamp(34px, 5vw, 54px) 24px 44px;
  }

  .hero-headline {
    max-width: 10ch;
  }

  .hero-media-frame {
    width: clamp(290px, 42vw, 410px);
  }

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

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

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

  .reviews-carousel-shell {
    --review-card-width: min(44vw, 340px);
  }

  .reviews-carousel-button-prev {
    left: max(0px, calc((100% - var(--review-card-width)) / 2 - 22px));
  }

  .reviews-carousel-button-next {
    right: max(0px, calc((100% - var(--review-card-width)) / 2 - 22px));
  }

  .portfolio-carousel {
    --portfolio-slide-width: min(50vw, 390px);
  }

  .location-map {
    min-height: 380px;
  }

}

@media (max-width: 980px) {
  .hero-shell {
    min-height: auto;
    gap: 24px;
    padding: 34px 22px 38px;
  }

  .hero-headline {
    max-width: 9ch;
  }

  .hero-media-frame {
    width: min(100%, 390px);
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .reviews-carousel-shell {
    --review-card-width: min(58vw, 340px);
  }

  .portfolio-carousel {
    --portfolio-slide-width: min(62vw, 350px);
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border-radius: 30px;
  }

  .header-menu {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-nav {
    width: auto;
  }

  .site-nav a {
    flex: 1 1 0;
  }

  .header-cta {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, var(--container));
    padding-top: 12px;
  }

  .site-main {
    gap: 22px;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
  }

  .brand-logo-image {
    height: 62px;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .header-menu {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 240ms ease,
      opacity 200ms ease,
      transform 200ms ease,
      padding-top 200ms ease;
  }

  .site-header.is-menu-open .header-menu {
    max-height: 260px;
    opacity: 1;
    padding-top: 4px;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
  }

  .site-nav a {
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.9rem;
    text-align: left;
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .header-cta {
    width: 100%;
  }

  .hero-shell {
    gap: 20px;
    min-height: auto;
    padding: 26px 16px 22px;
    border-radius: 32px;
  }

  .hero-copy {
    max-width: none;
    gap: 14px;
  }

  .hero-label {
    font-size: 0.74rem;
    letter-spacing: 0.24em;
  }

  .hero-subtitle {
    display: none;
  }

  .hero-headline {
    max-width: 8ch;
    font-size: clamp(2.85rem, 11vw, 4rem);
    line-height: 0.98;
  }

  .hero-description {
    max-width: none;
    font-size: 0.97rem;
    line-height: 1.68;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .button {
    min-width: 0;
    width: min(100%, 320px);
  }

  .hero-trust {
    display: grid;
    gap: 12px;
    justify-items: center;
  }

  .hero-trust span {
    font-size: 0.92rem;
  }

  .hero-media {
    width: 100%;
    padding-top: 0;
  }

  .hero-media-frame {
    width: min(100%, 310px);
    border-width: 6px;
  }

  .hero-photo {
    object-position: center top;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -28px 0 0 auto;
    max-width: 210px;
    padding: 16px 18px 14px;
  }

  .hero-scroll {
    display: none;
  }

  .section-heading h2,
  .location-copy h2 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .proof-card,
  .service-card,
  .reviews-carousel-shell,
  .review-card,
  .portfolio-intro,
  .portfolio-carousel,
  .offer-card,
  .community-card,
  .about-stat,
  .portfolio-slide,
  .location-copy,
  .location-map-card {
    border-radius: 24px;
  }

  .about-photo-card {
    min-height: 380px;
    border-radius: 24px;
  }

  .portfolio-carousel {
    --portfolio-slide-width: min(82vw, 310px);
    padding: 20px 18px 18px;
  }

  .portfolio-topbar {
    margin-bottom: 16px;
  }

  .portfolio-counter strong {
    font-size: 1.8rem;
  }

  .carousel-button {
    width: 44px;
    height: 44px;
  }

  .carousel-button-side-prev {
    left: max(0px, calc((100% - var(--portfolio-slide-width)) / 2 - 22px));
  }

  .carousel-button-side-next {
    right: max(0px, calc((100% - var(--portfolio-slide-width)) / 2 - 22px));
  }

  .portfolio-track {
    gap: 14px;
    padding-bottom: 18px;
  }

  .portfolio-slide {
    transform: scale(0.92);
    opacity: 0.62;
  }

  .portfolio-slide.is-active {
    transform: scale(1);
  }

  .portfolio-slide::before {
    top: 14px;
    left: 14px;
    min-width: 48px;
    min-height: 34px;
    font-size: 0.72rem;
  }

  .portfolio-details {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
    padding: 4px 2px 0;
  }

  .portfolio-details h3 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .portfolio-details p {
    font-size: 0.95rem;
    line-height: 1.74;
  }

  .portfolio-detail-cta {
    width: 100%;
  }

  .portfolio-lightbox {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .portfolio-lightbox-nav {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 44px;
    height: 44px;
  }

  .portfolio-lightbox-nav-prev {
    left: 12px;
  }

  .portfolio-lightbox-nav-next {
    right: 12px;
  }

  .portfolio-lightbox-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .portfolio-lightbox-image {
    max-height: 72vh;
    border-radius: 22px;
  }

  .portfolio-lightbox-caption {
    justify-content: flex-start;
  }

  .reviews-header {
    display: block;
  }

  .reviews-header h2 {
    max-width: none;
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .reviews-carousel-shell {
    --review-card-width: min(84vw, 320px);
  }

  .reviews-carousel-button {
    width: 44px;
    height: 44px;
  }

  .reviews-carousel-button-prev {
    left: max(0px, calc((100% - var(--review-card-width)) / 2 - 22px));
  }

  .reviews-carousel-button-next {
    right: max(0px, calc((100% - var(--review-card-width)) / 2 - 22px));
  }

  .reviews-carousel-track {
    gap: 14px;
    padding:
      20px
      max(16px, calc((100% - var(--review-card-width)) / 2))
      20px;
    scroll-padding-inline: max(16px, calc((100% - var(--review-card-width)) / 2));
  }

  .location-copy {
    padding: 24px 20px;
  }

  .location-copy h2 {
    font-size: clamp(2.3rem, 11vw, 3.1rem);
  }

  .location-map {
    min-height: 320px;
  }

  .offer-grid,
  .community-grid,
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .offer-card .button {
    width: 100%;
  }

  .about-actions {
    display: grid;
  }

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

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 62px;
    height: 62px;
  }
}

@media (min-width: 981px) {
  .page-shell {
    width: min(1320px, calc(100% - 48px));
  }

  .site-header {
    padding: 10px 2px 16px;
    margin-bottom: 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .brand-logo-image {
    height: 88px;
  }

  .header-menu {
    gap: 22px;
  }

  .site-nav {
    gap: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text);
    font-size: 1.02rem;
    font-weight: 500;
    box-shadow: none;
  }

  .site-nav a:hover,
  .site-nav a.is-active,
  .site-nav a:focus-visible {
    background: transparent;
    box-shadow: none;
    color: var(--gold-strong);
  }

  .header-cta {
    min-height: 52px;
    padding-inline: 24px;
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(109, 76, 63, 0.18);
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    grid-template-areas: "copy media";
    align-items: center;
    justify-items: stretch;
    gap: clamp(30px, 4vw, 62px);
    min-height: clamp(680px, calc(100vh - 120px), 820px);
    padding: clamp(44px, 5vw, 72px) clamp(42px, 5vw, 68px);
    border-radius: 34px;
    text-align: left;
    background:
      linear-gradient(90deg, rgba(252, 248, 244, 0.98) 0%, rgba(252, 248, 244, 0.98) 30%, rgba(252, 248, 244, 0.92) 40%, rgba(252, 248, 244, 0.74) 49%, rgba(252, 248, 244, 0.32) 58%, rgba(252, 248, 244, 0.08) 68%, rgba(252, 248, 244, 0) 76%),
      linear-gradient(270deg, rgba(252, 248, 244, 0.76) 0%, rgba(252, 248, 244, 0.46) 10%, rgba(252, 248, 244, 0.14) 18%, rgba(252, 248, 244, 0) 26%),
      linear-gradient(180deg, rgba(252, 248, 244, 0.42) 0%, rgba(252, 248, 244, 0.1) 16%, rgba(252, 248, 244, 0) 30%, rgba(235, 223, 212, 0) 82%, rgba(235, 223, 212, 0.28) 100%),
      radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 18%),
      radial-gradient(circle at 84% 82%, rgba(190, 154, 120, 0.16) 0%, rgba(190, 154, 120, 0) 20%),
      url("assets/perfil.png"),
      linear-gradient(115deg, #fcf8f4 0%, #f5ede6 48%, #ecdfd4 100%);
    background-repeat: no-repeat;
    background-size: auto, auto, auto, auto, auto, auto 94%, auto;
    background-position: 0 0, 0 0, 0 0, 84% 14%, 84% 82%, right 24px bottom 0, 0 0;
  }

  .hero-shell::before {
    top: -200px;
    left: 16%;
    width: 620px;
    height: 620px;
    transform: none;
  }

  .hero-shell::after {
    right: -70px;
    bottom: -120px;
    width: 420px;
    height: 420px;
  }

  .hero-copy {
    grid-area: copy;
    justify-items: start;
    align-content: center;
    max-width: 540px;
    gap: 18px;
  }

  .hero-label {
    display: none;
  }

  .hero-subtitle {
    max-width: none;
    color: rgba(58, 41, 35, 0.9);
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    order: 2;
  }

  .hero-headline {
    max-width: none;
    font-size: clamp(4.5rem, 6vw, 5.9rem);
    line-height: 0.92;
    order: 1;
  }

  .hero-description {
    max-width: 18ch;
    font-family: "Playfair Display", serif;
    color: rgba(58, 41, 35, 0.88);
    font-size: clamp(1.42rem, 1.95vw, 2rem);
    line-height: 1.28;
    order: 3;
  }

  .hero-actions {
    justify-content: flex-start;
    gap: 14px;
    order: 4;
  }

  .hero-actions .button {
    min-width: 232px;
    min-height: 58px;
    border-radius: 14px;
  }

  .button-whatsapp {
    background: linear-gradient(135deg, #b98a57 0%, #c79b67 100%);
    color: var(--white);
    box-shadow: 0 18px 36px rgba(185, 138, 87, 0.22);
  }

  .button-whatsapp:hover,
  .button-whatsapp:focus-visible {
    box-shadow: 0 22px 42px rgba(185, 138, 87, 0.3);
  }

  .button-outline-soft {
    border-color: rgba(109, 76, 63, 0.12);
    background: rgba(255, 255, 255, 0.76);
    color: var(--text);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 12px 28px rgba(88, 61, 49, 0.06);
  }

  .hero-trust {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .hero-media {
    display: none;
  }

  .hero-note {
    display: none;
  }

  .proof {
    gap: 30px;
    padding: 56px 38px 44px;
    border: 1px solid rgba(90, 61, 50, 0.08);
    border-radius: 34px;
    background:
      radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.52), transparent 26%),
      radial-gradient(circle at 84% 70%, rgba(255, 255, 255, 0.34), transparent 22%),
      linear-gradient(180deg, rgba(249, 243, 237, 0.96), rgba(240, 229, 219, 0.88));
    box-shadow: var(--shadow-soft);
  }

  .proof-heading h2 {
    font-size: clamp(3.2rem, 4.6vw, 4.6rem);
  }

  .community-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
  }

  .community-card {
    gap: 12px;
    padding: 18px 18px 16px;
    border-radius: 24px;
  }

  .community-media {
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }

  .community-media img {
    object-fit: contain;
    object-position: center;
  }

  .community-kicker {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .community-card h3 {
    font-size: clamp(1.7rem, 2vw, 2.1rem);
  }

  .community-card p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .community-link {
    font-size: 0.9rem;
  }
}

@media (min-width: 1180px) {
  .proof-grid {
    align-items: stretch;
    gap: 22px;
  }

  .proof-card {
    height: 100%;
    padding: 28px 24px;
    background:
      radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.9), transparent 22%),
      linear-gradient(180deg, rgba(255, 252, 248, 0.9), rgba(245, 236, 227, 0.8));
    border-radius: 24px;
    text-align: center;
  }

  .proof-card h3 {
    font-size: clamp(1.55rem, 1.8vw, 1.92rem);
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .portfolio-carousel {
    padding: 34px 34px 28px;
  }

  .location-shell {
    gap: 28px;
  }

  .location-copy {
    padding: 34px 32px;
  }

  .community-card {
    padding: 18px 18px 16px;
  }
}

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

  .reveal,
  .site-header,
  .header-menu,
  .menu-toggle,
  .menu-toggle span,
  .button,
  .whatsapp-float,
  .service-card,
  .site-nav a {
    transition: none;
  }

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