/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #2c2c2c;
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a1a1a;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2c2c2c;
  transition: color 0.2s;
}
.nav-links a:hover { color: #b8956a; }
.nav-contact {
  font-size: 12px;
  letter-spacing: 1px;
  color: #b8956a;
  font-weight: 500;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: #2c2c2c;
  display: block;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slides { width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
}
.hero-content {
  position: absolute;
  bottom: 80px; left: 60px;
  color: #fff;
}
.hero-sub {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.85;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 2px;
}
.hero-title em { font-style: italic; }
.hero-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 32px;
  border: 1px solid #fff;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.3s, color 0.3s;
}
.hero-cta:hover { background: #fff; color: #2c2c2c; }
.hero-dots {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
}
.hero-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.hero-dots span.active { background: #fff; }

/* ===== SECTIONS COMMON ===== */
section { padding: 80px 48px; }
.section-tag {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b8956a;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-body {
  font-size: 13.5px;
  line-height: 1.9;
  color: #555;
  max-width: 560px;
}
.btn-outline {
  display: inline-block;
  margin-top: 28px;
  padding: 11px 30px;
  border: 1px solid #2c2c2c;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: #2c2c2c; color: #fff; }

/* ===== ABOUT SECTION ===== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: #faf9f7;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.about-img-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 520px;
}
.about-img-main img,
.about-img-sm img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-sm { height: 250px; }

/* ===== COLLECTION SLIDER ===== */
.collection-section { padding: 60px 0; }
.collection-header {
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.collection-track {
  display: flex;
  gap: 16px;
  padding: 0 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.collection-track::-webkit-scrollbar { display: none; }
.collection-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
}
.collection-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collection-card:hover img { transform: scale(1.03); }
.collection-card-wrap { overflow: hidden; }
.slider-arrows { display: flex; gap: 12px; align-items: center; }
.arrow-btn {
  width: 42px; height: 42px;
  border: 1px solid #2c2c2c;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s, color 0.2s;
}
.arrow-btn:hover { background: #2c2c2c; color: #fff; }

/* ===== HAUTE COUTURE ===== */
.hc-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hc-image { height: 600px; }
.hc-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== LIMITED SECTION ===== */
.limited-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #1a1a1a;
  color: #fff;
}
.limited-image { height: 600px; }
.limited-image img { width: 100%; height: 100%; object-fit: cover; }
.limited-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}
.limited-content .section-tag { color: #c9a97a; }
.limited-content .section-body { color: #bbb; }
.limited-content .btn-outline { border-color: #fff; color: #fff; }
.limited-content .btn-outline:hover { background: #fff; color: #1a1a1a; }

/* ===== FEATURED COLLECTIONS ===== */
.featured-section { background: #faf9f7; }
.featured-section .section-title { text-align: center; }
.featured-section .section-tag { text-align: center; display: block; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.featured-item { position: relative; overflow: hidden; cursor: pointer; }
.featured-item img {
  width: 100%; height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-item:hover img { transform: scale(1.06); }
.featured-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 24px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
}
.featured-item-label h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
}

/* ===== SERVICES ===== */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card { position: relative; overflow: hidden; cursor: pointer; }
.service-card img {
  width: 100%; height: 340px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.5s, filter 0.5s;
}
.service-card:hover img { transform: scale(1.05); filter: brightness(0.7); }
.service-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.service-label span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.service-label h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding: 0 16px;
  letter-spacing: 1px;
}

/* ===== SHOWROOM BANNER ===== */
.showroom-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.showroom-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.showroom-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  gap: 12px;
}
.showroom-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.showroom-info p { font-size: 13px; letter-spacing: 1.5px; color: rgba(255,255,255,0.8); }
.showroom-info a {
  margin-top: 16px;
  padding: 10px 28px;
  border: 1px solid #fff;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.3s, color 0.3s;
}
.showroom-info a:hover { background: #fff; color: #1a1a1a; }

/* ===== FOOTER ===== */
footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 64px 48px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { color: #e8e0d5; margin-bottom: 16px; }
.footer-brand p { font-size: 12.5px; line-height: 1.8; color: #888; max-width: 260px; }
.footer-socials { display: flex; gap: 14px; margin-top: 20px; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #888;
  transition: border-color 0.2s, color 0.2s;
}
.footer-socials a:hover { border-color: #b8956a; color: #b8956a; }
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8e0d5;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 12.5px; color: #888; transition: color 0.2s; }
.footer-col ul li a:hover { color: #b8956a; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-contact-item p { font-size: 12.5px; color: #888; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid #2c2c2c;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: #555;
}

/* ===== FLOATING PHONE ===== */
.float-phone {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  background: #b8956a;
  color: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(184,149,106,0.4);
  transition: transform 0.2s;
}
.float-phone:hover { transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-section, .hc-section, .limited-section { grid-template-columns: 1fr; }
  .limited-image { height: 400px; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .services-intro { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  header { padding: 16px 24px; }
  .nav-links, .nav-contact { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 24px; }
  .hero-content { left: 24px; bottom: 60px; }
  .about-images { display: block; }
  .about-img-main { height: 320px; margin-bottom: 12px; }
  .collection-header { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .collection-track { padding: 0 24px; }
  .collection-card { flex: 0 0 280px; }
  .collection-card img { height: 380px; }
  .featured-grid, .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
