/* Special rule for Milano Handleless Cabinet to avoid cropping and fill container */
.product-img.milano-cabinet {
  background-image: url('./Images/milano_kitchen2.avif') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
/* Special rule for Gold Pendant Cluster Light to avoid cropping and fill container */
.product-img.gold-pendant {
  background-image: url('./Images/Gold_Pendant_cluster.webp') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: #fff !important;
}
/* Map Card Styling */
.map-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  padding: 32px 24px 24px 24px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.map-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 8px;
  text-align: center;
}
.map-embed {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.map-info {
  text-align: center;
  margin-top: 10px;
}
.map-pin {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.map-address {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 8px;
}
.map-link {
  margin-top: 4px;
  display: inline-block;
}
/* Map Embed Custom Style */
.map-embed {
  margin: 32px 0 0 0;
  width: 100%;
  background: var(--cream);
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  padding: 32px 0 24px 0;
}
/* ============================================================
   SONNY'S INTERIORS — LUXURY DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --gold:        #C9A96E;
  --gold-light:  #E8D4A8;
  --gold-dark:   #A07845;
  --gold-pale:   #F7F1E6;
  --black:       #111111;
  --near-black:  #1A1A1A;
  --charcoal:    #2C2C2C;
  --white:       #FFFFFF;
  --off-white:   #FAFAF7;
  --cream:       #F5F0E8;
  --text:        #2C2C2C;
  --text-muted:  #7A7A7A;
  --border:      #E8E3DA;
  --border-dark: #C8C3BA;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', -apple-system, sans-serif;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;

  --shadow-sm:   0 2px 12px rgba(0,0,0,.06);
  --shadow:      0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.14);
  --shadow-gold: 0 8px 32px rgba(201,169,110,.25);

  --container:   1200px;
  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Skip link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--black); color: var(--white);
  padding: 10px 18px; border-radius: 6px; z-index: 9999;
}
.skip-link:focus { left: 12px; }

/* ── Container ─────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  height: 80px; display: flex;
  align-items: center; justify-content: space-between; gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 36px; width: auto; }
.brand-name {
  font-family: var(--font-serif); font-size: 1.2rem;
  font-weight: 600; letter-spacing: .5px; color: var(--near-black);
}
.brand-tagline { font-size: .7rem; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }

.nav { display: none; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 14px; border-radius: 6px;
  font-size: .9rem; font-weight: 500; color: var(--charcoal);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--near-black); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.whatsapp-nav {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; background: #25D366; color: #fff;
  border-radius: 999px; font-size: .85rem; font-weight: 600;
  transition: opacity var(--transition);
}
.whatsapp-nav:hover { opacity: .88; }
.whatsapp-nav svg { flex-shrink: 0; }

.btn-menu {
  width: 44px; height: 44px; display: flex; align-items: center;
  justify-content: center; border: 1px solid var(--border);
  border-radius: 8px; background: transparent;
}
.hamburger-icon { display: flex; flex-direction: column; gap: 5px; }
.hamburger-icon span {
  width: 20px; height: 1.5px; background: var(--near-black);
  display: block; transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.5); opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: min(360px, 100%);
  background: var(--white); padding: 28px 24px;
  transform: translateX(100%); transition: transform var(--transition);
  overflow-y: auto;
}
.mobile-menu.open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.btn-close {
  width: 36px; height: 36px; display: flex; align-items: center;
  justify-content: center; border: 1px solid var(--border);
  border-radius: 50%; background: transparent; font-size: 1.2rem; color: var(--charcoal);
}
.mobile-menu__links { display: flex; flex-direction: column; }
.mobile-link {
  padding: 16px 0; border-bottom: 1px solid var(--border);
  font-family: var(--font-serif); font-size: 1.3rem; color: var(--near-black);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--gold); }
.mobile-menu__footer { margin-top: 32px; }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 4px;
  font-family: var(--font-sans); font-size: .9rem; font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase;
  transition: var(--transition); border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark); border-color: var(--gold-dark);
  transform: translateY(-1px); box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent; color: var(--near-black); border-color: var(--near-black);
}
.btn-outline:hover {
  background: var(--near-black); color: var(--white); transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1); border-color: var(--white);
}
.btn-ghost { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-ghost:hover { background: var(--gold-pale); transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: .8rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-icon { padding: 14px; border-radius: 50%; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--near-black);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('./Images/homeimage3.jpeg');
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,.82) 0%, rgba(17,17,17,.45) 50%, rgba(17,17,17,.7) 100%);
}
.hero-canvas {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 120px 0 80px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 500; line-height: 1.08; letter-spacing: -.5px;
  color: var(--white); margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.75); max-width: 54ch;
  margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat__value {
  font-family: var(--font-serif); font-size: 2rem;
  font-weight: 600; color: var(--white);
}
.hero-stat__label { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 4px; letter-spacing: .5px; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: .75rem; letter-spacing: 2px;
  text-transform: uppercase; animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll span { width: 1px; height: 50px; background: rgba(255,255,255,.3); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════════════════════════
   STRIP / MARQUEE
══════════════════════════════════════════════════════════════ */
.strip {
  background: var(--near-black); padding: 18px 0;
  overflow: hidden; border-top: 1px solid rgba(255,255,255,.08);
}
.strip-track {
  display: flex; gap: 48px; align-items: center;
  animation: marquee 24s linear infinite; width: max-content;
}
.strip-track:hover { animation-play-state: paused; }
.strip-item {
  display: flex; align-items: center; gap: 14px; white-space: nowrap;
  color: rgba(255,255,255,.55); font-size: .85rem; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 500;
}
.strip-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════════════════════════ */
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--alt { background: var(--cream); }
.section--dark { background: var(--near-black); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500; line-height: 1.15; letter-spacing: -.3px;
  color: var(--near-black); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section--dark .section-title { color: var(--white); }
.section-subtitle {
  color: var(--text-muted); max-width: 60ch;
  font-size: 1.05rem; line-height: 1.7;
}
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 60px;
}
.section-head__text { max-width: 640px; }
.text-link {
  color: var(--gold); font-weight: 600; font-size: .88rem;
  letter-spacing: .5px; text-transform: uppercase;
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.text-link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* ══════════════════════════════════════════════════════════════
   CATEGORIES
══════════════════════════════════════════════════════════════ */
.categories-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.cat-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/5; cursor: pointer;
}
.cat-card:nth-child(1) { aspect-ratio: 4/5; }
.cat-card:nth-child(2) { aspect-ratio: 4/5; }
.cat-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.cat-card:hover .cat-bg { transform: scale(1.06); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75) 100%);
  transition: background var(--transition);
}
.cat-card:hover .cat-overlay { background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.82) 100%); }
.cat-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
}
.cat-label {
  font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 8px;
}
.cat-name {
  font-family: var(--font-serif); font-size: 1.5rem;
  color: var(--white); font-weight: 500;
}
.cat-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4); color: var(--white);
  margin-top: 16px; transform: translateY(4px); opacity: 0;
  transition: var(--transition);
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

/* Category placeholders */
.cat-cabinets    { background: linear-gradient(135deg, #8B7355 0%, #5C4A2A 100%); }
.cat-lighting    { background: linear-gradient(135deg, #C9A96E 0%, #8B6914 100%); }
.cat-accessories { background: linear-gradient(135deg, #7A8B76 0%, #4A5C46 100%); }
.cat-countertops { background: linear-gradient(135deg, #9B9B9B 0%, #5C5C5C 100%); }

/* ══════════════════════════════════════════════════════════════
   PRODUCT CARDS (3D Flip)
══════════════════════════════════════════════════════════════ */
.products-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.product-flip { perspective: 1000px; height: 440px; }
.product-flip__inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d; transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.product-flip:hover .product-flip__inner { transform: rotateY(180deg); }
.product-flip__front, .product-flip__back {
  position: absolute; inset: 0; backface-visibility: hidden;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}
.product-flip__back {
  transform: rotateY(180deg);
  background: var(--near-black);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 32px; text-align: center;
}
.product-img {
  height: 300px;
  background-size: cover;
  background-position: top center;
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.product-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--white);
  font-size: .72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 3px;
}
.product-info { padding: 20px; background: var(--white); }
.product-name {
  font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 500; color: var(--near-black); margin-bottom: 6px;
}
.product-price { color: var(--gold-dark); font-weight: 600; font-size: 1rem; }
.product-price-old { color: var(--text-muted); text-decoration: line-through; margin-left: 8px; font-size: .9rem; }
.product-back-title {
  font-family: var(--font-serif); font-size: 1.3rem; color: var(--white);
  margin-bottom: 12px;
}
.product-back-desc { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.6; margin-bottom: 28px; }
.product-back-price { color: var(--gold); font-size: 1.4rem; font-weight: 600; margin-bottom: 24px; }
.product-stars { color: var(--gold); font-size: .85rem; margin-bottom: 6px; }
.product-rating-count { color: var(--text-muted); font-size: .8rem; }

/* ══════════════════════════════════════════════════════════════
   BEFORE / AFTER SLIDER
══════════════════════════════════════════════════════════════ */
.ba-section { background: var(--cream); }
.ba-grid { display: grid; gap: 40px; }
.ba-item {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.ba-slider {
  position: relative; height: 420px; overflow: hidden;
  cursor: ew-resize; user-select: none; -webkit-user-select: none;
}
.ba-before, .ba-after {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-divider {
  position: absolute; top: 0; bottom: 0; width: 3px;
  background: var(--white); left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,.25);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; color: var(--charcoal);
}
.ba-labels {
  position: absolute; bottom: 16px; left: 0; right: 0;
  display: flex; justify-content: space-between; padding: 0 20px;
  pointer-events: none;
}
.ba-label {
  background: rgba(0,0,0,.6); color: var(--white);
  padding: 5px 14px; border-radius: 3px;
  font-size: .75rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
}
.ba-caption { padding: 20px 24px; background: var(--white); }
.ba-caption-title { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 4px; }
.ba-caption-text { color: var(--text-muted); font-size: .9rem; }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials-grid { display: grid; gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card::before {
  content: '"'; font-family: var(--font-serif);
  font-size: 6rem; line-height: 1; color: var(--gold-light);
  position: absolute; top: 12px; right: 24px;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.testimonial-text {
  font-size: 1rem; line-height: 1.75; color: var(--charcoal);
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 600; font-size: .9rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .95rem; color: var(--near-black); }
.testimonial-role { color: var(--text-muted); font-size: .82rem; margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--near-black);
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative;
}
.cta-banner__bg {
  position: absolute; inset: 0;
  background-image: url('./Images/heroimage2.jpg');
  background-size: cover; background-position: center;
  opacity: .25;
}
.cta-banner__content {
  position: relative; z-index: 1;
  padding: 72px 48px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white); font-weight: 500;
  line-height: 1.2; margin-bottom: 12px;
}
.cta-banner__text { color: rgba(255,255,255,.65); font-size: 1.05rem; }
.cta-banner__actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════════════════ */
.newsletter { background: var(--gold-pale); border-top: 1px solid var(--border); }
.newsletter-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.newsletter-title {
  font-family: var(--font-serif); font-size: 1.8rem;
  font-weight: 500; color: var(--near-black); margin-bottom: 8px;
}
.newsletter-text { color: var(--text-muted); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.newsletter-input {
  padding: 14px 20px; border: 1.5px solid var(--border);
  border-radius: 4px; font-family: var(--font-sans); font-size: .95rem;
  color: var(--text); background: var(--white); width: 280px;
  transition: border-color var(--transition);
  outline: none;
}
.newsletter-input:focus { border-color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--near-black); color: rgba(255,255,255,.7);
  padding: 52px 0 24px;
}
.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}
.footer-brand-name {
  font-family: var(--font-serif); font-size: 1.4rem;
  color: var(--white); margin-bottom: 12px;
}
.footer-brand-desc { font-size: .9rem; line-height: 1.7; max-width: 30ch; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .8rem;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: .75rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; color: var(--gold); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .9rem; margin-bottom: 12px;
}
.footer-contact-icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; font-size: .85rem; }
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .82rem; transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 1000;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,.4);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); animation-play-state: paused; }
.whatsapp-float svg { fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,.65); }
}

/* ══════════════════════════════════════════════════════════════
   SHOP PAGE
══════════════════════════════════════════════════════════════ */
.shop-hero {
  background: var(--cream); padding: 80px 0 56px;
  border-bottom: 1px solid var(--border);
}
.shop-hero-title { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 500; }
.shop-layout { display: grid; gap: 40px; padding: 56px 0; }
.shop-sidebar {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; height: fit-content;
}
.filter-title { font-weight: 600; font-size: .95rem; color: var(--near-black); margin-bottom: 16px; }
.filter-group { margin-bottom: 28px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.filter-group:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.filter-option {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; cursor: pointer; font-size: .9rem;
}
.filter-option input { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }
.filter-range { width: 100%; accent-color: var(--gold); }
.filter-range-labels { display: flex; justify-content: space-between; font-size: .82rem; color: var(--text-muted); margin-top: 8px; }
.shop-main {}
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 32px; flex-wrap: wrap;
}
.shop-count { color: var(--text-muted); font-size: .9rem; }
.sort-select {
  padding: 10px 16px; border: 1px solid var(--border);
  border-radius: 6px; background: var(--white); font-family: inherit;
  font-size: .9rem; color: var(--text); cursor: pointer; outline: none;
}
.sort-select:focus { border-color: var(--gold); }
.shop-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.shop-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.shop-card-img {
  height: 260px; background-size: cover; background-position: center;
  background-color: var(--cream); position: relative;
}
.shop-card-actions {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  display: flex; gap: 8px; opacity: 0;
  transform: translateY(8px); transition: var(--transition);
}
.shop-card:hover .shop-card-actions { opacity: 1; transform: translateY(0); }
.shop-card-body { padding: 18px; }
.shop-card-cat { font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.shop-card-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 500; margin-bottom: 8px; }
.shop-card-price { font-weight: 600; color: var(--gold-dark); }

/* Wishlist button */
.btn-wish {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: var(--shadow-sm);
  transition: var(--transition); flex-shrink: 0;
}
.btn-wish:hover { transform: scale(1.1); }

/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════════════════════════ */
.product-detail { padding: 56px 0; }
.product-detail-grid { display: grid; gap: 56px; align-items: start; }
.product-gallery {}
.product-main-img {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--cream); margin-bottom: 16px;
}
.product-main-img img { width: 100%; height: 520px; object-fit: cover; }
.product-thumbs { display: flex; gap: 12px; }
.product-thumb {
  width: 80px; height: 80px; border-radius: var(--radius-sm);
  border: 2px solid var(--border); background-size: cover;
  background-position: center; cursor: pointer; background-color: var(--cream);
  transition: border-color var(--transition);
}
.product-thumb.active, .product-thumb:hover { border-color: var(--gold); }
.product-detail-info {}
.product-detail-cat { font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.product-detail-name { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 500; line-height: 1.2; margin-bottom: 16px; }
.product-detail-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.product-detail-price { font-size: 2rem; font-weight: 600; color: var(--gold-dark); margin-bottom: 24px; }
.product-detail-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.product-features { margin-bottom: 32px; }
.product-feature { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-top: 1px solid var(--border); }
.product-feature-icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.product-feature-title { font-weight: 600; font-size: .95rem; margin-bottom: 2px; }
.product-feature-text { color: var(--text-muted); font-size: .9rem; }
.product-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.product-meta { background: var(--cream); border-radius: var(--radius); padding: 20px; }
.product-meta-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.product-meta-row:last-child { border-bottom: 0; }
.product-meta-key { color: var(--text-muted); }
.product-meta-val { font-weight: 500; }

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════════ */
.about-hero {
  position: relative; height: 500px;
  background-image: url('./Images/heroimage2.jpg');
  background-size: cover; background-position: center;
  display: flex; align-items: center;
}
.about-hero::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(17,17,17,.6);
}
.about-hero-content { position: relative; z-index: 1; color: var(--white); }
.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 500;
}

.about-story { display: grid; gap: 56px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 540px; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--white);
  padding: 24px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-gold);
}
.about-img-badge .num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; }
.about-img-badge .lbl { font-size: .75rem; letter-spacing: 1px; text-transform: uppercase; }

.values-grid { display: grid; gap: 24px; }
.value-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon {
  width: 52px; height: 52px;
  /* background removed */
  /* border-radius removed */
  display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 20px;
}
.value-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; margin-bottom: 10px; }
.value-text { color: var(--text-muted); line-height: 1.7; }

.team-grid { display: grid; gap: 28px; }
.team-card { text-align: center; }
.team-img {
  width: 160px; height: 160px; border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 2rem; color: var(--white);
  border: 4px solid var(--gold-light);
  overflow: hidden;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; margin-bottom: 4px; }
.team-role { color: var(--gold); font-size: .85rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.team-bio { color: var(--text-muted); font-size: .9rem; margin-top: 12px; }

/* ══════════════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════════════ */
.services-grid { display: grid; gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  display: grid; align-items: stretch;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img {
  height: 260px; background-size: cover; background-position: center;
  background-color: var(--cream);
}
.service-card-body { padding: 32px; }
.service-num {
  font-family: var(--font-serif); font-size: 3rem;
  color: var(--gold-light); font-weight: 700; line-height: 1;
  margin-bottom: 16px;
}
.service-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; margin-bottom: 12px; }
.service-desc { color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list-item { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--charcoal); }
.service-list-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }

.process-steps { display: grid; gap: 0; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding: 40px 0; border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: 0; }
.process-step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--near-black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600;
  flex-shrink: 0;
}
.process-step-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; margin-bottom: 10px; }
.process-step-text { color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════════════════ */
.gallery-filters {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px; border-radius: 999px;
  border: 1.5px solid var(--border); background: transparent;
  font-family: var(--font-sans); font-size: .85rem; font-weight: 500;
  color: var(--text); cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--near-black); color: var(--white);
  border-color: var(--near-black);
}
.gallery-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  background-size: cover; background-position: center;
  background-color: var(--cream);
}
.gallery-item--tall .gallery-img { height: 100%; min-height: 576px; }
.gallery-item--wide .gallery-img { height: 300px; }
.gallery-item:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(17,17,17,.6);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  padding: 24px; text-align: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-title { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); margin-bottom: 8px; }
.gallery-overlay-cat { color: var(--gold); font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius); object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: none;
  color: var(--white); font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ══════════════════════════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════════════════════════ */
.blog-grid { display: grid; gap: 32px; }
.blog-featured {
  display: grid; gap: 40px; align-items: center; margin-bottom: 24px;
}
.blog-featured-img {
  border-radius: var(--radius-lg); overflow: hidden;
}
.blog-featured-img img {
  width: 100%; height: 400px; object-fit: cover;
  background-color: var(--cream);
}
.blog-featured-content {}
.blog-cat { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.blog-title { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 500; line-height: 1.25; margin-bottom: 16px; }
.blog-excerpt { color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.blog-meta { display: flex; align-items: center; gap: 16px; font-size: .82rem; color: var(--text-muted); flex-wrap: wrap; }
.blog-meta-dot { width: 3px; height: 3px; background: var(--border-dark); border-radius: 50%; }
.blog-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img {
  height: 220px; background-size: cover;
  background-position: center; background-color: var(--cream);
}
.blog-card-body { padding: 24px; }
.blog-card-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; margin: 8px 0 10px; line-height: 1.4; }
.blog-card-excerpt { color: var(--text-muted); font-size: .9rem; line-height: 1.6; margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; gap: 48px; }
.contact-info {}
.contact-info-title { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 500; margin-bottom: 16px; }
.contact-info-text { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; gap: 16px; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gold-pale); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold-dark); font-size: 1rem; flex-shrink: 0;
}
.contact-detail-label { font-size: .8rem; letter-spacing: .5px; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.contact-detail-value { font-weight: 500; color: var(--near-black); }
.map-embed {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); margin-top: 32px;
  background: none;
  padding: 0;
  height: 100%;
  min-height: 340px;
  display: block;
}
}
.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 40px;
  box-shadow: var(--shadow-sm);
  align-self: start;
  position: sticky; top: 100px;
}
.form-title { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500; margin-bottom: 8px; }
.form-subtitle { color: var(--text-muted); margin-bottom: 32px; }

/* ── Form fields ────────────────────────────────────────────── */
.field { margin-bottom: 20px; }
.field-row { display: grid; gap: 16px; }
label {
  display: block; font-size: .82rem; font-weight: 600;
  letter-spacing: .3px; color: var(--charcoal); margin-bottom: 7px;
}
input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], input[type="number"], select, textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: .95rem;
  color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}
textarea { resize: vertical; min-height: 120px; }
select { cursor: pointer; }

/* ══════════════════════════════════════════════════════════════
   BOOKING MODAL
══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.6);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 580px; max-height: 90vh; overflow-y: auto;
  padding: 40px; transform: scale(.95);
  transition: transform var(--transition);
  position: relative;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: transparent;
  font-size: 1.1rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  color: var(--charcoal); transition: var(--transition);
}
.modal-close:hover { background: var(--cream); }
.modal-title { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500; margin-bottom: 8px; }
.modal-subtitle { color: var(--text-muted); margin-bottom: 28px; font-size: .9rem; }

/* ══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal="left"]   { transform: translateX(-28px); }
[data-reveal="right"]  { transform: translateX(28px); }
[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: translateX(0); }

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--cream); padding: 80px 0 56px;
  border-bottom: 1px solid var(--border); text-align: center;
}
.page-hero-title { font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; margin-bottom: 16px; }
.page-hero-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 56ch; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--text-muted); margin-bottom: 16px;
  justify-content: center;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { color: var(--border-dark); }

/* ══════════════════════════════════════════════════════════════
   UTILITY
══════════════════════════════════════════════════════════════ */
.text-gold    { color: var(--gold); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-serif   { font-family: var(--font-serif); }
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: 8px; }
.mt-16{ margin-top: 16px; }
.mt-24{ margin-top: 24px; }
.mt-40{ margin-top: 40px; }
.divider { height: 1px; background: var(--border); margin: 48px 0; }
.tag { display: inline-block; padding: 4px 12px; background: var(--gold-pale); color: var(--gold-dark); border-radius: 999px; font-size: .75rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid      { grid-template-columns: repeat(2, 1fr); }
  .team-grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: repeat(2, 1fr); }
  .field-row        { grid-template-columns: 1fr 1fr; }
  .blog-grid.cards  { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .nav          { display: flex; }
  .btn-menu     { display: none; }
  .whatsapp-nav { display: flex; }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .values-grid     { grid-template-columns: repeat(3, 1fr); }
  .team-grid       { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .ba-grid         { grid-template-columns: repeat(2, 1fr); }
  .about-story     { grid-template-columns: 1fr 1fr; }
  .contact-grid    { grid-template-columns: 1fr 1.2fr; align-items: start; }
  .product-detail-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout     { grid-template-columns: 260px 1fr; }
  .blog-featured   { grid-template-columns: 1fr 1fr; }
  .blog-grid.cards { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .categories-grid { gap: 24px; }
}

@media (max-width: 899px) {
  .whatsapp-nav { display: none; }
  .btn-menu     { display: flex; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .strip-track { animation: none; }
}

/* ══════════════════════════════════════════════════════════════
   COMPONENT CLASSES — replaces inline styles site-wide
══════════════════════════════════════════════════════════════ */

/* About page — stats row */
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.about-stats-grid > div {
  background: var(--cream);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

/* About page — mission / vision cards */
.mission-card {
  border-radius: 20px;
  padding: 48px;
}
.mission-card--dark {
  background: var(--near-black);
  color: white;
}
.mission-card--light {
  background: var(--gold-pale);
  border: 1px solid var(--border);
}

/* Contact page — FAQ + map grid */
.faq-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Blog page — featured hero image */
.blog-featured-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE ADDITIONS — replaces inline styles with responsive classes
══════════════════════════════════════════════════════════════ */

/* Site logo */
.site-logo { height: 120px; width: auto; display: block; }

/* Gallery preview grid */
.gallery-preview {
  display: flex; gap: 24px; justify-content: center; margin-bottom: 32px;
}
.gallery-preview-img {
  width: 30%; border-radius: 12px; object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  aspect-ratio: 4 / 3;
}

/* Feature split video */
.feature-video { width: 100%; height: 500px; object-fit: cover; display: block; }

/* ── Touch devices — disable 3D flip, stack front + back ─── */
@media (hover: none) {
  .product-flip { height: auto; perspective: none; }
  .product-flip__inner {
    transform-style: flat; transition: none;
    position: static; display: flex; flex-direction: column; height: auto;
  }
  .product-flip__front {
    position: static; backface-visibility: visible; transform: none;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden; border: 1px solid var(--border); border-bottom: 0;
  }
  .product-flip__back {
    position: static; backface-visibility: visible; transform: none;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 24px 20px; min-height: 0;
  }
}

/* ── Small screens ≤ 639px ───────────────────────────────── */
@media (max-width: 639px) {
  .container { padding: 0 16px; }

  /* ── Header ── */
  .site-logo { height: 48px; }
  .header-inner { height: auto; min-height: 60px; padding: 8px 0; gap: 8px; }
  .brand { min-width: 0; overflow: hidden; }
  .brand-name { font-size: 1rem; letter-spacing: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand-tagline { display: none; }

  /* ── Hero ── */
  .hero { min-height: 100svh; }
  .hero-content { padding: 72px 0 48px; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 16px; }
  .hero-subtitle { font-size: .95rem; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 40px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { display: flex; flex-wrap: wrap; gap: 16px; padding-top: 20px; }
  .hero-stat { flex: 1 1 calc(50% - 8px); }
  .hero-stat__value { font-size: 1.6rem; }
  .hero-stat__label { font-size: .75rem; }
  .hero-scroll { display: none; }

  /* ── Sections ── */
  .section { padding: 48px 0; }
  .section--sm { padding: 36px 0; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 36px; }
  .section-subtitle { font-size: .95rem; }

  /* ── Inner page hero — remove double-padding (section has 80px AND container has 80px inline) ── */
  .page-hero { padding: 0 !important; }
  .page-hero .container { padding-top: 56px !important; padding-bottom: 40px !important; }
  .page-hero-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .about-hero { height: 200px; }
  .about-hero-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  /* ── Categories grid ── */
  .categories-grid { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .cat-name { font-size: 1rem; }
  .cat-body { padding: 16px; }

  /* ── Product cards ── */
  .products-grid { grid-template-columns: 1fr !important; }
  .product-img { height: 220px; }

  /* ── Gallery preview (index) ── */
  .gallery-preview { flex-direction: column; align-items: stretch; gap: 12px; }
  .gallery-preview-img { width: 100%; }

  /* ── Gallery page ── */
  .gallery-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--tall .gallery-img { min-height: 180px !important; height: 180px !important; }
  .gallery-item--wide .gallery-img { height: 180px !important; }
  .gallery-img { height: 180px; }
  .gallery-filters { gap: 8px; }
  .filter-btn { padding: 8px 14px; font-size: .78rem; }

  /* ── Feature video ── */
  .feature-video { height: 220px; }

  /* ── About page ── */
  .about-stats-grid { grid-template-columns: 1fr 1fr !important; }
  .about-img img { height: auto !important; width: 100% !important; }
  .mission-card { padding: 24px !important; }

  /* ── Blog ── */
  .blog-featured-hero-img { height: 200px !important; border-radius: 10px; }
  .blog-featured { flex-direction: column; gap: 20px; }
  .blog-featured-img { order: -1; }

  /* ── Contact ── */
  .faq-map-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .contact-form-card { padding: 24px 16px; position: static; }
  .contact-grid { gap: 32px; }

  /* ── CTA banner ── */
  .cta-banner__content { padding: 36px 20px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-banner__title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .cta-banner__actions { width: 100%; flex-direction: column; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }

  /* ── Newsletter ── */
  .newsletter { padding: 36px 0; }
  .newsletter-inner { flex-direction: column; gap: 20px; }
  .newsletter-form { width: 100%; flex-direction: column; }
  .newsletter-input { width: 100%; }
  .newsletter-form .btn { width: 100%; justify-content: center; }

  /* ── Shop ── */
  .shop-layout { grid-template-columns: 1fr !important; }
  .shop-sidebar { display: none; }
  .shop-hero { padding: 48px 0 32px; }
  .shop-grid { grid-template-columns: 1fr 1fr !important; gap: 14px; }
  .shop-card-img { height: 180px; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr !important; }
  .service-card-img { height: 200px; }

  /* ── Process steps ── */
  .process-step { grid-template-columns: 56px 1fr; gap: 16px; padding: 24px 0; }
  .process-step-num { width: 48px; height: 48px; font-size: 1.1rem; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .footer-brand-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* ── Modal ── */
  .modal { padding: 24px 16px; max-height: 95vh; }
  .modal-overlay { padding: 12px; }

  /* ── Forms ── */
  .field-row { grid-template-columns: 1fr !important; }

  /* ── Buttons ── */
  .btn-lg { padding: 14px 24px; font-size: .9rem; }

  /* ── WhatsApp float ── */
  .whatsapp-float { bottom: 16px; right: 14px; width: 50px; height: 50px; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .testimonial-card { padding: 24px 20px; }

  /* ── Values ── */
  .values-grid { grid-template-columns: 1fr !important; }
  .value-card { padding: 24px; }
}

/* ── Extra-small phones ≤ 399px ──────────────────────────── */
@media (max-width: 399px) {
  .container { padding: 0 12px; }
  .site-logo { height: 40px; }
  .brand-name { font-size: .9rem; }
  .categories-grid { grid-template-columns: 1fr !important; }
  .shop-grid { grid-template-columns: 1fr !important; }
  .gallery-grid { grid-template-columns: 1fr !important; }
  .about-stats-grid { grid-template-columns: 1fr !important; }
  .hero-stat { flex: 1 1 100%; }
  .section-title { font-size: clamp(1.4rem, 7vw, 1.8rem); }
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.2rem); }
}
