/* ═══════════════════════════════════════════════
   H&H CONCEPTS — APPLE HIG MULTI-PAGE STYLESHEET
   Design: Monochrome Luxury (Apple HIG), Glassmorphism
   Colors: Black, White, Translucent Grey (No Gold/Warm colors)
   Fonts: San Francisco / Poppins (Sans), Playfair (Serif Headings)
   Kerning: Zero/Negative tracking, normal mixed case
   Layout: Desktop Grids (no horizontal scroll) & Mobile/Tablet Carousels/2-Col
═══════════════════════════════════════════════ */

/* ── APPLE HIG DESIGN TOKENS ─────────────────── */
:root {
  --ink: #000000;
  --ink-soft: #0b0a0a;
  --dark-surface: #121214;
  --dark-card: rgba(255, 255, 255, 0.05);
  --dark-border: rgba(255, 255, 255, 0.12);

  --cream: #f5f5f7;
  --cream-deep: #e8e8ed;
  --light-card: #ffffff;
  --light-border: rgba(0, 0, 0, 0.08);

  --text-primary-dark: #ffffff;
  --text-secondary-dark: #a1a1a6;
  --text-tertiary-dark: #6e6e73;

  --text-primary-light: #1d1d1f;
  --text-secondary-light: #515154;
  --text-tertiary-light: #86868b;

  --accent-white: #ffffff;
  --accent-black: #000000;
  --accent-grey: #8e8e93;
  --muted: #6e6e73;

  --line: rgba(0, 0, 0, 0.08);
  --line-dark: rgba(255, 255, 255, 0.12);

  --sans: 'DM Sans', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --serif: 'DM Sans', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --mono: 'DM Sans', sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 28px;
  --r-pill: 9999px;

  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.22);

  --blur-glass: blur(28px) saturate(180%);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease-out);
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box; margin: 0; padding: 0;
  font-family: 'DM Sans', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
  letter-spacing: -0.02em;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--text-primary-light);
  font-family: 'DM Sans', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.015em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: 'DM Sans', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
  letter-spacing: -0.03em !important;
  font-weight: 500;
}
p, span, a, button, input, textarea, select, label, div {
  font-family: 'DM Sans', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; padding: 0; }
ul { list-style: none; }
input, textarea, select { font: inherit; }

/* ── PAGE TRANSITION ANIMATION CURTAIN ────────── */
.page-transition-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--ink);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s;
}
.page-transition-curtain.active {
  opacity: 1;
  transform: translateY(0%);
  pointer-events: all;
}
.page-transition-curtain.exit {
  opacity: 1;
  transform: translateY(-100%);
}

/* ── SCROLL PROGRESS ─────────────────────────── */
.scroll-progress {
  position: fixed; right: 16px; top: 50%; z-index: 99;
  width: 2px; height: 100px; background: rgba(0,0,0,.15);
  transform: translateY(-50%);
}
.scroll-progress i {
  display: block; width: 100%; height: 0;
  background: var(--accent-black); transform-origin: top;
}

/* ── CUSTOM CURSOR ───────────────────────────── */
.cursor, .cursor-follower {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  pointer-events: none; z-index: 9999; transform: translate(-50%,-50%);
  transition: opacity 0.3s;
}
.cursor {
  width: 8px; height: 8px; background: var(--text-primary-light);
  transition: transform 0.1s, background 0.2s;
}
.cursor-follower {
  width: 36px; height: 36px; border: 1.5px solid rgba(0,0,0,0.3);
  opacity: 0.5; transition: transform 0.22s var(--ease-out), opacity 0.3s;
}
.cursor.is-active { transform: translate(-50%,-50%) scale(2.5); background: var(--accent-black); }
.cursor-follower.is-active { opacity: 0; }

/* ── PRELOADER ───────────────────────────────── */
.preloader {
  position: fixed; z-index: 1000;
  bottom: 32px; right: 32px;
  background: rgba(18, 18, 20, 0.85);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--dark-border);
  color: var(--text-primary-dark);
  padding: 18px 24px 14px;
  border-radius: var(--r-lg);
  min-width: 130px;
  box-shadow: var(--shadow-xl);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.preloader.hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
.preloader-counter {
  font: 600 42px/1 var(--sans);
  letter-spacing: -0.04em;
  color: var(--text-primary-dark);
}
.preloader-counter span { display: inline-block; }
.preloader-bar {
  margin-top: 10px;
  height: 2px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  overflow: hidden;
}

/* ── UTILITY ─────────────────────────────────── */
.eyebrow {
  font: 500 13px/1.3 var(--sans);
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text-secondary-light);
  margin-bottom: 18px;
}
.section-pad { padding: 120px 7.5vw; }
.section-top { margin-bottom: 80px; }
.section-top h2 { font: 400 clamp(44px,5vw,76px)/.92 var(--serif); letter-spacing: -0.03em; }
.section-top h2 em { font-style: italic; color: var(--accent-grey); }
.section-sub { max-width: 440px; color: var(--muted); margin-top: 20px; line-height: 1.65; letter-spacing: -0.01em; }
.center-top { text-align: center; }
.center-top .section-sub { margin: 20px auto 0; text-align: left; }
.text-link {
  display: inline-block; font: 500 13px var(--sans); letter-spacing: -0.01em;
  text-transform: none; border-bottom: 1px solid currentColor;
  padding-bottom: 4px; margin-top: 24px;
  transition: color var(--transition), border-color var(--transition);
}
.text-link:hover { color: var(--accent-grey); }

/* ── BUTTONS (MONOCHROME APPLE HIG) ──────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ffffff; color: #000000;
  font: 500 14px/1 var(--sans); letter-spacing: -0.01em;
  padding: 16px 32px; border-radius: var(--r-pill);
  transition: background var(--transition), color var(--transition), transform 0.2s;
  border: 1px solid transparent;
  box-shadow: 0 4px 16px rgba(255,255,255,0.1);
}
.btn-primary:hover { background: #e5e5ea; color: #000000; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  color: #ffffff; font: 500 14px/1 var(--sans);
  letter-spacing: -0.01em; padding: 14px 30px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  transition: background var(--transition), border-color var(--transition), transform 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.8); transform: translateY(-2px); }

/* ── REVEAL ANIMATION ────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════
   HEADER & HIGH-VISIBILITY NAVIGATION CONTRAST
═══════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: 90px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4.5vw;
  background: rgba(255, 255, 255, 0.2) !important; /* glass effect */
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: background 0.3s, height 0.3s, box-shadow 0.3s, color 0.3s;
}
/* Glassy Header (Default Unscrolled over Dark/Hero sections): White Logo, White Nav Links, White CTA Button */
.site-header:not(.scrolled):not(.header-light) {
  background: rgba(18, 18, 20, 0.65) !important;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
.site-header:not(.scrolled):not(.header-light) .logo-dark { display: block !important; }
.site-header:not(.scrolled):not(.header-light) .logo-light { display: none !important; }
.site-header:not(.scrolled):not(.header-light) #nav a:not(.nav-cta) { color: #ffffff !important; }
.site-header:not(.scrolled):not(.header-light) #nav a:not(.nav-cta)::after { background: #ffffff !important; }
.site-header:not(.scrolled):not(.header-light) #nav a.nav-cta {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2) !important;
}
.site-header:not(.scrolled):not(.header-light) #nav a.nav-cta span { color: #000000 !important; }
.site-header:not(.scrolled):not(.header-light) #nav a.nav-cta:hover {
  background: #e5e5ea !important;
  color: #000000 !important;
}
.site-header:not(.scrolled):not(.header-light) .menu-toggle span { background: #ffffff !important; }

/* Scrolled state & Light Header: White Background, Black Logo, High Contrast Black Nav Links, Black CTA Button */
.site-header.scrolled, .site-header.header-light {
  background: #ffffff !important;
  color: #000000 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.site-header.scrolled .logo-dark, .site-header.header-light .logo-dark { display: none !important; }
.site-header.scrolled .logo-light, .site-header.header-light .logo-light { display: block !important; }
.site-header.scrolled #nav a:not(.nav-cta), .site-header.header-light #nav a:not(.nav-cta) { color: #000000 !important; }
.site-header.scrolled #nav a:not(.nav-cta)::after, .site-header.header-light #nav a:not(.nav-cta)::after { background: #000000 !important; }
.site-header.scrolled #nav a.nav-cta, .site-header.header-light #nav a.nav-cta {
  background: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #000000 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2) !important;
}
.site-header.scrolled #nav a.nav-cta span, .site-header.header-light #nav a.nav-cta span { color: #ffffff !important; }
.site-header.scrolled #nav a.nav-cta:hover, .site-header.header-light #nav a.nav-cta:hover {
  background: #222225 !important;
  color: #ffffff !important;
}
.site-header.scrolled .menu-toggle span, .site-header.header-light .menu-toggle span { background: #000000 !important; }

.header-logo {
  display: flex; align-items: center; height: 68px;
  background: transparent !important;
  transition: transform 0.3s ease;
}
.header-logo:hover {
  transform: scale(1.03);
}

.header-logo img {
  height: 100%; max-height: 68px; width: auto; object-fit: contain;
  background: transparent !important;
}

#nav {
  display: flex; align-items: center; gap: 36px;
  font: 600 14px/1 'DM Sans', sans-serif !important; letter-spacing: -0.01em; text-transform: none;
}

#nav a {
  font-weight: 600 !important;
  position: relative;
  opacity: 0.88;
  transition: opacity 0.2s, color 0.2s;
}

#nav a:hover, #nav a.active {
  opacity: 1 !important;
}

#nav a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 100%; height: 2px;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

#nav a:hover::after, #nav a.active::after {
  transform: scaleX(1); transform-origin: left;
}

.nav-cta {
  font-weight: 600 !important;
  padding: 10px 24px !important;
  border-radius: 9999px !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); }

.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 6px; padding: 8px;
  width: 40px; height: 40px; border-radius: 50%;
  background: transparent; border: none; cursor: pointer;
  transition: background 0.2s ease;
}
.menu-toggle span {
  display: block; width: 100%; height: 2px;
  border-radius: 2px; transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }

/* ═══════════════════════════════════════════════════
   SUBPAGE HERO BANNER
═══════════════════════════════════════════════════ */
.subpage-hero {
  background: var(--ink); color: #ffffff;
  padding: 170px 7.5vw 90px; position: relative; overflow: hidden;
}
.subpage-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.subpage-hero-inner { max-width: 860px; position: relative; z-index: 2; }
.subpage-hero h1 {
  font: 400 clamp(44px,6vw,92px)/.92 var(--serif);
  letter-spacing: -0.04em; margin-bottom: 20px;
}
.subpage-hero h1 em { font-style: italic; color: var(--text-secondary-dark); }
.subpage-hero-sub {
  font-size: 18px; color: var(--text-secondary-dark); line-height: 1.65; max-width: 600px; letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════════════
   HERO & ROTATING LOGO BADGE
═══════════════════════════════════════════════════ */
.hero {
  min-height: 100svh; position: relative; color: var(--text-primary-dark);
  display: flex; align-items: flex-end;
  padding: 120px 7.5vw 10vh;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { transform-origin: center; transition: transform 6s ease; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.5) 55%, rgba(0,0,0,.3) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-eyebrow { color: var(--text-secondary-dark); margin-bottom: 22px; font-size: 14px; font-weight: 500; }
.hero h1 {
  font: 400 clamp(36px,8.5vw,140px)/.88 var(--serif);
  letter-spacing: -0.04em; margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--text-secondary-dark); display: block; }
.hero-sub { font-size: 16px; max-width: 480px; line-height: 1.65; opacity: 0.85; margin-bottom: 44px; letter-spacing: -0.01em; color: var(--text-secondary-dark); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 10vh; right: 7.5vw; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font: 500 12px var(--sans); letter-spacing: -0.01em; text-transform: none;
  color: rgba(255,255,255,.6);
}
.scroll-line {
  width: 1px; height: 48px; background: rgba(255,255,255,.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: #ffffff; animation: scroll-drop 1.8s ease-in-out infinite;
}
@keyframes scroll-drop { 0%{top:-100%} 100%{top:200%} }
.hero-index {
  position: absolute; bottom: 10vh; left: 7.5vw; z-index: 2;
  font: 500 12px var(--sans); letter-spacing: -0.01em; text-transform: none;
  color: rgba(255,255,255,.5);
}

/* ROTATING LOGO ICON BADGE */
.hero-badge {
  position: absolute; top: 18vh; right: 7.5vw; z-index: 2;
  width: 110px; height: 110px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.hero-badge img {
  width: 54px; height: 54px; object-fit: contain;
  animation: spin-slow 20s linear infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ROTATING TEXT BADGE (HERO) */
.hero-rotating-badge {
  position: absolute;
  bottom: 14vh;
  right: 7.5vw;
  z-index: 3;
  width: 120px;
  height: 120px;
}
.badge-spin-circle {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spin-text-svg {
  width: 100%;
  height: 100%;
  animation: spin-slow 18s linear infinite;
}
.badge-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-center-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* ═══════════════════════════════════════════════════
   ABOUT / STATS / TIMELINE (ABOUT PAGE)
═══════════════════════════════════════════════════ */
.about {
  background: var(--ink); color: var(--text-primary-dark);
  display: grid; grid-template-columns: 1fr 1fr; gap: 10vw;
  align-items: start;
}
.about-left h2 {
  font: 400 clamp(38px,4.2vw,66px)/.92 var(--serif);
  letter-spacing: -0.03em; margin-bottom: 24px;
}
.about-left h2 em { font-style: italic; color: var(--text-secondary-dark); }
.about-left p { color: var(--text-secondary-dark); line-height: 1.7; max-width: 440px; letter-spacing: -0.01em; }
.about-left .text-link { color: #ffffff; border-color: #ffffff; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-left: 1px solid var(--line-dark);
}
.stat-item {
  padding: 36px 40px; border-bottom: 1px solid var(--line-dark);
  transition: background var(--transition);
}
.stat-item:nth-child(odd) { border-right: 1px solid var(--line-dark); }
.stat-item:hover { background: rgba(255,255,255,.04); }
.stat-number {
  display: block; font: 400 clamp(48px,5.5vw,80px)/1 var(--serif);
  color: #ffffff; letter-spacing: -0.04em; margin-bottom: 10px;
}
.stat-number sup { font-size: 0.45em; vertical-align: super; }
.stat-item span { font: 500 13px var(--sans); letter-spacing: -0.01em; text-transform: none; color: var(--text-secondary-dark); }

/* TIMELINE (ABOUT PAGE) */
.timeline-section { background: var(--cream); }
.timeline-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 40px; border-top: 1px solid var(--line); padding-top: 40px;
}
.timeline-card {
  background: var(--light-card); border-radius: var(--r-lg);
  padding: 32px 28px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform 0.3s;
}
.timeline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.timeline-year {
  font: 400 36px/1 var(--serif); color: #000000; margin-bottom: 12px;
}
.timeline-card h4 { font: 500 18px var(--sans); margin-bottom: 8px; }
.timeline-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   CATEGORIES CATALOG & FILTER BAR (CATEGORIES PAGE)
═══════════════════════════════════════════════════ */
.catalog-filter-bar {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 12px;
  margin-bottom: 40px; scrollbar-width: none;
}
.catalog-filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  font: 500 13px var(--sans); letter-spacing: -0.01em;
  padding: 10px 22px; border-radius: var(--r-pill);
  background: var(--light-card); border: 1px solid var(--line);
  color: var(--text-primary-light); white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: #000000; color: #ffffff; border-color: #000000;
}

/* MARQUEE TICKER */
.ticker-strip {
  background: var(--ink); color: var(--text-primary-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  overflow: hidden; padding: 18px 0; cursor: default;
}
.ticker-track {
  display: flex; align-items: center; gap: 36px; width: max-content;
  animation: ticker-move 40s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span { font: 500 14px/1 var(--sans); letter-spacing: -0.01em; text-transform: none; }
.ticker-track b { color: var(--text-secondary-dark); font-size: 10px; font-weight: 400; }
@keyframes ticker-move { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════
   COLLECTION SPOTLIGHT
═══════════════════════════════════════════════════ */
.collection { background: var(--cream); }
.collection .section-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
}
.collection .section-top h2 { font: 400 clamp(42px,5vw,76px)/.92 var(--serif); letter-spacing: -0.03em; }
.collection .section-top h2 em { font-style: italic; color: var(--text-secondary-light); }

/* DESKTOP GRID: NO HORIZONTAL OVERFLOW */
.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.col-card {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  min-height: 380px; cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.25s var(--ease-out), box-shadow 0.4s;
}
.col-card.col-tall { grid-row: span 2; min-height: 780px; }
.col-card.col-wide { grid-column: span 2; min-height: 380px; }
.col-card img {
  position: absolute; inset: 0;
  transition: transform 0.9s var(--ease-out);
}
.col-card:hover img { transform: scale(1.07); }
.col-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.8) 100%);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px; color: #ffffff;
  transition: background 0.4s;
}
.col-card:hover .col-card-overlay { background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.88) 100%); }
.col-num { font: 500 13px var(--sans); letter-spacing: -0.01em; opacity: 0.8; }
.col-card-info h3 {
  font: 400 clamp(24px,2.6vw,38px)/.95 var(--serif);
  letter-spacing: -0.03em; margin-bottom: 8px;
}
.col-card-info p { font-size: 13px; opacity: 0.85; margin-bottom: 16px; letter-spacing: -0.01em; }
.col-cta {
  display: inline-block; font: 500 12px var(--sans); letter-spacing: -0.01em;
  text-transform: none; border: 1px solid rgba(255,255,255,.45); border-radius: var(--r-pill);
  padding: 9px 18px; background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.col-card:hover .col-cta { background: #ffffff; border-color: #ffffff; color: #000000; }
.col-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

/* ═══════════════════════════════════════════════════
   CATEGORIES GRID (DESKTOP GRID / MOBILE CAROUSEL)
═══════════════════════════════════════════════════ */
.categories-section { background: var(--cream-deep); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 20px;
}
.cat-card {
  background: var(--light-card); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  cursor: pointer; position: relative;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card:focus-visible { outline: 2px solid #000000; outline-offset: 4px; }
.cat-num {
  font: 500 12px var(--sans); letter-spacing: -0.01em;
  position: absolute; top: 14px; left: 16px; z-index: 1;
  color: #ffffff; background: rgba(0,0,0,0.5); backdrop-filter: blur(6px); padding: 3px 10px; border-radius: var(--r-pill);
}
.cat-img { position: relative; height: 220px; overflow: hidden; }
.cat-img img { transition: transform 0.7s var(--ease-out); }
.cat-card:hover .cat-img img { transform: scale(1.06); }
.cat-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, transparent 50%);
}
.cat-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.cat-body h3 { font: 400 22px/1.1 var(--serif); letter-spacing: -0.02em; }
.cat-body > p { font-size: 13px; color: var(--muted); line-height: 1.6; letter-spacing: -0.01em; }
.cat-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px;
}
.cat-tags li {
  font: 500 11px var(--sans); letter-spacing: -0.01em; text-transform: none;
  background: var(--cream); color: var(--text-primary-light);
  padding: 5px 11px; border-radius: var(--r-pill);
  border: 1px solid var(--line);
}
.cat-price-range {
  font: 600 13px var(--sans); letter-spacing: -0.01em;
  color: var(--text-primary-light); margin-top: auto;
}
.cat-btn {
  margin-top: 14px; padding: 12px 20px;
  background: var(--accent-black); color: #ffffff;
  border-radius: var(--r-pill); font: 500 13px var(--sans); letter-spacing: -0.01em;
  text-align: center; transition: background var(--transition), color var(--transition);
}
.cat-btn:hover { background: #333336; color: #ffffff; }

/* ═══════════════════════════════════════════════════
   SPOTLIGHT
═══════════════════════════════════════════════════ */
.spotlight { background: var(--ink); color: #ffffff; }
.spotlight .section-top h2 { color: #ffffff; }
.spotlight .section-top h2 em { color: var(--text-secondary-dark); }
.spotlight .eyebrow { color: var(--text-secondary-dark); }
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.spotlight-card {
  background: var(--dark-card); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--dark-border);
  transition: transform 0.35s var(--ease-out), background 0.3s;
  animation-delay: var(--delay);
}
.spotlight-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); }
.spotlight-img { height: 240px; overflow: hidden; }
.spotlight-img img { transition: transform 0.7s var(--ease-out); }
.spotlight-card:hover .spotlight-img img { transform: scale(1.06); }
.spotlight-info { padding: 22px; }
.spotlight-tag {
  display: inline-block; font: 500 12px var(--sans); letter-spacing: -0.01em;
  text-transform: none; color: var(--text-secondary-dark); margin-bottom: 10px;
}
.spotlight-info h4 { font: 400 20px/1.1 var(--serif); letter-spacing: -0.02em; margin-bottom: 10px; }
.spotlight-info p { font-size: 13px; color: var(--text-secondary-dark); line-height: 1.6; margin-bottom: 16px; letter-spacing: -0.01em; }
.spotlight-price {
  font: 600 16px var(--sans); color: #ffffff; margin-bottom: 16px; letter-spacing: -0.01em;
}
.spotlight-cta {
  display: inline-block; font: 500 12px var(--sans); letter-spacing: -0.01em;
  text-transform: none; border-bottom: 1px solid #ffffff; padding-bottom: 3px;
  color: #ffffff; transition: opacity var(--transition);
}
.spotlight-cta:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════════════
   MANIFESTO STRIP
═══════════════════════════════════════════════════ */
.manifesto-strip {
  position: relative; height: 75vh; min-height: 500px;
  overflow: hidden; color: #ffffff;
}
.manifesto-strip img { transition: transform 0.1s ease-out; }
.manifesto-strip::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.25) 60%, transparent 100%);
}
.manifesto-text {
  position: absolute; z-index: 1; left: 7.5vw; bottom: 12%;
  font: 400 clamp(28px,4vw,60px)/1.1 var(--serif);
  letter-spacing: -0.03em; max-width: 600px;
}
.manifesto-text .eyebrow { font-size: 13px; color: var(--text-secondary-dark); }
.manifesto-text p:last-child { margin-top: 10px; opacity: 0.9; }

/* ═══════════════════════════════════════════════════
   SPACES SHOWCASE (DESKTOP GRID & MOBILE SLIDER)
═══════════════════════════════════════════════════ */
.spaces { background: var(--cream); }
.spaces .section-top h2 { font: 400 clamp(38px,4.5vw,72px)/.92 var(--serif); letter-spacing: -0.03em; }
.spaces .section-top h2 em { font-style: italic; color: var(--text-secondary-light); }

/* Desktop Grid: No horizontal scroll */
.spaces-grid-desktop {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.space-card {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--light-card); border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.space-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.space-img { height: 340px; overflow: hidden; }
.space-img img { transition: transform 0.8s var(--ease-out); }
.space-card:hover .space-img img { transform: scale(1.06); }
.space-info { padding: 28px; }
.space-info span { font: 500 12px var(--sans); letter-spacing: -0.01em; text-transform: none; color: var(--text-secondary-light); }
.space-info h3 { font: 400 24px/1.1 var(--serif); letter-spacing: -0.02em; margin: 8px 0; }
.space-info p { font-size: 13px; color: var(--muted); line-height: 1.65; letter-spacing: -0.01em; }

/* ═══════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════ */
.process { background: var(--cream-deep); }
.process-top { margin-bottom: 70px; }
.process-top h2 { font: 400 clamp(40px,4.8vw,76px)/.92 var(--serif); letter-spacing: -0.03em; margin-bottom: 20px; }
.process-top h2 em { font-style: italic; color: var(--text-secondary-light); }
.process-top p { max-width: 500px; color: var(--muted); line-height: 1.7; letter-spacing: -0.01em; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  border-top: 1px solid var(--line);
}
.step {
  padding: 36px 0;
  border-right: 1px solid var(--line);
  padding-right: 28px;
}
.step:last-child { border-right: 0; padding-right: 0; }
.step-num {
  font: 400 clamp(50px,6vw,80px)/1 var(--serif); letter-spacing: -0.05em;
  color: var(--text-secondary-light); opacity: 0.35; margin-bottom: 20px;
}
.step h4 { font: 400 20px/1.2 var(--serif); margin-bottom: 12px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.7; letter-spacing: -0.01em; }

/* ═══════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════ */
.faq { background: var(--cream); }
.faq-top { margin-bottom: 60px; }
.faq-top h2 { font: 400 clamp(40px,4.8vw,72px)/.92 var(--serif); letter-spacing: -0.03em; }
.faq-top h2 em { font-style: italic; color: var(--text-secondary-light); }
.faq-list { border-top: 1px solid var(--line); max-width: 900px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; text-align: left;
  font: 400 18px/1.3 var(--serif); letter-spacing: -0.01em;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent-grey); }
.faq-q[aria-expanded="true"] { color: #000000; font-weight: 600; }
.faq-icon {
  width: 28px; height: 28px; border: 1.5px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-style: normal; flex-shrink: 0; margin-left: 20px;
  transition: transform 0.35s var(--ease-out), background var(--transition), border-color var(--transition);
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg); background: #000000; border-color: #000000; color: #ffffff;
}
.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height 0.45s var(--ease-out), padding 0.35s;
  padding: 0;
}
.faq-a.open { max-height: 300px; padding-bottom: 24px; }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.75; max-width: 780px; letter-spacing: -0.01em; }

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact {
  background: var(--ink); color: #ffffff;
  position: relative; overflow: hidden; padding: 120px 7.5vw;
}
.contact-inner { position: relative; z-index: 1; }
.contact .eyebrow { color: var(--text-secondary-dark); }
.contact h2 {
  font: 400 clamp(50px,7vw,110px)/.9 var(--serif);
  letter-spacing: -0.04em; margin-bottom: 60px;
}
.contact h2 em { font-style: italic; color: var(--text-secondary-dark); }
.contact-cols { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-email {
  font: 400 clamp(18px,2.2vw,30px)/1.2 var(--serif);
  border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 12px;
  display: block; width: max-content; margin-bottom: 20px;
  transition: border-color var(--transition), opacity var(--transition);
}
.contact-email:hover { opacity: 0.7; border-color: #ffffff; }
.contact-email span { margin-left: 16px; font-size: 0.75em; }
.contact-left > p { color: var(--text-secondary-dark); line-height: 1.7; margin-bottom: 30px; max-width: 340px; letter-spacing: -0.01em; }
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-links a {
  font: 500 13px var(--sans); letter-spacing: -0.01em; text-transform: none;
  color: var(--text-secondary-dark); border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 6px;
  width: max-content; transition: border-color var(--transition), color var(--transition);
}
.contact-links a:hover { border-color: #ffffff; color: #ffffff; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font: 500 12px var(--sans); letter-spacing: -0.01em; text-transform: none; color: var(--text-secondary-dark); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,.06); border: 1px solid var(--dark-border);
  border-radius: var(--r-md); padding: 14px 16px; color: #ffffff;
  outline: none; transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none; font-family: var(--sans); letter-spacing: -0.01em;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #ffffff; background: rgba(255,255,255,.1);
}
.form-group select option { background: var(--dark-surface); color: #ffffff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  background: #ffffff; color: #000000;
  padding: 16px 36px; border-radius: var(--r-pill);
  font: 600 14px var(--sans); letter-spacing: -0.01em;
  align-self: flex-start; transition: background var(--transition), transform 0.2s;
}
.form-submit:hover { background: #e5e5ea; transform: translateY(-2px); }
.form-msg { font: 500 13px var(--sans); color: var(--text-secondary-dark); min-height: 20px; letter-spacing: -0.01em; }

/* ═══════════════════════════════════════════════════
   APPLE HIG FOOTER (ATTACHED ASTRIA DESIGN REFERENCE)
═══════════════════════════════════════════════════ */
.apple-footer-section {
  background: #09090a;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 120px 7.5vw 60px;
}
.footer-bg-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; opacity: 0.4;
}
.footer-bg-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center bottom;
  filter: contrast(1.1) brightness(0.8);
}
.footer-overlay-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #09090a 0%, rgba(9,9,10,0.5) 40%, #09090a 100%);
}

.apple-footer-inner {
  position: relative; z-index: 2; max-width: 1300px; margin: 0 auto;
}

.footer-subscribe-hero {
  text-align: center; margin-bottom: 80px;
}
.footer-subscribe-hero h2 {
  font: 500 clamp(42px, 6vw, 76px)/1 var(--sans);
  letter-spacing: -0.04em; margin-bottom: 32px; color: #ffffff;
}
.footer-subscribe-pill {
  display: inline-flex; align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-pill);
  padding: 6px 8px 6px 24px;
  max-width: 520px; width: 100%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.footer-subscribe-pill input {
  background: transparent; border: none; outline: none;
  color: #ffffff; font: 400 15px var(--sans); letter-spacing: -0.01em;
  flex: 1; min-width: 0;
}
.footer-subscribe-pill input::placeholder { color: rgba(255, 255, 255, 0.5); }
.footer-subscribe-pill button {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff; font: 500 12px var(--sans); letter-spacing: -0.01em;
  padding: 12px 28px; border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background var(--transition), transform 0.2s;
}
.footer-subscribe-pill button:hover { background: #ffffff; color: #000000; transform: scale(1.02); }

.footer-glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(32px) saturate(190%);
  -webkit-backdrop-filter: blur(32px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 54px 60px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.footer-card-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand-col {
  display: flex; flex-direction: column; gap: 16px;
}
.footer-card-logo {
  height: 84px; width: auto; object-fit: contain; align-self: flex-start;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.footer-card-bio {
  font-size: 13px; color: var(--text-secondary-dark); line-height: 1.65; max-width: 320px; letter-spacing: -0.01em;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font: 500 14px var(--sans); letter-spacing: -0.01em; color: #ffffff; margin-bottom: 6px;
}
.footer-col a {
  font-size: 13px; color: var(--text-secondary-dark); transition: color var(--transition); letter-spacing: -0.01em;
}
.footer-col a:hover { color: #ffffff; }

.footer-card-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; gap: 20px; flex-wrap: wrap;
  font: 400 13px var(--sans); color: var(--text-secondary-dark); letter-spacing: -0.01em;
}
.footer-social-links {
  display: flex; align-items: center; gap: 16px;
}
.footer-social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-secondary-dark); transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-size: 13px;
}
.footer-social-links a:hover { background: #ffffff; color: #000000; border-color: #ffffff; }

/* ═══════════════════════════════════════════════════
   CATEGORY MODAL — CENTERED IN PAGE
═══════════════════════════════════════════════════ */
dialog#cat-modal {
  position: fixed !important;
  inset: 0 !important;
  margin: auto !important;
  max-width: min(960px, 92vw);
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  border: 0;
  padding: 0;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  background: var(--cream);
  z-index: 10000;
}
dialog#cat-modal[open] {
  display: block;
  animation: modal-center-in 0.35s var(--ease-out) forwards;
}
dialog#cat-modal::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@keyframes modal-center-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.modal-body { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.modal-close {
  position: absolute; top: 16px; right: 18px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.1); display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1; transition: background var(--transition), color var(--transition);
}
.modal-close:hover { background: #000000; color: #ffffff; }
.modal-img-wrap { height: 100%; min-height: 480px; overflow: hidden; }
.modal-img-wrap img { height: 100%; object-fit: cover; }
.modal-content-wrap {
  padding: 48px 40px; display: flex; flex-direction: column; justify-content: center;
}
.modal-content-wrap h2 {
  font: 400 clamp(28px,3vw,42px)/.95 var(--serif);
  letter-spacing: -0.03em; margin-bottom: 16px;
}
#modal-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; letter-spacing: -0.01em; }
.modal-products {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.modal-products span {
  font: 500 11px var(--sans); letter-spacing: -0.01em; text-transform: none;
  background: var(--cream-deep); border: 1px solid var(--line);
  padding: 5px 11px; border-radius: var(--r-pill); color: var(--text-primary-light);
}
.modal-meta { font: 600 13px var(--sans); color: var(--accent-black); margin-bottom: 28px; letter-spacing: -0.01em; }
.modal-enquire-btn { align-self: flex-start; background: #000000; color: #ffffff; }
.modal-enquire-btn:hover { background: #333336; color: #ffffff; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE RULES (DESKTOP GRID vs MOBILE/TABLET CAROUSEL & 2-COL)
═══════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  /* Strictly no horizontal scroll on desktop */
  .spaces-grid-desktop { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; overflow: visible; }
  .categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; overflow: visible; }
}

@media (max-width: 1023px) {
  .spotlight-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .col-card.col-tall { grid-row: span 1; }
  .col-card.col-wide { grid-column: span 2; }
  .footer-card-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Mobile and tablet: 2-column or horizontal touch slider */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .spaces-grid-desktop {
    display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }
  .spaces-grid-desktop .space-card { flex: 0 0 75vw; scroll-snap-align: start; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 60px 5vw; }

  /* ═══════════════════════════════════════════════════
     MOBILE HEADER — COMPACT
  ═══════════════════════════════════════════════════ */
  .site-header {
    height: 72px !important;
    padding: 0 16px !important;
  }
  .header-logo {
    height: 52px !important;
  }
  .header-logo img {
    max-height: 52px !important;
  }

  /* ═══════════════════════════════════════════════════
     LUXURY DARK GLASS MOBILE MENU (MATCHING REFERENCE UI)
  ═══════════════════════════════════════════════════ */
  #nav {
    display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100svh;
    background: rgba(15, 15, 18, 0.94) !important;
    backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
    flex-direction: column; justify-content: flex-start; align-items: stretch;
    padding: 100px 24px 120px 24px; gap: 16px;
    z-index: 999; overflow-y: auto;
    opacity: 0; transform: translateY(-12px) scale(0.98);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  #nav.open {
    display: flex !important;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
  }

  #nav a {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    padding: 18px 24px !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }

  #nav a::after { display: none !important; }

  #nav a:hover, #nav a.active {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px);
  }

  #nav a.nav-cta {
    margin-top: 12px;
    background: #ffffff !important;
    color: #000000 !important;
    justify-content: center !important;
    font-size: 16px !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
  }
  #nav a.nav-cta span { color: #000000 !important; }

  .menu-toggle { display: flex !important; z-index: 1001; position: relative; }
  .cursor, .cursor-follower, .scroll-progress { display: none !important; }

  /* ═══════════════════════════════════════════════════
     HERO SECTION — MOBILE OPTIMIZED
  ═══════════════════════════════════════════════════ */
  .hero {
    min-height: 100svh;
    padding: 90px 20px 80px !important;
    align-items: center !important;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 40%, rgba(0,0,0,.75) 100%) !important;
  }
  .hero-content {
    max-width: 100% !important;
    text-align: left;
  }
  .hero-eyebrow {
    font-size: 11px !important;
    margin-bottom: 16px !important;
    letter-spacing: 0.02em;
  }
  .hero h1 {
    font-size: clamp(32px, 9vw, 48px) !important;
    line-height: 1.08 !important;
    margin-bottom: 20px !important;
  }
  .hero h1 em {
    font-size: 0.85em;
  }
  .hero-sub {
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin-bottom: 28px !important;
    max-width: 100% !important;
  }
  .hero-actions {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100% !important;
    justify-content: center !important;
    padding: 16px 24px !important;
    font-size: 14px !important;
    min-height: 52px;
  }
  .hero-scroll-hint {
    display: none !important;
  }
  .hero-rotating-badge {
    display: none !important;
  }
  .hero-badge {
    display: none !important;
  }

  /* ═══════════════════════════════════════════════════
     MARQUEE — MOBILE FIX
  ═══════════════════════════════════════════════════ */
  .animate-marquee {
    gap: 20px !important;
  }

  /* ═══════════════════════════════════════════════════
     FLOATING BOTTOM PILL NAVIGATION DOCK (REFERENCE UI)
  ═══════════════════════════════════════════════════ */
  .mobile-bottom-dock {
    display: flex !important;
    position: fixed; bottom: 20px; left: 50%;
    transform: translateX(-50%);
    z-index: 998;
    background: rgba(20, 20, 24, 0.92);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9999px;
    padding: 6px 12px;
    align-items: center; gap: 6px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .mobile-bottom-dock a {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 16px; border-radius: 9999px;
    color: rgba(255, 255, 255, 0.75); font-size: 12px; font-weight: 600;
    text-decoration: none; transition: all 0.2s ease;
  }

  .mobile-bottom-dock a.active, .mobile-bottom-dock a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
  }

  .mobile-bottom-dock a.dock-cta {
    background: #ffffff; color: #000000; font-weight: 700;
    padding: 10px 18px;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
  }

  /* ═══════════════════════════════════════════════════
     SHOP PAGE & FILTER SIDEBAR MOBILE FIXES
  ═══════════════════════════════════════════════════ */
  #filter-sidebar {
    width: 100% !important;
    max-width: 100% !important;
  }
  #filter-sidebar.w-0 {
    display: none !important;
  }

  /* ═══════════════════════════════════════════════════
     MOBILE TYPOGRAPHY SCALING (SMALLER, ELEGANT HEADINGS)
  ═══════════════════════════════════════════════════ */
  .hero h1 { font-size: clamp(32px, 9vw, 48px) !important; line-height: 1.08 !important; }
  .subpage-hero h1 { font-size: clamp(26px, 7.5vw, 36px) !important; line-height: 1.15 !important; }
  .subpage-hero { padding: 120px 20px 60px !important; }
  .subpage-hero-sub { font-size: 13.5px !important; line-height: 1.5 !important; }
  .section-top h2, h2 { font-size: clamp(22px, 5.5vw, 30px) !important; line-height: 1.2 !important; }
  h3 { font-size: clamp(16px, 4.5vw, 20px) !important; }
  h4 { font-size: 15px !important; }
  p, .sub-lead { font-size: 13.5px !important; line-height: 1.6 !important; }
  .eyebrow { font-size: 10.5px !important; letter-spacing: 0.12em !important; }

  /* ═══════════════════════════════════════════════════
     2-COLUMN CARD GRIDS FOR MOBILE VIEWPORTS
  ═══════════════════════════════════════════════════ */
  .collection-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .categories-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .spotlight-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  #shop-product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .timeline-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .col-card.col-wide { grid-column: span 2 !important; }

  /* Compact card styling for 2 columns */
  .cat-card, .col-card, .spotlight-card, .product-card, .timeline-card {
    padding: 12px !important;
    border-radius: 16px !important;
  }
  .cat-card h3, .col-card h3, .spotlight-card h3, .timeline-card h4 {
    font-size: 14px !important;
    margin-bottom: 2px !important;
  }
  .cat-card p, .col-card p, .spotlight-card p, .timeline-card p {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
  }

  /* ═══════════════════════════════════════════════════
     TOUCH-FRIENDLY HORIZONTAL CAROUSEL FOR PRODUCTS
  ═══════════════════════════════════════════════════ */
  .mobile-carousel {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important;
    padding-bottom: 14px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    scrollbar-width: none;
  }
  .mobile-carousel::-webkit-scrollbar { display: none; }
  .mobile-carousel > * {
    flex: 0 0 68vw !important;
    max-width: 270px !important;
    scroll-snap-align: start !important;
  }

  .process-steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .form-row { grid-template-columns: 1fr; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-img-wrap { min-height: 240px; }
  .hero-badge { display: none !important; }

  /* ═══════════════════════════════════════════════════
     PRODUCT DETAIL PAGE — MOBILE LAYOUT
  ═══════════════════════════════════════════════════ */
  /* Vertical thumbnails -> horizontal scroll strip on mobile */
  #vert-thumbs {
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 8px !important;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    order: 2 !important;
  }
  #vert-thumbs::-webkit-scrollbar { display: none; }
  #vert-thumbs button {
    flex-shrink: 0 !important;
  }

  /* Product image + thumbnails container */
  .lg\:col-span-7 {
    flex-direction: column !important;
  }

  /* Breadcrumb bar */
  .pt-32 {
    padding-top: 90px !important;
  }

  /* Product swatches — larger touch targets */
  #finish-swatches-box button,
  #frame-swatches-box button,
  #upholstery-swatches-box button {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px;
    min-height: 36px;
  }

  /* Quantity selector + enquire button */
  .flex.items-center.gap-4.pt-2 {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .flex.items-center.gap-4.pt-2 > * {
    width: 100% !important;
  }
  .flex.items-center.gap-4.pt-2 .flex-1 {
    min-height: 52px;
  }

  /* Reviews section stack */
  #reviews-section .lg\:col-span-5,
  #reviews-section .lg\:col-span-7 {
    flex-direction: column !important;
  }

  /* Direct enquiry form on product page */
  #direct-enquiry-box .bg-black {
    padding: 24px 20px !important;
    border-radius: 20px !important;
  }
  #direct-enquiry-box h2 {
    font-size: clamp(22px, 6vw, 32px) !important;
    line-height: 1.15 !important;
  }
  #direct-enquiry-box input {
    padding: 14px 16px !important;
    font-size: 14px !important;
    min-height: 48px;
  }
  #direct-enquiry-box button[type="submit"] {
    width: 100% !important;
    min-height: 52px;
    font-size: 14px !important;
  }

  /* Related products */
  #related-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    padding-bottom: 12px !important;
    scrollbar-width: none;
  }
  #related-grid::-webkit-scrollbar { display: none; }
  #related-grid > * {
    flex: 0 0 72vw !important;
    max-width: 300px !important;
    scroll-snap-align: start !important;
  }

  /* ═══════════════════════════════════════════════════
     CONTACT PAGE — MOBILE LAYOUT
  ═══════════════════════════════════════════════════ */
  .contact {
    padding: 60px 20px !important;
  }
  .contact-cols {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .contact-email {
    font-size: 18px !important;
    word-break: break-all;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 48px !important;
    font-size: 15px !important;
    padding: 14px 16px !important;
  }
  .form-submit {
    width: 100% !important;
    min-height: 52px !important;
    font-size: 15px !important;
    text-align: center;
    justify-content: center;
  }

  /* ═══════════════════════════════════════════════════
     HOME PAGE SECTIONS — MOBILE
  ═══════════════════════════════════════════════════ */
  /* About section */
  .max-w-\[1400px\] {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .py-24 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* Stats grid in about section */
  .grid.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }
  .grid.grid-cols-3 .text-3xl {
    font-size: 22px !important;
  }

  /* Spaces cards */
  .grid.grid-cols-1.md\:grid-cols-2 {
    gap: 16px !important;
  }
  .group.relative.rounded-3xl.overflow-hidden.h-\[380px\] {
    height: 260px !important;
    border-radius: 20px !important;
  }

  /* Process steps */
  .grid.grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* FAQ accordion */
  details summary {
    font-size: 14px !important;
    padding: 16px 0 !important;
  }

  /* Home enquiry box */
  .bg-black.text-white.p-10 {
    padding: 24px 20px !important;
    border-radius: 20px !important;
  }

  /* Location SEO grid */
  .grid.grid-cols-2.sm\:grid-cols-3.md\:grid-cols-5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  /* ═══════════════════════════════════════════════════
     LEFT-ALIGNED MOBILE FOOTER & ADJUSTMENTS
  ═══════════════════════════════════════════════════ */
  .apple-footer-section { text-align: left !important; }
  .apple-footer-inner { text-align: left !important; }
  
  .footer-subscribe-hero {
    text-align: left !important;
    align-items: flex-start !important;
  }
  .footer-subscribe-hero h2 {
    text-align: left !important;
    font-size: clamp(22px, 6vw, 28px) !important;
    margin-bottom: 12px !important;
  }
  .footer-subscribe-pill {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 12px !important;
    gap: 10px !important;
    border-radius: 16px !important;
    width: 100% !important;
  }
  .footer-subscribe-pill input {
    width: 100% !important;
    text-align: left !important;
    font-size: 13px !important;
    padding: 12px 14px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
  }
  .footer-subscribe-pill button {
    width: 100% !important;
    border-radius: 9999px !important;
    font-size: 12px !important;
    padding: 12px 16px !important;
  }

  .footer-glass-card { padding: 24px 20px !important; border-radius: 20px !important; }
  
  .footer-card-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 16px !important;
    text-align: left !important;
  }
  .footer-brand-col {
    grid-column: span 2 !important;
    text-align: left !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .footer-card-logo {
    align-self: flex-start !important;
    margin-left: 0 !important;
    height: 64px !important;
  }
  .footer-card-bio {
    text-align: left !important;
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
  }
  .footer-col {
    text-align: left !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .footer-col-title {
    font-size: 13px !important;
    font-weight: 700 !important;
  }
  .footer-col a {
    font-size: 12.5px !important;
  }
  .footer-card-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 14px !important;
    padding-top: 24px !important;
    font-size: 12px !important;
  }
  .footer-social-links {
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 10px !important;
  }
}

@media (min-width: 768px) {
  .mobile-bottom-dock { display: none !important; }
}

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

/* ═══════════════════════════════════════════════════
   PROJECTS / CASE STUDIES SECTION STYLES
═══════════════════════════════════════════════════ */
@keyframes marqueeProjects {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-projects {
  animation: marqueeProjects 28s linear infinite;
}
.marquee-projects:hover {
  animation-play-state: paused;
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.case-study-section {
  position: relative;
  background-color: #ffffff;
  color: #000000;
  font-family: 'DM Sans', 'Poppins', sans-serif;
  overflow: hidden;
}

.floating-square {
  position: absolute;
  background-color: #000000;
  pointer-events: none;
  animation: floatBob var(--bob-duration, 3s) ease-in-out infinite;
  animation-delay: var(--bob-delay, 0s);
  will-change: transform;
}

.case-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background-color: #f5f5f7;
  cursor: pointer;
}

.pixel-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  pointer-events: none;
  z-index: 5;
}

.pixel-block {
  background-color: rgba(0, 0, 0, 0.82);
  opacity: 0;
  transform: scale(0);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.case-card.is-hovered .pixel-block {
  opacity: 1;
  transform: scale(1);
}

.magnetic-square {
  position: absolute;
  background-color: #000000;
  pointer-events: none;
  z-index: 8;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-plus-btn {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12px;
  color: #ffffff;
  z-index: 10;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
}

.card-info-plate {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  padding: 10px 16px 12px 16px;
  z-index: 20;
  max-width: 70%;
  border-top-right-radius: 4px;
}

.card-info-title {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  color: #000000;
}

.card-info-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}

.card-info-cat {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}

.card-info-year {
  font-size: 12px;
  font-weight: 500;
  color: #000000;
}

.cta-badge-arrow {
  transition: margin-bottom 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.group:hover .cta-badge-arrow {
  margin-bottom: 36px !important;
}

/* RETRACTABLE SIDEBAR FILTER PILLS & SWATCHES */
.cat-pill, .mat-pill, .avail-pill, .quick-price-btn {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 9999px;
  background-color: #f4f4f4;
  color: #1d1d1f;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.cat-pill:hover, .mat-pill:hover, .avail-pill:hover, .quick-price-btn:hover {
  background-color: #e5e5ea;
}

.active-pill {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

.finish-swatch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 9999px;
  background-color: #f4f4f4;
  color: #1d1d1f;
  border: 1px solid rgba(0,0,0,0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}

.finish-swatch:hover {
  background-color: #e5e5ea;
}

.swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.2);
  display: inline-block;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   SHOP PAGE — HERO, SEARCH, CATEGORIES, GRID, CARDS
   Mobile-first design matching furniture app reference
═══════════════════════════════════════════════════ */

/* SHOP HERO */
.shop-hero {
  padding: 120px 24px 24px;
  text-align: center;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.shop-hero-title {
  font: 700 clamp(2.8rem, 8vw, 7rem)/1 var(--sans);
  letter-spacing: -0.04em;
  color: #000;
  margin: 0;
}
.shop-hero-subtitle {
  font: 400 clamp(14px, 2.5vw, 18px)/1.5 var(--sans);
  color: var(--text-secondary-light);
  margin-top: 8px;
  letter-spacing: -0.01em;
}

/* MOBILE SEARCH BAR */
.shop-mobile-search {
  padding: 16px 16px 0;
  display: none; /* shown on mobile */
}
.shop-search-pill {
  display: flex;
  align-items: center;
  background: #f4f4f5;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 9999px;
  padding: 4px 6px 4px 20px;
  gap: 8px;
}
.shop-search-pill input {
  background: transparent;
  border: none;
  outline: none;
  font: 400 14px var(--sans);
  color: #1d1d1f;
  flex: 1;
  min-width: 0;
}
.shop-search-pill input::placeholder { color: #86868b; }
.shop-search-pill button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.shop-search-pill button:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* HORIZONTAL CATEGORY SCROLL */
.shop-category-scroll {
  padding: 16px 0 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.shop-category-scroll::-webkit-scrollbar { display: none; }
.shop-category-pills {
  display: flex;
  gap: 8px;
  padding: 0 16px;
  white-space: nowrap;
}
.shop-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 9999px;
  font: 500 13px var(--sans);
  color: #1d1d1f;
  background: #f4f4f5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.shop-cat-pill:hover { background: #e8e8ed; }
.shop-cat-pill.active-pill {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}
.shop-cat-icon {
  font-size: 14px;
  line-height: 1;
}

/* SHOP MAIN SECTION */
.shop-main-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

/* CONTROL BAR */
.shop-control-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.shop-control-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shop-results-title {
  font: 700 clamp(18px, 3vw, 24px)/1.2 var(--sans) !important;
  color: #000;
  margin: 0;
  letter-spacing: -0.02em;
}
.shop-filter-toggle {
  display: none; /* shown on desktop */
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #f4f4f5;
  border-radius: 9999px;
  border: none;
  font: 500 12px var(--sans);
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s;
}
.shop-filter-toggle:hover { background: #000; color: #fff; }

.shop-control-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.shop-results-count {
  font: 400 12px var(--sans);
  color: #86868b;
}
.shop-sort-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.shop-sort-label {
  font: 500 12px var(--sans);
  color: #1d1d1f;
}
.shop-sort-select {
  background: #f4f4f5;
  border: 1px solid rgba(0,0,0,0.08);
  color: #1d1d1f;
  font: 500 12px var(--sans);
  border-radius: 9999px;
  padding: 8px 16px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.shop-sort-select:focus { border-color: #000; }

/* CONTENT WRAP (sidebar + grid) */
.shop-content-wrap {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* SIDEBAR */
.shop-sidebar {
  display: none; /* hidden on mobile, shown on desktop */
  width: 260px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.shop-sidebar.sidebar-hidden {
  display: none !important;
}
.shop-sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 8px;
}
.shop-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.shop-sidebar-title {
  font: 700 12px var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1d1d1f;
}
.shop-reset-btn {
  font: 400 11px var(--sans);
  color: #86868b;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}
.shop-reset-btn:hover { color: #000; }

.shop-filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shop-filter-label {
  font: 600 11px var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #86868b;
}
.shop-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* GRID MAIN */
.shop-grid-main {
  flex: 1;
  min-width: 0;
}

/* PRODUCT GRID */
.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  transition: all 0.3s ease;
}

/* PRODUCT CARD — Mobile-First Reference Design */
.shop-card {
  background: #f0f2ec;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}
.shop-card:hover {
  border-color: rgba(0,0,0,0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.shop-card-image-wrap {
  position: relative;
  padding: 12px 12px 0;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.shop-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  border-radius: 12px;
}
.shop-card:hover .shop-card-image {
  transform: scale(1.05);
}
.shop-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font: 600 9px var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 9999px;
  z-index: 2;
}
.shop-badge-default {
  background: rgba(255,255,255,0.85);
  color: #1d1d1f;
  backdrop-filter: blur(8px);
}
.shop-badge-highlight {
  background: #1d3c1e;
  color: #ffffff;
}

.shop-card-info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shop-card-name {
  font: 600 13px/1.3 var(--sans) !important;
  color: #1d1d1f;
  margin: 0;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.shop-card-price {
  font: 600 11px var(--sans);
  color: #515154;
  letter-spacing: -0.01em;
}
.shop-card-enquire {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  color: #1d1d1f;
}
.shop-card-enquire:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* SEO SECTION */
.shop-seo-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 48px 16px 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.shop-seo-title {
  font: 400 18px/1.3 var(--serif) !important;
  color: #1d1d1f;
  margin-bottom: 20px;
}
.shop-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.shop-seo-link {
  padding: 10px 12px;
  background: #f5f5f7;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06);
  font: 500 12px var(--sans);
  color: #1d1d1f;
  text-decoration: none;
  transition: border-color 0.2s;
}
.shop-seo-link:hover { border-color: #000; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE ENHANCEMENTS — TABLET (768px+)
═══════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .shop-hero { padding: 140px 40px 32px; }
  .shop-main-section { padding: 0 24px 60px; }
  .shop-mobile-search { display: none !important; }
  .shop-category-scroll { padding: 20px 0 12px; }
  .shop-category-pills { padding: 0 24px; gap: 10px; }
  .shop-product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .shop-card-info { padding: 14px 16px 16px; }
  .shop-card-name { font-size: 14px !important; }
  .shop-card-price { font-size: 12px; }
  .shop-seo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .shop-seo-section { padding: 60px 24px 40px; }

  /* Footer tablet adjustments */
  .footer-card-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
  .footer-brand-col {
    grid-column: span 2 !important;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE ENHANCEMENTS — DESKTOP (1024px+)
═══════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .shop-hero { padding: 140px 60px 40px; }
  .shop-main-section { padding: 0 40px 80px; }
  .shop-category-scroll { display: none; } /* Hide horizontal pills on desktop */
  .shop-mobile-search { display: none !important; }
  .shop-sidebar { display: block; }
  .shop-filter-toggle { display: inline-flex; }
  .shop-product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .shop-card-image-wrap { padding: 16px 16px 0; }
  .shop-card-info { padding: 16px 18px 18px; }
  .shop-card-name { font-size: 15px !important; }
  .shop-card-badge { font-size: 10px; padding: 5px 12px; }
  .shop-seo-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .shop-seo-section { padding: 64px 40px 48px; }

  /* Sidebar hidden = 4 columns */
  .shop-sidebar.sidebar-hidden ~ .shop-grid-main .shop-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Footer desktop */
  .footer-card-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
    gap: 48px !important;
  }
  .footer-brand-col {
    grid-column: span 1 !important;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE ENHANCEMENTS — MOBILE (<768px)
═══════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .shop-mobile-search { display: block; }
  .shop-hero { padding: 90px 16px 16px; }
  .shop-hero-subtitle { display: block; }
  .shop-control-bar { padding: 12px 0; margin-bottom: 8px; }
  .shop-filter-toggle { display: none !important; }
  .shop-sort-wrap {
    display: flex !important;
  }
  .shop-sort-select {
    font-size: 11px !important;
    padding: 8px 12px !important;
  }
  .shop-sort-label { display: none; }
  .shop-results-count { font-size: 11px; }
  .shop-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .shop-card { border-radius: 16px; }
  .shop-card-image-wrap {
    padding: 10px 10px 0;
    aspect-ratio: 1 / 1;
  }
  .shop-card-info { padding: 10px 12px 14px; gap: 6px; }
  .shop-card-name { font-size: 12px !important; -webkit-line-clamp: 2; }
  .shop-card-price { font-size: 10px; }
  .shop-card-enquire { width: 32px; height: 32px; min-width: 32px; }
  .shop-card-enquire svg { width: 14px; height: 14px; }
  .shop-card-badge { font-size: 8px; padding: 3px 8px; top: 12px; left: 12px; }

  /* Product Detail Page responsive */
  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Footer responsive improvements */
  .apple-footer-section {
    padding: 60px 16px 40px !important;
  }
  .footer-subscribe-hero {
    margin-bottom: 40px !important;
  }
  .footer-glass-card {
    padding: 24px 16px !important;
    border-radius: 20px !important;
  }
  .footer-card-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 12px !important;
  }
  .footer-brand-col {
    grid-column: span 2 !important;
  }
  .footer-card-logo {
    height: 56px !important;
  }
  .footer-card-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding-top: 20px !important;
  }
  .footer-social-links {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
}

/* ═══════════════════════════════════════════════════
   PRODUCT DETAIL PAGE RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .product-detail-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (max-width: 767px) {
  .product-detail-section {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}


