*, *::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: 64px;
}

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: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.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;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.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: 120px;
  height: 120px;
  justify-content: center;
  background: rgba(214,43,43,0.06);
}
.badge__number {
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.badge__text {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.3;
  margin-top: 4px;
}

/* 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; }

/* 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;
}
.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);
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item { height: 180px; }
}

/* 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__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 auto;
  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-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; }
}

/* 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;
  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);
}

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

  .hero {
    min-height: 100svh;
    padding: 88px 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: flex-end;
  }
  .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; }

  .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 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; }

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

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

  .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; }
}
