* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html {
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background-color: #fff;
  overflow-x: clip;
}

/* PROMO BANNER */
.promo-banner {
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #f0ede8;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #666;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1a1a1a;
}

/* HERO */
#hero {
  padding: 0 40px;
  background-color: #faf9f7;
  overflow: hidden;
}

.hero-split {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  min-height: 90vh;
}

.hero-text {
  flex: 1;
}

.hero-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b8956a;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 15px;
  color: #888;
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  background-color: #1a1a1a;
  color: #fff;
  padding: 14px 36px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid #1a1a1a;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #1a1a1a;
}

.btn-outline:hover {
  background-color: #1a1a1a;
  color: #fff;
}

.hero-image {
  flex: 1;
  height: 90vh;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* SECTION SHARED */
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b8956a;
  margin-bottom: 12px;
}

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

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: #1a1a1a;
  letter-spacing: 2px;
}

/* COLLECTIONS */
#collections {
  padding: 100px 40px;
  background-color: #fff;
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.collection-card {
  position: relative;
  overflow: hidden;
}

.collection-card.tall {
  grid-row: span 2;
}

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

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

.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
}

.collection-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}

.collection-link {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.collection-link:hover {
  border-color: #fff;
}

/* PRODUCTS */
#featured {
  padding: 100px 40px;
  background-color: #faf9f7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  cursor: pointer;
}

.product-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  background-color: #f0ede8;
}

.product-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
}

.product-badge.sale {
  background-color: #b8956a;
}

.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  background-color: rgba(255,255,255,0.95);
  text-align: center;
}

.product-card:hover .product-actions {
  transform: translateY(0);
}

.product-btn {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.product-info {
  padding: 0 4px;
}

.product-category {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b8956a;
  display: block;
  margin-bottom: 6px;
}

.product-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.product-price {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 500;
}

.product-price s {
  color: #bbb;
  font-weight: 300;
  margin-left: 6px;
}

/* ABOUT */
#about {
  padding: 100px 40px;
  background-color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-images {
  flex: 1;
  position: relative;
  height: 600px;
}

.about-img-main {
  width: 75%;
  height: 500px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.about-img-secondary {
  width: 55%;
  height: 300px;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 6px solid #fff;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  padding: 30px 0;
  border-top: 1px solid #f0ede8;
  border-bottom: 1px solid #f0ede8;
}

.value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  flex: 1;
}

.value span {
  font-size: 28px;
}

.value p {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  margin: 0;
  line-height: 1.4;
}

/* NEWSLETTER */
#newsletter {
  padding: 80px 40px;
  background-color: #1a1a1a;
  text-align: center;
}

.newsletter-container {
  max-width: 560px;
  margin: 0 auto;
}

#newsletter h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

#newsletter p {
  font-size: 14px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background-color: #2a2a2a;
  border: 1px solid #333;
  border-right: none;
  color: #fff;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #666;
}

.newsletter-form .btn {
  border-left: none;
  white-space: nowrap;
  background-color: #b8956a;
  border-color: #b8956a;
}

.newsletter-form .btn:hover {
  background-color: #a8855a;
}

/* TESTIMONIALS */
#testimonials {
  padding: 100px 40px;
  background-color: #faf9f7;
  text-align: center;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.testimonial-card {
  background-color: #fff;
  padding: 40px 30px;
  text-align: left;
  border-bottom: 3px solid #b8956a;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.stars {
  color: #b8956a;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
}

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

.client-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #f0ede8;
  color: #b8956a;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client h4 {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.client span {
  color: #bbb;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CONTACT */
#contact {
  padding: 100px 40px;
  background-color: #fff;
}

.contact-container {
  display: flex;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info > p {
  font-size: 15px;
  color: #888;
  line-height: 1.9;
  margin-bottom: 40px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.info-icon {
  font-size: 22px;
  margin-top: 2px;
}

.info-item h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b8956a;
  margin-bottom: 6px;
}

.info-item p {
  font-size: 14px;
  color: #888;
  line-height: 1.8;
}

.contact-map {
  flex: 1;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

/* FOOTER */
footer {
  background-color: #faf9f7;
  border-top: 1px solid #f0ede8;
  padding: 60px 40px 20px;
}

.footer-top {
  display: flex;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.footer-brand {
  flex: 2;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: #999;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e8e4df;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.footer-links {
  flex: 1;
}

.footer-links h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 20px;
}

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

.footer-links ul li a {
  font-size: 13px;
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #1a1a1a;
}

.footer-bottom {
  border-top: 1px solid #f0ede8;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #bbb;
  line-height: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }

  .hero-split {
    flex-direction: column;
    min-height: auto;
    padding: 60px 0;
    gap: 40px;
  }

  .hero-image {
    height: 400px;
    width: 100%;
  }

  .hero-text h1 {
    font-size: 42px;
  }

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

  .collection-card.tall {
    grid-row: span 1;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .about-container {
    flex-direction: column;
  }

  .about-images {
    width: 100%;
    height: 300px;
  }

  .about-img-main {
    width: 100%;
    height: 300px;
    position: relative;
    top: auto;
    left: auto;
  }

  .about-img-secondary {
    display: none;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-right: 1px solid #333;
    border-bottom: none;
  }

  .testimonials-grid {
    grid-template-columns: unset;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
  }

  .testimonial-card {
    min-width: 280px;
    scroll-snap-align: start;
  }

  .contact-container {
    flex-direction: column;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-text h1 {
    font-size: 34px;
  }

  #collections, #featured, #about, #newsletter, #testimonials, #contact {
    padding: 60px 16px;
  }

  footer {
    padding: 40px 16px 20px;
  }
}