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

:root {
  --cream: #F7F4EE;
  --sand: #E8E1D4;
  --warm-mid: #C4B49A;
  --bark: #7A6349;
  --deep: #3D2E1F;
  --text: #2E2419;
  --muted: #8C7A68;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

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

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,244,238,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--deep); }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: var(--deep);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--bark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border: 1px solid var(--warm-mid);
  color: var(--bark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  margin-left: 1rem;
}

.btn-outline:hover { border-color: var(--bark); color: var(--deep); transform: translateY(-1px); }

/* SECTION */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--deep);
}

/* RETAILERS */
.retailers {
  background: var(--sand);
  padding: 6rem 2rem;
}

.retailers-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.retailers-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--deep);
  margin-bottom: 0.75rem;
}

.retailers-inner > p {
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 0.92rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.retailer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

.retailer-group h3 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--warm-mid);
}

.retailer-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.retailer-flag { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }

.retailer-item a {
  font-size: 0.92rem;
  color: var(--deep);
  text-decoration: none;
  border-bottom: 1px solid var(--warm-mid);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.retailer-item a:hover { color: var(--bark); border-color: var(--bark); }

.retailer-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 1.5rem;
  text-align: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* CONTACT */
.contact {
  background: var(--deep);
  padding: 6rem 2rem;
  text-align: center;
  color: var(--cream);
}

.contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--cream);
}

.contact p {
  color: rgba(247,244,238,0.65);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

.contact a.email-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--warm-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,180,154,0.4);
  transition: color 0.2s;
}

.contact a.email-link:hover { color: var(--cream); }

.contact-meta {
  margin-top: 3rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(247,244,238,0.35);
}

/* FOOTER */
footer {
  background: #1C1309;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(247,244,238,0.5);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(247,244,238,0.7); }

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

th {
  text-align: left;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark);
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--warm-mid);
}

td {
  padding: 0.45rem 0.75rem;
  color: var(--text);
  border-bottom: 1px solid var(--sand);
}

tr:last-child td { border-bottom: none; }

/* MOBILE */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .btn-outline { display: none; }
  .retailer-columns { grid-template-columns: 1fr; gap: 2rem; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
