:root {
  --black: #050506;
  --charcoal: #0c0d11;
  --panel: #15171d;
  --panel-soft: #1d2028;
  --red: #d71920;
  --deep-red: #8f1018;
  --blue: #0b4fd8;
  --white: #ffffff;
  --muted: #b9c0cf;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 6, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

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

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  font-weight: 800;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--red);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 900;
}

.language-option {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 900;
}

.language-option.active {
  color: var(--white);
}

.language-option:hover {
  color: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 7vw, 96px) 78px;
}

.hero-slider,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  overflow: hidden;
  background: var(--black);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 5200ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide:nth-child(2) {
  object-position: 72% center;
}

.hero-slide:nth-child(3) {
  object-position: 64% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.98), rgba(5, 5, 6, 0.82) 42%, rgba(5, 5, 6, 0.34)),
    linear-gradient(0deg, rgba(5, 5, 6, 0.98), rgba(5, 5, 6, 0.18) 52%, rgba(5, 5, 6, 0.58)),
    linear-gradient(120deg, rgba(215, 25, 32, 0.18), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2,
.team-card h3 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 9.4ch;
  margin-bottom: 18px;
  font-size: clamp(5rem, 11vw, 10.5rem);
  line-height: 0.82;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.9rem, 5.2vw, 5.4rem);
  line-height: 0.9;
}

.hero-content p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(215, 25, 32, 0.28);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button.blue {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(11, 79, 216, 0.2);
}

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

.ticker {
  display: flex;
  gap: 1px;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.ticker span {
  flex: 1;
  min-width: 150px;
  padding: 15px 18px;
  background: linear-gradient(135deg, var(--red), var(--deep-red));
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.45rem;
  text-align: center;
  text-transform: uppercase;
}

.section,
.contact-section,
.reserve-location-section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 7vw, 96px);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-intro.compact {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.5fr);
  gap: 26px;
  max-width: none;
  align-items: end;
}

.section-intro.compact .eyebrow,
.section-intro.compact h2 {
  grid-column: 1;
}

.section-intro.compact p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
}

.section-intro p:not(.eyebrow),
.team-card p,
.reserve-copy p,
.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.services-section,
.team-section,
.work-section,
.faq-section,
.reserve-location-section,
.contact-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 25, 32, 0.09), transparent 28%),
    var(--charcoal);
}

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

.service-menu {
  display: grid;
  gap: 24px;
}

.service-menu-group {
  display: grid;
  gap: 12px;
}

.service-menu-group > h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.service-card h4 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.35;
}

.service-card strong {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.service-note {
  margin: 2px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(215, 25, 32, 0.34);
  border-radius: 8px;
  background: rgba(215, 25, 32, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-transform: uppercase;
}

.beauty-menu {
  position: relative;
  display: grid;
  gap: 26px;
  margin-top: 38px;
  padding: clamp(24px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 0%, rgba(215, 25, 32, 0.17), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #07090c;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.beauty-menu::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.85;
}

.beauty-menu-header {
  display: grid;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.beauty-menu-header span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.beauty-menu-header h3 {
  margin: 0;
  color: var(--white);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.beauty-menu-header p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
  line-height: 1.55;
}

.beauty-menu-subtitle {
  display: grid;
  gap: 5px;
}

.beauty-menu-subtitle strong {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.beauty-menu-subtitle span {
  color: rgba(255, 255, 255, 0.74);
}

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

.beauty-menu-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.026));
}

.beauty-menu-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.beauty-menu-card h4::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
}

.beauty-price-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.beauty-price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

.beauty-price-list li:last-child {
  border-bottom: 0;
}

.beauty-price-list span {
  line-height: 1.3;
}

.beauty-price-list strong {
  color: var(--red);
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
}

.beauty-menu-note-card {
  grid-column: 1 / -1;
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.beauty-menu-note-card p {
  max-width: 860px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.beauty-menu-cta {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .beauty-menu-grid {
    grid-template-columns: 1fr;
  }

  .beauty-menu-note-card {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .beauty-menu {
    margin-top: 30px;
    padding: 22px 16px;
    border-radius: 12px;
  }

  .beauty-menu-grid {
    gap: 12px;
  }

  .beauty-menu-card {
    padding: 18px;
  }

  .beauty-price-list li {
    gap: 12px;
  }

  .beauty-price-list span {
    font-size: 0.92rem;
  }

  .beauty-menu-cta .button {
    width: 100%;
  }
}

.mood-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  min-height: clamp(620px, 56.25vw, 760px);
  overflow: hidden;
  padding: clamp(70px, 7.5vw, 104px) clamp(20px, 7vw, 96px);
  background: #030405;
}

.mood-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.08) 0%, rgba(2, 3, 4, 0.1) 40%, rgba(2, 3, 4, 0.9) 57%, rgba(2, 3, 4, 0.98) 100%),
    linear-gradient(0deg, rgba(2, 3, 4, 0.52), rgba(2, 3, 4, 0.02) 42%, rgba(2, 3, 4, 0.4));
  pointer-events: none;
}

.mood-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.mood-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 17% 26%, rgba(255, 255, 255, 0.1), transparent 22%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.1) 46%, rgba(0, 0, 0, 0.92) 63%, rgba(0, 0, 0, 0.98) 100%);
}

.mood-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.08) brightness(0.92);
}

.mood-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  justify-self: start;
  max-width: 650px;
  padding-left: clamp(8px, 1vw, 18px);
}

.mood-copy h2 {
  max-width: 10.6ch;
  margin-bottom: 22px;
  font-size: clamp(3.9rem, 6.1vw, 6.5rem);
  line-height: 0.86;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
}

.mood-copy p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.mood-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.mood-points span {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mood-copy .button {
  width: fit-content;
  min-width: 220px;
  margin-top: 26px;
}

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

.team-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.team-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
}

.team-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.team-preview img.lupe-action-photo {
  object-position: center 18%;
}

.lupe-card .team-preview img:not(.lupe-action-photo),
.portfolio-panel[data-portfolio-panel="lupe"] .specialist-gallery img {
  object-position: center center;
}

.gaby-card .team-preview img,
.portfolio-panel[data-portfolio-panel="gaby"] .specialist-gallery img {
  object-position: center center;
}

.mandy-card .team-preview img,
.portfolio-panel[data-portfolio-panel="mandy"] .specialist-gallery img {
  object-position: center center;
}

.rico-card .team-preview img,
.portfolio-panel[data-portfolio-panel="rico"] .specialist-gallery img {
  object-position: center center;
}

.manny-card .team-preview img,
.portfolio-panel[data-portfolio-panel="manny"] .specialist-gallery img {
  object-position: center center;
}

.manny-card .team-preview img.manny-profile-photo {
  object-position: 58% center;
}

.magdalena-card .team-preview img.magdalena-profile-photo {
  object-position: 54% center;
}

.portfolio-panel[data-portfolio-panel="manny"] .specialist-gallery img.manny-gallery-focus-01 {
  object-position: 32% center;
}

.portfolio-panel[data-portfolio-panel="manny"] .specialist-gallery img.manny-gallery-focus-02 {
  object-position: 42% center;
}

.portfolio-panel[data-portfolio-panel="manny"] .specialist-gallery img.manny-gallery-focus-03 {
  object-position: 46% center;
}

.portfolio-panel[data-portfolio-panel="magdalena"] .specialist-gallery img.magdalena-gallery-focus-01 {
  object-position: 50% 38%;
}

.portfolio-panel[data-portfolio-panel="maggie"] .specialist-gallery img.maggie-gallery-focus-01 {
  object-position: 50% 36%;
}

.portfolio-panel[data-portfolio-panel="maggie"] .specialist-gallery img.maggie-gallery-focus-02 {
  object-position: 54% center;
}

.team-card h3 {
  margin: 0 0 10px;
  font-size: clamp(2.8rem, 4vw, 4.3rem);
  line-height: 0.9;
}

.team-specialty {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(215, 25, 32, 0.38);
  border-radius: 999px;
  color: var(--white);
  background: rgba(215, 25, 32, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 18px;
}

.team-contact a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.team-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
}

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

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(215, 25, 32, 0.22), transparent 28%),
    rgba(2, 2, 4, 0.82);
  backdrop-filter: blur(16px);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.portfolio-modal.active {
  visibility: visible;
  opacity: 1;
}

.portfolio-dialog {
  position: relative;
  width: min(1100px, 100%);
  max-height: min(86svh, 860px);
  overflow: auto;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(29, 32, 40, 0.96), rgba(6, 7, 10, 0.98)),
    var(--charcoal);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
}

.portfolio-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.portfolio-panel {
  display: none;
}

.portfolio-panel.active {
  display: block;
}

.portfolio-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px 28px;
  align-items: end;
  margin-bottom: 22px;
  padding-right: 46px;
}

.portfolio-header .eyebrow,
.portfolio-header h2,
.portfolio-header p {
  grid-column: 1;
}

.portfolio-header h2 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.88;
}

.portfolio-header p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.portfolio-cta-row {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: flex;
  gap: 10px;
  align-self: end;
}

.specialist-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.specialist-gallery figure,
.coming-soon {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.specialist-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.portfolio-panel[data-portfolio-panel="silvia"] .silvia-profile-frame {
  object-position: 38% center;
}

.specialist-gallery figure:hover img {
  transform: scale(1.04);
}

.specialist-gallery figure {
  cursor: zoom-in;
}

.specialist-gallery figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 5, 6, 0.72);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coming-soon {
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--muted);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.18), rgba(11, 79, 216, 0.12)),
    var(--panel);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  visibility: hidden;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(215, 25, 32, 0.18), transparent 30%),
    rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.image-lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox-frame {
  position: relative;
  width: min(920px, 100%);
  max-height: min(82svh, 820px);
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.lightbox-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(76svh, 760px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.72);
}

.lightbox-frame img.silvia-profile-frame {
  object-position: 38% center;
}

.lightbox-frame figcaption {
  min-height: 1.2em;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(10, 11, 14, 0.78);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 25, 32, 0.75);
  background: rgba(215, 25, 32, 0.86);
}

.lightbox-close {
  top: calc(18px + env(safe-area-inset-top));
  right: calc(18px + env(safe-area-inset-right));
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 1.55rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev {
  left: calc(18px + env(safe-area-inset-left));
}

.lightbox-next {
  right: calc(18px + env(safe-area-inset-right));
}

.work-section {
  background:
    linear-gradient(180deg, var(--charcoal), #08090c);
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.gallery-tabs button {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-tabs button.active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

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

.portfolio-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0a0b0e;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.portfolio-card.is-hidden {
  display: none;
}

.portfolio-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.02) saturate(1.03);
}

#trabajo .portfolio-grid {
  grid-template-columns: repeat(auto-fit, 200px);
  justify-content: center;
  align-items: start;
  gap: 16px;
}

#trabajo .portfolio-card {
  width: 200px;
  height: 200px;
}

#trabajo .portfolio-card img {
  height: 100%;
  aspect-ratio: auto;
}

#trabajo .portfolio-card[data-category="cortes"] img,
#trabajo .portfolio-card[data-category="trenzas"] img {
  object-position: center center;
}

#trabajo .portfolio-card img.rico-fade-frame {
  object-position: 70% 55%;
}

.portfolio-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(5, 5, 6, 0.72);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.faq-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(215, 25, 32, 0.12), transparent 28%),
    var(--black);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 54px 20px 22px;
  color: var(--white);
  cursor: pointer;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 900;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--red);
  font-size: 1.55rem;
  line-height: 1;
  transform: translateY(-50%);
}

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

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.reserve-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.18), transparent 34%),
    var(--black);
  box-shadow: var(--shadow);
}

.location-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.location-slider {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--black);
}

.location-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 800ms ease, transform 4200ms ease;
}

.location-slide.active {
  opacity: 1;
  transform: scale(1);
}

.location-slide:nth-child(2) {
  object-position: center;
}

.recognition-slide {
  box-sizing: border-box;
  object-fit: contain;
  padding: 10px;
  background: var(--black);
}

.location-card div {
  padding: 20px;
}

.location-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.location-card strong {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  background: var(--black);
}

.contact-logo {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

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

.contact-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.contact-card span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.25;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 7vw, 96px);
  background: var(--black);
  color: var(--muted);
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
}

@media (max-width: 1100px) {
  .service-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .team-grid,
  .reserve-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .section-intro.compact,
  .mood-section {
    grid-template-columns: 1fr;
  }

  .section-intro.compact p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

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

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

  #trabajo .portfolio-grid {
    grid-template-columns: repeat(auto-fit, 190px);
    justify-content: center;
  }

  #trabajo .portfolio-card {
    width: 190px;
    height: 190px;
  }

  .mood-section {
    min-height: auto;
    align-items: start;
    padding: 390px clamp(20px, 5vw, 36px) 82px;
  }

  .mood-section::after {
    background:
      linear-gradient(0deg, rgba(5, 5, 6, 0.99), rgba(5, 5, 6, 0.78) 46%, rgba(5, 5, 6, 0.18)),
      radial-gradient(circle at 34% 42%, rgba(215, 25, 32, 0.14), transparent 32%);
  }

  .mood-bg {
    position: absolute;
    height: auto;
    margin: 0;
  }

  .mood-bg::before {
    inset: 0;
    background:
      linear-gradient(0deg, rgba(5, 5, 6, 0.95), rgba(5, 5, 6, 0.25) 58%, rgba(5, 5, 6, 0.08)),
      linear-gradient(90deg, rgba(5, 5, 6, 0.04), rgba(5, 5, 6, 0.34));
  }

  .mood-bg img {
    object-position: 28% top;
    filter: saturate(1.04) contrast(1.08) brightness(0.9);
  }

  .mood-copy {
    grid-column: 1;
    max-width: 560px;
    padding-left: 0;
  }

  .mood-copy h2 {
    max-width: 9.5ch;
    margin-bottom: 18px;
    font-size: clamp(2.65rem, 10.5vw, 4.25rem);
    line-height: 0.9;
  }

}

@media (max-width: 720px) {
  .site-header {
    gap: 10px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .nav-toggle {
    display: block;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  .brand strong {
    max-width: 150px;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    font-size: 0.56rem;
    line-height: 1;
  }

  .language-switcher {
    gap: 5px;
    padding: 6px 7px;
    font-size: 0.68rem;
    flex: 0 0 auto;
  }

  .site-nav {
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 5, 6, 0.96);
    box-shadow: var(--shadow);
  }

  .menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 82svh;
    padding: 96px 18px calc(54px + env(safe-area-inset-bottom));
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 6, 0.98), rgba(5, 5, 6, 0.7)),
      linear-gradient(0deg, rgba(5, 5, 6, 0.98), rgba(5, 5, 6, 0.24));
  }

  .hero-slide {
    object-position: 58% center;
  }

  .hero-slide:nth-child(2) {
    object-position: 72% center;
  }

  .hero-slide:nth-child(3) {
    object-position: 58% center;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .ticker {
    overflow-x: auto;
  }

  .hero-actions,
  .reserve-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button,
  .reserve-actions .button,
  .mood-copy .button {
    width: 100%;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content p:not(.eyebrow) {
    max-width: 34rem;
    font-size: 0.98rem;
  }

  .mood-section {
    padding: 370px 20px calc(74px + env(safe-area-inset-bottom));
  }

  .mood-copy p:not(.eyebrow) {
    max-width: 31rem;
    line-height: 1.55;
  }

  .mood-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 22px;
  }

  .mood-points span {
    display: grid;
    min-height: 42px;
    place-items: center;
    padding: 8px 9px;
    font-size: 0.67rem;
    line-height: 1.15;
    text-align: center;
  }

  .mood-points span:last-child {
    grid-column: 1 / -1;
  }

  .mood-copy .button {
    margin-top: 22px;
    margin-bottom: env(safe-area-inset-bottom);
  }

  .service-card-grid,
  .team-grid,
  .portfolio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  #trabajo .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  #trabajo .portfolio-card {
    width: 100%;
    height: 170px;
  }

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

  .portfolio-modal {
    padding: 12px;
  }

  .portfolio-dialog {
    max-height: 92svh;
    padding: 22px;
    border-radius: 12px;
  }

  .portfolio-header {
    grid-template-columns: 1fr;
    padding-right: 44px;
  }

  .portfolio-header h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .portfolio-cta-row {
    grid-column: 1;
    grid-row: auto;
    flex-direction: column;
  }

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

  .specialist-gallery figure,
  .coming-soon,
  .specialist-gallery img {
    min-height: 170px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand strong {
    max-width: 118px;
  }

  .hero {
    min-height: 78svh;
    padding-top: 88px;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-actions .button {
    min-height: 46px;
  }

  .mood-section {
    padding: 340px 18px calc(76px + env(safe-area-inset-bottom));
  }

  .mood-bg img {
    object-position: 30% top;
  }

  .mood-copy h2 {
    font-size: clamp(2.42rem, 11.4vw, 3.55rem);
  }

  .mood-points span {
    font-size: 0.63rem;
  }

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

@media (max-width: 768px) {
  .mood-section {
    display: flex;
    min-height: 100svh;
    align-items: center;
    padding: 110px 22px 95px;
  }

  .mood-section::after {
    background:
      linear-gradient(0deg, rgba(5, 5, 6, 0.98), rgba(5, 5, 6, 0.74) 46%, rgba(5, 5, 6, 0.26)),
      linear-gradient(90deg, rgba(5, 5, 6, 0.94), rgba(5, 5, 6, 0.54) 52%, rgba(5, 5, 6, 0.36));
  }

  .mood-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 22% center;
  }

  .mood-bg::before {
    background:
      linear-gradient(0deg, rgba(5, 5, 6, 0.96), rgba(5, 5, 6, 0.28) 58%, rgba(5, 5, 6, 0.12)),
      linear-gradient(90deg, rgba(5, 5, 6, 0.1), rgba(5, 5, 6, 0.42));
  }

  .mood-copy {
    width: 100%;
    max-width: 360px;
    margin-right: auto;
    margin-left: 0;
    padding-left: 0;
  }

  .mood-copy h2 {
    max-width: 340px;
    margin-bottom: 0;
    font-size: clamp(2.7rem, 10.5vw, 4rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
  }

  .mood-copy p:not(.eyebrow) {
    max-width: 330px;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .mood-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
  }

  .mood-points span {
    min-height: auto;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.8rem;
  }

  .mood-points span:last-child {
    grid-column: auto;
  }

  .mood-copy .button {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100%;
    max-width: 340px;
    margin-top: 22px;
    margin-bottom: calc(28px + env(safe-area-inset-bottom));
    padding: 16px 18px;
    transform: none !important;
  }
}

/* Nuestro Trabajo: compact portfolio thumbnails only. */
#trabajo.work-section .portfolio-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, 240px) !important;
  justify-content: center !important;
  align-items: start !important;
  gap: 20px !important;
}

#trabajo.work-section .portfolio-card {
  width: 240px !important;
  max-width: 240px !important;
  height: 240px !important;
  overflow: hidden !important;
  border-radius: 14px !important;
}

#trabajo.work-section .portfolio-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
}

@media (max-width: 768px) {
  #trabajo.work-section .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  #trabajo.work-section .portfolio-card {
    width: 100% !important;
    max-width: none !important;
    height: 190px !important;
  }
}

@media (max-width: 480px) {
  #trabajo.work-section .portfolio-card {
    height: 175px !important;
  }
}

@media (max-width: 768px) {
  section.mood-section {
    background-image:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 0%,
        rgba(0, 0, 0, 0.10) 45%,
        rgba(0, 0, 0, 0.82) 64%,
        rgba(0, 0, 0, 0.98) 100%
      ),
      url("images/hero-mobile.jpg") !important;
    background-repeat: no-repeat !important;
    background-position: center top !important;
    background-size: 100% auto !important;
    display: flex !important;
    height: auto !important;
    min-height: auto !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    padding-top: clamp(520px, 78vh, 660px) !important;
    padding-right: 20px !important;
    padding-bottom: calc(44px + env(safe-area-inset-bottom)) !important;
    padding-left: 20px !important;
  }

  section.mood-section::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.12) 42%,
      rgba(0, 0, 0, 0.76) 72%,
      rgba(0, 0, 0, 0.96) 100%
    ) !important;
  }

  section.mood-section .mood-bg {
    display: none !important;
  }

  section.mood-section .mood-copy {
    width: 100% !important;
    max-width: 360px !important;
    margin-right: auto !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  section.mood-section .mood-copy h2 {
    max-width: 340px !important;
    font-size: clamp(3rem, 11vw, 4.4rem) !important;
    line-height: 0.9 !important;
  }

  section.mood-section .mood-copy p:not(.eyebrow) {
    max-width: 330px !important;
    margin-top: 18px !important;
    font-size: 1rem !important;
    line-height: 1.45 !important;
  }

  section.mood-section .mood-points {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 24px !important;
  }

  section.mood-section .mood-points span {
    padding: 11px 14px !important;
    border-radius: 10px !important;
    font-size: 0.78rem !important;
  }

  section.mood-section .mood-copy .button {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    display: flex !important;
    width: 100% !important;
    max-width: 340px !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 24px !important;
    margin-bottom: calc(40px + env(safe-area-inset-bottom)) !important;
    padding: 16px 18px !important;
    transform: none !important;
  }
}

/* Mobile polish: keep desktop untouched while tightening the phone experience. */
@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .image-lightbox {
    padding: calc(72px + env(safe-area-inset-top)) 14px calc(86px + env(safe-area-inset-bottom));
  }

  .lightbox-frame {
    max-height: calc(100svh - 170px);
  }

  .lightbox-frame img {
    max-height: calc(100svh - 210px);
    border-radius: 12px;
  }

  .lightbox-close {
    width: 42px;
    height: 42px;
  }

  .lightbox-nav {
    top: auto;
    bottom: calc(20px + env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
    font-size: 1.8rem;
  }

  .lightbox-prev {
    left: calc(22px + env(safe-area-inset-left));
  }

  .lightbox-next {
    right: calc(22px + env(safe-area-inset-right));
  }

  .site-header {
    padding: calc(10px + env(safe-area-inset-top)) 14px 10px;
    gap: 8px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    max-width: min(42vw, 170px);
    font-size: 0.86rem;
  }

  .brand small {
    font-size: 0.58rem;
    letter-spacing: 0.02em;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .language-switcher {
    min-height: 42px;
    border-radius: 10px;
  }

  .site-nav {
    top: calc(68px + env(safe-area-inset-top));
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: 78svh;
    padding: calc(106px + env(safe-area-inset-top)) 20px calc(42px + env(safe-area-inset-bottom));
    align-items: flex-end;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 6, 0.98), rgba(5, 5, 6, 0.68) 56%, rgba(5, 5, 6, 0.5)),
      linear-gradient(0deg, rgba(5, 5, 6, 0.98), rgba(5, 5, 6, 0.38) 58%, rgba(5, 5, 6, 0.16));
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
    line-height: 0.88;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content p:not(.eyebrow) {
    max-width: 30rem;
    font-size: 0.96rem;
  }

  .hero-actions,
  .reserve-actions,
  .team-actions,
  .portfolio-cta-row {
    gap: 10px;
  }

  .button {
    min-height: 48px;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 10px;
    text-align: center;
  }

  .section {
    padding: 72px 18px;
  }

  .reserve-location-section {
    padding: 62px 16px;
  }

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

  .section-intro h2,
  h2 {
    font-size: clamp(2.55rem, 11vw, 3.8rem);
    line-height: 0.92;
  }

  .service-menu {
    gap: 28px;
  }

  .service-menu-group > h3 {
    font-size: 1rem;
  }

  .service-card {
    min-height: 96px;
    padding: 16px;
    gap: 12px;
    border-radius: 10px;
  }

  .service-card h4 {
    font-size: 0.92rem;
    line-height: 1.18;
  }

  .service-card p {
    font-size: 0.78rem;
  }

  .service-card strong {
    font-size: 0.96rem;
  }

  .service-note {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  section.mood-section {
    padding-top: clamp(500px, 70vh, 620px) !important;
    padding-right: 20px !important;
    padding-bottom: calc(40px + env(safe-area-inset-bottom)) !important;
    padding-left: 20px !important;
  }

  section.mood-section .mood-copy h2 {
    font-size: clamp(2.9rem, 10.8vw, 4.1rem) !important;
  }

  section.mood-section .mood-points {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  section.mood-section .mood-points span:last-child {
    grid-column: 1 / -1 !important;
  }

  .team-card {
    padding: 16px;
    border-radius: 10px;
  }

  .team-preview {
    gap: 6px;
    margin-bottom: 18px;
  }

  .team-contact {
    gap: 8px;
  }

  .team-contact a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .team-actions {
    margin-top: 18px;
  }

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

  #trabajo.work-section .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  #trabajo.work-section .portfolio-card {
    height: 178px !important;
    border-radius: 12px !important;
  }

  .gallery-tabs {
    gap: 8px;
    justify-content: flex-start;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-tabs::-webkit-scrollbar {
    display: none;
  }

  .gallery-tabs button {
    flex: 0 0 auto;
    padding: 10px 12px;
    font-size: 0.74rem;
  }

  .reserve-panel {
    gap: 18px;
    padding: 16px;
    border-radius: 12px;
  }

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

  .reserve-copy h2 {
    font-size: clamp(2.1rem, 9vw, 3rem);
    line-height: 0.95;
  }

  .reserve-copy p:not(.eyebrow) {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .reserve-actions {
    margin-top: 12px;
  }

  .location-card {
    border-radius: 12px;
  }

  .location-slider {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .location-slide,
  .location-slide:nth-child(2) {
    object-fit: contain;
    object-position: center;
    padding: 8px;
    background: var(--black);
  }

  .location-card div {
    padding: 14px 16px 16px;
  }

  .location-card span {
    margin-bottom: 5px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .location-card strong {
    font-size: 1.16rem;
  }

  .contact-section {
    gap: 28px;
  }

  .contact-card {
    border-radius: 10px;
  }

  .portfolio-modal {
    padding: calc(12px + env(safe-area-inset-top)) 12px calc(12px + env(safe-area-inset-bottom));
  }

  .portfolio-dialog {
    max-height: calc(100svh - 24px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    padding: 20px;
  }

  .portfolio-close {
    top: 12px;
    right: 12px;
  }

  .specialist-gallery figure,
  .coming-soon,
  .specialist-gallery img {
    min-height: 150px;
  }
}

@media (max-width: 430px) {
  .brand strong {
    max-width: 132px;
  }

  .brand small {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-switcher {
    padding: 6px 7px;
    font-size: 0.66rem;
  }

  .hero {
    min-height: 76svh;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-actions .button,
  .reserve-actions .button,
  .team-card .button {
    min-height: 46px;
  }

  .service-card {
    align-items: flex-start;
  }

  .service-card strong {
    align-self: flex-end;
  }

  section.mood-section {
    padding-top: clamp(470px, 66vh, 575px) !important;
  }

  #trabajo.work-section .portfolio-card {
    height: 164px !important;
  }

  .reserve-location-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .reserve-panel {
    padding: 14px;
  }

  .reserve-copy h2 {
    font-size: clamp(1.95rem, 10vw, 2.55rem);
  }

  .reserve-copy p:not(.eyebrow) {
    font-size: 0.88rem;
  }

  .location-slide,
  .location-slide:nth-child(2) {
    padding: 7px;
  }
}
