*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #D62B2B;
  --red-dark: #B02020;
  --black: #111111;
  --dark: #1A1A1A;
  --gray: #F5F5F5;
  --text: #333333;
  --text-light: #777777;
  --white: #FFFFFF;
  --green-wa: #25D366;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn--whatsapp {
  background: var(--green-wa);
  color: var(--white);
}
.btn--whatsapp:hover { background: #1ebd5a; transform: translateY(-1px); }
.btn--nav {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
}
.btn--nav:hover { background: var(--red-dark); }

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 72px;
  width: 72px;
  object-fit: cover;
  border-radius: 50%;
}
.logo-torra {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}
.logo-sub {
  font-size: 9px;
  color: var(--red);
  letter-spacing: 3px;
  font-weight: 600;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile.open { display: flex; }
.mobile-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--white); }
.mobile-link--cta {
  color: var(--red);
  border-bottom: none;
  font-weight: 700;
}

/* HERO */
.hero {
  min-height: 100svh;
  background:
    linear-gradient(to right, rgba(10,10,10,0.92) 45%, rgba(10,10,10,0.55) 100%),
    url('https://images.unsplash.com/photo-1625047509248-ec889cbff17f?w=1800&q=80&fit=crop') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 24px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(214,43,43,0.06) 100%);
  pointer-events: none;
}
.hero::after {
  content: 'TORRA';
  position: absolute;
  right: -40px;
  bottom: 40px;
  font-size: 220px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  letter-spacing: 10px;
  pointer-events: none;
  user-select: none;
}
.hero__content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero__since {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__badge {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid rgba(214,43,43,0.4);
  border-radius: 50%;
  width: 168px;
  height: 168px;
  justify-content: center;
  background: rgba(214,43,43,0.06);
}
.badge__number {
  font-size: 48px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.badge__text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.3;
  margin-top: 6px;
  padding: 0 12px;
}

/* QUICKBAR */
.quickbar {
  background: var(--dark);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.quickbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.quickbar__item:last-child { border-right: none; }
.quickbar__item:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.quickbar__item--green:hover { color: var(--green-wa); }
.quickbar__item--ig:hover { color: #E1306C; }

/* HORARIO DESTACADO */
.hours-banner {
  background: var(--white);
  padding: 44px 0 4px;
}
.hours-banner__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 32px;
  border: 2px solid rgba(214,43,43,0.25);
  background: rgba(214,43,43,0.04);
  border-radius: 16px;
}
.hours-banner__icon { color: var(--red); flex-shrink: 0; }
.hours-banner__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hours-banner__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
}
.hours-banner__times {
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.hours-banner__note {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* HERO CARRUSEL */
.hero-carousel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}
.carousel__track { position: absolute; inset: 0; }
.carousel__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.carousel__slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.carousel__slide .carousel__content { opacity: 0; transition: opacity 0.3s ease; }
.carousel__slide.is-active .carousel__content { opacity: 1; transition: opacity 0.6s ease 0.3s; }
.carousel__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.92) 38%, rgba(10,10,10,0.5) 100%);
}
.carousel__content { position: relative; z-index: 2; width: 100%; padding: 100px 0 90px; }
.carousel__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.carousel__title {
  font-size: clamp(38px, 6vw, 72px); font-weight: 900; color: var(--white);
  line-height: 1.06; margin-bottom: 20px; max-width: 720px;
}
.carousel__subtitle {
  font-size: 18px; color: rgba(255,255,255,0.62); max-width: 520px;
  line-height: 1.7; margin-bottom: 36px;
}
.carousel__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 48px; height: 48px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.14); color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.carousel__arrow:hover { background: rgba(214,43,43,0.9); }
.carousel__arrow--prev { left: 20px; }
.carousel__arrow--next { right: 20px; }
.carousel__dots {
  position: absolute; bottom: 18px; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center; gap: 2px;
}
.carousel__dot {
  width: 40px; height: 44px; border: none; background: transparent;
  cursor: pointer; padding: 0; position: relative;
  -webkit-tap-highlight-color: transparent;
}
.carousel__dot::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); transition: all 0.25s;
}
.carousel__dot.is-active::before { background: var(--red); width: 28px; border-radius: 5px; }

/* SECTIONS */
.section { padding: 80px 0; }
.section--dark { background: var(--black); }
.section--gray { background: var(--gray); }
.section__header {
  text-align: center;
  margin-bottom: 48px;
}
.section__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
}
.section--dark .section__title { color: var(--white); }

/* SERVICES */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid #EBEBEB;
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s ease;
  cursor: default;
}
.service-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(214,43,43,0.1);
  transform: translateY(-3px);
}
.service-card__icon {
  font-size: 32px;
  margin-bottom: 14px;
  color: var(--black);
}
.service-card__icon svg {
  width: 38px;
  height: 38px;
  vertical-align: middle;
}
.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* GALLERY */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}
.gallery__item--tall {
  grid-row: span 2;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery__item:hover img {
  transform: scale(1.05);
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.about__text .section__header { text-align: left; margin-bottom: 0; }
.about__desc {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.8;
  margin: 24px 0 40px;
  max-width: 520px;
}
.about__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat__number {
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat__label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.about__tagline {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 32px;
  max-width: 520px;
  padding-left: 16px;
  border-left: 3px solid var(--red);
}
.about__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.since-badge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(214,43,43,0.06);
}
.since-badge span:first-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--red);
}
.since-year {
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

/* SELL */
.section--sell {
  background: var(--black);
}
.sell {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.sell__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.sell__desc {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 28px;
}
.sell__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.sell__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
}
.sell__feature-icon {
  color: var(--green-wa);
  font-weight: 700;
  font-size: 16px;
}
.btn--sell {
  background: var(--green-wa);
  color: var(--white);
  font-size: 15px;
}
.btn--sell:hover { background: #1ebd5a; transform: translateY(-2px); }
.sell__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  min-width: 220px;
}
.sell__card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.sell__card-img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 22px;
}
.sell__card-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.sell__card-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.sell__card-role {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 12px;
}
.sell__card-phone {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .sell { grid-template-columns: 1fr; }
  .sell__visual { display: flex; justify-content: center; }
  .sell__card { width: 100%; max-width: 380px; }
}

/* REVIEWS */
.reviews__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.reviews__score {
  font-size: 56px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.reviews__stars {
  font-size: 22px;
  color: #F5A623;
  letter-spacing: 2px;
  line-height: 1.2;
}
.reviews__count {
  font-size: 13px;
  color: var(--text-light);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--white);
  border: 1px solid #EBEBEB;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.review-card__stars {
  font-size: 18px;
  color: #F5A623;
  letter-spacing: 1px;
}
.review-card__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.review-card__author {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
}
.reviews__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.reviews__btn {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid #DEDEDE;
  font-size: 14px;
  gap: 10px;
  white-space: nowrap;
}
.reviews__btn:hover {
  border-color: #999;
  transform: translateY(-1px);
}
.reviews__divider {
  width: 1px;
  height: 40px;
  background: #DEDEDE;
}
.reviews__write {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.reviews__write-text {
  font-size: 13px;
  color: var(--text-light);
}
.reviews__write-btn {
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  gap: 8px;
  padding: 12px 22px;
  white-space: nowrap;
}
.reviews__write-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .reviews__footer { flex-direction: column; align-items: stretch; gap: 16px; }
  .reviews__divider { display: none; }
  .reviews__write { align-items: stretch; }
  .reviews__write-btn { justify-content: center; }
  .reviews__btn { justify-content: center; }
}

/* BOOKING */
.booking__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.booking-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.25s ease;
}
.booking-card:hover { transform: translateY(-4px); }
.booking-card--green {
  background: var(--green-wa);
  color: var(--white);
}
.booking-card--green:hover { background: #1ebd5a; }
.booking-card--dark {
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
}
.booking-card--dark:hover { background: #222; }
.booking-card__icon {
  margin-bottom: 16px;
  opacity: 0.95;
}
.booking-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}
.booking-card p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 20px;
}
.booking-card__cta {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.9;
}
.booking__hours {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  margin-top: 24px;
}

/* LOCATION */
.location {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.location__address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  margin-bottom: 28px;
}
.location__address svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.location__address strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.location__address span {
  font-size: 14px;
  color: var(--text-light);
}
.location__nav-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-btn--maps {
  background: var(--black);
  color: var(--white);
}
.nav-btn--maps:hover { background: #333; transform: translateX(3px); }
.nav-btn--waze {
  background: #33CCFF;
  color: var(--black);
}
.nav-btn--waze:hover { background: #00bbf0; transform: translateX(3px); }
.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.location__map iframe { display: block; }

/* FOOTER */
.footer {
  background: var(--black);
  padding: 40px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.footer__brand {
  display: flex;
  align-items: center;
}
.footer__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  padding: 8px 0;
  display: inline-block;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* PHONE FLOAT */
.phone-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--black);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.25s;
  z-index: 999;
  text-decoration: none;
}
.phone-float:hover {
  transform: scale(1.1);
  background: #222;
  border-color: rgba(255,255,255,0.3);
}

/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.25s;
  z-index: 999;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* Ocultar los flotantes cuando se solapan con Agenda/Footer */
body.hide-floats .phone-float,
body.hide-floats .wa-float {
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  pointer-events: none;
}

/* Backdrop del menú móvil */
.nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 40;
}
.nav__backdrop.open { opacity: 1; visibility: visible; }

/* RESPONSIVE — tablet */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero {
    min-height: 100svh;
    padding: 104px 20px 60px;
    background:
      linear-gradient(rgba(10,10,10,0.88), rgba(10,10,10,0.75)),
      url('https://images.unsplash.com/photo-1625047509248-ec889cbff17f?w=1200&q=80&fit=crop') center/cover no-repeat;
    align-items: center;
  }
  .hero::after { display: none; }
  .hero__badge { display: none; }
  .hero__content { padding-bottom: 16px; }
  .hero__title { font-size: 36px; }
  .hero__subtitle { font-size: 15px; max-width: 100%; margin-bottom: 32px; }
  .hero__since { margin-bottom: 14px; }

  .carousel__overlay { background: linear-gradient(rgba(10,10,10,0.72), rgba(10,10,10,0.88)); }
  .carousel__content { padding: 96px 0 92px; }
  .carousel__title { font-size: 34px; }
  .carousel__subtitle { font-size: 15px; max-width: 100%; }
  .carousel__actions .btn { justify-content: center; }
  .carousel__arrow { display: none; }

  .hours-banner { padding: 32px 0 4px; }
  .hours-banner__card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px 22px;
  }
  .hours-banner__text { align-items: center; }
  .hours-banner__times { font-size: 17px; }

  .quickbar { flex-direction: column; }
  .quickbar__item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 14px 20px;
    font-size: 15px;
  }
  .quickbar__item:last-child { border-bottom: none; }

  .section { padding: 56px 0; }
  .section__header { margin-bottom: 32px; }

  .services__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-card { padding: 20px 16px; }
  .service-card__icon { font-size: 28px; margin-bottom: 10px; }
  .service-card__icon svg { width: 34px; height: 34px; }
  .service-card h3 { font-size: 14px; }
  .service-card p { font-size: 13px; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item { height: 160px; }

  .about { grid-template-columns: 1fr; }
  .about__visual { display: none; }
  .about__desc { font-size: 15px; margin: 20px 0 32px; }
  .about__stats { gap: 28px; }
  .stat__number { font-size: 30px; }

  .reviews__grid { grid-template-columns: 1fr; gap: 14px; }
  .reviews__score { font-size: 44px; }

  .booking__options { grid-template-columns: 1fr; gap: 14px; }
  .booking-card { padding: 24px 20px; }

  .location { grid-template-columns: 1fr; }
  .location__info { margin-bottom: 0; }

  .footer { padding-bottom: 40px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__links { flex-direction: column; gap: 12px; }
}

/* RESPONSIVE — mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero { padding: 80px 16px 48px; }
  .hero__title { font-size: 32px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; width: 100%; }

  .section { padding: 48px 0; }

  .services__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service-card { padding: 16px 14px; }

  .about__stats { gap: 20px; }
  .btn { justify-content: center; }
  .nav-btn { width: 100%; }

  .sell__card { padding: 24px 20px; }

  .booking-card { padding: 20px 16px; }
  .booking-card h3 { font-size: 18px; }

  .location__address strong { font-size: 16px; }

  .phone-float { width: 52px; height: 52px; bottom: 88px; right: 16px; }
  .wa-float { width: 52px; height: 52px; bottom: 24px; right: 16px; }
}
