/* ============================================================
   CLAUDENT WHOLESALE ASSETS — STYLES
   You shouldn't need to edit this file to change content.
   Colors live in the :root block below if you want to retheme.
   ============================================================ */

/* La Fabrique Pro — Claudent brand font (same files as claudent.com) */
@font-face {
  font-family: "La Fabrique";
  src: url("../assets/fonts/LaFabrique-Light-Pro.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "La Fabrique";
  src: url("../assets/fonts/LaFabrique-Regular-Pro.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "La Fabrique";
  src: url("../assets/fonts/LaFabrique-SemiBold-Pro.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "La Fabrique";
  src: url("../assets/fonts/LaFabrique-Bold-Pro.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1a1a18;          /* near-black text */
  --paper: #fbfaf7;        /* warm off-white background */
  --accent: #4a5d43;       /* claudent green */
  --accent-soft: #eef0ea;  /* pale green wash */
  --rust: #a0522d;         /* brown/rust accent */
  --line: #e2ded6;         /* hairline borders */
  --muted: #7c786f;        /* secondary text */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "La Fabrique", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.serif {
  font-family: "La Fabrique", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
}

a { color: inherit; }

/* ---- Header ---- */
header {
  padding: 28px 5vw 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: sticky;
  top: 0;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(6px);
  z-index: 10;
}

.wordmark {
  font-family: "La Fabrique", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  text-decoration: none;
}

.wordmark span { color: var(--accent); }

.wordmark img {
  height: 44px;
  width: auto;
  display: block;
}

nav { display: flex; gap: 26px; flex-wrap: wrap; }

nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

nav a:hover, nav a.active { color: var(--ink); border-bottom-color: var(--ink); }

/* ---- Hero ---- */
.hero {
  padding: 72px 5vw 64px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero .tagline {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  margin-bottom: 26px;
}

.hero p.intro { color: var(--muted); font-size: 16px; }

/* ---- Season cards ---- */
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  padding: 0 5vw 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.season-card {
  text-decoration: none;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.season-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(26,26,24,0.09); }

.season-card .img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--accent-soft);
}

.season-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.season-card .card-body { padding: 20px 22px 24px; }

.season-card h3 { font-size: 21px; margin-bottom: 6px; }

.season-card .season-id {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10.5px;
  color: var(--rust);
  margin-bottom: 8px;
}

.season-card p { color: var(--muted); font-size: 13.5px; }

.season-card .view {
  margin-top: 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

/* ---- Season page ---- */
.season-head {
  padding: 60px 5vw 36px;
  max-width: 1300px;
  margin: 0 auto;
}

.season-head .season-id {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  color: var(--rust);
  margin-bottom: 10px;
}

.season-head h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }

.season-head p { color: var(--muted); max-width: 640px; }

.doc-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.btn {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11.5px;
  font-weight: 600;
  padding: 13px 26px;
  border: 1px solid var(--ink);
  transition: background 0.15s, color 0.15s;
}

.btn.primary { background: var(--ink); color: var(--paper); }
.btn.primary:hover { background: var(--accent); border-color: var(--accent); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }

/* ---- Product grid ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 34px 26px;
  padding: 30px 5vw 90px;
  max-width: 1300px;
  margin: 0 auto;
}

.product { position: relative; }

.product .frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--accent-soft);
  position: relative;
}

.product img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product img.on { opacity: 1; }

.product .frame:hover .arrows { opacity: 1; }

.arrows {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
}

.arrows button {
  background: rgba(251,250,247,0.85);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}

.arrows button:hover { background: var(--paper); }

.dots {
  position: absolute;
  bottom: 10px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 5px;
  z-index: 2;
}

.dots i {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(26,26,24,0.25);
}

.dots i.on { background: var(--ink); }

.product h4 { margin-top: 13px; font-size: 15px; font-weight: 500; }

.product .code {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.product .dl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  display: inline-block;
  margin-top: 8px;
}

.product .dl:hover { color: var(--rust); border-color: var(--rust); }

/* ---- Section titles ---- */
.section-title {
  text-align: center;
  padding: 26px 5vw 6px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  color: var(--muted);
}

.rule {
  width: 42px; height: 1px;
  background: var(--rust);
  margin: 12px auto 0;
}

/* ---- Contact ---- */
.contact {
  background: var(--accent-soft);
  padding: 66px 5vw 74px;
  text-align: center;
}

.contact h2 { font-size: 28px; margin-bottom: 30px; }

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 54px;
  flex-wrap: wrap;
}

.contact-cards .person .name { font-size: 17px; }

.contact-cards .person .role {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10.5px;
  color: var(--muted);
  margin: 4px 0 6px;
}

.contact-cards .person a { color: var(--accent); text-decoration: none; }
.contact-cards .person a:hover { text-decoration: underline; }

/* ---- Footer ---- */
footer {
  padding: 34px 5vw 44px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  border-top: 1px solid var(--line);
}

footer .fm {
  font-family: "La Fabrique", Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  header { justify-content: center; text-align: center; }
  .hero { padding: 48px 6vw 44px; }
}
