/* ═══════════════════════════════════════════
   TIFFANY BOUTIQUE — "Editorial Blush"
   Design System: Bodoni Moda + Jost
   Palette: Warm champagne/rose/burgundy
   ═══════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Palette */
  --color-bg:        #FAF5F0;
  --color-bg-warm:   #F3EBE3;
  --color-bg-card:   #FFFFFF;
  --color-primary:   #8B5E6B;
  --color-accent:    #C4848B;
  --color-accent-light: #E8C4C8;
  --color-text:      #3D2B2E;
  --color-text-soft: #6B5558;
  --color-gold:      #C9A96E;
  --color-gold-light:#E8D9B8;
  --color-border:    #E5D8D0;
  --color-white:     #FFFFFF;

  /* Typography */
  --font-display: 'Bodoni Moda', 'Georgia', serif;
  --font-body:    'Jost', 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.4s;
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}

a:hover {
  color: var(--color-accent);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ─── SECTION UTILITIES ─── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 2rem;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 1px;
  background: var(--color-accent);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .section-tag {
  padding-left: 0;
}

.section-header .section-tag::before {
  display: none;
}

.section-header p {
  max-width: 540px;
  margin: var(--space-sm) auto 0;
  color: var(--color-text-soft);
  font-size: 1.1rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              background var(--duration) var(--ease-out);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(139, 94, 107, 0.3);
}

.btn--primary:hover {
  background: #7A4F5C;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 94, 107, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* ─── STARS ─── */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-gold);
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 245, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 216, 208, 0.5);
  transition: background var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.nav--scrolled {
  background: rgba(250, 245, 240, 0.95);
  box-shadow: 0 2px 20px rgba(61, 43, 46, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 72px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav__logo span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-primary);
}

.nav__logo:hover {
  color: var(--color-text);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-soft);
  transition: color 0.25s;
  text-decoration: none;
}

.nav__links a:hover {
  color: var(--color-primary);
}

.nav__cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  font-weight: 500 !important;
  transition: background 0.25s, transform 0.25s !important;
}

.nav__cta:hover {
  background: #7A4F5C;
  color: var(--color-white) !important;
  transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 43, 46, 0.7) 0%,
    rgba(139, 94, 107, 0.5) 50%,
    rgba(201, 169, 110, 0.3) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 700px;
}

.hero__pre {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent-light);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin-bottom: var(--space-sm);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}

.hero__rating .stars {
  color: var(--color-gold);
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__actions .btn--outline {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero__actions .btn--outline:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%      { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* ─── ABOUT ─── */
.about {
  padding: var(--space-2xl) 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.8s var(--ease-out);
}

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

.about__text h2 {
  margin-bottom: var(--space-md);
}

.about__text p {
  color: var(--color-text-soft);
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
}

.about__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: var(--space-md);
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--color-bg-warm);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-soft);
  border: 1px solid var(--color-border);
  transition: border-color 0.25s, background 0.25s;
}

.feature-chip:hover {
  border-color: var(--color-accent);
  background: rgba(196, 132, 139, 0.08);
}

.feature-chip svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ─── COLLECTION ─── */
.collection {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-warm);
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.collection__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.collection__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.collection__card:hover img {
  transform: scale(1.06);
}

.collection__card--large {
  grid-row: span 2;
}

.collection__card--large img {
  min-height: 100%;
}

.collection__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 43, 46, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  transition: background 0.4s;
}

.collection__card:hover .collection__card-overlay {
  background: linear-gradient(to top, rgba(61, 43, 46, 0.9) 0%, rgba(61, 43, 46, 0.1) 70%);
}

.collection__card-tag {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.collection__card-overlay h3 {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 500;
}

.collection__card-overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.collection__cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ─── GALLERY ─── */
.gallery {
  padding: var(--space-2xl) 0;
}

.gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: var(--space-sm);
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.gallery__item--tall {
  grid-row: span 2;
}

/* ─── REVIEWS ─── */
.reviews {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-warm);
}

.reviews__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.reviews__score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1;
}

.reviews__meta {
  text-align: left;
}

.reviews__meta span {
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

/* Rating bars */
.reviews__bars {
  max-width: 360px;
  margin: var(--space-md) auto var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bar-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-soft);
  min-width: 2.5rem;
  text-align: right;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--color-gold);
  border-radius: 4px;
  transition: width 1s var(--ease-out);
}

.bar-count {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  min-width: 1.5rem;
}

/* Review cards */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.review-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(61, 43, 46, 0.08);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
}

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

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

.review-card .stars {
  margin-bottom: 0.6rem;
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-soft);
  font-style: normal;
}

/* ─── LOCATION ─── */
.location {
  padding: var(--space-2xl) 0;
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4/3;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.location__block h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.location__block h3 svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.location__block p {
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.location__note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.85rem !important;
  color: var(--color-primary) !important;
}

.location__link {
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.25s;
}

.location__link:hover {
  color: var(--color-accent);
}

.location__branches {
  font-size: 0.9rem !important;
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.schedule__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  background: var(--color-bg-warm);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.schedule__row span {
  color: var(--color-text-soft);
}

.schedule__row strong {
  color: var(--color-text);
  font-weight: 600;
}

.schedule__row--alt {
  background: rgba(201, 169, 110, 0.1);
}

.location__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-xs);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-warm);
  color: var(--color-text-soft);
  border: 1px solid var(--color-border);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.social-icon:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* ─── CTA FINAL ─── */
.cta-final {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--color-text) 0%, #5A3D42 100%);
}

.cta-final__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-final__content h2 {
  font-family: var(--font-display);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-final__content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

.cta-final .btn--primary {
  background: var(--color-gold);
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.4);
}

.cta-final .btn--primary:hover {
  background: #B8964F;
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.5);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
}

.footer__logo em {
  font-style: italic;
  color: var(--color-accent-light);
}

.footer__brand p {
  margin-top: 0.5rem;
  max-width: 400px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__lusoba {
  color: var(--color-gold) !important;
  font-weight: 600;
  transition: color 0.25s;
}

.footer__lusoba:hover {
  color: var(--color-gold-light) !important;
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: whatsappPing 2s infinite;
}

@keyframes whatsappPing {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about__image img {
    height: 360px;
  }

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

  .collection__card--large {
    grid-row: span 1;
  }

  .gallery__mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
  }

  .location__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .location__map {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 245, 240, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-xs);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
    pointer-events: none;
  }

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

  .nav__links a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
  }

  .nav__cta {
    text-align: center;
    margin-top: var(--space-xs);
  }

  .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__title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

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

  .collection__card img {
    height: 320px;
  }

  .collection__card--large img {
    height: 400px;
  }

  .gallery__mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

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

  .reviews__summary {
    flex-direction: column;
    text-align: center;
  }

  .reviews__meta {
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .about__features {
    flex-direction: column;
  }

  .feature-chip {
    width: 100%;
    justify-content: flex-start;
  }

  .schedule__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
