/* ========================================
   SMEULDERS BADKAMERS — Stylesheet
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --dark:       #181614;
  --dark-2:     #232220;
  --gold:       #c4a97d;
  --gold-light: #dfc9a0;
  --warm-white: #faf8f5;
  --light:      #f0ece4;
  --mid:        #8a857e;
  --text:       #2e2b28;
  --radius:     2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
.serif { font-family: 'Cormorant Garamond', serif; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

/* ---- Utility ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 0.08; }

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: #b8996c; }

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #fff; }

.btn-dark {
  background: var(--dark);
  color: var(--warm-white);
}
.btn-dark:hover { background: var(--dark-2); }

.btn-light {
  background: var(--warm-white);
  color: var(--dark);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.btn:hover svg { transform: translateX(4px); }

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.5s; }


/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: #f5f0e8;
  padding: 18px 40px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

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

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--warm-white);
  letter-spacing: 0.06em;
  line-height: 1;
}

.nav-logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: var(--transition);
}
.nav-cta:hover { background: var(--gold); color: #fff; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--warm-white);
  transition: var(--transition);
}

/* Mobile nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: var(--warm-white);
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold); }


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

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(24, 22, 20, 0.72) 0%,
    rgba(24, 22, 20, 0.45) 50%,
    rgba(24, 22, 20, 0.30) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 40px;
  margin-left: 10%;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

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

.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 460px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.2); }
}


/* ========================================
   BRAND STRIP
   ======================================== */
.brand-strip {
  background: var(--dark);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  overflow: hidden;
}

.brand-strip-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.brand-strip-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 60px;
}

.brand-strip-item::after {
  content: '·';
  color: var(--gold);
  font-size: 20px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ========================================
   INTRO SECTION
   ======================================== */
.intro {
  padding: 120px 0;
  overflow: hidden;
}

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

.intro-text { padding-right: 20px; }

.intro-text h2 {
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--dark);
}

.intro-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.intro-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 20px;
}

.intro-text p:last-of-type { margin-bottom: 40px; }

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--light);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}

.stat-number span {
  font-size: 28px;
  color: var(--gold);
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-top: 6px;
  text-transform: uppercase;
}

.intro-image {
  position: relative;
}

.intro-image-main {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center;
}

.intro-image-accent {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 8px solid var(--warm-white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intro-badge {
  position: absolute;
  top: 32px;
  right: -20px;
  background: var(--gold);
  color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(196, 169, 125, 0.4);
}

.intro-badge .badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.intro-badge .badge-text {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
}


/* ========================================
   COLLECTIONS
   ======================================== */
.collections {
  background: var(--dark);
  padding: 120px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 16px;
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-header p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

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

.collection-card {
  position: relative;
  height: 560px;
  overflow: hidden;
  cursor: pointer;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.collection-card:hover img { transform: scale(1.07); }

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,22,20,0.9) 0%, rgba(24,22,20,0.1) 60%);
  transition: background 0.4s;
}

.collection-card:hover .collection-overlay {
  background: linear-gradient(to top, rgba(24,22,20,0.95) 0%, rgba(24,22,20,0.2) 70%);
}

.collection-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
}

.collection-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}

.collection-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--gold);
}

.collection-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.collection-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.collection-card:hover .collection-desc {
  max-height: 100px;
}

.collection-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}

.collection-card:hover .collection-arrow {
  opacity: 1;
  transform: translateY(0);
}

.collection-arrow svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.collection-card:hover .collection-arrow svg {
  transform: translateX(4px);
}


/* ========================================
   GALLERY
   ======================================== */
.gallery {
  padding: 120px 0;
  background: var(--warm-white);
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.gallery-header h2 {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 300;
  color: var(--dark);
}
.gallery-header h2 em { font-style: italic; color: var(--gold); }

.gallery-filter {
  display: flex;
  gap: 8px;
}

.filter-btn {
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  color: var(--mid);
  transition: all 0.3s;
  border-radius: 2px;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-grid {
  columns: 4;
  column-gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,22,20,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.gallery-item-overlay svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.gallery-load-more {
  text-align: center;
  margin-top: 48px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 32px;
  right: 40px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 32px;
  transition: color 0.3s;
}
.lightbox-close:hover { color: #fff; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { color: #fff; }
.lightbox-prev svg, .lightbox-next svg { width: 32px; height: 32px; }

.lightbox-counter {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
}


/* ========================================
   WHY SMEULDERS
   ======================================== */
.why {
  background: var(--light);
  padding: 120px 0;
  overflow: hidden;
}

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

.why-image-wrap {
  position: relative;
}

.why-image-main {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.why-image-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 220px;
  height: 280px;
  object-fit: cover;
  border: 6px solid var(--light);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.why-content h2 {
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 24px;
}

.why-content h2 em { font-style: italic; color: var(--gold); }

.why-content > p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 48px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--warm-white);
  border: 1px solid rgba(196,169,125,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.why-feature-icon svg { width: 20px; height: 20px; }

.why-feature-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-feature-text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--mid);
}


/* ========================================
   SHOWROOM CTA
   ======================================== */
.showroom-cta {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.showroom-cta-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
}

.showroom-cta:hover .showroom-cta-bg { transform: scale(1.03); }

.showroom-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24,22,20,0.88) 40%, rgba(24,22,20,0.2) 100%);
}

.showroom-cta-content {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  margin-left: 10%;
  max-width: 560px;
}

.showroom-cta-content h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.showroom-cta-content h2 em { font-style: italic; color: var(--gold-light); }

.showroom-cta-content p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 40px;
}

.showroom-info {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.showroom-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.showroom-info-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.showroom-info-value {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}


/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  background: var(--dark);
  padding: 100px 0;
  overflow: hidden;
}

.testimonials .section-header { margin-bottom: 56px; }

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  min-width: 380px;
  flex-shrink: 0;
  transition: border-color 0.3s;
}

.testimonial-card:hover { border-color: rgba(196,169,125,0.3); }

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
}

.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 28px;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.testimonial-location {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}


/* ========================================
   CONTACT
   ======================================== */
.contact {
  padding: 120px 0;
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info h2 {
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 20px;
}

.contact-info h2 em { font-style: italic; color: var(--gold); }

.contact-info > p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-detail-icon svg { width: 18px; height: 18px; }

.contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-detail-value {
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
}

.contact-hours {
  padding: 24px;
  background: var(--light);
  border-left: 3px solid var(--gold);
}

.contact-hours h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
}

.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--text); font-weight: 400; }

/* Contact Form */
.contact-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 32px;
}

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

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

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--light);
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  border-radius: var(--radius);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a857e' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--dark);
  color: var(--warm-white);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s;
  border-radius: var(--radius);
  margin-top: 8px;
}

.form-submit:hover { background: var(--gold); }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
  background: var(--light);
}

.form-success.show { display: block; }

.form-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 15px;
  color: var(--mid);
}


/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand { }

.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.footer-logo-sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

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

.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}

.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--gold); }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  font-weight: 300;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .intro-grid { gap: 48px; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card { height: 420px; }
  .collection-desc { max-height: 60px; }
  .why-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
  .gallery-grid { columns: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { margin-left: 0; padding: 0 24px; }
  .hero-title { font-size: clamp(40px, 10vw, 64px); }

  .intro-grid { grid-template-columns: 1fr; }
  .intro-image-accent { display: none; }
  .intro-badge { display: none; }
  .intro-image-main { height: 400px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-image-secondary { display: none; }
  .why-image-main { height: 360px; }

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

  .gallery-grid { columns: 2; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .showroom-info { flex-direction: column; gap: 16px; }
  .testimonials-track { overflow-x: auto; -webkit-overflow-scrolling: touch; }

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

  .brand-strip { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .hero-actions { flex-direction: column; }
  .collections-grid { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
}
