/* ============================================
   TOP STYLE FLOORING - Premium Multi-Page Stylesheet
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #0a0a0a;
  --primary-light: #141418;
  --secondary: #c8a97e;
  --secondary-light: #d4b896;
  --secondary-dark: #a8895e;
  --accent: #f5f0eb;
  --white: #ffffff;
  --text: #e8e8e8;
  --text-muted: #8a8a8a;
  --bg-dark: #0a0a0a;
  --bg-section: #0f0f13;
  --bg-card: #16161c;
  --bg-light: #f5f0eb;
  --border: rgba(200, 169, 126, 0.15);

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

  --nav-height: 80px;
  --container: 1280px;
  --radius: 16px;
  --radius-sm: 8px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: none;
}

button {
  cursor: none;
  border: none;
  background: none;
  font-family: inherit;
}

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

ul { list-style: none; }

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

::selection {
  background: var(--secondary);
  color: var(--primary);
}

/* ---------- Custom Cursor ---------- */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.cursor-outline {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--secondary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s, border-color 0.3s;
  opacity: 0.5;
}

.cursor-hover .cursor-dot {
  width: 50px;
  height: 50px;
  background: rgba(200, 169, 126, 0.15);
}

.cursor-hover .cursor-outline {
  width: 60px;
  height: 60px;
  opacity: 0;
}

@media (max-width: 768px) {
  .cursor-dot, .cursor-outline { display: none; }
  body, a, button { cursor: auto; }
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner { text-align: center; }

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 8px;
  margin-bottom: 30px;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(200, 169, 126, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: var(--secondary);
  border-radius: 2px;
  animation: preloaderProgress 1.8s ease-in-out forwards;
}

@keyframes preloaderProgress {
  0% { width: 0%; }
  50% { width: 60%; }
  100% { width: 100%; }
}

/* ---------- Scroll Reveal (Intersection Observer) ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Stagger delays for grid children */
[data-reveal-delay="1"] { transition-delay: 0.07s; }
[data-reveal-delay="2"] { transition-delay: 0.14s; }
[data-reveal-delay="3"] { transition-delay: 0.21s; }
[data-reveal-delay="4"] { transition-delay: 0.28s; }
[data-reveal-delay="5"] { transition-delay: 0.35s; }
[data-reveal-delay="6"] { transition-delay: 0.42s; }

/* ---------- Section Tags & Headers ---------- */
.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-tag span:not(.tag-line) {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
}

.tag-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--secondary);
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-tag {
  justify-content: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title .accent {
  color: var(--secondary);
  font-style: italic;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn i {
  font-size: 0.8rem;
  transition: transform var(--transition);
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 169, 126, 0.3);
}

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

.btn-outline:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 169, 126, 0.2);
}

/* ---------- NAVIGATION ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Force solid nav on inner pages (no hero behind) */
#navbar.solid {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 6px;
  color: var(--secondary);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--secondary);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ---------- Nav Dropdown ---------- */
.nav-has-dropdown {
  position: relative;
}

.nav-chevron {
  font-size: 0.6rem;
  margin-left: 4px;
  transition: transform var(--transition-fast);
  vertical-align: middle;
}

.nav-has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  min-width: 185px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  list-style: none;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.dropdown-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Invisible bridge — always captures pointer events to prevent gap-dismissal */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -10px;
  right: -10px;
  height: 10px;
  pointer-events: all;
}

.nav-noclick {
  cursor: default;
  user-select: none;
}

.nav-noclick::after {
  display: none !important;
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.dropdown-link:hover {
  color: var(--secondary);
  background: rgba(200, 169, 126, 0.07);
}

/* Nested dropdown (e.g. Tiling sub-menu) */
.dropdown-has-sub {
  position: relative;
}

.dropdown-has-sub > .dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-has-sub > .dropdown-link .dropdown-chevron {
  font-size: 0.55rem;
  margin-left: 10px;
  transition: transform var(--transition-fast);
}

.dropdown-sub {
  position: absolute;
  top: -8px;
  left: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 210;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  list-style: none;
  transform: translateX(-4px);
}

.dropdown-has-sub:hover > .dropdown-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(0);
}

.dropdown-has-sub:hover > .dropdown-link {
  color: var(--secondary);
  background: rgba(200, 169, 126, 0.07);
}

.dropdown-has-sub:hover > .dropdown-link .dropdown-chevron {
  transform: rotate(-90deg);
}

/* Invisible bridge for nested dropdown */
.dropdown-sub::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -12px;
  bottom: -5px;
  width: 14px;
  pointer-events: all;
}

/* ---------- Mobile Submenu ---------- */
.mobile-has-sub {
  width: 100%;
  text-align: center;
}

.mobile-link-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mobile-link-row span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  cursor: default;
  user-select: none;
}

.mobile-sub-toggle {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.65rem;
  transition: transform var(--transition-fast), background var(--transition-fast);
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-sub-toggle.open {
  transform: rotate(45deg);
  background: rgba(200, 169, 126, 0.12);
}

.mobile-submenu {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
}

.mobile-submenu.open {
  max-height: 500px;
  margin-top: 10px;
}

.mobile-submenu li a {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  color: var(--text-muted) !important;
  padding: 5px 0 !important;
}

.mobile-submenu li a:hover,
.mobile-submenu li a:active {
  color: var(--secondary) !important;
}

/* Nested sub-dropdown inside mobile submenu (e.g. LVT Flooring) */
.mobile-submenu .mobile-has-sub .mobile-link-row span {
  font-family: var(--font-body) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  color: var(--text-muted) !important;
}

.mobile-submenu .mobile-has-sub .mobile-sub-toggle {
  width: 20px;
  height: 20px;
  font-size: 0.55rem;
}

.mobile-submenu .mobile-has-sub .mobile-submenu li a {
  font-size: 0.9rem !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-phone i {
  color: var(--secondary);
  font-size: 0.75rem;
}

.nav-phone:hover {
  color: var(--white);
}

.nav-cta {
  padding: 10px 24px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--secondary-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(200, 169, 126, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  z-index: 1002;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 100px 24px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-links li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.open .mobile-links li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-links li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-links li:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-links li:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-links li:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-links li:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-links li:nth-child(6) { transition-delay: 0.3s; }

.mobile-links a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition-fast);
  display: block;
  padding: 6px 0;
}

.mobile-links a:hover,
.mobile-links a:active {
  color: var(--secondary);
}

.mobile-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--secondary);
  margin-top: 24px;
  padding: 10px 0;
}

.mobile-phone i {
  font-size: 0.9rem;
}

.mobile-cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 8px;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.mobile-cta:active {
  transform: scale(0.97);
}

@media (max-width: 1024px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

/* ---------- PAGE BANNER (Inner Pages) ---------- */
.page-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--nav-height);
}

.page-banner-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.page-banner-content h1 .accent {
  color: var(--secondary);
  font-style: italic;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--secondary);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--secondary-light);
}

.breadcrumb span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ---------- HERO SECTION (Home Only) ---------- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.2) 40%,
    rgba(10, 10, 10, 0.7) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-badge span:not(.badge-line) {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--secondary);
}

.badge-line {
  width: 50px;
  height: 1px;
  background: var(--secondary);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

.title-word.accent {
  color: var(--secondary);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.stat-plus, .stat-star {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary);
}

.stat-star i {
  font-size: 1rem;
  margin-left: 4px;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ---------- ABOUT SECTION ---------- */
#about {
  padding: 120px 0;
  background: var(--bg-section);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-img-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-main:hover img {
  transform: scale(1.05);
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--bg-section);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.about-img-secondary img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-secondary:hover img {
  transform: scale(1.05);
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(200, 169, 126, 0.4);
  z-index: 2;
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.exp-text {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  line-height: 1.2;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(200, 169, 126, 0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1rem;
}

.about-feature strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* About Detail Page */
.about-story {
  padding: 100px 0;
  background: var(--bg-section);
}

.about-story--dark {
  background: var(--bg-dark);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-grid.reverse {
  direction: rtl;
}

.about-story-grid.reverse > * {
  direction: ltr;
}

.about-story-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-story-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-story-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.about-story-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-story-content p.lead {
  color: var(--text);
  font-size: 1.1rem;
}

/* ---------- SERVICES SECTION ---------- */
#services {
  padding: 120px 0;
  background: var(--bg-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 169, 126, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.7) 100%);
}

.service-body {
  padding: 28px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 169, 126, 0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 16px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  transition: var(--transition-fast);
}

.service-link i {
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
}

.service-link:hover {
  color: var(--secondary-light);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* Service Group Header (Tiling) */
.service-group-header {
  padding: 60px 0 0;
  scroll-margin-top: var(--nav-height);
  background: var(--bg-dark);
}

.service-group-header .section-header {
  margin-bottom: 0;
}

/* Service Detail Sections */
.service-detail {
  padding: 80px 0;
  scroll-margin-top: var(--nav-height);
}

.service-detail:nth-child(even) {
  background: var(--bg-section);
}

.service-detail:nth-child(odd) {
  background: var(--bg-dark);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
  direction: ltr;
}

.service-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-img:hover img {
  transform: scale(1.05);
}

.service-detail-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.service-detail-content .service-tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.service-detail-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.service-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.service-features-list li i {
  color: var(--secondary);
  font-size: 0.8rem;
}

/* ---------- PARALLAX CTA BANNER ---------- */
.parallax-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -50px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .parallax-bg {
    background-attachment: scroll;
  }
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.parallax-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.parallax-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.parallax-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- GALLERY SECTION ---------- */
#gallery {
  padding: 120px 0;
  background: var(--bg-section);
}

.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: transparent;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery-grid--home {
  grid-template-columns: repeat(3, 1fr);
}

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

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 6px;
}

.gallery-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.gallery-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(200, 169, 126, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
  transform: translateY(0);
  opacity: 1;
}

.gallery-zoom:hover {
  background: var(--secondary);
  color: var(--primary);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
}

.gallery-item.hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(200, 169, 126, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--secondary);
  color: var(--primary);
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- WHY CHOOSE US ---------- */
#why-us {
  padding: 120px 0;
  background: var(--bg-dark);
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.whyus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.whyus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 126, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.whyus-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(200, 169, 126, 0.1);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.4rem;
  transition: var(--transition);
}

.whyus-card:hover .whyus-icon {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  transform: scale(1.1);
}

.whyus-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.whyus-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- TESTIMONIALS ---------- */
#testimonials {
  padding: 120px 0;
  background: var(--bg-section);
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  flex-shrink: 0;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(200, 169, 126, 0.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testimonial-stars i {
  color: var(--secondary);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: rgba(200, 169, 126, 0.15);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--secondary);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.test-prev,
.test-next {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
  cursor: pointer;
}

.test-prev:hover,
.test-next:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.test-dots {
  display: flex;
  gap: 8px;
}

.test-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.test-dots .dot.active {
  background: var(--secondary);
  width: 24px;
  border-radius: 4px;
}

/* ---------- CONTACT SECTION ---------- */
#contact {
  padding: 120px 0 60px;
  background: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(138, 138, 138, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a8a8a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 1rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.info-card:hover {
  border-color: rgba(200, 169, 126, 0.3);
  transform: translateX(4px);
}

.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(200, 169, 126, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1rem;
}

.info-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.info-card a {
  color: var(--secondary);
  transition: color var(--transition-fast);
}

.info-card a:hover {
  color: var(--secondary-light);
}

.info-socials {
  display: flex;
  gap: 12px;
  padding: 10px 0;
}

.info-socials a {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition);
}

.info-socials a:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map iframe {
  min-height: 300px;
}

/* ---------- FOOTER ---------- */
#footer {
  padding: 80px 0 0;
  background: var(--primary-light);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links-col a:hover {
  color: var(--secondary);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact i {
  color: var(--secondary);
  font-size: 0.85rem;
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(200, 169, 126, 0.3);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(200, 169, 126, 0.4);
}

/* ---------- Form Success ---------- */
.form-success {
  text-align: center;
  padding: 40px;
}

.form-success i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

/* ---------- COLLECTIONS / BRANDS ---------- */
#collections {
  padding: 120px 0;
  background: var(--bg-section);
}

.collection-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-card:hover .brand-logo-area {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  border-color: #d1d5db;
}

.brand-logo-area {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.brand-logo-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.brand-initial {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
  transition: color var(--transition);
}

.brand-info {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.brand-info h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.brand-category-tag {
  display: none;
}

.brand-link-icon {
  display: none;
}

.brand-card.hidden {
  display: none;
}

/* ---------- Utility ---------- */
.accent { color: var(--secondary); }
section { position: relative; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img-secondary { right: 0; bottom: -30px; }
  .about-experience-badge { right: 10px; top: -10px; width: 100px; height: 100px; }
  .exp-number { font-size: 1.6rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: calc(50% - 15px); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-grid.reverse { direction: ltr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail:nth-child(even) .service-detail-grid { direction: ltr; }
  .service-features-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #hero { min-height: 100svh; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-subtitle { font-size: 0.95rem; padding: 0 8px; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero-ctas .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat { min-width: 80px; }
  .stat-number { font-size: 1.8rem; }

  #about, #services, #gallery, #collections, #why-us, #testimonials, #contact,
  .about-story {
    padding: 70px 0;
  }

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

  /* Collections filters: horizontal scroll on mobile */
  .collection-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .collection-filters::-webkit-scrollbar { display: none; }
  .collection-filters .filter-btn { flex-shrink: 0; }

  /* Gallery filters: horizontal scroll on mobile */
  .gallery-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-filters .filter-btn { flex-shrink: 0; }

  /* Smaller brand cards on mobile */
  .brand-logo-area { border-radius: 10px; padding: 14px; }
  .brand-info h3 { font-size: 0.62rem; letter-spacing: 1px; }
  .brand-initial { font-size: 1.5rem; }
  .brand-info h3 { font-size: 0.88rem; margin-bottom: 4px; }
  .brand-category-tag { font-size: 0.7rem; letter-spacing: 1px; }

  /* Faster reveal animations on mobile */
  [data-reveal] { transition-duration: 0.4s; }
  [data-reveal-delay="1"] { transition-delay: 0.04s; }
  [data-reveal-delay="2"] { transition-delay: 0.08s; }
  [data-reveal-delay="3"] { transition-delay: 0.12s; }
  [data-reveal-delay="4"] { transition-delay: 0.16s; }
  [data-reveal-delay="5"] { transition-delay: 0.20s; }
  [data-reveal-delay="6"] { transition-delay: 0.24s; }

  .section-title { font-size: clamp(1.7rem, 5vw, 2.5rem); }
  .section-header { margin-bottom: 36px; }
  .section-desc { font-size: 0.95rem; }

  .about-features { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-img { height: 200px; }
  .service-body { padding: 20px; }
  .service-body h3 { font-size: 1.15rem; }

  .parallax-cta { padding: 60px 0; }
  .parallax-content h2 { font-size: 1.5rem; }
  .parallax-ctas { flex-direction: column; align-items: center; }
  .parallax-ctas .btn { width: 100%; max-width: 280px; justify-content: center; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 10px; }
  .gallery-grid--home { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }

  .whyus-grid { grid-template-columns: 1fr; gap: 16px; }
  .whyus-card { padding: 28px 24px; }

  .testimonial-card { min-width: 100%; padding: 24px; }
  .testimonial-text { font-size: 0.9rem; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px; }
  .contact-grid { gap: 30px; }
  .info-card { padding: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .page-banner { height: 280px; }
  .page-banner-content h1 { font-size: clamp(2rem, 6vw, 3rem); }

  .service-detail { padding: 50px 0; }
  .service-detail-img img { height: 280px; }
  .service-detail-content h2 { font-size: 1.5rem; }
  .about-story-img img { height: 280px; }
  .about-story-content h2 { font-size: 1.5rem; }

  /* Lightbox mobile */
  .lightbox-close { top: 16px; right: 16px; width: 44px; height: 44px; }
  .lightbox-prev { left: 8px; width: 40px; height: 40px; font-size: 0.9rem; }
  .lightbox-next { right: 8px; width: 40px; height: 40px; font-size: 0.9rem; }
  .lightbox-content img { max-width: 95vw; max-height: 80vh; }

  /* Back to top mobile */
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 14px 24px; font-size: 0.9rem; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .brand-logo-area { border-radius: 8px; padding: 12px; }
  .brand-info h3 { font-size: 0.58rem; letter-spacing: 0.8px; }
  .brand-initial { font-size: 1.3rem; }
  .brand-info h3 { font-size: 0.8rem; }
  .brand-category-tag { font-size: 0.65rem; letter-spacing: 0.8px; }
  .about-img-main img { height: 280px; }
  .about-img-secondary { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 16px; }
  .about-experience-badge { top: auto; bottom: -15px; right: 10px; width: 90px; height: 90px; }
  .exp-number { font-size: 1.4rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-grid--home { grid-template-columns: 1fr; }
  .mobile-links a { font-size: 1.5rem; }
  .mobile-cta { padding: 14px 32px; font-size: 0.95rem; }
  .service-detail-img img { height: 240px; }
  .service-features-list { gap: 10px; }
  .info-card { gap: 14px; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 1.8rem; }
  .hero-badge span:not(.badge-line) { font-size: 0.7rem; letter-spacing: 2px; }
  .badge-line { width: 25px; }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: 0.7rem; }
  .section-title { font-size: 1.5rem; }
  .btn { padding: 12px 20px; font-size: 0.85rem; }
}
