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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #2a2a2a;
  line-height: 1.6;
  background: #fafaf9;
}

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; font-weight: 500; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2a2a2a;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav a {
  color: #2a2a2a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}

.nav a:hover {
  color: #666;
}

.hero {
  height: 85vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fafaf9;
}

.hero-content h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #fafaf9;
  color: #2a2a2a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

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

.btn-full {
  width: 100%;
  text-align: center;
}

.featured-products {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #666;
  font-size: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.product-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.product-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s;
}

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

.product-image {
  aspect-ratio: 3/4;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.product-price {
  font-size: 1rem;
  font-weight: 400;
}

.philosophy {
  background: #fff;
  padding: 6rem 0;
}

.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-text h2 {
  margin-bottom: 1.5rem;
}

.philosophy-text p {
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.8;
}

.philosophy-image {
  aspect-ratio: 4/5;
  border-radius: 2px;
}

.testimonials {
  padding: 6rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.testimonial {
  padding: 2.5rem;
  background: #fff;
  border-radius: 2px;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #2a2a2a;
}

.author {
  font-size: 0.9rem;
  color: #666;
}

.footer {
  background: #2a2a2a;
  color: #fafaf9;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: #fafaf9;
}

.footer-col p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.collection-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.collection-hero h1 {
  margin-bottom: 1rem;
}

.collection-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.filter-bar {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  color: #2a2a2a;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #2a2a2a;
  color: #fafaf9;
  border-color: #2a2a2a;
}

.collection-grid-section {
  padding: 3rem 0 6rem;
}

.product-detail {
  padding: 3rem 0 6rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #2a2a2a;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.product-images {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.main-image {
  aspect-ratio: 3/4;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.image-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.thumb {
  aspect-ratio: 1;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.thumb:hover {
  opacity: 1;
}

.product-details h1 {
  margin-bottom: 1rem;
}

.product-price-large {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.product-description {
  margin-bottom: 2.5rem;
  line-height: 1.8;
  color: #555;
}

.product-notes,
.product-specs {
  margin-bottom: 2.5rem;
}

.product-notes h3,
.product-specs h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.product-notes p {
  margin-bottom: 0.5rem;
  color: #555;
}

.product-specs ul {
  list-style: none;
}

.product-specs li {
  padding: 0.5rem 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.product-meta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e8e8;
}

.product-meta p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.related-products {
  padding: 4rem 0;
  background: #fff;
}

.related-products h2 {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 3rem; }
  .product-grid,
  .product-grid-large { grid-template-columns: 1fr; }
  .philosophy-content,
  .product-layout { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .nav { gap: 1.5rem; }
}