:root {
  --blue-950: #101a5b;
  --blue-900: #172783;
  --blue-700: #3241b9;
  --blue-600: #0050ed;
  --blue-100: #e0e7ff;
  --blue-50: #f3f5ff;
  --sky: #9db7ff;
  --ink: #11182c;
  --muted: #5c667d;
  --line: #dfe5f0;
  --surface: #ffffff;
  --whatsapp: #19b75a;
  --whatsapp-dark: #0f8f43;
  --shadow: 0 24px 70px rgba(28, 49, 128, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(50, 65, 185, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(50, 65, 185, 0.2);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.location-label {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 650;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button:focus-visible,
.whatsapp-float:focus-visible,
.brand:focus-visible,
.footer-contact a:focus-visible {
  outline: 3px solid #ffd84d;
  outline-offset: 4px;
}

.button svg,
.whatsapp-float svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button-small {
  min-height: 46px;
  padding: 11px 18px;
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 10px 24px rgba(50, 65, 185, 0.22);
}

.button-primary {
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 14px 30px rgba(18, 169, 81, 0.28);
}

.button-primary:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 18px 36px rgba(18, 169, 81, 0.34);
}

.button-large {
  min-height: 60px;
  padding: 17px 26px;
  border-radius: 16px;
  font-size: 1rem;
}

.button-outline {
  color: var(--blue-700);
  border-color: var(--blue-700);
  background: #fff;
}

.button-outline:hover {
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 14px 30px rgba(50, 65, 185, 0.2);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
  background:
    radial-gradient(circle at 83% 24%, rgba(157, 183, 255, 0.32), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #fff 72%);
}

.hero-fold {
  position: absolute;
  top: -220px;
  right: -130px;
  width: 560px;
  height: 560px;
  border: 90px solid rgba(50, 65, 185, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.hero-copy {
  padding-bottom: 78px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 4.7vw, 4.65rem);
  font-weight: 900;
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.65;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  max-width: 610px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 29px;
  color: #303a55;
  font-size: 0.96rem;
  font-weight: 700;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue-700);
  border-radius: 50%;
  font-size: 0.72rem;
  line-height: 1;
}

.hero-cta {
  margin-top: 32px;
}

.hero-cta p {
  margin: 10px 0 0 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-showcase {
  position: relative;
  min-height: 590px;
}

.hero-showcase figure {
  margin: 0;
  overflow: hidden;
  background: var(--blue-100);
  box-shadow: var(--shadow);
}

.hero-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-main {
  position: absolute;
  inset: 0 40px 36px 0;
  border-radius: var(--radius-xl) 112px var(--radius-xl) var(--radius-xl);
}

.showcase-secondary {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 41%;
  aspect-ratio: 0.82;
  border: 8px solid #fff;
  border-radius: 26px;
  transform: rotate(3deg);
}

.showcase-seal {
  position: absolute;
  top: 24px;
  right: 0;
  width: 136px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  color: #fff;
  background: var(--blue-700);
  border: 8px solid #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 18px 40px rgba(50, 65, 185, 0.3);
}

.showcase-seal strong {
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.showcase-seal span {
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.15;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: #fff;
  box-shadow: 0 -16px 48px rgba(28, 49, 128, 0.07);
}

.trust-strip div {
  min-height: 112px;
  display: grid;
  align-content: center;
  padding: 22px 30px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 0.95rem;
}

.trust-strip span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: 112px 0;
}

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

.section-heading {
  max-width: 750px;
  margin-bottom: 44px;
}

.section-heading h2,
.impact-intro h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.8vw, 3.55rem);
  font-weight: 900;
}

.section-heading > p:last-child,
.section-heading-row > p,
.impact-intro > p:last-child,
.final-cta-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 16px 44px rgba(22, 35, 88, 0.08);
}

.product-image {
  position: relative;
  aspect-ratio: 1.16;
  overflow: hidden;
  background: var(--blue-50);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-image span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-copy {
  padding: 26px 25px 28px;
}

.product-copy h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.additional-products {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 2fr);
  gap: 34px;
  align-items: start;
  margin-top: 30px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--blue-50);
}

.additional-products-heading .eyebrow {
  margin-bottom: 10px;
}

.additional-products-heading h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

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

.additional-products-grid article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(50, 65, 185, 0.12);
  border-radius: var(--radius-md);
  background: #fff;
}

.additional-products-grid article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue-700);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 850;
}

.additional-products-grid h4 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.25;
}

.additional-products-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.centered-action {
  margin-top: 38px;
  text-align: center;
}

.brand-impact {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: #fff;
  background:
    radial-gradient(circle at 10% 0%, rgba(157, 183, 255, 0.26), transparent 33%),
    linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.brand-impact::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.eyebrow-light {
  color: var(--sky);
}

.impact-intro > p:last-child {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.76);
}

.difference-list {
  display: grid;
}

.difference {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.difference:first-child {
  padding-top: 0;
}

.difference > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--sky);
  font-size: 0.82rem;
  font-weight: 850;
}

.difference h3 {
  margin-bottom: 7px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.difference p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.section-heading-row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
  gap: 50px;
  align-items: end;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--blue-50);
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(90deg, rgba(16, 26, 91, 0.9), rgba(50, 65, 185, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.testimonials {
  background: var(--blue-50);
}

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

.testimonial-card {
  grid-column: span 2;
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 14px 38px rgba(22, 35, 88, 0.07);
}

.testimonial-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.stars {
  color: #f2ad00;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 18px 0 24px;
  color: #28324c;
  font-size: 1rem;
  line-height: 1.65;
}

.testimonial-card p {
  display: grid;
  gap: 2px;
  margin: 0;
  line-height: 1.35;
}

.testimonial-card strong {
  font-size: 0.92rem;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.76rem;
}

.location-section {
  padding: 42px 0 92px;
  background: var(--blue-50);
}

.location-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 42px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 18px 50px rgba(22, 35, 88, 0.08);
}

.location-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.location-card address {
  color: #303a55;
  font-style: normal;
  font-weight: 750;
}

.location-card p:last-child {
  margin: 9px 0 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  color: #fff;
  background: var(--blue-700);
  text-align: center;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.final-cta h2 {
  margin-inline: auto;
}

.final-cta-inner > p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .button {
  margin-top: 30px;
}

.cta-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  list-style: none;
  font-size: 0.9rem;
  font-weight: 650;
}

.cta-details li + li::before {
  content: "•";
  margin-right: 24px;
  color: var(--sky);
}

.cta-orbit {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.cta-orbit-one {
  top: -260px;
  left: -170px;
  width: 540px;
  height: 540px;
}

.cta-orbit-two {
  right: -140px;
  bottom: -270px;
  width: 620px;
  height: 620px;
}

.site-footer {
  padding: 54px 0 110px;
  color: #fff;
  background: #0c1238;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

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

.footer-brand p {
  display: grid;
  margin: 0;
  line-height: 1.3;
}

.footer-brand strong {
  font-size: 1.02rem;
}

.footer-brand span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.footer-contact {
  display: grid;
  gap: 7px;
  text-align: right;
}

.footer-contact p,
.footer-contact a {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.instagram-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.8rem;
}

.legal-links {
  display: flex;
  gap: 18px;
}

.legal-links a {
  color: inherit;
  text-decoration: none;
}

.legal-links a:hover {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  color: #fff;
  background: var(--whatsapp);
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(11, 82, 39, 0.34);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
}

.mobile-cta-bar {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 980px) {
  .location-label {
    display: none;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-copy {
    padding-bottom: 48px;
  }

  .hero-showcase {
    min-height: min(650px, 72vw);
  }

  .showcase-main {
    inset: 0 72px 28px 0;
  }

  .showcase-secondary {
    right: 12px;
    width: 34%;
  }

  .showcase-seal {
    right: 26px;
  }

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

  .product-card:last-child {
    grid-column: 1 / -1;
  }

  .product-card:last-child .product-image {
    aspect-ratio: 2.1;
  }

  .additional-products {
    grid-template-columns: 1fr;
  }

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

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery {
    grid-auto-rows: 225px;
  }

  .testimonial-card {
    grid-column: span 3;
  }

  .testimonial-card:nth-child(4) {
    grid-column: span 3;
  }

  .testimonial-card:last-child {
    grid-column: 2 / span 4;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 82px;
  }

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

  .site-header {
    position: relative;
  }

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

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-copy small {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-fold {
    top: -165px;
    right: -190px;
    width: 390px;
    height: 390px;
    border-width: 60px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 12.5vw, 3.55rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .benefit-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-cta .button,
  .centered-action .button,
  .final-cta .button {
    width: 100%;
  }

  .hero-cta p {
    margin-inline: 0;
    text-align: center;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .showcase-main {
    inset: 0 28px 34px 0;
    border-radius: 24px 76px 24px 24px;
  }

  .showcase-secondary {
    right: -5px;
    width: 43%;
    border-width: 6px;
    border-radius: 18px;
  }

  .showcase-seal {
    top: 16px;
    right: 4px;
    width: 108px;
    border-width: 6px;
  }

  .showcase-seal strong {
    font-size: 0.62rem;
  }

  .showcase-seal span {
    font-size: 0.86rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 28px;
    border-bottom: 1px solid var(--line);
    border-radius: 20px;
  }

  .trust-strip div {
    min-height: auto;
    padding: 18px 22px;
  }

  .trust-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section,
  .brand-impact,
  .final-cta {
    padding: 78px 0;
  }

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

  .section-heading h2,
  .impact-intro h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

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

  .product-card:last-child {
    grid-column: auto;
  }

  .product-card:last-child .product-image,
  .product-image {
    aspect-ratio: 1.08;
  }

  .additional-products {
    gap: 24px;
    padding: 24px 20px;
  }

  .additional-products-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    gap: 44px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 205px;
    gap: 10px;
  }

  .gallery-item,
  .gallery-wide {
    grid-column: span 1;
  }

  .gallery-tall,
  .gallery-wide {
    grid-row: span 1;
  }

  .gallery-item:first-child,
  .gallery-item:last-child {
    grid-column: 1 / -1;
  }

  .gallery-item:first-child {
    grid-row: span 2;
  }

  .gallery-item figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 10px 11px;
    font-size: 0.72rem;
  }

  .cta-details {
    display: grid;
    gap: 8px;
  }

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

  .testimonial-card,
  .testimonial-card:nth-child(4),
  .testimonial-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .location-section {
    padding: 20px 0 72px;
  }

  .location-card {
    display: grid;
    gap: 28px;
    padding: 30px 24px;
  }

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

  .cta-details li + li::before {
    display: none;
  }

  .footer-grid {
    display: grid;
    gap: 34px;
  }

  .footer-contact {
    text-align: left;
  }

  .instagram-link {
    justify-content: flex-start;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
  }

  .legal-links {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .site-footer {
    padding-bottom: 50px;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(17, 24, 44, 0.09);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 30px rgba(17, 24, 44, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-cta-bar .button {
    width: 100%;
    min-height: 56px;
  }
}

@media (max-width: 390px) {
  .brand-copy strong {
    font-size: 0.92rem;
  }

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

  .gallery-item,
  .gallery-item:first-child,
  .gallery-item:last-child {
    grid-column: auto;
    grid-row: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

.legal-page {
  background: var(--blue-50);
}

.legal-content {
  max-width: 860px;
  padding-top: 76px;
  padding-bottom: 88px;
}

.legal-content h1 {
  margin-bottom: 10px;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.legal-updated {
  margin: 0 0 38px;
  color: var(--muted);
}

.legal-content h2 {
  margin: 36px 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.legal-content p {
  color: #404a61;
}

.legal-content a {
  color: var(--blue-700);
  font-weight: 750;
}

.legal-footer {
  padding: 30px 0;
  color: rgba(255,255,255,.68);
  background: #0c1238;
  font-size: .86rem;
}

.legal-footer a {
  color: #fff;
}

@media (max-width: 680px) {
  .legal-page {
    padding-bottom: 0;
  }

  .legal-page .header-inner > .button {
    min-height: 42px;
    padding: 9px 13px;
    font-size: .78rem;
  }

  .legal-content {
    padding-top: 52px;
    padding-bottom: 68px;
  }
}
