:root {
  --cream: #fbf7f0;
  --ivory: #f7efe6;
  --white: #fffdf9;
  --surface: rgba(255, 253, 249, 0.88);
  --taupe: #d7c5b4;
  --taupe-soft: #eaded2;
  --champagne: #c7a46a;
  --champagne-dark: #9f7a3f;
  --espresso: #2a211b;
  --charcoal: #40362f;
  --muted: #74685f;
  --sage: #6f7f72;
  --shadow-soft: 0 20px 60px rgba(42, 33, 27, 0.08);
  --shadow-card: 0 14px 34px rgba(42, 33, 27, 0.07);
  --radius: 18px;
  --radius-small: 12px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(199, 164, 106, 0.16), transparent 34rem),
    linear-gradient(180deg, var(--cream), #fffaf4 42%, var(--ivory));
  color: var(--espresso);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(251, 247, 240, 0.86);
  border-bottom: 1px solid rgba(215, 197, 180, 0.58);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--espresso);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(199, 164, 106, 0.28);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(42, 33, 27, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255, 253, 249, 0.88);
  color: var(--espresso);
  outline: 1px solid rgba(215, 197, 180, 0.64);
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(215, 197, 180, 0.78);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.78);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.language-switch a,
.language-switch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 28px;
  border-radius: 999px;
  text-decoration: none;
}

.language-switch span {
  background: var(--espresso);
  color: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.nav-cta {
  min-height: 38px;
  padding: 10px 14px;
  background: var(--espresso);
  color: var(--white);
  font-size: 0.88rem;
}

.button {
  min-height: 48px;
  padding: 14px 20px;
  font-size: 0.96rem;
}

.button.primary {
  background: var(--espresso);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(42, 33, 27, 0.16);
}

.button.secondary {
  border: 1px solid rgba(159, 122, 63, 0.28);
  background: rgba(255, 253, 249, 0.72);
  color: var(--espresso);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-4px);
  outline: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.button:focus-visible,
.nav-cta:focus-visible,
.language-switch a:focus-visible,
.site-footer a:focus-visible,
.category-nav a:focus-visible,
.support-list a:focus-visible {
  outline: 2px solid rgba(199, 164, 106, 0.42);
  outline-offset: 3px;
}

.luxury-hero {
  padding: clamp(48px, 7vw, 78px) clamp(18px, 5vw, 58px) 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(290px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--champagne-dark);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--espresso);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.06;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

html[lang^="es"] .luxury-hero h1,
html[lang^="es"] .page-hero h1 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--charcoal);
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
  line-height: 1.62;
}

.brand-line {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--champagne-dark);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  line-height: 1.25;
}

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

.hero-visual {
  min-height: 420px;
}

.hero-visual .image-placeholder,
.hero-visual .hero-photo {
  min-height: 420px;
}

.hero-photo {
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.hero-photo img {
  object-position: 50% 18%;
}

.image-placeholder {
  display: grid;
  min-height: 100%;
  padding: 24px;
  place-items: end start;
  overflow: hidden;
  border: 1px solid rgba(215, 197, 180, 0.78);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255, 253, 249, 0.2), rgba(199, 164, 106, 0.26)),
    linear-gradient(135deg, #efe1d2, #fffaf4 48%, #d8c3ad);
  box-shadow: var(--shadow-soft);
  color: var(--espresso);
}

.image-placeholder span {
  display: block;
  width: min(290px, 100%);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
}

.image-placeholder small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 680;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1180px, 100%);
  margin: 30px auto 0;
}

.trust-strip span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(215, 197, 180, 0.62);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.68);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 680;
}

.section,
.service-group,
.split-section,
.booking-section,
.page-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: clamp(54px, 8vw, 92px) 0;
}

.section-intro,
.section-heading {
  max-width: 760px;
  margin: 0 0 28px;
}

.section-intro.center,
.page-hero {
  text-align: center;
}

.section-intro p,
.section-heading p,
.split-section p,
.booking-section p,
.policy-card p,
.policy-card li,
.support-panel p {
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-grid,
.service-grid,
.contact-grid,
.faq-grid,
.mini-grid {
  display: grid;
  gap: 16px;
}

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

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

.service-card,
.contact-card,
.faq-grid article,
.mini-grid article,
.policy-card,
.support-panel,
.editorial-card,
.quote-panel,
.booking-section {
  border: 1px solid rgba(215, 197, 180, 0.72);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.service-card {
  display: flex;
  min-height: 246px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.service-card:focus-within,
.mini-grid article:hover,
.mini-grid article:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.service-meta {
  margin: 0;
  color: var(--champagne-dark) !important;
  font-size: 0.92rem;
  font-weight: 780;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(54px, 7vw, 82px) 0;
}

.split-section.warm {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 0.95fr);
}

.pillar-list,
.support-list {
  display: grid;
  gap: 12px;
}

.pillar-list span,
.support-list a {
  padding: 17px 18px;
  border: 1px solid rgba(215, 197, 180, 0.68);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  color: var(--charcoal);
  font-weight: 690;
  text-decoration: none;
}

.visual-stack {
  display: grid;
  gap: 14px;
}

.visual-stack .image-placeholder {
  min-height: 210px;
  border-radius: 22px;
}

.real-photo-card {
  display: block;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(215, 197, 180, 0.72);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: var(--shadow-card);
}

.real-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-stack .real-photo-card {
  min-height: 420px;
}

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

.first-visit-photo img {
  object-position: 48% 42%;
}

.service-feature-visual {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  margin-bottom: 18px;
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid rgba(215, 197, 180, 0.72);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.92), rgba(247, 239, 230, 0.72));
  box-shadow: var(--shadow-card);
}

.service-feature-visual h3 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.service-feature-visual > div {
  min-width: 0;
}

.service-feature-visual p:last-child {
  margin: 0;
  color: var(--muted);
}

.service-feature-photo {
  min-height: 260px;
  aspect-ratio: 16 / 9;
}

.body-treatment-photo img {
  object-position: 48% 18%;
}

.editorial-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(240px, 0.48fr) minmax(280px, 0.66fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 28px;
}

.editorial-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-photo-stack {
  display: grid;
  gap: 14px;
}

.photo-frame {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(215, 197, 180, 0.72);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: var(--shadow-card);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.portrait-photo img {
  object-position: 44% 45%;
}

.credential-photo {
  aspect-ratio: 3 / 4;
}

.credential-photo img {
  object-position: 50% 24%;
}

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

.trust-list li {
  padding: 12px 0 12px 20px;
  border-bottom: 1px solid rgba(215, 197, 180, 0.58);
  color: var(--charcoal);
  position: relative;
}

.trust-list li::before {
  position: absolute;
  left: 0;
  color: var(--champagne-dark);
  content: "•";
}

.quote-panel {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 26px;
}

.quote-panel p {
  margin: 0;
  color: var(--champagne-dark);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.booking-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(40px, 6vw, 76px);
  margin-bottom: clamp(40px, 6vw, 76px);
  padding: clamp(26px, 5vw, 48px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.94), rgba(247, 239, 230, 0.86)),
    var(--surface);
}

.booking-section > div:first-child {
  max-width: 690px;
}

.app-ecosystem {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 560px);
}

.app-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(215, 197, 180, 0.72);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--shadow-card);
}

.app-card span {
  color: var(--champagne-dark);
  font-size: 0.74rem;
  font-weight: 780;
  text-transform: uppercase;
}

.app-card h3 {
  margin: 0;
}

.app-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.app-card .button {
  margin-top: auto;
}

.primary-app-card {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 239, 230, 0.84));
}

.android-status-card {
  background: rgba(247, 239, 230, 0.66);
}

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

.contact-card,
.faq-grid article,
.mini-grid article {
  padding: 22px;
  border-radius: var(--radius-small);
}

.mini-grid article {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--champagne-dark);
  font-size: 0.75rem;
  font-weight: 780;
  text-transform: uppercase;
}

.contact-card a,
.policy-card a,
.site-footer a,
.support-list a {
  color: var(--champagne-dark);
  font-weight: 760;
  overflow-wrap: anywhere;
}

.contact-card p,
.contact-card address,
.faq-grid p,
.mini-grid p {
  margin: 0;
  color: var(--muted);
}

.contact-card address,
.footer-address {
  font-style: normal;
  line-height: 1.55;
}

.location-card a {
  display: inline-block;
  margin-top: 12px;
}

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

.faq-grid h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.faq-accordion {
  display: grid;
  max-width: 860px;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(215, 197, 180, 0.72);
  border-radius: var(--radius-small);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 0;
  background: transparent;
  color: var(--espresso);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.faq-question span:first-child {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.14;
}

.faq-question:focus-visible {
  outline: 2px solid rgba(199, 164, 106, 0.42);
  outline-offset: -4px;
}

.faq-indicator {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(199, 164, 106, 0.36);
  border-radius: 50%;
  color: var(--champagne-dark);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-indicator::before {
  content: "+";
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 720;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-indicator {
  transform: rotate(45deg);
  background: rgba(199, 164, 106, 0.12);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
}

.faq-answer.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer > div {
  overflow: hidden;
  padding: 0 22px;
}

.faq-answer.is-open > div {
  padding-bottom: 22px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  max-width: 980px;
  padding: clamp(42px, 6vw, 68px) 0 clamp(18px, 3vw, 30px);
}

.page-hero h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.page-hero .lead {
  margin-right: auto;
  margin-left: auto;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

.category-nav a {
  padding: 9px 13px;
  border: 1px solid rgba(215, 197, 180, 0.72);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.menu-page .service-group {
  padding: clamp(36px, 6vw, 64px) 0 0;
  scroll-margin-top: 92px;
}

.section-heading.compact {
  display: flex;
  max-width: 100%;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.section-heading.compact p:last-child {
  max-width: 360px;
  margin: 0;
}

.premium-group .service-card {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 239, 230, 0.72));
}

.policy-page,
.support-page {
  padding-bottom: clamp(42px, 7vw, 88px);
}

.support-page > .section:first-of-type {
  padding-top: clamp(28px, 4vw, 42px);
}

.policy-card,
.support-panel {
  width: min(920px, calc(100% - 36px));
  margin: clamp(38px, 6vw, 70px) auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 24px;
}

.policy-card h1,
.support-panel h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.policy-card h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.notice,
.service-note-inline {
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 3px solid var(--champagne);
  background: rgba(247, 239, 230, 0.7);
  color: var(--charcoal) !important;
}

.support-split {
  align-items: start;
  padding-top: 36px;
}

.section-narrow {
  width: min(860px, calc(100% - 36px));
  margin: clamp(42px, 6vw, 72px) auto;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid rgba(215, 197, 180, 0.72);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.section-narrow p {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(215, 197, 180, 0.68);
  background: rgba(247, 239, 230, 0.64);
  color: var(--muted);
}

.site-footer > p {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 6px;
  text-align: center;
}

.site-footer > p:first-child {
  padding-top: 30px;
}

.site-footer > p:last-child {
  padding-bottom: 30px;
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px) 0;
}

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

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  color: var(--espresso);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.footer-brand p,
.footer-bottom p,
.footer-columns p,
.footer-address {
  margin: 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 0.8fr;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(215, 197, 180, 0.62);
}

.footer-columns h2 {
  margin-bottom: 10px;
  color: var(--espresso);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(215, 197, 180, 0.62);
  font-size: 0.9rem;
}

.site-credit {
  color: #8d8177;
}

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

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

  .button:hover,
  .button:focus-visible,
  .nav-cta:hover,
  .nav-cta:focus-visible,
  .service-card:hover,
  .service-card:focus-within,
  .mini-grid article:hover,
  .mini-grid article:focus-within {
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .app-ecosystem {
    width: 100%;
  }

  .hero-grid,
  .split-section,
  .split-section.warm,
  .editorial-card {
    grid-template-columns: 1fr;
  }

  .about-photo-stack {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    align-items: end;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-visual .image-placeholder,
  .hero-visual .hero-photo {
    min-height: 320px;
  }

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

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

  .service-feature-visual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .luxury-hero {
    padding-top: 46px;
  }

  h1,
  .page-hero h1,
  html[lang^="es"] .luxury-hero h1,
  html[lang^="es"] .page-hero h1 {
    font-size: 2.125rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.78rem;
  }

  .brand {
    white-space: normal;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 0.86rem;
  }

  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .language-switch,
  .nav-cta {
    width: 100%;
  }

  .language-switch {
    justify-content: center;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-grid,
  .hero-content,
  .hero-visual,
  .hero-photo {
    min-width: 0;
  }

  .hero-visual,
  .hero-visual .hero-photo {
    min-height: 0;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .service-grid,
  .contact-grid,
  .app-ecosystem,
  .faq-grid,
  .mini-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .section,
  .split-section,
  .booking-section,
  .page-hero {
    width: min(100% - 28px, 1180px);
  }

  .service-card {
    min-height: auto;
  }

  .visual-stack .real-photo-card,
  .service-feature-photo {
    min-height: 280px;
  }

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

  .section-heading.compact,
  .booking-section,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

}
