/* ================================================
   Arabela Lighting - Premium Landing Page
   Cinematic, Brand-World Experience
   ================================================ */

/* CSS Variables - Design System */
:root {
  /* Brand Colors */
  --page: #d7e4e6;           /* Primary Background - Main Brand Color */
  --page-alt: #F2F1EE;       /* Secondary Background - Complementary */
  --surface: #ffffff;         /* Card/Content Background */
  --surface-alt: #f8f9fa;    /* Alternate Surface */
  
  /* Text Colors */
  --text: #1c1915;           /* Primary Text - Dark Warm */
  --text-light: #5a5650;     /* Secondary Text */
  --text-muted: #8a8580;     /* Muted Text */
  --text-white: #ffffff;     /* White Text */
  
  /* UI Colors */
  --line: #d4d9d8;           /* Borders/Dividers */
  --dark: #1c1915;           /* Dark Background/Buttons */
  --accent: #8b7345;         /* Brand Accent - Bronze */
  --accent-soft: #b5a07a;    /* Soft Accent */
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(28, 25, 21, 0.06);
  --shadow-md: 0 8px 24px rgba(28, 25, 21, 0.08);
  --shadow-lg: 0 16px 48px rgba(28, 25, 21, 0.12);
  
  /* Typography */
  --font-display: 'Noto Serif SC', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;
  
  /* Layout */
  --container-max: 1400px;
  --header-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: #ffffff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ================================================
   Top Bar
   ================================================ */
.top-bar {
  background-color: var(--dark);
  color: var(--surface);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 0;
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-links a {
  color: var(--surface);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.top-links a:hover {
  opacity: 1;
  color: var(--surface);
}

.top-links-right {
  margin-left: auto;
}

/* ================================================
   Header
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(28, 25, 21, 0.08);
  transition: all 0.4s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

/* Menu Button */
.menu-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
}

/* Logo */
.logo {
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.logo img {
  width: min(200px, 22vw);
  height: auto;
  max-height: 55px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.search-toggle,
.account-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text);
  transition: color 0.3s ease;
}

.search-toggle:hover,
.account-link:hover {
  color: var(--accent);
}

/* Navigation */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(28, 25, 21, 0.06);
}

.main-nav .nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.main-nav .nav-link:hover::after {
  width: 100%;
}

.main-nav .nav-link:hover {
  color: var(--accent);
}

/* Mega Menu Overlay */
.mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(215, 228, 230, 0.65);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none;
}

.mega-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mega-menu {
  max-width: 800px;
  margin-top: 120px;
  padding: 2.5rem 3rem;
  background-color: var(--surface);
  box-shadow: 0 24px 64px rgba(28,25,21,0.18);
  border-radius: 8px;
  overflow: visible;
  pointer-events: auto;
}

.mega-menu-inner {
  display: flex;
  gap: 2.15rem;
  align-items: flex-start;
}

.mega-column {
  min-width: 200px;
  flex: 1;
  flex-shrink: 0;
}

.mega-column-image {
  min-width: 380px;
  flex: 0 0 380px;
  flex-shrink: 0;
}

.mega-column h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.mega-column ul li {
  margin-bottom: 1rem;
}

.mega-column ul a {
  font-size: 15px;
  color: var(--text-light);
  transition: color 0.3s ease;
  display: inline-block;
}

.mega-column ul a:hover {
  color: var(--accent);
}

.mega-image-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.mega-image {
  width: 380px;
  height: 280px;
  border-radius: 4px;
}

.mega-image-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white);
  background-color: rgba(28, 25, 21, 0.75);
  padding: 6px 12px;
  border-radius: 2px;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(215, 228, 230, 0.97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  width: 100%;
  max-width: 800px;
  padding: 3rem;
  text-align: center;
}

.search-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: color 0.3s ease;
}

.search-close:hover {
  color: var(--accent);
}

.search-form {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 2px solid var(--text);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

.search-input {
  flex: 1;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--text);
  background: transparent;
  border: none;
  outline: none;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-submit {
  color: var(--text);
  transition: color 0.3s ease;
}

.search-submit:hover {
  color: var(--accent);
}

.search-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.suggestion-tags a {
  font-size: 14px;
  color: var(--text-light);
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.suggestion-tags a:hover {
  background-color: var(--dark);
  color: var(--surface);
  border-color: var(--dark);
}

/* ================================================
   CINEMATIC HERO SECTION
   ================================================ */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: none !important;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(215, 228, 230, 0.3) 0%,
    rgba(215, 228, 230, 0.1) 40%,
    rgba(215, 228, 230, 0.6) 100%
  );
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 900px;
}

.hero-text-block {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-title-cinematic {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-subtitle-cinematic {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.button-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.button-hero-primary {
  background-color: var(--dark);
  color: var(--text-white);
}

.button-hero-primary:hover {
  background-color: var(--accent);
  color: var(--text-white);
}

.button-hero-secondary {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}

.button-hero-secondary:hover {
  background-color: var(--text);
  color: var(--text-white);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.5s;
}

.scroll-indicator span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--text-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ================================================
   NEW HERO SECTION
   ================================================ */
.new-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.new-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.new-hero-gradient {
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: 1;
}

.new-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
}

.new-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.new-hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.new-hero-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.new-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.new-hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.new-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.new-hero-actions .button-dark {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background-color: var(--dark);
  color: var(--text-white);
  transition: background-color 0.4s ease;
}

.new-hero-actions .button-dark:hover {
  background-color: var(--accent);
}

.new-hero-actions .button-outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--text);
  transition: all 0.4s ease;
}

.new-hero-actions .button-outline:hover {
  background-color: var(--text);
  color: var(--text-white);
}

/* ================================================
   PHILOSOPHY SECTION
   ================================================ */
.philosophy-section {
  padding: 8rem 0;
  background-color: #ffffff;
  text-align: center;
}

.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.philosophy-quote {
  position: relative;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.quote-author {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ================================================
   SIGNATURE SECTION
   ================================================ */
.signature-section {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
}

.signature-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.signature-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.signature-content {
  position: absolute;
  bottom: 8%;
  left: 8%;
  max-width: 550px;
  z-index: 2;
}

.signature-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.signature-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.signature-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}

.text-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: all 0.3s ease;
}

.text-cta-light:hover {
  gap: 1rem;
  color: var(--accent);
}

.text-cta-light::after {
  content: '→';
  transition: transform 0.3s ease;
}

.text-cta-light:hover::after {
  transform: translateX(4px);
}

/* ================================================
   BRAND STORY SECTION
   ================================================ */
.brand-story-section {
  padding: 0;
}

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.story-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
}

.story-image-large {
  grid-column: span 2;
  min-height: 500px;
  border-radius: 4px;
}

.story-image-accent {
  min-height: 250px;
  border-radius: 4px;
  margin-top: -100px;
}

.story-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 6rem 5rem 5rem;
  background-color: #ffffff;
}

.story-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.story-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 2rem;
}

.story-body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.text-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.text-cta-dark:hover {
  gap: 1rem;
  color: var(--accent);
}

.text-cta-dark::after {
  content: '→';
  transition: transform 0.3s ease;
}

.text-cta-dark:hover::after {
  transform: translateX(4px);
}

/* ================================================
   COLLECTIONS SECTION - Index 2 Editorial Style
   ================================================ */
.collections-section {
  padding: 0 0 var(--space-3xl);
  background: #ffffff;
  margin-top: -1px;
}

.collections-section .container {
  padding-top: 3rem;
}

.section-header.centered {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  max-width: calc(100% - 10px);
  margin: 0 auto;
}

.collection-item {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-alt);
  border-radius: 0;
  transition: transform 0.4s ease, opacity 0.35s ease;
}

/* Paginated items hidden by default, shown via JS */
.collection-item.paginated-hidden {
  display: none;
}

.collection-item:hover {
  transform: scale(1.01);
}

/* First 4 items: large 2x2 layout */
.collection-item:nth-child(-n+4) {
  grid-column: span 4;
  aspect-ratio: 1 / 1;
}

/* Items 5+: small cards, 4 per row */
.collection-item:nth-child(n+5) {
  grid-column: span 2;
  aspect-ratio: 5 / 8;
}

.collection-media {
  display: block;
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.35) 100%), var(--collection-image);
  background-position: center;
  background-size: cover;
  transition: transform 0.6s ease, background-image 0.5s ease;
  border-radius: 0;
}

.collection-item:hover .collection-media {
  transform: scale(1.04);
  background-image: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.35) 100%), var(--collection-hover-image, var(--collection-image));
}

.collection-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1.75rem 1.75rem;
  color: var(--text-white);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 2;
}

.collection-label .kicker {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 232, 198, 0.9);
  margin-bottom: 0.5rem;
}

.collection-label h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.collection-label span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
}

/* ================================================
   COLLECTIONS PAGINATION
   ================================================ */

.collections-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 2.5rem;
}

.collections-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--dark);
  color: var(--text-white);
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.collections-page-btn:hover {
  background-color: transparent;
  border-color: var(--dark);
  color: var(--dark);
}

.collections-page-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

.collections-page-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.collections-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--line);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.collections-dot:hover {
  background-color: var(--text-light);
}

.collections-dot.active {
  background-color: var(--dark);
  transform: scale(1.3);
}

/* ================================================
   ROOM INSPIRATION SECTION - Index 2 Style
   ================================================ */
.room-inspiration-section {
  padding: var(--space-3xl) 0;
  background-color: var(--surface);
  overflow: hidden;
}

.room-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 28px 0 36px;
}

.room-banner-image {
  width: calc(100% + 200px);
  aspect-ratio: 4 / 3;
  margin-left: -100px;
  margin-bottom: 3rem;
  background-size: cover !important;
  background-position: center !important;
  border-radius: 4px;
}

.room-tab {
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.room-tab:hover {
  border-color: var(--text);
  color: var(--text);
}

.room-tab.active,
.room-tab:hover.active {
  background-color: var(--dark);
  color: var(--text-white);
  border-color: var(--dark);
}

.room-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: none;
  margin: 0;
  padding: 0 40px;
}

.room-image-dining {
  aspect-ratio: 4/3;
  min-height: 650px;
  box-shadow: var(--shadow-lg);
}

/* Room Inspiration - Right Full-Height Image */
.room-image-accent {
  min-height: 700px;
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

/* Left content area: image + caption stacked */
.room-content-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.room-caption {
  padding: 2.5rem 3rem;
}

.room-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
}

.room-caption p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s ease;
}

.text-link:hover {
  gap: 0.75rem;
}

/* ================================================
   THE SPOTLIGHT SECTION
   ================================================ */
.spotlight-section {
  padding: var(--space-3xl) 0;
  background: #ffffff;
}

.spotlight-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: none;
  margin: 0;
  padding: 0 40px;
}

/* --- Image Slider Area --- */
.spotlight-visual {
  position: relative;
}

.spotlight-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.spotlight-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover !important;
  background-position: center !important;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(1.04);
}

.spotlight-image.active {
  opacity: 1;
  transform: scale(1);
}

.spotlight-badge {
  position: absolute;
  top: 2rem;
  left: -12px;
  z-index: 5;
}

.badge-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-white);
  background-color: var(--accent);
  padding: 10px 20px;
  border-radius: 2px;
}

/* Arrows */
.spotlight-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(28,25,21,0.08);
  border-radius: 50%;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  transition: all 0.3s ease;
}

.spotlight-visual:hover .spotlight-arrow { opacity: 1; }
.spotlight-arrow:hover { background: var(--surface); box-shadow: var(--shadow-sm); }

.spotlight-prev { left: -22px; }
.spotlight-next { right: -22px; }

/* --- Content Panels --- */
.spotlight-content {
  position: relative;
  padding-right: 2rem;
}

.spotlight-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0s 0.35s;
}

.spotlight-panel.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0s 0s;
}

.spotlight-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.spotlight-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

.spotlight-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
}

.spotlight-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0.5rem 0;
}

.detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
}

.detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 90px;
}

.detail-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.03em;
}

.spotlight-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 0.5rem;
}

/* Dots */
.spotlight-dots {
  display: flex;
  gap: 10px;
  margin-top: 2rem;
}

.spotlight-dot {
  width: 32px; height: 3px;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
  border-radius: 2px;
}

.spotlight-dot:hover { background: var(--text-muted); }
.spotlight-dot.active {
  background: var(--accent);
  width: 48px;
}

/* ================================================
   CRAFTSMANSHIP SECTION (With Video)
   ================================================ */
.craftsmanship-section {
  padding: 3rem 0;
  margin-top: -1px;
  margin-bottom: -1px;
  background-color: #ffffff;
}

.craftsmanship-grid {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 0 40px;
  transform: translateX(-110px);
}

.craftsmanship-visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  width: 1200px;
  height: 720px;
}

.craftsmanship-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.craftsmanship-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(215, 228, 230, 0.1), transparent);
  pointer-events: none;
}

.craftsmanship-text {
  max-width: 500px;
}

.craftsmanship-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.craftsmanship-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.craftsmanship-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* ================================================
   EXPLORER SECTION
   ================================================ */
.explorer-section {
  padding: var(--space-3xl) 0;
  background: #ffffff;
}

.explorer-header {
  text-align: center;
  margin-bottom: 4rem;
}

.explorer-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.explorer-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text);
}

.explorer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.explorer-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
}

.explorer-card-featured {
  aspect-ratio: auto;
  grid-row: span 1;
}

.explorer-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
}

.explorer-card:hover .explorer-image {
  transform: scale(1.05);
}

.explorer-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(28, 25, 21, 0.85), transparent);
}

.explorer-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.explorer-card-featured .explorer-info h3 {
  font-size: 2rem;
}

.explorer-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

/* ================================================
   ROOMS SECTION
   ================================================ */
.rooms-section {
  padding: var(--space-3xl) 0;
  background: #ffffff;
}

.rooms-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.rooms-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.rooms-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}

.rooms-header p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.rooms-showcase {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 0 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.room-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.room-card-large {
  aspect-ratio: auto;
  grid-row: span 1;
}

.rooms-showcase .room-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
}

.room-card:hover .room-image {
  transform: scale(1.05);
}

.room-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(28, 25, 21, 0.9), transparent);
}

.room-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.room-collection {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* ================================================
   PRODUCT REVIEW SECTION
   ================================================ */
.review-section {
  padding: var(--space-3xl) 0;
  background: #ffffff;
}

.review-slider {
  position: relative;
}

.review-slider-nav {
  display: none;
}

.review-dots {
  display: none;
}

.review-showcase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  background-color: var(--surface);
  border: 1px solid var(--line);
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 16px 48px rgba(28,25,21,0.12);
  transform: translateY(-4px);
  border-color: #c0c5c4;
}

.review-featured {
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.review-featured .review-image {
  height: 100%;
}

.review-featured .review-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.review-grid .review-card {
  min-height: 420px;
}

.review-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  transition: transform 0.8s ease;
}

.review-card:hover .review-image {
  transform: scale(1.05);
}

.review-content {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-stars {
  font-size: 13px;
  color: #b8a08a;
  letter-spacing: 2px;
}

.review-quote {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

.review-featured .review-quote {
  font-size: 18px;
  line-height: 1.7;
}

.review-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 0.5rem;
}

.review-author {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
}

.review-location {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.review-product {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: auto;
  align-self: flex-start;
}

/* ================================================
   JOURNAL / BLOG SECTION
   ================================================ */
.journal-section {
  padding: calc(var(--space-3xl) + 4rem) 0 calc(var(--space-3xl) * 2 + 6rem);
  background: #ffffff;
}

.journal-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.journal-header {
  position: sticky;
  top: 120px;
}

.journal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.journal-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  transition: gap 0.3s ease, color 0.3s ease;
}

.journal-all-link:hover {
  gap: 0.6rem;
  color: var(--accent);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.journal-card {
  background-color: var(--surface);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}

.journal-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: #c0c5c4;
}

.journal-image {
  width: 100%;
  flex: 2;
  min-height: 320px;
  transition: transform 0.8s ease;
}

.journal-card:hover .journal-image {
  transform: scale(1.04);
}

.journal-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.journal-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.35;
}

.journal-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}

.journal-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: auto;
  padding-top: 0.25rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.journal-read-link:hover {
  gap: 0.6rem;
  color: var(--accent);
}

/* Journal Mobile Slider Controls */
.journal-slider {
  position: relative;
}

.journal-slider-nav {
  display: none;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.journal-arrow {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.journal-arrow:hover {
  background: var(--dark);
  color: var(--surface);
  border-color: var(--dark);
}

.journal-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.journal-dot {
  width: 24px; height: 3px;
  background: var(--line);
  border: none; cursor: pointer; padding: 0;
  border-radius: 2px;
  transition: all 0.35s ease;
}

.journal-dot:hover { background: var(--text-muted); }
.journal-dot.active { background: var(--accent); width: 36px; }

/* ================================================
   TRADE BANNER
   ================================================ */
.trade-banner {
  padding: var(--space-3xl) 0;
  background-color: #ffffff;
}

.trade-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.trade-banner-content {
  padding-right: 2rem;
}

.trade-banner-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.trade-banner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.trade-banner-content > p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.trade-banner-features {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.trade-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trade-feature-icon {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.trade-feature-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.trade-banner-visual {
  position: relative;
}

.trade-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 36px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.button-dark {
  background-color: var(--dark);
  color: var(--text-white);
}

.button-dark:hover {
  background-color: var(--accent);
  color: var(--text-white);
}

.button-outline-dark {
  background-color: var(--surface);
  color: var(--text);
  border: 1px solid var(--text);
}

.button-outline-dark:hover {
  background-color: var(--accent);
  color: var(--text-white);
  border-color: var(--accent);
}

/* ================================================
   DESIGNER PARTNER SECTION
   ================================================ */
.designer-section {
  padding: calc(var(--space-3xl) * 2 + 6rem) 0 var(--space-3xl);
  background: #ffffff;
}

.designer-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  transform: translateX(-30px);
}

.designer-visual {
  position: relative;
}

.designer-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 520px;
}

.designer-img {
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.6s ease;
}

.designer-img-1 {
  border-radius: 6px 0 0 6px;
}

.designer-img-2 {
  border-radius: 0 6px 6px 0;
  margin-top: 3rem;
}

.designer-image-grid:hover .designer-img {
  transform: scale(1.02);
}

.designer-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.designer-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.designer-intro {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.designer-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.designer-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.benefit-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.designer-benefits strong {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 2px;
}

.designer-benefits span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ================================================
   NEWSLETTER SECTION
   ================================================ */
.newsletter-section {
  padding: var(--space-3xl) 0;
  background: #ffffff;
}

.newsletter-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.newsletter-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
  text-align: center;
}

.newsletter-content > p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  font-size: 14px;
  border: 1px solid var(--line);
  background-color: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background-color: #ffffff;
  color: var(--text);
  border-top: 1px solid var(--line);
}

.footer-top {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(28, 25, 21, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 4rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  font-size: 17px;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-contact-info p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-contact-info strong {
  color: var(--text);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 17px;
  letter-spacing: 0.05em;
}

.footer-address {
  margin-top: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.85rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(28, 25, 21, 0.15);
  border-radius: 50%;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--text);
  color: #ffffff;
  border-color: var(--text);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.footer-map {
  border-bottom: 1px solid rgba(28, 25, 21, 0.08);
}

.footer-map iframe {
  display: block;
  filter: grayscale(100%) invert(92%) contrast(90%);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 2.5rem;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--text);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1200px) {
  /* 全局防溢出 */
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .container {
    padding: 0 30px;
  }
  
  .collections-grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: calc(100% - 16px);
  }

  .collection-item:nth-child(-n+4) {
    grid-column: span 3;
    aspect-ratio: 1 / 1;
    min-height: auto;
  }

  .collection-item:nth-child(n+5) {
    grid-column: span 2;
    aspect-ratio: 5 / 8;
  }
  
  .craftsmanship-text {
    max-width: 100%;
    text-align: center;
  }
  
  .room-display {
    grid-template-columns: 1fr 1fr;
    padding: 0 30px;
  }

  .room-image-accent {
    min-height: 550px;
  }

  .room-image-dining {
    min-height: 340px;
  }
  
  .craftsmanship-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 30px;
    transform: none;
  }
  
  .craftsmanship-visual {
    order: -1;
    width: 100%;
    height: auto;
    aspect-ratio: 900 / 1200;
  }
  
  .room-caption {
    padding: 2rem;
    text-align: center;
  }
  
  .story-text-block {
    padding: 4rem 3rem 4rem 4rem;
  }
  
  .explorer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  
  .explorer-card-featured {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
  
  .rooms-showcase {
    grid-template-columns: 1fr 1fr;
    padding: 0 30px;
  }
  
  .room-card-large {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

  /* Review responsive */
  .review-featured .review-content {
    padding: 2.5rem 2rem;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Journal responsive */
  .journal-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .journal-header {
    position: static;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
  }

  .journal-title {
    margin-bottom: 0;
  }

  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Journal mobile slider */
  .journal-slider-track {
    display: flex;
    gap: 0;
  }

  .journal-slider-track .journal-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  /* Spotlight responsive */
  .spotlight-showcase {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 30px;
  }

  .spotlight-visual {
    order: -1;
  }

  .spotlight-badge {
    left: 20px;
  }

  .spotlight-content {
    padding-right: 0;
  }

  .spotlight-arrow { opacity: 1; }
  .spotlight-prev { left: 8px; }
  .spotlight-next { right: 8px; }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* ================================================
   LAPTOP / SMALL DESKTOP SCREEN ADAPTATION (≤1550px)
   4K → 笔记本屏幕 过渡断点
   ================================================ */
@media (max-width: 1550px) {
  /* 全局防溢出 */
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  /* 容器收紧 */
  :root {
    --container-max: 96vw;
  }

  .container {
    max-width: 96vw;
  }

  /* 导航栏间距缩小（配合 HTML 内联样式） */
  .main-nav {
    gap: 4rem;
  }

  /* Collections 网格适配 */
  .collections-grid {
    max-width: 100%;
    gap: 12px;
  }

  .collection-item:nth-child(-n+4) {
    grid-column: span 4;
    aspect-ratio: 1 / 1;
  }

  .collection-item:nth-child(n+5) {
    grid-column: span 2;
    aspect-ratio: 5 / 8;
  }

  /* Craftsmanship 视频区域缩小 */
  .craftsmanship-grid {
    gap: 2.5rem;
    transform: translateX(-40px);
  }

  .craftsmanship-visual {
    width: 100%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* Room banner 防止溢出 */
  .room-banner-image {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    aspect-ratio: 16 / 9;
  }

  .room-display {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 0 30px;
  }

  .room-image-accent {
    min-height: 500px;
  }

  .room-image-dining {
    min-height: 400px;
  }

  /* Designer 模块（配合 HTML 内联） */
  .designer-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    transform: none;
  }

  .designer-visual {
    flex: 0 1 600px;
    max-width: 100%;
  }

  .designer-content {
    flex: 1 1 400px;
    min-width: 0;
  }

  .designer-stagger-grid {
    gap: 1rem;
  }

  .designer-image-grid {
    height: 380px;
  }

  .designer-intro {
    max-width: 100%;
  }

  /* Spotlight 模块 */
  .spotlight-showcase {
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    padding: 0 30px;
  }

  .spotlight-section {
    padding: 4rem 0;
  }

  /* Review 模块 */
  .review-section {
    padding: 4rem 0;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .review-grid .review-card {
    min-height: 400px;
  }

  .review-content {
    padding: 1.2rem 1rem;
  }

  /* Journal 模块 */
  .journal-section {
    padding: 4rem 0;
  }

  .journal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .journal-image {
    min-height: 240px;
  }

  /* Trade banner */
  .trade-banner {
    padding: 4rem 0;
  }

  .trade-banner-inner {
    gap: 2.5rem;
    padding: 0 30px;
  }

  /* Newsletter */
  .newsletter-section {
    padding: 4rem 0;
  }

  /* Story section */
  .story-text-block {
    padding: 3rem 2.5rem;
  }

  .story-split {
    min-height: auto;
  }

  /* Rooms showcase */
  .rooms-showcase {
    padding: 0 30px;
    gap: 0.8rem;
  }

  /* Explorer grid */
  .explorer-grid {
    gap: 1rem;
  }

  /* Footer */
  .footer-top {
    padding: 3rem 0;
  }

  .footer-grid {
    gap: 2.5rem;
  }

  /* Buttons */
  .button {
    min-height: 46px;
    padding: 14px 28px;
  }

  /* Social */
  .social-section {
    overflow: hidden;
  }
}

@media (max-width: 960px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
  
  :root {
    --header-height: 70px;
  }
  
  .top-bar {
    padding: 8px 0;
    font-size: 10px;
  }
  
  .top-links {
    gap: 0.75rem;
  }
  
  .header-inner {
    padding: 2rem 0 !important;
  }
  
  .menu-btn {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1002;
    font-family: var(--font-display);
    font-size: 16.5px;
  }
  
  .logo img {
    max-height: 40px;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 100px 40px 40px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    justify-content: flex-start;
    gap: 0;
    z-index: 1001;
  }
  
  .main-nav.active {
    transform: translateX(0);
  }

  .menu-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .menu-close-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateX(-3px);
  }

  .main-nav .nav-link {
    display: block;
    padding: 1.25rem 0;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }
  
  .mega-menu-overlay {
    padding-top: 80px;
  }
  
  .mega-menu {
    width: 92%;
    max-width: 92%;
    margin-top: 90px;
    padding: 2rem 2rem;
    box-sizing: border-box;
    overflow: hidden;
  }

  .mega-menu-inner {
    gap: 1.5rem;
    flex-direction: row;
    align-items: center;
  }

  .mega-column-image {
    flex: 0 0 auto;
    width: 170px;
    height: 170px;
    min-width: 170px;
    max-width: 170px;
    overflow: hidden;
    border-radius: 4px;
    margin-left: -15px;
  }
  .mega-column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-content-wrapper {
    padding: 3rem 1.5rem;
  }
  
  .hero-title-cinematic {
    font-size: 2.75rem;
  }
  
  .hero-subtitle-cinematic {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  /* Collections */
  .collections-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: calc(100% - 20px);
  }

  .collection-item,
  .collection-item:nth-child(-n+4),
  .collection-item:nth-child(n+5) {
    grid-column: span 1 !important;
    aspect-ratio: 3 / 4 !important;
    transform: none !important;
    transition: none !important;
  }
  .collection-item:hover,
  .collection-item:focus,
  .collection-item:active {
    transform: none !important;
  }
  .collection-media {
    transform: none !important;
    transition: none !important;
  }
  .collection-item:hover .collection-media,
  .collection-item:focus .collection-media,
  .collection-item:active .collection-media {
    transform: none !important;
    background-image: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.35) 100%), var(--collection-image) !important;
  }
  
  /* Pagination buttons smaller on tablet */
  .collections-page-btn {
    width: 42px;
    height: 42px;
  }
  
  .collections-pagination {
    gap: 14px;
    margin-top: 2rem;
  }
  
  .room-inspiration-section,
  .craftsmanship-section {
    padding: 4rem 0;
  }
  
  .room-tabs {
    gap: 0.5rem;
  }

  .room-banner-image {
    width: calc(100% + 40px);
    height: 220px;
    margin-left: -20px;
    margin-bottom: 2rem;
  }
  
  .room-tab {
    padding: 10px 16px;
    font-size: 10px;
  }
  
  .room-display {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  
  .room-image-accent {
    display: none;
  }

  .room-content-left {
    flex-direction: row;
    gap: 1.5rem;
  }
  
  /* Signature Section */
  .signature-section {
    height: auto;
    min-height: auto;
  }
  
  .signature-content {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    padding: 3rem 2rem;
    background: #ffffff;
  }
  
  .signature-image {
    position: relative;
    height: 50vh;
    min-height: 400px;
  }
  
  .story-split {
    grid-template-columns: 1fr;
  }
  
  .story-visual {
    padding: 0;
  }
  
  .story-image-large {
    min-height: 300px;
    grid-column: span 1;
  }
  
  .story-image-accent {
    display: none;
  }
  
  .story-text-block {
    padding: 3rem 2rem;
  }
  
  .explorer-section,
  .rooms-section,
  .review-section,
  .spotlight-section,
  .trade-banner,
  .newsletter-section {
    padding: 4rem 0;
  }
  
  .trade-banner-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 20px;
  }
  
  .trade-banner-visual {
    order: -1;
  }
  
  .trade-banner-content {
    padding-right: 0;
    text-align: center;
  }
  
  .trade-banner-features {
    justify-content: center;
  }

  /* Designer section responsive */
  .designer-section {
    padding-top: var(--space-3xl);
  }
  .designer-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    transform: none;
  }

  .designer-image-grid {
    height: 360px;
    order: -1;
  }

  .designer-intro {
    max-width: 100%;
  }
  
  .rooms-showcase {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .room-card,
  .room-card-large {
    aspect-ratio: 16/9;
    grid-column: span 1;
  }

  /* Review responsive */
  .review-featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .review-featured .review-image {
    height: 260px;
  }

  .review-featured .review-content {
    padding: 2rem 1.5rem;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Journal responsive - 960px */
  .journal-layout {
    grid-template-columns: 1fr;
  }
  .journal-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    scrollbar-width: none;
    padding-bottom: 8px;
  }

  .journal-grid::-webkit-scrollbar {
    display: none;
  }

  .journal-card {
    flex: 0 0 92%;
    min-width: 92%;
    margin: 0 4%;
    box-sizing: border-box;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
  }
  .journal-image {
    min-height: 50vh;
    width: 100%;
  }
  .journal-body {
    position: relative;
    padding: 1.5rem 1.25rem 1.75rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .journal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .journal-slider-nav,
  .journal-dots {
    display: flex;
  }

  /* Designer responsive - 960px */
  .designer-image-grid {
    height: 280px;
    gap: 0.6rem;
  }

  .designer-img-2 {
    margin-top: 1.5rem;
  }

  .designer-benefits {
    gap: 1rem;
  }

  /* Spotlight responsive - 960px */
  .spotlight-showcase {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 20px;
  }

  .spotlight-visual {
    order: -1;
  }

  .spotlight-badge {
    left: 20px;
  }

  .spotlight-content {
    padding-right: 0;
  }

  .spotlight-arrow { opacity: 1; }
  .spotlight-prev { left: 8px; }
  .spotlight-next { right: 8px; }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Footer mobile font sizes - heading small, links large */
  .site-footer .footer-heading {
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 0.08em !important;
  }
  .site-footer .footer-links a {
    font-size: 18px !important;
    font-weight: 400 !important;
  }
  .site-footer .footer-contact-info p {
    font-size: 18px !important;
  }
  .site-footer .footer-contact-info strong {
    font-size: 18px !important;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .search-input {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
  
  .top-bar {
    font-size: 9px;
  }
  
  .top-links {
    gap: 0.5rem;
  }
  
  .logo img {
    max-height: 35px;
  }
  
  .main-nav .nav-link {
    font-size: 13px;
  }
  
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: calc(100% - 16px);
  }

  .collection-item:nth-child(-n+4) {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
    min-height: auto;
  }

  .collection-item:nth-child(n+5) {
    grid-column: span 1;
    aspect-ratio: 5 / 8;
  }
  
  .collections-pagination {
    gap: 12px;
    margin-top: 1.75rem;
  }
  
  .collections-page-btn {
    width: 40px;
    height: 40px;
  }
  
  .collections-dot {
    width: 8px;
    height: 8px;
  }
  
  .room-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-title-cinematic {
    font-size: 2.25rem;
  }
  
  .button-hero {
    padding: 14px 28px;
    font-size: 10px;
    width: 100%;
    max-width: 280px;
  }
  
  .trade-banner-features {
    gap: 2rem;
  }
  
  .trade-feature-icon {
    font-size: 1.5rem;
  }
  
  .trade-feature-text {
    font-size: 10px;
  }

  /* === New Hero mobile === */
  .new-hero {
    aspect-ratio: 5 / 6;
    height: auto;
    min-height: auto;
  }
  .new-hero-content {
    padding: 0 20px;
  }
  .new-hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .new-hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }
  .new-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .new-hero-actions .button-dark,
  .new-hero-actions .button-outline {
    width: auto;
    text-align: left;
  }

  /* === Container mobile === */
  .container {
    padding: 0 16px;
  }

  /* === Collections mobile === */
  .collections-grid {
    gap: 8px;
  }
  .collections-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .collection-item,
  .collection-item:nth-child(-n+4),
  .collection-item:nth-child(n+5) {
    grid-column: span 1 !important;
    aspect-ratio: 3 / 4 !important;
    transform: none !important;
    transition: none !important;
  }
  .collection-item:hover,
  .collection-item:focus,
  .collection-item:active {
    transform: none !important;
  }
  .collection-media {
    transform: none !important;
    transition: none !important;
  }
  .collection-item:hover .collection-media,
  .collection-item:focus .collection-media,
  .collection-item:active .collection-media {
    transform: none !important;
    background-image: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.35) 100%), var(--collection-image) !important;
  }

  /* === Room Inspirations mobile === */
  .room-display {
    padding: 0 12px;
  }
  .room-image-dining {
    aspect-ratio: 1 / 1;
    min-height: auto;
  }
  .room-banner-image {
    width: calc(100% + 24px);
    height: auto;
    margin-left: -12px;
    margin-right: -12px;
    aspect-ratio: 1 / 1;
  }

  /* === Spotlight mobile === */
  .spotlight-showcase {
    gap: 2rem;
    padding: 0 16px;
  }
  .spotlight-badge {
    left: 12px;
  }
  .spotlight-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .spotlight-details {
    flex-direction: column;
    gap: 0.75rem;
  }
  .detail-item {
    gap: 1rem;
    min-width: auto;
  }
  .spotlight-arrow {
    opacity: 1;
    width: 36px;
    height: 36px;
  }
  .spotlight-prev { left: 4px; }
  .spotlight-next { right: 4px; }

  /* === Craftsmanship mobile === */
  .craftsmanship-visual {
    aspect-ratio: 4 / 5;
  }

  /* === Review Section mobile === */
  .review-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    scrollbar-width: none;
  }
  .review-grid::-webkit-scrollbar {
    display: none;
  }
  .review-card {
    flex: 0 0 calc(100% - 2rem);
    min-width: calc(100% - 2rem);
    margin-right: 1rem;
    scroll-snap-align: start;
    min-height: auto;
    aspect-ratio: auto;
  }
  .review-card:last-child {
    margin-right: 0;
  }
  .review-card .review-image {
    height: 220px;
  }
  .review-quote {
    font-size: 14px;
  }
  .review-author {
    font-size: 12px;
  }
  .review-slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .review-arrow {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--text);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .review-arrow:hover {
    background: var(--dark);
    color: var(--surface);
    border-color: var(--dark);
  }
  .review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
  }
  .review-dot {
    width: 24px; height: 3px;
    background: var(--line);
    border: none; cursor: pointer; padding: 0;
    border-radius: 2px;
    transition: all 0.35s ease;
  }
  .review-dot:hover { background: var(--text-muted); }
  .review-dot.active { background: var(--accent); width: 36px; }

  /* === Explorer Grid mobile === */
  .explorer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .explorer-card-featured {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  /* === Trade Banner mobile === */
  .trade-banner-inner {
    gap: 2rem;
    padding: 0 16px;
  }
  .trade-banner-features {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .trade-banner-content h2 {
    font-size: 1.6rem;
  }
  .trade-banner-content > p {
    font-size: 0.9rem;
  }

  /* === Designer Section mobile === */
  .designer-label {
    margin-bottom: 0.75rem;
  }
  .designer-layout {
    gap: 2rem;
    transform: none;
  }
  .designer-image-grid {
    height: 220px;
  }
  .designer-img-2 {
    margin-top: 1rem;
  }
  .designer-title {
    font-size: 1.6rem;
  }

  /* === Journal Section mobile === */
  .journal-section {
    padding: 2.5rem 0 5rem;
  }
  .journal-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow: hidden;
  }
  .journal-header {
    gap: 0.5rem;
    padding-left: var(--container-padding, 1rem);
  }
  .journal-title {
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    line-height: 1.3;
    margin-bottom: 0.25rem;
  }
  .journal-all-link {
    font-size: 10px;
  }
  .journal-grid {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    scrollbar-width: none;
  }
  .journal-grid::-webkit-scrollbar {
    display: none;
  }
  .journal-card {
    flex: 0 0 92%;
    min-width: 92%;
    margin: 0 4%;
    box-sizing: border-box;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
  }
  .journal-image {
    min-height: 55vh;
    width: 100%;
  }
  .journal-body {
    position: relative;
    padding: 1.75rem 1.5rem 2rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: var(--text);
  }
  .journal-card-title {
    font-size: 0.95rem;
    color: var(--text);
  }
  .journal-excerpt {
    font-size: 0.88rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .journal-read-link {
    align-self: center;
    margin-top: auto;
  }
  .journal-card-date {
    font-size: 0.7rem;
  }

  /* === Newsletter mobile === */
  .newsletter-content h2 {
    font-size: 1.6rem;
  }

  /* === Footer mobile === */
  .footer-grid {
    gap: 2rem;
  }
  .site-footer .footer-heading {
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 0.08em !important;
  }
  .site-footer .footer-links a {
    font-size: 18px !important;
    font-weight: 400 !important;
  }
  .site-footer .footer-contact-info p {
    font-size: 18px !important;
  }
  .site-footer .footer-contact-info strong {
    font-size: 18px !important;
  }
  .footer-top {
    padding: 3rem 0;
  }

  /* === Mobile: 取消加粗 === */
  .section-header h2,
  .journal-title,
  .newsletter-content h2,
  .designer-title,
  .journal-card-title {
    font-weight: 400;
  }

  /* === Mobile: 菜单字体调整 === */
  .menu-btn {
    font-size: 14px;
  }
  .main-nav .nav-link {
    font-size: 19px;
    padding: 1.5rem 0;
  }

  /* === Mega Menu mobile === */
  .mega-menu {
    width: 94%;
    max-width: 94%;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
    overflow: hidden;
  }
  .mega-menu-inner {
    gap: 1rem;
    flex-direction: row;
    align-items: center;
  }
  .mega-column-image {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    min-width: 150px;
    max-width: 150px;
    overflow: hidden;
    border-radius: 4px;
    margin-left: -15px;
  }
  .mega-column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* === Search mobile === */
  .search-input {
    font-size: 20px;
  }

  /* === Section-header mobile === */
  .section-header h2 {
    font-size: 1.5rem;
  }
  .section-header.centered {
    padding: 0 8px;
  }

  /* === Social Section mobile === */
  .social-section {
    padding-bottom: 2.5rem;
  }

  /* === Room banner mobile === */
  .room-banner-image {
    width: calc(100% + 24px);
    height: auto;
    margin-left: -12px;
    margin-right: -12px;
    aspect-ratio: 1 / 1;
  }
}
