:root {
  --ink: #0d0d0d;
  --cream: #faf8f4;
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --rust: #c0392b;
  --sage: #5a7a5e;
  --sky: #4a8fa8;
  --clay: #b07050;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-premium: 24px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Mobile Specific Design Tokens */
  --mob-pad: 20px;
  --mob-section-gap: 60px;
  --mob-card-radius: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

.logo-text {
  display: none !important;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: clip;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1301;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(250, 248, 244, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
  padding: 12px 60px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-logo span {
  color: var(--gold);
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-logo .dynamic-logo-img {
  height: clamp(32px, 4.5vw, 48px);
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

nav.scrolled .nav-logo .dynamic-logo-img {
  /* Remove white glow when scrolling over white navbar */
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
  height: clamp(28px, 4vw, 42px);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

nav.scrolled .nav-links a {
  color: var(--ink);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--gold);
  transition: right 0.3s;
}

.nav-links a:hover::after {
  right: 0;
}

.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
}

nav.scrolled .nav-cta {
  background: var(--gold);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  padding: 0;
  z-index: 1300;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hamburger span {
  position: absolute;
  width: 20px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}

.hamburger span:nth-child(1) {
  transform: translateY(-6px);
}

.hamburger span:nth-child(2) {
  transform: translateY(0);
}

.hamburger span:nth-child(3) {
  transform: translateY(6px);
}

.hamburger:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0px;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1208 0%, #2c1810 30%, #0d1a12 70%, #0a1520 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite alternate;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #c9a84c44, transparent);
  top: -100px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #c0392b33, transparent);
  bottom: -50px;
  left: 20%;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #5a7a5e44, transparent);
  top: 30%;
  left: -50px;
  animation-delay: -6s;
}

@keyframes float {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(20px, -20px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: slideDown 0.8s ease both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3)
  }
}

.hero-badge span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  max-width: 520px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: slideUp 0.9s ease 0.3s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #a07830);
  color: var(--ink);
  padding: 18px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 18px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.btn-outline:active {
  transform: translateY(0);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  animation: slideUp 0.9s ease 0.4s both;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: slideLeft 0.9s ease 0.3s both;
}

.color-card-stack {
  position: relative;
  height: 380px;
}

.color-card {
  position: absolute;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.color-card:nth-child(1) {
  width: 240px;
  height: 300px;
  top: 0;
  left: 0;
  background: linear-gradient(145deg, #e8d08a, #c9a84c);
}

.color-card:nth-child(2) {
  width: 200px;
  height: 260px;
  top: 30px;
  left: 140px;
  background: linear-gradient(145deg, #7aab7e, #5a7a5e);
}

.color-card:nth-child(3) {
  width: 180px;
  height: 220px;
  top: 80px;
  left: 250px;
  background: linear-gradient(145deg, #6aacca, #4a8fa8);
}

.color-card:hover {
  transform: translateY(-12px) rotate(2deg);
}

.color-card-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
}

.color-card-code {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.4);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== PAGE HERO (Sub-pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, #f0ece6 50%, var(--cream) 100%);
  padding: 140px 60px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e8e4dc;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 70%);
  pointer-events: none;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.15;
}

.page-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.page-hero p {
  font-size: 1rem;
  color: #777;
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #999;
}

.page-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.page-breadcrumb a:hover {
  color: var(--ink);
}

.page-breadcrumb span {
  color: #ccc;
}

.contact-hero {
  background:
    linear-gradient(rgba(13, 13, 13, 0.55), rgba(13, 13, 13, 0.45)),
    url('https://plus.unsplash.com/premium_photo-1769789039323-c97807ae4cb6?q=80&w=850&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: none;
}

.contact-hero::before {
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18), transparent 70%);
}

.contact-hero .page-hero-badge,
.contact-hero h1,
.contact-hero p,
.contact-hero .page-breadcrumb,
.contact-hero .page-breadcrumb a,
.contact-hero .page-breadcrumb span {
  color: var(--white);
}

.contact-hero .page-hero-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

/* Sub-page content wrapper */
.page-content {
  padding-top: 0;
}

.page-content section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 20px 40px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-content section {
    padding: 50px 20px;
  }
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.full-width {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.section-label {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--ink);
  font-weight: 700;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.section-sub {
  font-size: 1.125rem;
  color: #555;
  max-width: 600px;
  line-height: 1.6;
  margin: 0 auto 32px;
}

/* ===== COLOR GALLERY ===== */
#colors {
  background: var(--cream);
  max-width: 100%;
  padding: 100px 60px;
  border-top: 1px solid #f0ece6;
}

#colors .section-label {
  color: var(--gold);
}

#colors .section-title {
  color: var(--ink);
}

#colors .section-sub {
  color: #666;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 60px;
}

.color-swatch {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.color-swatch:hover {
  transform: scale(1.08) translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.color-swatch-inner {
  width: 100%;
  height: 100%;
}

.color-swatch-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 18px 14px 14px;
  opacity: 0;
  transition: all 0.3s;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.color-swatch:hover .color-swatch-info {
  opacity: 1;
}

.color-swatch-info p {
  font-size: 0.78rem;
  color: var(--ink);
  font-weight: 600;
}

.color-swatch-info span {
  font-size: 0.68rem;
  color: #777;
}

/* ===== PRODUCTS ===== */
.products-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid #e0ddd8;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--ink);
}

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, #f0ece6, #e8e0d5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(201, 168, 76, 0.15));
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-body {
  padding: 24px;
}

.product-category {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.product-tag {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 50px;
  background: #f0ece6;
  color: #666;
  font-weight: 500;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0ece6;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.product-price span {
  font-size: 0.8rem;
  color: #999;
  font-weight: 400;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.btn-add {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.btn-add:hover {
  background: var(--gold);
  color: var(--ink);
}

#visualizer {
  background: linear-gradient(160deg, #f9f6f0 0%, #fff 100%);
  max-width: 100%;
}

.visualizer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
}

.viz-sub-text {
  color: #777;
  font-size: 0.85rem;
  margin-top: 2px;
}

.room-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.4s;
}

.premium-room:hover .room-preview-img {
  transform: scale(1.1);
}

.hidden-input {
  display: none;
}

.full-width-btn {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

.btn-reset {
  color: var(--ink) !important;
  border-color: #e0e0e0 !important;
  background: #f9f9f9 !important;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  margin-top: 0;
}

.hidden {
  display: none;
}

.visualizer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.viz-room {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: #e0d5c5;
  transition: background 0.6s ease;
}

.viz-section-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.viz-palette {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 12px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 14px;
}

.viz-palette::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Brave */
}

.viz-color {
  flex: 0 0 52px;
  height: 52px;
  aspect-ratio: 1;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  border: 3px solid transparent;
  scroll-snap-align: start;
}

.viz-color:hover,
.viz-color.selected {
  transform: scale(1.15);
  border-color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.viz-surface-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.surface-tab {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid #ddd;
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
  font-family: var(--font-body);
}

.surface-tab.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.viz-selected-display {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.viz-selected-swatch {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  transition: background 0.4s;
}

.viz-selected-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.viz-selected-info p {
  font-size: 0.8rem;
  color: #888;
}

/* ===== CALCULATOR ===== */
#calculator {
  background: var(--ink);
  max-width: 100%;
  padding: 100px 60px;
}

#calculator .section-title {
  color: var(--white);
}

#calculator .section-label {
  color: var(--gold);
}

#calculator .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.calc-wrap {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.calc-form {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  background: #faf9f7;
  border: 2px solid #e8e4dc;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-control option {
  background: var(--white);
  color: var(--ink);
  padding: 8px;
}

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

.calc-result {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0ece6;
}

.calc-result-item:last-child {
  border-bottom: none;
}

.result-label {
  font-size: 0.88rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
}

.result-sub {
  font-size: 0.78rem;
  color: #aaa;
}

.calc-note {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.83rem;
  color: #856a24;
  margin-top: 8px;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: #f0ece6;
  font-weight: 700;
  position: absolute;
  right: 24px;
  top: 16px;
  line-height: 1;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.7;
}

/* ===== BOOKING FORM ===== */
#booking {
  background: linear-gradient(160deg, #faf8f4 0%, #fff 100%);
  max-width: 100%;
  padding: 100px 60px;
}

.booking-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.booking-info h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.booking-info p {
  color: #777;
  line-height: 1.8;
  margin-bottom: 32px;
}

.booking-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.benefit-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.benefit-text p {
  font-size: 0.83rem;
  color: #999;
}

.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}

.booking-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 32px;
}

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

.form-label-light {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: #888;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-control-light {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #e8e4dc;
  background: #faf8f4;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
}

.form-control-light:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-control-light option {
  background: var(--white);
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--ink), #1a1a1a);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 12px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--gold), #a07830);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

/* WhatsApp Button */
.btn-whatsapp {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 12px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-whatsapp:hover::before {
  left: 100%;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #2ee870, #25D366);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

/* Consultation Form Button Group */
.form-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.form-buttons .btn-submit,
.form-buttons .btn-whatsapp {
  margin-top: 0;
  flex: 1;
  padding: 14px 10px;
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .form-buttons {
    flex-direction: column;
  }
}

/* ===== INSPIRATION ===== */
.inspiration-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 60px;
}

.inspo-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s;
}

.inspo-card:hover {
  transform: scale(1.02);
}

.inspo-card:first-child {
  grid-row: 1 / 3;
}

.inspo-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.inspo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.7));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.inspo-label {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.inspo-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}



/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TRUST BADGES ===== */
.trust-strip {
  background: var(--white);
  padding: 40px 60px;
  border-top: 1px solid #f0ece6;
  border-bottom: 1px solid #f0ece6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  font-size: 1.8rem;
}

.trust-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.trust-text p {
  font-size: 0.78rem;
  color: #999;
}

/* ===== ABOUT ===== */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 500px;
}

.about-img-main {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #c9a84c, #5a7a5e, #4a8fa8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
}

.about-badge-text {
  font-size: 0.78rem;
  color: #999;
}

.about-content .section-label {
  margin-top: 0;
}

.about-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-item-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.about-item-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-item-text p {
  font-size: 0.85rem;
  color: #888;
}

.about-wide-details {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 60px 64px;
}

.about-wide-copy {
  width: 100%;
  max-width: none;
}

.about-wide-copy p {
  color: #777;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-wide-details .about-list {
  margin-top: 28px;
}

#about .about-content > p:nth-of-type(2),
#about .about-content > .about-list {
  display: none;
}

/* ===== FOUNDER ===== */
.founder-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
  background: var(--white);
  padding: 100px 60px;
  max-width: 100%;
}

.founder-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 550px;
  box-shadow: var(--shadow);
}

.founder-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  color: var(--ink);
  padding: 15px 30px;
  border-radius: 0 50px 50px 0;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateX(20px);
  border: 1px solid rgba(0,0,0,0.03);
}

.founder-badge h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}

.founder-badge p {
  font-size: 0.8rem;
  opacity: 0.7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.founder-content .section-label {
  margin-bottom: 24px;
}

.founder-quote {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px;
  position: relative;
  font-style: poppins;
}

.founder-quote::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: -20px;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
}

.founder-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.founder-sign {
  margin-top: 40px;
}

.founder-sign img {
  height: 60px;
  filter: grayscale(1) invert(0);
  opacity: 0.8;
}

/* ===== TEAM ===== */
.team-section {
  padding: 100px 60px;
  background: var(--cream);
  margin: 0 auto;
  max-width: 1200px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.team-info p {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.6;
}

/* ===== CONTACT ===== */
#contact {
  background: linear-gradient(160deg, #f9f6f0, var(--cream));
  max-width: 100%;
  padding: 100px 60px;
}

.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-info p {
  color: #777;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-method h4 {
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-method p {
  font-size: 0.85rem;
  color: #888;
}

.map-placeholder {
  background: #e8e4dc;
  border-radius: var(--radius);
  height: 200px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #bbb;
  position: relative;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent);
}

/* ===== FOOTER ===== */
footer {
  background: #000;
  color: #fff;
  --footer-heading: #ffffff;
  --footer-text: #b9b9b9;
  --footer-muted: #8f8f8f;
  --footer-link: #c9c9c9;
  padding: 80px 60px 40px;
  border-top: none;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
  color: var(--footer-heading) !important;
}

footer p,
footer li,
footer span {
  color: var(--footer-text);
}

footer a {
  color: var(--footer-link);
}

footer a:hover {
  color: var(--gold);
}

/* Normalize hard-coded inline colors used across page footers */
footer [style*="color:var(--ink)"],
footer [style*="color:#555"],
footer [style*="color:#777"],
footer [style*="color:rgba(0,0,0"] {
  color: var(--footer-text) !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand .dynamic-logo-img {
  height: clamp(42px, 5vw, 64px);
  width: auto;
  max-width: 260px;
  object-fit: contain;
  transition: all 0.3s ease;
  /* Tight white glow to guarantee black text is visible against dark footer */
  filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--footer-text);
  margin-top: 16px;
  max-width: 280px;
}

footer .logo-text {
  color: #fff !important;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
  text-decoration: none;
  color: #fff;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--ink);
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--footer-heading);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

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

.footer-col ul a {
  color: var(--footer-link);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-bottom p:last-child {
  color: var(--footer-muted) !important;
}

footer .footer-desc {
  color: var(--footer-text) !important;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f0ece6;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-close:hover {
  background: var(--ink);
  color: var(--white);
}

.modal h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.modal p {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.modal-success {
  text-align: center;
  display: none;
}

.modal-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* ===== FLOATING BTN ===== */
.floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: linear-gradient(135deg, var(--gold), #a07830);
  color: var(--ink);
  border: none;
  padding: 16px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  min-height: 48px; /* Better touch target */
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
}

@media (max-width: 768px) {
  body.viz-active .floating-btn {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8) translateY(20px);
  }
}

.floating-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.6);
}

/* WhatsApp floating variant */
.floating-btn.floating-btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

.floating-btn.floating-btn-wa:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #2ee870, #25D366);
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(6, 9, 13, 0.42);
  backdrop-filter: blur(2px);
}

/* ===== MOBILE NAV (MODERN DRAWER) ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  width: min(84vw, 360px);
  height: 100dvh;
  background: linear-gradient(180deg, #ffffff 0%, #f8f6f1 100%);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 88px 18px 20px;
  gap: 10px;
  transform: translateX(110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.25s ease;
  box-shadow: -30px 0 70px rgba(0, 0, 0, 0.14);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  opacity: 0;
  transform: translateX(16px);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease, color 0.2s ease;
  font-weight: 600;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
}

.mobile-nav.open a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav.open a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-nav.open a:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-nav.open a:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-nav.open a:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-nav.open a:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-nav.open a:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-nav.open a:nth-child(7) {
  transition-delay: 0.4s;
}

.mobile-nav.open a:nth-child(8) {
  transition-delay: 0.45s;
}

.mobile-nav.open a:nth-child(9) {
  transition-delay: 0.46s;
  font-weight: 700;
  color: #8b6a17;
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.14);
}

.mobile-nav a:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.24);
}

.mobile-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none;
  }

  body.mobile-menu-open::before {
    display: none;
  }
}

/* ===== PREMIUM VISUALIZER UPGRADES ===== */
.visualizer-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.viz-left, .viz-controls {
  position: relative;
  z-index: 1;
}

.viz-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.viz-actions button {
  flex: 1;
}

.viz-room {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
  cursor: ew-resize;
}

#vizMaskCanvas {
  transition: opacity 0.3s ease-in-out;
}

.viz-compare-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  user-select: none;
  -webkit-user-select: none;
}

.viz-compare-btn:active,
.viz-compare-btn.held {
  background: var(--white);
  transform: scale(0.95);
}

.viz-controls {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  color: var(--ink);
}

.viz-section-title {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.viz-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  z-index: 10;
  pointer-events: none;
  display: none;
}

.viz-divider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--gold);
  border: 4px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.premium-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 12px;
  margin-bottom: 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 12px;
  cursor: grab;
}

.premium-tabs:active {
  cursor: grabbing;
}

.premium-tabs::-webkit-scrollbar {
  display: none;
}

.premium-room {
  flex: 0 0 120px;
  height: 80px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s;
  scroll-snap-align: start;
}

.premium-room::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.premium-room .room-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 2;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.premium-room:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.premium-room.active {
  border-color: var(--gold);
  transform: scale(1.02);
}

/* Upload Your Own Room Card */
.upload-room-btn {
  background: rgba(201, 168, 76, 0.08) !important;
  border: 2px dashed rgba(201, 168, 76, 0.5) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.upload-room-btn:hover {
  border-color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.15) !important;
  transform: translateY(-3px);
}

.upload-room-btn.active {
  border-color: var(--gold) !important;
  border-style: solid !important;
}

.upload-room-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  pointer-events: none;
}

.upload-room-icon span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.03em;
}

/* Hide the icon once thumbnail is loaded */
.upload-room-btn.has-image .upload-room-icon {
  display: none;
}


/* ===== SCROLL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE NAV PILLS ===== */
.page-nav {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 800;
}

.page-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.page-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

.page-dot:hover {
  background: var(--gold);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 3000;
  opacity: 0;
  transition: all 0.4s;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 120px 40px 80px;
  }

  .hero-right {
    display: none;
  }

  .visualizer-wrap {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
    padding: 24px;
    gap: 32px;
  }

  .viz-room {
    position: relative;
    top: 0;
    z-index: 1;
    box-shadow: none;
  }

  .viz-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .calc-wrap {
    grid-template-columns: 1fr;
  }

  .booking-wrap {
    grid-template-columns: 1fr;
  }

  #about {
    grid-template-columns: 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .inspiration-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .inspo-card:first-child {
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .page-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  body.mobile-menu-open #hamburger {
    position: fixed;
    top: 12px;
    right: 16px;
    z-index: 1302;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(0, 0, 0, 0.16);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  }

  nav {
    padding: 16px 20px;
  }

  nav.scrolled {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 60px 20px;
  }

  #colors,
  #calculator,
  #booking,
  #contact {
    padding: 60px 20px;
  }

  .hero-content {
    padding: 100px 20px 60px;
    gap: 40px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 24px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .trust-strip {
    padding: 32px 20px;
    gap: 24px;
  }

  .trust-item {
    text-align: center;
  }

  .section-title {
    font-size: clamp(1.875rem, 6vw, 2.5rem);
    margin-bottom: 20px;
  }

  .section-sub {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  /* Removed redundant visualizer mobile rules - consolidated below */

  .trust-strip {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 32px;
    padding: 32px 24px;
    margin: 0 -24px;
    justify-content: flex-start;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .trust-strip::-webkit-scrollbar {
    display: none;
  }

  .trust-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  footer {
    padding: 60px 24px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .color-grid {
    display: flex !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
    margin: 20px -20px 0 !important;
    padding: 0 20px 20px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    grid-template-columns: none !important;
  }

  .color-grid::-webkit-scrollbar {
    display: none;
  }



  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 20px;
    margin: 20px -24px 0;
    padding: 0 24px 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .hero-stat {
    flex: 0 0 auto;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .inspiration-grid {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 16px;
    margin: 20px -24px 0;
    padding: 0 24px 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .inspo-card {
    flex: 0 0 280px;
    height: 380px;
    scroll-snap-align: center;
    border-radius: var(--mob-card-radius);
    box-shadow: var(--shadow-premium);
  }

  .hero-stats::-webkit-scrollbar,
  .inspiration-grid::-webkit-scrollbar {
    display: none;
  }

  .floating-btn span {
    display: none;
  }

  .floating-btn {
    padding: 14px 16px;
    border-radius: 50%;
    min-width: 48px;
    bottom: 20px;
    right: 20px;
  }
}

/* ===== CAROUSEL ===== */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 8s ease-out;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(26, 18, 8, 0.85) 0%, rgba(44, 24, 16, 0.7) 30%, rgba(13, 26, 18, 0.75) 70%, rgba(10, 21, 32, 0.9) 100%);
}

/* ===== PREMIUM QUALITY ENHANCEMENTS & COMPREHENSIVE MOBILE TWEAKS ===== */
/* Enhance shadows and borders globally */
.product-card,
.service-card,
.booking-form,
.calc-result,
.calc-form {
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: var(--radius-premium);
}

.inspo-card {
  border-radius: var(--radius-premium);
  box-shadow: var(--shadow-premium);
}

.btn-primary {
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:active,
.btn-outline:active,
.filter-btn:active,
.surface-tab:active {
  transform: scale(0.96);
  opacity: 0.9;
}

/* Unified Mobile App-Like Experience */
@media (max-width: 768px) {

  /* Bulletproof Body Containment */
  html,
  body {
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
    position: relative;
  }

  /* Fluid scaling typography for high-end feel */
  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
  }

  /* Tighter global padding for true edge-to-edge luxury feel */
  section,
  #colors,
  #calculator,
  #booking,
  #contact {
    padding: var(--mob-section-gap) var(--mob-pad);
    overflow: hidden;
    max-width: 100vw;
    box-sizing: border-box;
    text-align: center;
  }

  .section-title,
  .section-label,
  .section-sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .section-sub {
    max-width: 380px;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 32px;
  }

  /* Unified Mobile Visualizer */
  #visualizer {
    padding: 60px 20px !important;
    background: #fff !important;
  }

  #visualizer .section-label,
  #visualizer .section-title,
  #visualizer .section-sub {
    display: block !important;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }

  #visualizer .section-title {
    font-size: 2rem !important;
    margin-bottom: 12px;
  }

  #visualizer .section-sub {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .visualizer-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
  }

  .viz-left {
    position: relative;
    top: 0;
    z-index: 10;
    margin: 0 -20px 16px;
    width: calc(100% + 40px);
    background: #fff;
  }

  .viz-room {
    border-radius: 16px !important;
    height: auto !important;
    min-height: 200px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    background: transparent;
    display: block !important;
    overflow: hidden;
  }

  #vizImg {
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .viz-controls {
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    display: block;
  }

  .viz-selected-display {
    display: flex !important;
    margin-bottom: 16px;
    padding: 16px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
  }

  .viz-section-title {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: block !important;
    font-weight: 600;
  }

  .premium-tabs,
  .viz-palette {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 12px;
    margin: 0 -20px 16px;
    padding: 2px 20px 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    width: calc(100% + 40px);
    touch-action: pan-x;
  }

  .premium-tabs::-webkit-scrollbar,
  .viz-palette::-webkit-scrollbar {
    display: none;
  }

  .premium-room {
    flex: 0 0 110px !important;
    height: 72px !important;
    scroll-snap-align: center;
    border-radius: 12px;
  }

  .viz-color {
    flex: 0 0 54px !important;
    height: 54px !important;
    scroll-snap-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  }

  .viz-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .viz-actions button {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px !important;
  }

  /* Large Desktop (1441px and above) */
  @media (min-width: 1441px) {
    .visualizer-wrap {
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .viz-left {
      display: block;
      order: 2;
    }

    .viz-controls {
      order: 1;
      position: sticky;
      top: 100px;
    }

    .viz-room {
      position: sticky;
      top: 100px;
      aspect-ratio: 16/9;
      max-height: 650px;
    }

    .viz-room::after {
      font-size: 0.75rem;
      padding: 6px 12px;
    }

    .viz-palette {
      justify-content: flex-start;
      flex-wrap: nowrap;
      overflow-x: auto;
      gap: 16px;
      margin: 0 0 25px;
      padding-bottom: 5px;
    }

    .viz-color {
      width: 52px;
      height: 52px;
    }

    .premium-room {
      width: 130px;
      height: 85px;
    }

    .viz-slider-wrap {
      padding: 20px;
    }

    .viz-slider-header h4 {
      font-size: 1rem;
    }

    .viz-slider-val {
      font-size: 0.9rem;
    }
  }

  /* Landscape orientation for mobile devices */
  @media (max-width: 768px) and (orientation: landscape) {
    .viz-room {
      aspect-ratio: 16/9;
      max-height: 60vh;
    }

    .viz-palette {
      padding-bottom: 15px;
    }

    .premium-tabs {
      margin-bottom: 12px;
    }

    .viz-slider-wrap {
      margin-bottom: 16px;
    }
  }

  /* Dark mode support (if needed) */
  @media (prefers-color-scheme: dark) {
    .viz-slider-wrap {
      background: #2a2a2a;
      border-color: #444;
    }

    .viz-slider-header h4 {
      color: #e0e0e0;
    }

    .viz-selected-display {
      background: #2a2a2a;
      border-color: #444;
    }

    .viz-custom-color-btn {
      border-color: #666;
    }

    .viz-range {
      background: #444;
    }
  }

  /* Touch device optimizations */
  @media (hover: none) and (pointer: coarse) {
    .viz-color:active {
      transform: scale(0.95);
    }

    .viz-range::-webkit-slider-thumb {
      width: 28px;
      height: 28px;
    }

    .premium-room:active {
      opacity: 0.8;
    }
  }

  /* High contrast / accessibility */
  @media (prefers-contrast: high) {
    .viz-room::after {
      background: rgba(0, 0, 0, 0.8);
    }

    .viz-color {
      border-width: 3px;
    }

    .viz-slider-wrap {
      border-width: 2px;
    }
  }

  /* Services section */
  #services {
    max-height: max-content;
    overflow-y: visible;
  }

  .service-num {
    font-size: 3.5rem;
    right: 16px;
    top: 0;
  }

  .service-icon {
    margin-bottom: 16px;
  }

  .service-title {
    font-size: 1.15rem;
  }

  /* Stacked wraps */
  .calc-wrap,
  .booking-wrap,
  #about,
  .contact-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-visual {
    height: 260px;
    margin-bottom: 0;
    border-radius: 16px;
  }

  /* Founder section mobile */
  .founder-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 24px;
  }

  .founder-visual {
    height: 380px;
    width: 100%;
    border-radius: 16px;
  }

  .founder-badge {
    bottom: 20px;
    left: 0;
    transform: none;
    padding: 12px 20px;
    border-radius: 0 40px 40px 0;
  }

  .founder-badge h4 {
    font-size: 1.15rem;
  }

  .founder-quote {
    font-size: 1.35rem;
    line-height: 1.4;
    padding-left: 8px;
  }

  .founder-quote::before {
    font-size: 4rem;
    top: -25px;
    left: -5px;
  }

  /* Improved Carousel Sections */
  .products-grid,
  .services-grid,
  .team-grid {
    display: flex !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    margin: 24px -20px 0 !important;
    padding: 0 20px 20px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    grid-template-columns: none !important;
  }

  .products-grid::-webkit-scrollbar,
  .services-grid::-webkit-scrollbar,
  .team-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card,
  .service-card,
  .team-card {
    flex: 0 0 280px !important;
    scroll-snap-align: center !important;
    margin-bottom: 0 !important;
  }

  .service-card {
    padding: 32px 20px !important;
  }

  .service-title {
    font-size: 1.1rem !important;
  }

  .service-desc {
    font-size: 0.85rem !important;
  }

  /* Forms */
  .booking-form,
  .calc-form,
  .modal {
    padding: 32px 24px;
    width: 100%;
    margin: 0;
    border-radius: 20px;
  }

  .form-group-light,
  .form-group {
    margin-bottom: 16px;
  }

  .form-control-light,
  .form-control {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .btn-submit {
    padding: 14px;
    font-size: 0.95rem;
    border-radius: 50px;
  }

  /* Improved Shapes/Palettes Section */
  .color-swatch {
    flex: 0 0 120px;
    scroll-snap-align: center;
    border-radius: 16px;
  }

  .color-swatch-info {
    padding: 16px 12px 12px;
  }

  .color-swatch-info p {
    font-size: 0.8rem;
  }

  .color-swatch-info span {
    font-size: 0.7rem;
  }
}

/* Palette Carousel Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
  display: none;
  /* Only show on mobile */
}

.scroll-btn:hover {
  color: var(--gold);
  transform: translateY(-50%) scale(1.1);
  background: transparent;
}

.scroll-btn.left {
  left: 4px;
}

.scroll-btn.right {
  right: 4px;
}

/* Testimonial Pagination Dots */
.testi-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  width: 100%;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  cursor: pointer;
}

.testi-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

@media (max-width: 768px) {
  .scroll-btn {
    display: none !important;
  }

  .testi-dots {
    display: flex;
  }
}

/* =========================================
   MODERN SKELETON LOADER
   ========================================= */
.skeleton-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white, #ffffff);
  z-index: 99999;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.skel-box {
  background: #f0f0f0;
  position: relative;
  overflow: hidden;
}

.skel-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  animation: shimmer 1.5s infinite ease-in-out;
}

@keyframes shimmer {
  100% {
    left: 150%;
  }
}

.skel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  height: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.skel-nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

@media (max-width: 768px) {
  .skel-nav-links {
    display: none;
  }
}

.skel-hero {
  padding: 8rem 5% 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 0 0 auto;
}

.skel-h1 {
  width: 50%;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.skel-h2 {
  width: 35%;
  height: 72px;
  margin-bottom: 30px;
  border-radius: 8px;
}

.skel-p {
  width: 40%;
  height: 20px;
  margin-bottom: 40px;
  border-radius: 4px;
}

.skel-btn {
  width: 180px;
  height: 50px;
  border-radius: 30px;
}

@media (max-width: 768px) {
  .skel-h1 {
    width: 80%;
    height: 50px;
  }

  .skel-h2 {
    width: 60%;
    height: 50px;
  }

  .skel-p {
    width: 80%;
  }

  .skel-hero {
    padding: 6rem 5% 3rem;
  }
}

.skel-section {
  padding: 2rem 5%;
  flex: 1;
}

.skel-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.skel-card {
  display: flex;
  flex-direction: column;
}

.skel-img {
  width: 100%;
  height: 220px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.skel-card-t {
  width: 70%;
  height: 24px;
  margin-bottom: 12px;
  border-radius: 4px;
}

.skel-card-p {
  width: 100%;
  height: 16px;
  margin-bottom: 8px;
  border-radius: 4px;
}

.skel-card-p2 {
  width: 60%;
  height: 16px;
  border-radius: 4px;
}

/* =========================================
   RESPONSIVE UX & LAYOUT OVERRIDES (< 600px)
   ========================================= */

@media (max-width: 600px) {

  /* Ensure strict 1-column layouts only for forms and specific grids */
  .features-grid,
  .footer-grid,
  .skel-cards,
  .grid {
    grid-template-columns: 1fr !important;
  }

  /* Ensure text scales gracefully */
  html {
    font-size: 15px !important;
  }

  /* Ensure proper spacing */
  .section-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  .hero-title {
    font-size: 2.5rem !important;
  }
}

/* Tablet (768px - 1024px) Overrides */
@media (max-width: 900px) and (min-width: 601px) {

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

/* Fluid Layout Enforcement */
img {
  max-width: 100%;
  height: auto;
}

/* Isolate Hover Effects to Desktop only to prevent sticky hovers on mobile */
@media (hover: hover) {

  .btn-primary:hover,
  .btn-outline:hover,
  .service-card:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
  }
}

/* ===== HOMEPAGE HERO BANNER IMPROVEMENTS ===== */
#hero {
  min-height: clamp(640px, 100vh, 920px);
}

.hero-content {
  width: min(1200px, 100%);
}

.hero-left {
  max-width: 620px;
}

.hero-actions .btn-primary,
.hero-actions .btn-outline {
  min-height: 56px;
}

@media (max-width: 1024px) {
  #hero {
    min-height: auto;
  }

  .hero-content {
    padding: 112px 32px 56px;
    gap: 28px;
  }

  .hero-left {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 96px 20px 48px;
    gap: 24px;
  }

  .hero-title br {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.1rem, 9.5vw, 3rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.95rem;
    justify-content: center;
  }

  .hero-stats {
    margin-top: 14px;
  }
}

/* ===== TESTIMONIAL SECTION IMPROVEMENTS ===== */
#testimonials {
  background: linear-gradient(160deg, #f9f6f0 0%, #fff 100%);
  padding: 100px 60px;
}

.testimonials-shell {
  max-width: 1200px;
  margin: 0 auto;
}

#testimonials .section-sub {
  margin: 0 0 56px;
  max-width: 760px;
  color: #666;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  position: relative;
  background: #fff;
  border: 1px solid #ece7de;
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--gold) 0%, #e8d08a 100%);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: #d8a93a;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #363636;
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #2c2c2c;
  background: linear-gradient(135deg, #f0dfb4, #d8b86d);
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f1f1f;
}

.testimonial-role {
  font-size: 0.8rem;
  color: #777;
}

.testimonials-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#testimonials .stat-item {
  text-align: center;
  background: #fff;
  border: 1px solid #ece7de;
  border-radius: 16px;
  padding: 24px 14px;
}

#testimonials .stat-value {
  font-size: clamp(1.8rem, 3.3vw, 2.3rem);
  line-height: 1;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

#testimonials .stat-label {
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  #testimonials {
    padding: 80px 32px;
  }

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

  .testimonials-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  #testimonials {
    padding: 60px 20px;
  }

  #testimonials .section-sub {
    margin-bottom: 28px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 20px 16px;
  }

  .testimonials-stats {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #testimonials .stat-item {
    padding: 16px;
  }
}

/* ===== GLOBAL RESPONSIVE STABILITY (FINAL OVERRIDES) ===== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

#hero .hero-content,
#colors > div,
#visualizer > div,
#calculator > div,
#booking .booking-wrap,
#testimonials .testimonials-shell,
#contact .contact-wrap {
  width: min(1200px, 100%);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1440px) {
  #hero .hero-content,
  #colors > div,
  #visualizer > div,
  #calculator > div,
  #booking .booking-wrap,
  #testimonials .testimonials-shell,
  #contact .contact-wrap {
    width: min(1320px, 100%);
  }

  .hero-title {
    font-size: clamp(3.4rem, 4.4vw, 5.2rem);
  }
}

@media (max-width: 1200px) {
  nav,
  nav.scrolled {
    padding-left: 28px;
    padding-right: 28px;
  }

  #colors,
  #calculator,
  #booking,
  #contact,
  #testimonials {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none !important;
  }

  .visualizer-wrap,
  .calc-wrap,
  .booking-wrap,
  .contact-wrap {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

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

@media (max-width: 768px) {
  nav,
  nav.scrolled {
    padding-left: 16px;
    padding-right: 16px;
  }

  #colors,
  #calculator,
  #booking,
  #contact,
  #testimonials {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    justify-content: flex-start;
    gap: 14px;
    padding: 18px 16px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .trust-item {
    min-width: 220px;
    background: #fff;
    border: 1px solid #eee9df;
    border-radius: 12px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: clamp(1.65rem, 8.5vw, 2.05rem) !important;
    line-height: 1.18 !important;
  }

  .section-sub {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

/* ===== TESTIMONIALS UX UPGRADE ===== */
.testimonial-card {
  backdrop-filter: saturate(1.1);
}

.testimonial-card .testimonial-text {
  position: relative;
}

.testimonial-card .testimonial-text::before {
  content: "“";
  position: absolute;
  left: -10px;
  top: -14px;
  font-size: 2rem;
  color: rgba(201, 168, 76, 0.28);
  font-family: var(--font-display);
  line-height: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  #testimonials .testimonials-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 14px;
    padding: 2px 2px 10px;
    margin: 0 -2px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #testimonials .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  #testimonials .testimonial-card {
    flex: 0 0 min(86vw, 340px);
    scroll-snap-align: start;
    min-height: 0;
  }

  #testimonials .testimonials-stats {
    margin-top: 20px;
  }
}

/* ===== HERO OVERLAP FIX (SMALL PHONES) ===== */
@media (max-width: 480px) {
  #hero {
    min-height: auto !important;
    padding-bottom: 18px;
  }

  #hero .hero-content {
    padding: 86px 14px 28px !important;
    gap: 16px !important;
    align-items: start !important;
  }

  #hero .hero-left {
    width: 100%;
    max-width: 100% !important;
  }

  #hero .hero-badge {
    margin-bottom: 14px !important;
    padding: 6px 12px !important;
  }

  #hero .hero-badge span {
    font-size: 0.66rem !important;
    letter-spacing: 0.06em !important;
  }

  #hero .hero-title {
    font-size: clamp(1.95rem, 9.3vw, 2.35rem) !important;
    line-height: 1.06 !important;
    margin-bottom: 12px !important;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  #hero .hero-title br {
    display: block !important;
  }

  #hero .hero-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
    max-width: 100% !important;
  }

  #hero .hero-actions {
    gap: 10px !important;
  }

  #hero .hero-actions .btn-primary,
  #hero .hero-actions .btn-outline {
    min-height: 48px !important;
    padding: 12px 14px !important;
    font-size: 0.92rem !important;
  }

  #hero .hero-stats {
    gap: 8px !important;
    margin: 10px 0 0 !important;
    padding: 0 2px 6px !important;
  }

  #hero .hero-stat {
    padding: 8px 10px !important;
    border-radius: 10px !important;
  }

  #hero .hero-stat-num {
    font-size: clamp(1.3rem, 7.5vw, 1.7rem) !important;
  }

  #hero .hero-stat-label {
    font-size: 0.68rem !important;
    letter-spacing: 0.05em !important;
  }
}

/* ===== RESPONSIVE FONT/COLOR/ALIGNMENT NORMALIZATION ===== */
body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.service-title,
.page-hero h1 {
  font-family: var(--font-display);
}

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

/* Keep logo sizing responsive even when inline styles set fixed heights */
nav .dynamic-logo-img {
  height: clamp(34px, 4.5vw, 52px) !important;
  max-width: min(220px, 48vw);
}

@media (max-width: 768px) {
  nav .dynamic-logo-img {
    height: clamp(30px, 8.5vw, 42px) !important;
    max-width: min(180px, 58vw);
  }

  .footer-brand .dynamic-logo-img {
    max-width: min(190px, 62vw);
  }

  /* Inline wrappers in HTML use fixed desktop paddings; normalize on mobile */
  [style*="padding: 0 60px"] {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  [style*="padding: 80px 60px"],
  [style*="padding: 100px 60px"] {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Keep section heading rows aligned and readable on small screens */
  #colors > div > div[style*="justify-content:space-between"] {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 14px !important;
  }
}

@media (max-width: 480px) {
  #colors > div > div[style*="justify-content:space-between"] {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  #colors .section-title {
    margin-bottom: 8px !important;
  }
}

/* ===== ABOUT SECTION FIT FIX ===== */
#about {
  width: min(1200px, 100%);
  margin: 0 auto;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 56px);
  padding-top: 64px;
  padding-bottom: 64px;
}

#about .about-content {
  width: 100%;
}

#about .about-content > p {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

#about .about-visual {
  width: 100%;
  height: auto;
  min-height: 420px;
  aspect-ratio: 4 / 5;
}

#about .about-img-main {
  height: 100% !important;
}

#about .about-list {
  margin-top: 24px;
}

@media (max-width: 1024px) {
  #about {
    gap: 28px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  #about .about-visual {
    min-height: 320px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  #about {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
    gap: 20px !important;
  }

  #about .about-visual {
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }

  .about-wide-details {
    padding: 0 16px 44px;
  }
}

/* ===== GLOBAL MOBILE LEFT ALIGNMENT ===== */
@media (max-width: 768px) {
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  a,
  span,
  li,
  label,
  small,
  strong,
  em,
  button,
  input,
  select,
  textarea,
  .section-title,
  .section-sub,
  .section-label,
  .hero-title,
  .hero-subtitle,
  .footer-bottom,
  .footer-bottom p,
  .footer-col h4,
  .footer-col li,
  .footer-col li a,
  .contact-method p,
  .contact-method h4,
  .booking-form,
  .calc-form,
  .calc-result,
  .testimonial-card,
  [style*="text-align: center"],
  .mobile-nav a {
    text-align: left !important;
  }

  [style*="justify-content: center"].section-label {
    justify-content: flex-start !important;
  }
}

/* ===== FOOTER COMPACT STANDARD ===== */
footer {
  padding: 56px 40px 24px;
}

.footer-grid {
  gap: 36px;
  margin-bottom: 36px;
}

.footer-col h4 {
  margin-bottom: 12px;
}

.footer-col ul {
  gap: 8px;
}

.footer-brand p {
  line-height: 1.65;
  margin-top: 12px;
}

.footer-social {
  margin-top: 16px;
}

.footer-bottom {
  padding-top: 18px;
}

/* Regional SEO block in footer is too tall by default; normalize spacing */
footer > div[style*="margin-top: 60px"] {
  margin-top: 32px !important;
  padding-top: 24px !important;
}

footer .footer-desc {
  margin-bottom: 18px !important;
  line-height: 1.6 !important;
}

footer > div[style*="margin-top: 60px"] .footer-grid {
  margin-bottom: 20px;
  gap: 24px;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 20px 20px !important;
  }

  .footer-grid {
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer-bottom {
    padding-top: 14px;
  }

  footer > div[style*="margin-top: 60px"] {
    margin-top: 20px !important;
    padding-top: 16px !important;
  }
}

/* ===== DESKTOP COMPACT + LEFT ALIGN (GLOBAL) ===== */
@media (min-width: 1025px) {
  section,
  #colors,
  #visualizer,
  #calculator,
  #booking,
  #contact,
  #testimonials,
  .page-hero,
  .team-section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  [style*="padding: 100px 60px"],
  [style*="padding: 80px 60px"],
  [style*="padding: 0 60px"] {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }

  .section-label,
  .section-title,
  .section-sub,
  .service-title,
  .service-desc,
  .testimonial-card,
  .contact-method h4,
  .contact-method p,
  .booking-form,
  .calc-form,
  .calc-result {
    text-align: left !important;
  }

  .section-title {
    margin-bottom: 12px !important;
  }

  .section-sub {
    margin: 0 0 20px 0 !important;
    max-width: 100% !important;
  }

  .visualizer-wrap,
  .calc-wrap,
  .booking-wrap,
  .contact-wrap,
  .products-grid,
  .services-grid,
  .inspiration-grid,
  .testimonials-grid,
  .footer-grid,
  .about-list {
    gap: 20px !important;
  }

  .footer-grid {
    margin-bottom: 20px !important;
  }

  #colors > div > div[style*="justify-content:space-between"] {
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
}

/* ===== FINAL RESPONSIVE LAYER (DESKTOP + ABOUT MOBILE) ===== */
@media (min-width: 1025px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  nav,
  nav.scrolled {
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
  }

  #hero .hero-content,
  #colors > div,
  #visualizer > div,
  #calculator > div,
  #booking .booking-wrap,
  #testimonials .testimonials-shell,
  #contact .contact-wrap,
  #about,
  .team-section,
  .founder-section,
  .page-content section {
    width: min(1200px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .products-grid,
  .services-grid,
  .testimonials-grid,
  .inspiration-grid {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  #about {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  #about .about-visual {
    order: 1;
    min-height: 220px !important;
    aspect-ratio: 16 / 10 !important;
    border-radius: 16px;
  }

  #about .about-content {
    order: 2;
    width: 100%;
  }

  #about .about-badge {
    position: static;
    margin-top: 12px;
    width: fit-content;
    max-width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
  }

  #about .about-badge-num {
    font-size: 1.5rem;
  }

  #about .about-badge-text {
    font-size: 0.72rem;
    line-height: 1.35;
  }
}

@media (max-width: 768px) {
  #about {
    padding-left: 16px !important;
    padding-right: 16px !important;
    gap: 16px !important;
  }

  #about .about-list {
    margin-top: 16px;
    gap: 12px !important;
  }

  #about .about-item {
    gap: 10px;
  }

  #about .about-item-num {
    font-size: 1.25rem;
  }

  #about .about-item-text h4 {
    font-size: 0.92rem;
    margin-bottom: 3px;
  }

  #about .about-item-text p {
    font-size: 0.82rem;
    line-height: 1.5;
  }
}

/* ===== FINAL SITEWIDE DESKTOP RESPONSIVENESS ===== */
@media (min-width: 1025px) {
  .page-hero {
    padding-top: 124px !important;
    padding-bottom: 52px !important;
  }

  .page-hero h1 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero p,
  .page-breadcrumb {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  section,
  #products,
  #services,
  #colors > div,
  #calculator > div,
  #booking .booking-wrap,
  #contact .contact-wrap,
  #about,
  #inspiration,
  .team-section,
  .founder-section,
  .gallery-carousel {
    width: min(1240px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
  }

  #products > div[style*="display:flex"],
  #colors > div > div[style*="justify-content:space-between"],
  #inspiration > div[style*="display:flex"] {
    justify-content: space-between !important;
    align-items: flex-end !important;
    gap: 20px !important;
  }

  #products > div[style*="display:flex"] .section-sub,
  #inspiration > div[style*="display:flex"] .section-sub {
    max-width: 380px !important;
    margin-bottom: 0 !important;
  }

  .products-filter {
    gap: 10px;
  }

  .products-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .color-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .booking-wrap,
  .contact-wrap {
    grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr) !important;
  }

  .calc-wrap {
    grid-template-columns: minmax(320px, 0.98fr) minmax(320px, 1.02fr);
  }

  .founder-section {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  }

  .trust-strip {
    padding-left: 36px;
    padding-right: 36px;
    gap: 32px;
  }

  .gallery-carousel {
    gap: 16px !important;
    overflow: hidden !important;
    padding-bottom: 0 !important;
  }

  .gallery-carousel img {
    width: calc((100% - 48px) / 4) !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: 0 0 calc((100% - 48px) / 4) !important;
    height: 280px !important;
  }
}

@media (min-width: 1025px) and (max-width: 1279px) {
  .products-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .color-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .gallery-carousel img {
    width: calc((100% - 32px) / 3) !important;
    flex-basis: calc((100% - 32px) / 3) !important;
  }
}

@media (min-width: 1440px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .color-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

/* ===== FINAL ABOUT DESKTOP RESPONSIVENESS ===== */
@media (min-width: 1025px) {
  #about {
    width: min(1240px, calc(100% - 48px)) !important;
    grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1.16fr) !important;
    gap: clamp(24px, 3.2vw, 44px) !important;
    align-items: start !important;
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  #about .about-visual {
    position: sticky;
    top: 108px;
    height: clamp(420px, 36vw, 540px);
    min-height: 0 !important;
    aspect-ratio: auto !important;
    border-radius: 24px;
  }

  #about .about-content {
    min-width: 0;
    max-width: 100%;
    padding-right: clamp(0px, 1.2vw, 12px);
  }

  #about .section-title {
    max-width: 14ch;
  }

  #about .about-content > p {
    max-width: 72ch;
    line-height: 1.78 !important;
  }

  #about .about-list {
    max-width: 72ch;
    gap: 14px !important;
  }

  #about .about-item {
    gap: 14px;
  }

  #about .about-badge {
    right: 18px;
    bottom: 18px;
    padding: 16px 18px;
    max-width: min(240px, calc(100% - 36px));
  }

  #about .about-badge-num {
    font-size: 1.9rem;
  }

  #about .about-badge-text {
    line-height: 1.45;
  }

  .about-wide-details {
    width: min(1240px, calc(100% - 48px));
    padding: 0 0 48px;
  }

  .about-wide-copy p {
    font-size: 1rem;
    max-width: none;
  }

  .about-wide-details .about-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px !important;
    margin-top: 26px;
  }

  .about-wide-details .about-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 22px 20px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.05);
    min-width: 0;
  }

  .about-wide-details .about-item-text p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .about-wide-details .about-item:last-child {
    grid-column: 1 / -1;
  }

  #about .about-visual {
    position: relative;
    top: 0;
    height: clamp(340px, 29vw, 430px);
  }

  .founder-section {
    width: min(1320px, calc(100% - 48px)) !important;
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(24px, 3vw, 44px) !important;
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .founder-visual {
    height: clamp(400px, 34vw, 520px);
  }

  .founder-content {
    min-width: 0;
    max-width: 100%;
  }

  .founder-text,
  .founder-quote {
    max-width: none;
  }
}

@media (min-width: 1025px) and (max-width: 1279px) {
  #about {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr) !important;
  }

  #about .about-visual {
    height: clamp(320px, 34vw, 390px);
  }

  .about-wide-details .about-list {
    grid-template-columns: 1fr;
  }

  .about-wide-details .about-item:last-child {
    grid-column: auto;
  }

  .founder-section {
    grid-template-columns: 1fr;
  }
}
