﻿/* ============================================================
   SHANIEL BESPOKE TAILOR — HOME PAGE CSS
   Light, Elegant, Peach/Cream Color Scheme
   ============================================================ */

/* ============================================================
   HERO SLIDER — PREMIUM FULLSCREEN DESIGN
   ============================================================ */

/* Fix horizontal scrollbar */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

.hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  max-height: 780px;
  overflow: hidden;
  background: #0a1a28;
}

/* ── MOBILE: full screen hero like sample ── */
@media (max-width: 768px) {
  .hero {
    height: 100svh;
    height: 100vh; /* fallback */
    min-height: 560px;
    max-height: none;
  }
}

/* ── SLIDES ───────────────────────────────────────────────── */
.hero-slider { position: relative; height: 100%; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
  display: flex; align-items: center;
  will-change: opacity;
}

/* ── MOBILE: image top se start ho, stand crop ho jaye ── */
@media (max-width: 768px) {
  .hero-slide {
    background-position: top center !important;
  }
  .hero-slide::after {
    background-position: top center !important;
  }
}

/* Ken-Burns zoom on active */
.hero-slide::after {
  content: '';
  position: absolute; inset: -6%;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero-slide.active::after {
  transform: scale(1);
}

/* Multi-layer gradient overlay */
.hero-slide::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(5,18,32,0.88) 0%,
      rgba(10,26,44,0.65) 42%,
      rgba(10,26,44,0.18) 72%,
      transparent 100%),
    linear-gradient(to top,
      rgba(5,18,32,0.72) 0%,
      transparent 45%);
}

.hero-slide.active { opacity: 1; }

/* ── CONTENT PANEL ────────────────────────────────────────── */
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
  padding: 0 clamp(24px, 6vw, 88px);
  color: #fff;
}

/* Animated entrance for active slide */
.hero-slide .hero-content > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-slide.active .hero-content > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0.2s; }
.hero-slide.active .hero-content > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.4s; }
.hero-slide.active .hero-content > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.55s; }
.hero-slide.active .hero-content > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.7s; }

/* Tag pill */
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: #a8d4ff;
  margin-bottom: 20px;
  padding: 7px 18px;
  border: 1px solid rgba(168,212,255,0.35);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
}
.hero-tag::before {
  content: '';
  width: 22px; height: 1px;
  background: rgba(168,212,255,0.6);
  flex-shrink: 0;
}

/* Heading */
.hero-content h1 {
  color: #fff;
  font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  margin-bottom: 22px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.hero-content h1 strong {
  font-weight: 600;
  color: #fff;
}

/* Subtitle paragraph */
.hero-content p {
  font-size: clamp(0.88rem, 1.2vw, 1.02rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 38px;
  font-weight: 300;
  line-height: 1.9;
  max-width: 500px;
  letter-spacing: 0.01em;
}

/* Buttons row */
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.hero-btns .btn-primary {
  background: #2563a8;
  border-color: #2563a8;
  padding: 14px 34px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  box-shadow: 0 8px 28px rgba(37,99,168,0.45);
  border-radius: 2px;
}
.hero-btns .btn-primary:hover {
  background: #1a3a5c;
  border-color: #1a3a5c;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,99,168,0.55);
}
.hero-btns .btn-secondary {
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  padding: 14px 32px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
}
.hero-btns .btn-secondary:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* ── SIDE NAVIGATION ARROWS ───────────────────────────────── */
.hero-prev, .hero-next {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  border-radius: 2px;
  outline: none;
}
.hero-prev { left: clamp(16px, 3vw, 40px); }
.hero-next { right: clamp(16px, 3vw, 40px); }
.hero-prev:hover, .hero-next:hover {
  background: #2563a8;
  border-color: #2563a8;
  box-shadow: 0 6px 24px rgba(37,99,168,0.5);
  transform: translateY(-50%) scale(1.08);
}

/* Arrow icons */
.hero-prev::before { content: '←'; font-size: 1.2rem; }
.hero-next::before { content: '→'; font-size: 1.2rem; }
.hero-prev, .hero-next { font-size: 0; } /* hide old HTML arrows */

/* ── BOTTOM CONTROLS BAR ──────────────────────────────────── */
.hero-controls {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  padding: 0 clamp(24px, 5vw, 72px) 36px;
  gap: 20px;
  pointer-events: none;
}
.hero-controls > * { pointer-events: all; }

/* Slide counter */
.hero-counter {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}
.hero-counter strong { color: rgba(255,255,255,0.9); font-size: 0.9rem; }

/* Dots */
.hero-dots {
  display: flex; gap: 10px; align-items: center;
}
.hero-dots .dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.hero-dots .dot::after {
  content: '';
  position: absolute; inset: 0; left: -100%;
  background: #2563a8;
  transition: left 0s;
  border-radius: 2px;
}
.hero-dots .dot.active {
  background: rgba(255,255,255,0.2);
  width: 28px;
}
.hero-dots .dot.active::after {
  left: 0;
  transition: left 5s linear; /* matches autoplay */
}

/* ── PROGRESS BAR ─────────────────────────────────────────── */
.hero-progress {
  position: absolute; bottom: 0; left: 0; z-index: 12;
  height: 2px;
  background: rgba(255,255,255,0.12);
  width: 100%;
}
.hero-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563a8, #4a90d9);
  width: 0%;
  transition: width 5s linear;
}

/* ── SCROLL INDICATOR ─────────────────────────────────────── */
.hero-scroll {
  position: absolute; bottom: 38px; right: clamp(24px, 5vw, 60px);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-sans); font-size: 0.58rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, #2563a8, rgba(255,255,255,0.1));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.3; transform:scaleY(1); }
  50%      { opacity:1;   transform:scaleY(0.6); }
}

/* ── SLIDE COUNT BADGE (top-right corner) ─────────────────── */
.hero-slide-num {
  position: absolute; top: 28px; right: clamp(24px, 4vw, 56px);
  z-index: 10;
  font-family: var(--font-sans); font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
}
.hero-slide-num strong { font-size: 1.4rem; font-weight: 300; color: rgba(255,255,255,0.7); }

/* ---------- MARQUEE STRIP ---------- */
.marquee-strip {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-inner span {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 32px;
  flex-shrink: 0;
}
.marquee-inner span::before { content: '✦'; margin-right: 32px; opacity: 0.6; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- WHY CHOOSE US ---------- */
.why-us { padding: 96px 0; background: var(--bg-white); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.why-card {
  text-align: center; padding: 40px 28px;
  border: 1px solid var(--border-light);
  background: var(--warm-white);
  transition: var(--transition); border-radius: var(--radius);
}
.why-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-4px); background: var(--bg-cream); }
.why-icon { width: 60px; height: 60px; margin: 0 auto 18px; color: var(--gold); }
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.why-card p { font-size: 0.87rem; color: var(--text-light); margin: 0; line-height: 1.8; }

/* ---------- WHO WE ARE ---------- */
.who-we-are { padding: 96px 0; background: var(--bg-cream); }

/* ---------- WHAT WE DO ---------- */
.what-we-do { padding: 96px 0; background: var(--bg-white); }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }
.service-card { position: relative; overflow: hidden; aspect-ratio: 3/4; display: block; }
.service-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s ease; }
.service-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,16,4,0.82) 0%, rgba(28,16,4,0.15) 60%); }
.service-card:hover .service-img { transform: scale(1.07); }
.service-info { position: absolute; bottom: 24px; left: 20px; right: 20px; color: #fff; }
.service-info h3 { font-size: 1.2rem; color: #fff; margin-bottom: 5px; }
.service-info p { font-size: 0.78rem; color: rgba(255,255,255,0.75); margin: 0; }
.service-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.8rem;
  opacity: 0; transition: var(--transition);
}
.service-card:hover .service-arrow { opacity: 1; background: var(--gold); border-color: var(--gold); }

/* ---------- CITY TOURS STRIP ---------- */
.city-tours { padding: 96px 0; background: linear-gradient(135deg, #1C1409 0%, #2E2010 100%); }
.cities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.city-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 28px 18px; text-align: center;
  color: #fff; transition: var(--transition);
  border-radius: var(--radius); cursor: pointer;
}
.city-card:hover { background: rgba(201,169,110,0.14); border-color: var(--gold); transform: translateY(-3px); }
.city-flag { font-size: 2.2rem; margin-bottom: 10px; }
.city-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 5px; }
.city-card span { font-size: 0.72rem; color: rgba(255,255,255,0.50); display: block; line-height: 1.6; }

/* ---------- HOW IT WORKS ---------- */
.how-it-works { padding: 96px 0; background: var(--bg-peach); }
.steps-grid { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; text-align: center; padding: 0 16px; }
.step-num {
  font-family: var(--font-serif); font-size: 3rem;
  color: var(--gold); opacity: 0.35; line-height: 1; margin-bottom: 12px;
}
.step-icon {
  width: 52px; height: 52px;
  background: var(--gold); color: #fff;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 14px; font-size: 1.2rem;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.83rem; color: var(--text-light); }
.step-arrow { font-size: 1.4rem; color: var(--gold-light); padding-top: 22px; flex-shrink: 0; }

/* ---------- APPOINTMENT PREVIEW ---------- */
.appointment-preview { padding: 96px 0; background: var(--bg-white); }
.appt-features { margin: 18px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.appt-features li { font-size: 0.9rem; color: var(--text-body); display: flex; align-items: center; gap: 10px; }
.appt-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* Mini Calendar */
.mini-calendar { background: var(--bg-white); border: 1px solid var(--border); box-shadow: var(--shadow-md); padding: 24px; border-radius: var(--radius); }
.mini-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mini-cal-title { font-family: var(--font-serif); font-size: 1.15rem; color: var(--text-dark); }
.mini-cal-nav { background: none; border: 1px solid var(--border); width: 30px; height: 30px; cursor: pointer; color: var(--text-dark); transition: var(--transition); font-size: 0.85rem; border-radius: var(--radius); }
.mini-cal-nav:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.mini-cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; margin-bottom: 6px; }
.mini-cal-day-name { text-align: center; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); padding: 4px 0; }
.mini-cal-dates { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.mini-cal-date { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; cursor: pointer; transition: var(--transition); color: var(--text-body); border-radius: var(--radius); }
.mini-cal-date:hover:not(.empty):not(.disabled) { background: var(--gold); color: #fff; }
.mini-cal-date.today { font-weight: 700; color: var(--gold); }
.mini-cal-date.available { background: rgba(201,169,110,0.12); }
.mini-cal-date.disabled { color: var(--border); cursor: default; }
.mini-cal-date.selected { background: var(--gold) !important; color: #fff !important; }
.mini-cal-date.empty { cursor: default; }
.mini-cal-footer { margin-top: 14px; text-align: center; font-size: 0.75rem; color: var(--text-light); }

/* ---------- FABRIC BRANDS ---------- */
.fabric-brands { padding: 80px 0; background: var(--bg-cream); }
.brands-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.brand-card { border: 1px solid var(--border); padding: 28px 18px; text-align: center; transition: var(--transition); display: block; color: inherit; background: var(--bg-white); border-radius: var(--radius); }
.brand-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-2px); background: var(--bg-cream); }
.brand-logo-placeholder { font-family: var(--font-serif); font-size: 1.05rem; color: var(--text-dark); font-weight: 500; margin-bottom: 8px; min-height: 38px; display: flex; align-items: center; justify-content: center; }
.brand-card span { font-size: 0.73rem; color: var(--text-light); line-height: 1.5; }

/* ---------- FEATURED PRODUCTS ---------- */
.featured-products { padding: 96px 0; background: var(--bg-light); }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

/* ---------- LOOKBOOK PREVIEW ---------- */
.lookbook-preview { padding: 96px 0; background: var(--black); }
.lookbook-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1.2fr; gap: 6px; min-height: 540px; }
.lookbook-col { display: grid; grid-template-rows: 1fr 1fr; gap: 6px; }
.lookbook-item { position: relative; overflow: hidden; }
.lookbook-img { width: 100%; height: 100%; min-height: 260px; background-size: cover; background-position: center; transition: transform 0.7s ease; }
.lookbook-item:hover .lookbook-img { transform: scale(1.06); }
.lookbook-overlay { position: absolute; inset: 0; background: rgba(28,16,4,0.45); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 24px; opacity: 0; transition: var(--transition); }
.lookbook-item:hover .lookbook-overlay { opacity: 1; }
.lookbook-overlay span { color: #fff; font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 12px; }
.lookbook-overlay a { padding: 8px 18px; border: 1px solid var(--gold); color: var(--gold); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; transition: var(--transition); }
.lookbook-overlay a:hover { background: var(--gold); color: #fff; }

/* ---------- TESTIMONIALS HOME ---------- */
.testimonials-home { padding: 96px 0; background: var(--bg-peach); }
.testimonials-slider { position: relative; overflow: hidden; min-height: 180px; }
.testimonial-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; text-align: center; padding: 0 80px; }
.testimonial-slide.active { opacity: 1; position: relative; }
.testimonial-slide p { font-family: var(--font-serif); font-size: 1.28rem; color: var(--text-dark); font-style: italic; line-height: 1.75; margin-bottom: 24px; }
.client-info { display: flex; align-items: center; justify-content: center; gap: 14px; }
.client-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; }
.client-info strong { display: block; font-size: 0.9rem; }
.client-info span { font-size: 0.78rem; color: var(--text-light); }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }

/* ---------- BLOG PREVIEW ---------- */
.blog-preview { padding: 96px 0; background: var(--bg-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { border: 1px solid var(--border); transition: var(--transition); background: var(--bg-white); border-radius: var(--radius); overflow: hidden; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card a { display: block; color: inherit; }
.blog-img { height: 210px; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.blog-card:hover .blog-img { transform: scale(1.04); }
.blog-content { padding: 22px; }
.blog-cat { display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.blog-content h3 { font-size: 1.02rem; margin-bottom: 8px; color: var(--text-dark); line-height: 1.45; }
.blog-content p { font-size: 0.84rem; color: var(--text-light); margin-bottom: 10px; }
.blog-date { font-size: 0.73rem; color: var(--text-muted); }

/* ---------- NEWSLETTER ---------- */
.newsletter { padding: 72px 0; background: linear-gradient(135deg, var(--peach-dark) 0%, var(--peach) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.newsletter-text h2 { font-size: 2rem; margin-bottom: 8px; color: var(--text-dark); }
.newsletter-text p { color: var(--text-light); margin: 0; }
.newsletter-form { display: flex; flex: 1; max-width: 460px; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: 1.5px solid var(--border); background: var(--bg-white); font-family: var(--font-sans); font-size: 0.9rem; outline: none; }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form .btn-primary { white-space: nowrap; border-radius: 0; }

/* ---------- FOOTER ---------- */
.site-footer { background: #16110A; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 48px; padding: 72px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand .footer-logo { font-family: var(--font-serif); font-size: 1.6rem; color: #fff; letter-spacing: 0.2em; margin-bottom: 6px; }
.footer-brand .footer-logo-sub { font-family: var(--font-sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-brand p { font-size: 0.84rem; line-height: 1.8; margin-bottom: 20px; color: rgba(255,255,255,0.55); }
.social-links { display: flex; gap: 9px; }
.social-links a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.55); transition: var(--transition); border-radius: var(--radius); }
.social-links a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.08); }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col address p { font-size: 0.83rem; margin-bottom: 6px; color: rgba(255,255,255,0.55); }
.footer-col address a { color: rgba(255,255,255,0.55); }
.footer-col address a:hover { color: var(--gold); }
.footer-hours { margin-top: 16px; }
.footer-hours strong { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; margin-bottom: 6px; font-family: var(--font-sans); }
.footer-hours span { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.seo-city-links { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.seo-city-links h5 { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 12px; }
.city-links-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.city-links-grid a { font-size: 0.72rem; color: rgba(255,255,255,0.35); padding: 4px 10px; border: 1px solid rgba(255,255,255,0.08); transition: var(--transition); border-radius: 2px; }
.city-links-grid a:hover { color: var(--gold); border-color: rgba(201,169,110,0.3); }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ---------- RESPONSIVE HERO -------------------------------- */
@media (max-width: 768px) {
  .hero { height: 88vh; min-height: 480px; }
  .hero-content { padding: 0 clamp(20px, 5vw, 36px); }
  .hero-content h1 { font-size: clamp(1.75rem, 7vw, 2.8rem); }
  .hero-content p  { font-size: 0.9rem; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { padding: 12px 26px; font-size: 0.7rem; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
  .hero-prev, .hero-next { width: 40px; height: 40px; }
  .hero-scroll { display: none; }
  .hero-slide-num { display: none; }
}
@media (max-width: 480px) {
  .hero { height: 100svh; min-height: 480px; }
  .hero-content h1 { font-size: clamp(1.5rem, 8vw, 2.2rem); }
  .hero-content p  { display: none; }
  .hero-prev, .hero-next { display: none; }
}


/* ---------- GENERAL RESPONSIVE ----------------------------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .brands-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .cities-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .lookbook-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .steps-grid { flex-direction: column; gap: 28px; }
  .step-arrow { display: none; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: stretch; }
  .newsletter-form { max-width: 100%; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonial-slide { padding: 0 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
}
