:root {
  --bg: #F7F3EC;
  --text: #3D3530;
  --accent: #8B7355;
  --muted: #B5A898;
  --white: #FDFAF5;
  --border: #DDD5C8;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

/* Nav */
header {
  padding: 2rem 4rem;
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  text-decoration: none;
  color: var(--text);
  letter-spacing: 0.1em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav ul a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  text-align: center;
  padding: 8rem 2rem 6rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.tagline {
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 300;
}

/* About */
.about {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Carousel */
.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  overflow: hidden;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: 2px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: var(--bg);
}

.carousel-btn.prev { left: 2.5rem; }
.carousel-btn.next { right: 2.5rem; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.dot.active {
  background: var(--accent);
}

/* Products */
.products {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.products h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}

.product-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.product-card .size {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.product-card .description {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text);
}

.custom-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Contact */
.contact {
  background: var(--white);
  text-align: center;
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.contact p {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.contact a {
  display: block;
  font-size: 1.1rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.contact a:hover {
  color: var(--text);
}

.location {
  font-size: 0.85rem !important;
  color: var(--muted) !important;
}

/* Footer */
footer {
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}

footer p,
footer a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
}

footer nav {
  display: flex;
  gap: 2rem;
}

footer a:hover {
  color: var(--text);
}

/* Policy pages */
.policy {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.policy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.policy .updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.policy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.policy p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.policy a {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 1.5rem 1.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 2.5rem;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
  }
}
