/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --bg: #ffffff;
  --bg-soft: #f7f5f1;
  --ink: #0e0e0e;
  --soft: #5a5a5a;
  --mute: #8e8a85;
  --line: #e6e3dd;
  --gold: #a98554;
  --gold-soft: #d9c8a6;
}

body {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.55;
}

img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.kicker {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 16px;
}

/* ============ ANNONCE ============ */
.announce {
  background: var(--ink);
  color: #d9d3c4;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.announce .dot { opacity: 0.4; }

/* ============ NAV ============ */
.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 18px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 16px; }
.nav-right { justify-content: flex-end; }
.nav-burger { display: none; flex-direction: column; gap: 4px; padding: 4px; }
.nav-burger span { width: 22px; height: 1.5px; background: var(--ink); display: block; }
.nav-menu { display: flex; gap: 28px; font-size: 0.85rem; font-weight: 500; }
.nav-menu a { padding: 6px 0; position: relative; transition: color 0.3s; }
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 0.4s;
}
.nav-menu a:hover::after { width: 100%; }
.nav-journal {
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  color: var(--gold);
}
.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
}
.icon-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: opacity 0.3s;
}
.icon-btn:hover { opacity: 0.6; }
.icon-btn svg { width: 18px; height: 18px; }
.icon-cart i {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.6rem;
  font-style: normal;
  width: 14px; height: 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 600;
}
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 88vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-img { position: absolute; inset: 0; }
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out infinite alternate;
}
@keyframes heroZoom {
  to { transform: scale(1.12); }
}
.hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
}
.hero-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 48px;
  color: #fff;
  z-index: 2;
}
.hero-overlay .kicker { color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.hero-overlay h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 0.95;
}
.hero-overlay p {
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 480px;
  color: rgba(255,255,255,0.85);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.btn-dark { background: #fff; color: var(--ink); }
.btn-dark:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ============ VALUES ============ */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.value {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid var(--line);
}
.value:last-child { border-right: none; }
.value svg { width: 28px; height: 28px; stroke: var(--ink); flex-shrink: 0; }
.value strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.value span {
  font-size: 0.78rem;
  color: var(--soft);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .values { grid-template-columns: 1fr 1fr; }
  .value:nth-child(2) { border-right: none; }
  .value:nth-child(1), .value:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 500px) {
  .values { grid-template-columns: 1fr; }
  .value { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ============ CAT ============ */
.cat {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--line);
}
.cat-head {
  padding: 0 48px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}
.cat-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 10px;
}
.cat-head p {
  color: var(--soft);
  font-size: 1rem;
  max-width: 480px;
}
.cat-actions { display: flex; align-items: center; gap: 32px; }
.link-underline {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: padding-right 0.3s;
}
.link-underline:hover { padding-right: 8px; }
.carousel-nav { display: flex; gap: 8px; }
.carousel-nav button {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.carousel-nav button:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ============ CAROUSEL ============ */
.carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 48px 20px;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel-track {
  display: flex;
  gap: 24px;
}
.carousel.single .carousel-track { justify-content: flex-start; }

/* ============ CARD ============ */
.card {
  flex: 0 0 340px;
  scroll-snap-align: start;
}
.card.card-wide { flex: 0 0 720px; max-width: 100%; }
.card.card-accessory { flex: 0 0 280px; }
.card a { display: block; }
.card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-soft);
}
.card.card-wide .card-img { aspect-ratio: 16/10; }
.card.card-accessory .card-img { aspect-ratio: 1/1; }
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.card:hover .card-img img { transform: scale(1.04); }
.badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  font-weight: 600;
  z-index: 2;
}
.badge-soft { background: var(--gold); color: var(--bg); }
.card-info { padding: 20px 4px 0; }
.card-ref {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--mute);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 6px;
}
.card-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.card.card-wide .card-info h3 { font-size: 2rem; }
.card-info p {
  color: var(--soft);
  font-size: 0.88rem;
  margin-bottom: 18px;
  line-height: 1.55;
}
.card-specs {
  list-style: none;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.card-specs li {
  font-size: 0.82rem;
  color: var(--soft);
  padding-left: 16px;
  position: relative;
}
.card-specs li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--mute);
}
.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.price {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 400;
}
.cta {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: padding-right 0.3s;
}
.card:hover .cta { padding-right: 6px; }

@media (max-width: 700px) {
  .cat-head { grid-template-columns: 1fr; padding: 0 24px; }
  .carousel { padding: 0 24px 20px; }
  .card { flex: 0 0 78%; }
  .card.card-wide { flex: 0 0 88%; }
}

/* ============ IMG BREAK ============ */
.img-break {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.break-img { height: 100%; min-height: 540px; overflow: hidden; }
.break-img img { width: 100%; height: 100%; object-fit: cover; }
.break-text {
  padding: 80px 64px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.break-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.break-text p {
  font-size: 1rem;
  color: var(--soft);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .img-break { grid-template-columns: 1fr; }
  .break-img { min-height: 380px; }
  .break-text { padding: 60px 32px; }
}

/* ============ NEWSLETTER ============ */
.newsletter {
  padding: 100px 48px;
  text-align: center;
  background: var(--bg);
}
.news-inner { max-width: 580px; margin: 0 auto; }
.newsletter h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 16px;
}
.newsletter p {
  color: var(--soft);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.newsletter form {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 10px 0;
}
.newsletter button {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 12px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: #c9c5be;
  padding: 80px 48px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid #2a2a2a;
}
.f-brand .brand { color: var(--bg); font-size: 1.6rem; display: block; margin-bottom: 16px; }
.f-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 360px;
}
.socials { display: flex; gap: 16px; }
.socials a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid #444;
  transition: color 0.3s, border-color 0.3s;
}
.socials a:hover { color: var(--bg); border-color: var(--bg); }
footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 20px;
}
footer a:not(.brand):not(.socials a):not(.legals a) {
  display: block;
  font-size: 0.88rem;
  padding: 5px 0;
  color: #9a958d;
  transition: color 0.3s;
}
footer a:hover { color: var(--bg); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #7e7a73;
  flex-wrap: wrap;
  gap: 12px;
}
.legals { display: flex; gap: 20px; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

::selection { background: var(--ink); color: var(--bg); }
