/* Caro Saab Decor — línea gráfica propia + estructura tipo Marriott */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');

:root {
  --background: hsl(30 25% 97%);
  --foreground: hsl(25 20% 12%);
  --primary: hsl(32 45% 28%);
  --primary-foreground: hsl(35 30% 95%);
  --secondary: hsl(30 15% 90%);
  --muted: hsl(30 12% 92%);
  --muted-foreground: hsl(25 10% 45%);
  --accent: hsl(38 65% 50%);
  --gold: hsl(38 65% 50%);
  --gold-light: hsl(38 50% 75%);
  --cream: hsl(35 30% 95%);
  --warm-brown: hsl(25 30% 22%);
  --warm-gray: hsl(25 8% 55%);
  --border: hsl(30 15% 85%);
  --radius: 0.375rem;
  --font-sans: "DM Sans", sans-serif;
  --font-serif: "Playfair Display", serif;
  --nav-color: rgb(126, 113, 103);
  --max: 1280px;
  --wa: #25d366;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-gold { background: var(--gold); color: hsl(25 20% 10%); }
.btn-gold:hover { background: hsl(38 65% 44%); }
.btn-dark { background: var(--warm-brown); color: var(--cream); }
.btn-dark:hover { background: hsl(25 30% 16%); }

/* ——— Top bars ——— */
.top-bar {
  background: var(--gold);
  color: hsl(25 20% 10%);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
}
.top-bar a { text-decoration: underline; text-underline-offset: 2px; }

.help-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  padding: 0.55rem 1rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted-foreground);
}
.help-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--warm-brown);
  font-weight: 600;
}
.help-bar a:hover { color: var(--gold); }

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 0;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  width: auto;
  height: 64px;
  max-width: 260px;
  object-fit: contain;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.35rem 0.35rem 0.35rem 0.9rem;
  border-radius: 999px;
  width: 100%;
  max-width: 640px;
  justify-self: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px hsla(38, 65%, 50%, 0.15);
}
.search-form svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.search-form input {
  border: none; outline: none; background: transparent;
  width: 100%; font-size: 0.92rem; padding: 0.45rem 0;
}
.search-form input::placeholder { color: var(--warm-gray); }
.search-submit {
  border: none;
  background: var(--warm-brown);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.search-submit:hover { background: hsl(25 30% 16%); }

.header-icons { display: flex; align-items: center; gap: 0.25rem; }
.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: none; background: transparent;
  color: var(--warm-brown);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s;
}
.icon-btn:hover { background: var(--muted); }
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn .badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--gold);
  color: hsl(25 20% 10%);
  font-size: 0.62rem;
  font-weight: 700;
  display: grid; place-items: center;
  padding: 0 3px;
}
.menu-toggle { display: none; }

.cat-nav {
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.cat-nav-inner {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  overflow-x: auto;
  padding: 0.55rem 0;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav a {
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--nav-color);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}
.cat-nav a:hover {
  color: var(--foreground);
  background: rgba(255,255,255,0.7);
}

/* ——— Mobile nav ——— */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: rgba(249,247,245,0.98);
  z-index: 120;
  padding: 5rem 1.5rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.nav-open { overflow: hidden; }

/* ——— Hero slider ——— */
.hero-slider {
  position: relative;
  height: min(78vh, 680px);
  min-height: 420px;
  overflow: hidden;
  background: var(--warm-brown);
}
.slides { height: 100%; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s;
}
.slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20,14,10,0.62) 0%, rgba(20,14,10,0.25) 50%, rgba(20,14,10,0.1) 100%);
  display: flex;
  align-items: center;
}
.slide-content {
  color: #f6f3ee;
  max-width: 640px;
  padding-block: 2rem;
}
.slide-content .eyebrow { color: rgba(246,243,238,0.78); margin-bottom: 0.75rem; }
.slide-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.85rem;
  color: #f6f3ee;
}
.slide-content p {
  font-size: 1.02rem;
  color: rgba(246,243,238,0.85);
  margin-bottom: 1.5rem;
  max-width: 28rem;
  font-weight: 300;
}
.slider-controls {
  position: absolute;
  left: 0; right: 0; bottom: 1.25rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
}
.slider-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.25);
  color: #fff;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}
.slider-btn:hover { background: rgba(0,0,0,0.45); }
.slider-dots { display: flex; gap: 0.4rem; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}
.dot.is-active { background: var(--gold); width: 22px; border-radius: 999px; }

/* ——— Benefits ——— */
.benefits {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.35rem 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.benefit {
  text-align: center;
  padding: 0.35rem 0.5rem;
  border-right: 1px solid var(--border);
}
.benefit:last-child { border-right: none; }
.benefit strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
}
.benefit span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ——— Sections ——— */
.section { padding: 4.5rem 0; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head .eyebrow { margin-bottom: 0.65rem; }
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 500;
}
.section-head h2 em { font-style: italic; }
.section-head--left {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  text-align: left;
  flex-wrap: wrap;
}
.section-sub {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  max-width: 18rem;
}

/* ——— Category banners (Marriott-style grid) ——— */
.cat-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cat-banner {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  background: var(--secondary);
}
.cat-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.cat-banner:hover img { transform: scale(1.06); }
.cat-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,10,0.72) 0%, rgba(20,14,10,0.15) 55%, rgba(20,14,10,0.25) 100%);
}
.cat-banner-body {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cat-banner h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
}
.cat-banner p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.78);
  margin-top: 0.25rem;
}
.cat-banner span {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

/* ——— Promo strip ——— */
.promo-strip { padding: 0 0 4rem; }
.promo-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1rem;
}
.promo-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
}
.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,10,0.78), rgba(20,14,10,0.2));
}
.promo-card > div {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.promo-card .eyebrow { color: var(--gold-light); margin-bottom: 0.5rem; }
.promo-card h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.promo-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
  max-width: 26rem;
}
.promo-card span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ——— Editorial ——— */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.editorial--reverse .editorial-media { order: 2; }
.editorial-media { min-height: 320px; overflow: hidden; }
.editorial-media img { width: 100%; height: 100%; object-fit: cover; }
.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--background);
}
.editorial-copy .eyebrow { margin-bottom: 1rem; color: var(--gold); }
.editorial-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.editorial-copy p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 34rem;
}
.editorial-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-self: flex-start;
  border-bottom: 1px solid var(--foreground);
  padding-bottom: 0.2rem;
}
.editorial-link:hover { color: var(--gold); border-color: var(--gold); }

/* ——— Shop teaser ——— */
.shop-teaser { background: hsl(30 15% 90% / 0.35); }
.shop-teaser-box {
  max-width: 520px;
  margin: 0 auto;
  padding: 2.75rem 1.5rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.55);
  text-align: center;
}
.shop-teaser-box h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  margin: 0.65rem 0 0.85rem;
}
.shop-teaser-box p {
  color: var(--muted-foreground);
  margin-bottom: 1.35rem;
}

/* ——— Instagram / reels ——— */
.social-feed { background: #fff; }
.ig-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.ig-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.ig-profile img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  border: 2px solid var(--gold-light);
  padding: 4px;
}
.ig-profile strong { display: block; font-size: 1.05rem; }
.ig-profile p { font-size: 0.85rem; color: var(--muted-foreground); }

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
  background: var(--secondary);
  color: #fff;
}
.reel-card--embed {
  background: #fafafa;
  border: 1px solid var(--border);
}
.reel-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
  background: #fff;
}
.reel-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #fff;
}
.reel-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.reel-card:hover img { transform: scale(1.05); }
.reel-card::after {
  content: none;
}
.reel-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 45%);
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--warm-brown);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  padding-left: 2px;
}
.reel-label {
  position: absolute;
  left: 0.75rem; right: 0.75rem; bottom: 0.75rem;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 500;
}
.ig-more {
  margin-top: 1.75rem;
  text-align: center;
}

/* ——— Testimonials ——— */
.testimonials { background: var(--cream); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.testimonial-card p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.testimonial-card strong { font-size: 0.9rem; }

/* ——— Page hero / services (inner pages) ——— */
.page-hero {
  padding: 4.5rem 0 3rem;
  text-align: center;
  background: var(--cream);
}
.page-hero .eyebrow { margin-bottom: 0.85rem; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.page-hero p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--muted-foreground);
  font-size: 1.05rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 3.5rem 0;
}
.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
}
.feature-icon {
  width: 42px; height: 42px;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.45rem; }
.feature-card p { font-size: 0.92rem; color: var(--muted-foreground); }
.form-panel, .cta-panel {
  max-width: 640px;
  margin: 0 auto 4rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  text-align: center;
}
.form-panel h2, .cta-panel h2 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 500;
  margin: 0.75rem 0 0.5rem;
}
.form-panel > p, .cta-panel > p {
  color: var(--muted-foreground);
  margin-bottom: 1.75rem;
}
.form-grid { display: grid; gap: 1rem; text-align: left; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.75rem 0.9rem;
  border-radius: 2px;
  outline: none;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px hsla(38, 65%, 50%, 0.15);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-actions { margin-top: 0.5rem; }
.form-actions .btn { width: 100%; justify-content: center; }
.wa-number {
  display: block;
  margin-top: 1.25rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--warm-brown);
}

/* ——— Footer ——— */
.site-footer {
  background: hsl(25 20% 10%);
  color: hsl(35 20% 88%);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text { color: #fff; margin-bottom: 1rem; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.55); }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  max-width: 16rem;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 600;
}
.footer-col ul li, .footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 0.45rem;
}
.footer-col a:hover { color: var(--gold-light); }
.newsletter { display: flex; gap: 0.4rem; margin-top: 0.75rem; }
.newsletter input {
  flex: 1; min-width: 0;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  padding: 0.65rem 0.75rem;
  color: #fff;
  border-radius: 2px;
  outline: none;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter .btn { flex-shrink: 0; padding: 0.65rem 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.socials a {
  display: inline-flex;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.socials svg { width: 15px; height: 15px; }

/* ——— Reveal motion ——— */
.will-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.will-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ——— WhatsApp float ——— */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.06); }

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit:nth-child(3) { border-right: none; }
  .cat-banners { grid-template-columns: repeat(2, 1fr); }
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .header-top { grid-template-columns: auto 1fr auto; }
  .search-form { max-width: none; }
  .cat-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .promo-grid, .editorial, .editorial--reverse .editorial-media,
  .feature-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .editorial--reverse .editorial-media { order: 0; }
  .editorial-media { aspect-ratio: 16/10; min-height: 0; }
}

@media (max-width: 720px) {
  .search-submit { display: none; }
  .header-top { gap: 0.5rem; }
  .logo img { height: 44px; max-width: 160px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit { border-right: none; border-bottom: 1px solid var(--border); padding: 0.75rem 0.25rem; }
  .cat-banners, .reels-grid { grid-template-columns: 1fr 1fr; }
  .hero-slider { height: 68vh; min-height: 400px; }
  .form-panel, .cta-panel { padding: 1.75rem 1.25rem; }
}
