/* ===== Variables ===== */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --gray-900: #1a1a1a;
  --gray-700: #3a3a3a;
  --gray-500: #6b6b6b;
  --gray-300: #b0b0b0;
  --gray-100: #f7f6f4;
  --white: #ffffff;
  --gold: #c9a96e;
  --gold-light: #d4bc8a;
  --gold-dark: #a88b4a;
  --gold-text: #856f3a;
  --call-green: #25d366;
  --call-green-dark: #1ebe57;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --gray-on-dark: #c4c4c4;
  --font: 'Heebo', sans-serif;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.14);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ===== Utilities ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.85rem;
}

.section__title {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.section__subtitle {
  margin-top: 0.9rem;
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 0.9rem 1.85rem;
  font-size: 1rem;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}

.btn--call {
  background: var(--call-green);
  color: #fff;
  border-color: var(--call-green);
}

.btn--call:hover,
.btn--call:focus-visible {
  background: var(--call-green-dark);
  border-color: var(--call-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  transition: background var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.2;
}

.logo__img {
  width: auto;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201, 169, 110, 0.25));
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__list a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-300);
  transition: color var(--transition);
  position: relative;
}

.nav__list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__list a:hover,
.nav__list a:focus-visible {
  color: var(--white);
}

.nav__list a:hover::after,
.nav__list a:focus-visible::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.84) 0%,
    rgba(10, 10, 10, 0.52) 48%,
    rgba(10, 10, 10, 0.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: 740px;
}

.hero__logo {
  width: clamp(130px, 20vw, 180px);
  height: auto;
  margin-bottom: 1.75rem;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 24px rgba(201, 169, 110, 0.15));
}

.hero__badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.4);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}

.hero__title {
  font-size: clamp(2.15rem, 6.2vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
}

.hero__text {
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 2.75rem;
  line-height: 1.85;
  max-width: 34em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ===== About ===== */
.about {
  background: var(--gray-100);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about__image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.about__image:hover img {
  transform: scale(1.04);
}

.about__text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about__text strong {
  color: var(--black);
}

.about__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__num {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ===== Why Choose Us ===== */
.why-us {
  background: var(--white);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 169, 110, 0.35);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(201, 169, 110, 0.14), rgba(201, 169, 110, 0.04));
  color: var(--gold-dark);
  transition: transform var(--transition), background var(--transition);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.08);
  background: linear-gradient(145deg, rgba(201, 169, 110, 0.22), rgba(201, 169, 110, 0.08));
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.55rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===== Services ===== */
.services {
  background: var(--gray-100);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.services__footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.15rem;
  color: var(--black);
}

/* ===== Brands ===== */
.brands {
  background: linear-gradient(180deg, #faf9f7 0%, #ffffff 100%);
  padding: 6.5rem 0;
}

.brands .section__header {
  margin-bottom: 3.25rem;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.brand-card {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  transition: transform var(--transition);
}

.brand-card:hover {
  transform: translateY(-4px);
}

.brand-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f0eeeb;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition);
}

.brand-card:hover .brand-card__media {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}

.brand-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  filter: saturate(0.96) contrast(1.02);
}

.brand-card:hover .brand-card__media img {
  transform: scale(1.03);
}

.brand-card__body {
  padding: 1.4rem 0.35rem 0;
  text-align: center;
}

.brand-card__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.4rem;
}

.brand-card__body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}

.brand-card__body p:not(.brand-card__eyebrow) {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 28ch;
  margin-inline: auto;
}

/* ===== Gallery ===== */
.gallery {
  background: var(--dark);
}

.gallery .section__label {
  color: var(--gold-light);
}

.gallery .section__title {
  color: var(--white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: default;
}

.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0);
  transition: background 0.5s ease;
  z-index: 1;
}

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 2rem 1.25rem 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.92;
  transform: translateY(6px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item:hover .gallery__overlay {
  background: rgba(10, 10, 10, 0.38);
}

.gallery__item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Loyalty ===== */
.loyalty {
  background: var(--gray-100);
}

.loyalty__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.loyalty-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--black);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.loyalty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 169, 110, 0.3);
}

.loyalty-card__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loyalty-card__check svg {
  width: 14px;
  height: 14px;
}

/* ===== Reviews ===== */
.reviews {
  background: var(--gray-100);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-card__stars {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: var(--gold-text);
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-card__name {
  font-weight: 600;
  color: var(--black);
  font-size: 0.95rem;
}

.review-card__date {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ===== Hours ===== */
.hours {
  background: var(--gray-100);
}

.hours__card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.hours__list {
  margin-bottom: 0;
}

.hours__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours__item:last-child {
  border-bottom: none;
}

.hours__day {
  font-weight: 500;
  color: var(--white);
}

.hours__time {
  font-weight: 600;
  color: var(--gold);
}

.hours__item--closed .hours__time {
  color: var(--gray-on-dark);
}

.hours__cta {
  text-align: center;
}

/* ===== Contact ===== */
.contact {
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  border-radius: 50%;
  color: var(--gold);
}

.contact__icon svg {
  width: 20px;
  height: 20px;
}

.contact__label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.2rem;
}

.contact__value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
}

a.contact__value:hover {
  color: var(--gold-dark);
}

a.contact__value:target {
  outline: 3px solid var(--gold);
  outline-offset: 6px;
  border-radius: 6px;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact .btn--outline {
  color: var(--black);
  border-color: var(--black);
}

.contact .btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

.contact .btn--whatsapp {
  color: #fff;
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  padding: 3.5rem 0 2.25rem;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo {
  width: 130px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(201, 169, 110, 0.2));
}

.footer__sub {
  font-size: 0.85rem;
  color: var(--gray-on-dark);
}

.footer__details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.footer__details a {
  color: var(--gray-on-dark);
  transition: color var(--transition);
}

.footer__details a:hover,
.footer__details a:focus-visible {
  color: var(--gold-light);
}

.footer__details span {
  color: var(--gray-on-dark);
  font-size: 0.9rem;
}

.footer__nav {
  margin-bottom: 1.25rem;
}

.footer__nav a {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__nav a:hover,
.footer__nav a:focus-visible {
  color: var(--white);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--gray-on-dark);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__credit {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--gray-on-dark);
}

.footer__agency {
  color: var(--gold-light);
  font-weight: 600;
  position: relative;
  transition: color var(--transition), letter-spacing var(--transition);
}

.footer__agency::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width var(--transition);
}

.footer__agency:hover {
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.footer__agency:hover::after {
  width: 100%;
}

/* ===== Floating CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--call-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all var(--transition);
}

.floating-cta:hover {
  transform: scale(1.1);
  background: var(--call-green-dark);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav__list {
    gap: 1.1rem;
  }

  .nav__list a {
    font-size: 0.82rem;
  }
}

@media (max-width: 992px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .brands__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

  .reviews__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .about__image img {
    height: 300px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .brands {
    padding: 4.5rem 0;
  }

  .section__header {
    margin-bottom: 2.5rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__list {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.97);
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .nav__list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__list li {
    width: 100%;
  }

  .nav__list a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1rem;
  }

  .header__cta {
    display: none;
  }

  .logo__img {
    height: 40px;
  }

  .hero__content {
    padding: 3.5rem 1.25rem;
  }

  .hero__title {
    margin-bottom: 1.1rem;
  }

  .hero__text {
    margin-bottom: 2.25rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

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

  .gallery__item--wide {
    grid-column: span 2;
  }

  .about__stats {
    gap: 1.25rem;
  }

  .contact__actions {
    flex-direction: column;
  }

  .contact__actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.15rem;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery__item--wide {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .about__stats {
    flex-direction: column;
    gap: 1rem;
  }

  .feature-card {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .brands__grid {
    gap: 2rem;
  }
}

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 1rem;
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

/* ===== Partner toast ===== */
.partner-toast {
  position: fixed;
  top: calc(var(--header-h) + 0.85rem);
  left: 50%;
  z-index: 1100;
  width: min(440px, calc(100vw - 1.5rem));
  transform: translateX(-50%) translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.partner-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.partner-toast__inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem 0.7rem 0.85rem;
  background: rgba(17, 17, 17, 0.92);
  color: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.partner-toast__text {
  flex: 1;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.partner-toast__label {
  display: inline-block;
  margin-left: 0.4rem;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-toast__cta {
  flex-shrink: 0;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.partner-toast__cta:hover,
.partner-toast__cta:focus-visible {
  background: var(--gold-light);
}

.partner-toast__close {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.partner-toast__close:hover,
.partner-toast__close:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

@media (max-width: 480px) {
  .partner-toast {
    top: calc(var(--header-h) + 0.55rem);
  }

  .partner-toast__inner {
    flex-wrap: wrap;
  }

  .partner-toast__cta {
    order: 3;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.nav-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .btn--gold:hover,
  .btn--gold:focus-visible,
  .btn--call:hover,
  .btn--call:focus-visible,
  .btn--whatsapp:hover,
  .btn--whatsapp:focus-visible,
  .btn--outline:hover,
  .btn--outline:focus-visible,
  .floating-cta:hover {
    transform: none;
  }

  .partner-toast {
    transform: none !important;
    transition: none !important;
  }

  .partner-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) !important;
  }
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn:focus-visible,
.floating-cta:focus-visible,
.nav__toggle:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.header .btn--call:focus-visible,
.floating-cta:focus-visible {
  outline-color: var(--white);
}

/* ===== Accessibility statement page ===== */
.a11y-page {
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 4rem;
  background: var(--gray-100);
  min-height: 70vh;
}

.a11y-page__inner {
  max-width: 760px;
  margin: 0 auto;
}

.a11y-page h1 {
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  color: var(--black);
  margin-bottom: 0.75rem;
}

.a11y-page__meta {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.a11y-page h2 {
  font-size: 1.35rem;
  color: var(--black);
  margin: 2rem 0 0.75rem;
}

.a11y-page p,
.a11y-page li {
  color: var(--gray-700);
  line-height: 1.8;
}

.a11y-page ul {
  list-style: disc;
  padding-inline-start: 1.35rem;
  margin: 0.75rem 0 1rem;
}

.a11y-page a {
  color: var(--gold-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.a11y-todo {
  border: 1px dashed var(--gold-dark);
  background: #fff8eb;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin: 0.75rem 0 1.25rem;
}

.a11y-todo strong {
  color: var(--gold-text);
}

/* ===== Accessibility widget ===== */
.a11y-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1001;
  font-family: var(--font);
}

.a11y-widget__toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(201, 169, 110, 0.55);
  background: var(--black);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.a11y-widget__toggle:hover {
  background: var(--gray-900);
  color: var(--white);
}

.a11y-widget__toggle:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.a11y-widget__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1001;
}

.a11y-widget__panel {
  position: absolute;
  bottom: calc(56px + 0.85rem);
  right: 0;
  width: min(340px, calc(100vw - 2rem));
  max-height: min(72vh, 560px);
  overflow: auto;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 110, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  z-index: 1002;
  padding: 1rem 1rem 1.15rem;
}

.a11y-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.a11y-widget__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.a11y-widget__close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: var(--gray-100);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.a11y-widget__close:hover,
.a11y-widget__close:focus-visible {
  background: rgba(201, 169, 110, 0.2);
}

.a11y-widget__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.55rem;
}

.a11y-widget__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}

.a11y-widget__btn,
.a11y-widget__toggle-btn,
.a11y-widget__reset {
  font-family: var(--font);
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.a11y-widget__btn {
  min-height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--gray-100);
  color: var(--black);
  font-size: 0.95rem;
}

.a11y-widget__btn:hover:not(:disabled),
.a11y-widget__btn:focus-visible:not(:disabled) {
  border-color: var(--gold-dark);
  background: #f4eee3;
}

.a11y-widget__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.a11y-widget__status {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.a11y-widget__toggles {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.a11y-widget__toggle-btn {
  min-height: 44px;
  text-align: right;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  color: var(--black);
  font-size: 0.92rem;
}

.a11y-widget__toggle-btn.is-active,
.a11y-widget__toggle-btn[aria-pressed="true"] {
  background: rgba(201, 169, 110, 0.18);
  border-color: var(--gold-dark);
  color: var(--black);
  box-shadow: inset 3px 0 0 var(--gold);
}

.a11y-widget__toggle-btn:focus-visible,
.a11y-widget__reset:focus-visible,
.a11y-widget__statement:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.a11y-widget__reset {
  width: 100%;
  min-height: 46px;
  margin-top: 1rem;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 0.92rem;
}

.a11y-widget__reset:hover,
.a11y-widget__reset:focus-visible {
  background: var(--gray-900);
}

.a11y-widget__statement {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--gold-text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.92rem;
}

body.a11y-panel-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .a11y-widget {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-cta {
    bottom: 1rem;
    left: 1rem;
  }

  .a11y-widget__panel {
    position: fixed;
    right: 1rem;
    left: 1rem;
    bottom: calc(56px + 1.75rem);
    width: auto;
    max-height: min(70vh, 520px);
  }
}

/* Accessibility display modes */
html.a11y-contrast {
  color-scheme: dark;
}

html.a11y-contrast body {
  background: #000 !important;
  color: #fff !important;
}

html.a11y-contrast .header,
html.a11y-contrast .footer,
html.a11y-contrast .hours__card,
html.a11y-contrast .nav__list {
  background: #000 !important;
}

html.a11y-contrast .section,
html.a11y-contrast .about,
html.a11y-contrast .why-us,
html.a11y-contrast .services,
html.a11y-contrast .brands,
html.a11y-contrast .loyalty,
html.a11y-contrast .reviews,
html.a11y-contrast .hours,
html.a11y-contrast .contact,
html.a11y-contrast .a11y-page,
html.a11y-contrast .gallery {
  background: #000 !important;
}

html.a11y-contrast .section__title,
html.a11y-contrast .section__subtitle,
html.a11y-contrast h1,
html.a11y-contrast h2,
html.a11y-contrast h3,
html.a11y-contrast p,
html.a11y-contrast li,
html.a11y-contrast span,
html.a11y-contrast .about__text,
html.a11y-contrast .service-card,
html.a11y-contrast .feature-card,
html.a11y-contrast .loyalty-card,
html.a11y-contrast .review-card,
html.a11y-contrast .brand-card,
html.a11y-contrast .contact__value {
  color: #fff !important;
}

html.a11y-contrast .section__label,
html.a11y-contrast a,
html.a11y-contrast .footer__agency,
html.a11y-contrast .footer__nav a {
  color: #ffe08a !important;
}

html.a11y-contrast .btn--gold,
html.a11y-contrast .btn--call,
html.a11y-contrast .btn--whatsapp,
html.a11y-contrast .floating-cta {
  background: #ffe08a !important;
  color: #000 !important;
  border-color: #ffe08a !important;
}

html.a11y-contrast .btn--outline {
  color: #fff !important;
  border-color: #fff !important;
}

html.a11y-contrast .service-card,
html.a11y-contrast .feature-card,
html.a11y-contrast .loyalty-card,
html.a11y-contrast .review-card,
html.a11y-contrast .brand-card,
html.a11y-contrast .a11y-widget__panel {
  background: #111 !important;
  border-color: #ffe08a !important;
}

html.a11y-contrast .a11y-widget__title,
html.a11y-contrast .a11y-widget__label,
html.a11y-contrast .a11y-widget__btn,
html.a11y-contrast .a11y-widget__toggle-btn {
  color: #fff !important;
  background: #000 !important;
  border-color: #ffe08a !important;
}

html.a11y-invert {
  filter: invert(1) hue-rotate(180deg);
}

html.a11y-invert img,
html.a11y-invert video,
html.a11y-invert iframe,
html.a11y-invert .logo__img,
html.a11y-invert .hero__logo,
html.a11y-invert .footer__logo {
  filter: invert(1) hue-rotate(180deg);
}

html.a11y-grayscale {
  filter: grayscale(1);
}

html.a11y-grayscale.a11y-invert {
  filter: grayscale(1) invert(1) hue-rotate(180deg);
}

html.a11y-links a[href] {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px !important;
  background-color: rgba(255, 230, 0, 0.28) !important;
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

html.a11y-readable,
html.a11y-readable body,
html.a11y-readable button,
html.a11y-readable input,
html.a11y-readable textarea {
  font-family: Arial, Helvetica, "Noto Sans Hebrew", "Segoe UI", sans-serif !important;
  letter-spacing: 0.03em !important;
  word-spacing: 0.06em !important;
  line-height: 1.85 !important;
}

html.a11y-motion *,
html.a11y-motion *::before,
html.a11y-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

html.a11y-motion .fade-up {
  opacity: 1 !important;
  transform: none !important;
}

html.a11y-cursor,
html.a11y-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' stroke='%23fff' stroke-width='1.2' d='M4 3l7 17 1.5-6.5L19 12z'/%3E%3C/svg%3E") 4 2, auto !important;
}

@media (pointer: coarse) {
  html.a11y-cursor,
  html.a11y-cursor * {
    cursor: auto !important;
  }
}
