/* ============================================
   L'OREENE — LUXURY JEWELRY DESIGN SYSTEM
   ============================================ */

:root {
  --c-bg: #f8f5f0;
  --c-bg-alt: #f1ece3;
  --c-cream: #ebe3d4;
  --c-ink: #1a1613;
  --c-ink-soft: #3a342d;
  --c-muted: #8a8178;
  --c-line: #dcd3c3;
  --c-gold: #b89968;
  --c-gold-deep: #8f7544;
  --c-gold-light: #d8c49a;
  --c-white: #ffffff;

  --ff-display: 'Cormorant Garamond', 'Playfair Display', 'Times New Roman', serif;
  --ff-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --shadow-soft: 0 12px 40px rgba(26, 22, 19, 0.06);
  --shadow-lift: 0 25px 60px rgba(26, 22, 19, 0.12);

  --radius: 2px;
  --max: 1440px;
  --pad: clamp(20px, 4vw, 60px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  /* Espace pour le header fixe (logo + padding) */
  --header-offset: 152px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--ff-sans);
  color: var(--c-ink);
  background: var(--c-bg);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--c-gold-deep); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--c-ink);
}

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-gold-deep);
}

.display {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
}
.display em { font-style: italic; color: var(--c-gold-deep); }

.h-xl { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; }
.h-lg { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; }
.h-md { font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 400; }

.lead {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 300;
  color: var(--c-ink-soft);
  line-height: 1.6;
  max-width: 640px;
}

/* ---------- Layout ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section-tight { padding: clamp(60px, 8vw, 110px) 0; }
.center { text-align: center; }

.section-head { margin-bottom: clamp(40px, 6vw, 80px); }
.section-head.center { margin-left: auto; margin-right: auto; max-width: 720px; }

.grid { display: grid; gap: clamp(20px, 2.5vw, 40px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--c-gold);
  margin: 0 14px;
  vertical-align: middle;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-ink);
  color: var(--c-ink);
  background: transparent;
  transition: all .4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-ink);
  transform: translateY(101%);
  transition: transform .4s var(--ease);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { color: var(--c-bg); }
.btn:hover::before { transform: translateY(0); }

.btn-gold { border-color: var(--c-gold-deep); color: var(--c-gold-deep); }
.btn-gold::before { background: var(--c-gold-deep); }
.btn-gold:hover { color: var(--c-bg); }

.btn-light { border-color: var(--c-bg); color: var(--c-bg); }
.btn-light::before { background: var(--c-bg); }
.btn-light:hover { color: var(--c-ink); }

.btn-ghost {
  border: none;
  padding: 6px 0;
  border-bottom: 1px solid var(--c-ink);
  letter-spacing: 0.22em;
}
.btn-ghost::before { display: none; }
.btn-ghost:hover { color: var(--c-gold-deep); border-color: var(--c-gold-deep); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--pad);
  background: rgba(248, 245, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all .4s var(--ease);
}
.site-header.scrolled {
  padding: 14px var(--pad);
  border-bottom-color: var(--c-line);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  max-width: var(--max);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  grid-column: 2;
  line-height: 0;
  background: transparent;
}
.logo img {
  height: 98px;
  width: auto;
  max-width: min(460px, 62vw);
  object-fit: contain;
  object-position: center;
  background: transparent;
  transition: height .4s var(--ease);
}
.scrolled .logo img { height: 80px; }

.nav {
  display: flex;
  gap: 36px;
}
.nav a {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--c-gold-deep);
  transition: all .4s var(--ease);
  transform: translateX(-50%);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--c-gold-deep); }

.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }

.icon-btn {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .3s var(--ease);
}
.icon-btn:hover { background: var(--c-cream); }
.icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.4; }

.hamburger {
  display: none;
  width: 28px; height: 20px;
  position: relative;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--c-ink);
  transition: all .4s var(--ease);
}
.hamburger span:nth-child(1) { top: 2px; }
.hamburger span:nth-child(2) { top: 50%; }
.hamburger span:nth-child(3) { bottom: 2px; }
.hamburger.open span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-offset);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  width: 100%;
}
.hero-text .eyebrow { margin-bottom: 24px; display: inline-block; }
.hero-text h1 { margin-bottom: 32px; }
.hero-text .lead { margin-bottom: 44px; }
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-cream);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.8s var(--ease);
  transform: scale(1.08);
}
.hero-visual.loaded img { transform: scale(1); }
.hero-badge {
  position: absolute;
  bottom: 30px; left: 30px;
  background: var(--c-bg);
  padding: 18px 24px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-left: 2px solid var(--c-gold-deep);
}
.hero-badge strong { font-family: var(--ff-display); font-size: 18px; display: block; letter-spacing: 0.1em; margin-top: 4px; font-weight: 400; }

/* Running marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 22px 0;
  background: var(--c-bg-alt);
}
.marquee-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--c-ink-soft);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 80px; }
.marquee-track span::after {
  content: '✦';
  color: var(--c-gold-deep);
  font-size: 12px;
  font-style: normal;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Collections strip ---------- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.collection-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--c-cream);
  cursor: pointer;
}
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.collection-card:hover img { transform: scale(1.06); }
.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,22,19,0.55) 0%, rgba(26,22,19,0) 55%);
}
.collection-card-label {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  z-index: 2;
  color: var(--c-bg);
}
.collection-card-label .eyebrow { color: var(--c-gold-light); display: block; margin-bottom: 8px; }
.collection-card-label h3 { color: var(--c-bg); font-size: 1.6rem; font-weight: 400; }

/* ---------- Product card ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px) clamp(20px, 2.5vw, 32px);
}
.product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--c-cream);
  margin-bottom: 20px;
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.05); }

.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--c-bg);
  padding: 6px 12px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-gold-deep);
  z-index: 2;
}
.product-stock {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(26, 22, 19, 0.9);
  color: var(--c-bg);
  padding: 6px 12px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.product-stock.out { background: #8a3a2a; }

.product-quick {
  position: absolute;
  bottom: -40px; left: 0; right: 0;
  background: var(--c-ink);
  color: var(--c-bg);
  padding: 14px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: bottom .4s var(--ease);
}
.product-card:hover .product-quick { bottom: 0; }

.product-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-category {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}
.product-name {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.product-desc {
  font-size: 13px;
  color: var(--c-ink-soft);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  margin-top: 8px;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--c-gold-deep);
  letter-spacing: 0.02em;
}

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.split-image {
  background: var(--c-cream);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-content {
  padding: clamp(50px, 8vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-bg-alt);
}
.split-content .eyebrow { margin-bottom: 20px; }
.split-content h2 { margin-bottom: 28px; }
.split-content p { margin-bottom: 16px; color: var(--c-ink-soft); max-width: 520px; }
.split-content .btn { margin-top: 20px; align-self: flex-start; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-ink);
  color: #c8bfb2;
  padding: clamp(60px, 8vw, 100px) var(--pad) 40px;
  margin-top: clamp(60px, 8vw, 100px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(220, 211, 195, 0.12);
  max-width: var(--max);
  margin: 0 auto;
}
.footer-brand .logo { text-align: left; }
.footer-brand .logo img { height: 90px; max-width: 400px; }
.footer-brand p { margin-top: 20px; max-width: 320px; font-size: 14px; line-height: 1.7; }
.footer-brand .socials { display: flex; gap: 14px; margin-top: 24px; }
.footer-brand .socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(220, 211, 195, 0.2);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.footer-brand .socials a:hover { border-color: var(--c-gold); color: var(--c-gold-light); }
.footer-brand .socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-bg);
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: #c8bfb2; }
.footer-col a:hover { color: var(--c-gold-light); }

.newsletter input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(220, 211, 195, 0.3);
  padding: 12px 0;
  color: var(--c-bg);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .3s var(--ease);
}
.newsletter input::placeholder { color: #80766a; }
.newsletter input:focus { border-color: var(--c-gold-light); }
.newsletter button {
  margin-top: 18px;
  color: var(--c-gold-light);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 1px solid var(--c-gold-light);
  transition: all .3s var(--ease);
}
.newsletter button:hover { color: var(--c-bg); border-color: var(--c-bg); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #80766a;
}
.footer-bottom a { color: #a89e8f; }
.footer-bottom a:hover { color: var(--c-gold-light); }

/* ---------- Page header ---------- */
.page-header {
  padding: calc(var(--header-offset) + clamp(60px, 8vw, 110px)) var(--pad) clamp(60px, 8vw, 100px);
  text-align: center;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-line);
}
.page-header .eyebrow { margin-bottom: 18px; display: inline-block; }
.page-header h1 { margin-bottom: 20px; }
.page-header p { max-width: 640px; margin: 0 auto; color: var(--c-ink-soft); }
.breadcrumb {
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.breadcrumb a:hover { color: var(--c-gold-deep); }

/* ---------- Filters ---------- */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: clamp(40px, 5vw, 60px);
  flex-wrap: wrap;
}
.filter-chip {
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-line);
  background: transparent;
  color: var(--c-ink-soft);
  transition: all .3s var(--ease);
}
.filter-chip:hover { border-color: var(--c-ink); color: var(--c-ink); }
.filter-chip.active {
  background: var(--c-ink);
  color: var(--c-bg);
  border-color: var(--c-ink);
}

/* ---------- About ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 60px);
}
.value {
  text-align: center;
  padding: clamp(30px, 4vw, 50px) clamp(20px, 3vw, 30px);
  border: 1px solid var(--c-line);
  background: var(--c-bg);
  transition: all .5s var(--ease);
}
.value:hover {
  background: var(--c-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.value-icon {
  width: 56px; height: 56px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gold-deep);
}
.value-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1; }
.value h3 { font-size: 1.3rem; margin-bottom: 14px; }
.value p { font-size: 14px; color: var(--c-ink-soft); line-height: 1.7; }

.timeline {
  max-width: 780px;
  margin: 0 auto;
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: baseline;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--c-gold-deep);
}
.timeline-content h4 { font-size: 1.2rem; margin-bottom: 10px; }
.timeline-content p { color: var(--c-ink-soft); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
}
.contact-info { padding: clamp(30px, 4vw, 50px) 0; }
.contact-info h2 { margin-bottom: 30px; }
.info-block { margin-bottom: 30px; }
.info-block .eyebrow { margin-bottom: 10px; display: block; }
.info-block p, .info-block a { color: var(--c-ink-soft); font-size: 15px; line-height: 1.7; }

.contact-form {
  background: var(--c-white);
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid var(--c-line);
}
.form-row { margin-bottom: 24px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-muted);
  margin-bottom: 10px;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea, select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--c-line);
  padding: 12px 0;
  font-family: inherit;
  font-size: 15px;
  color: var(--c-ink);
  outline: none;
  transition: border-color .3s var(--ease);
}
input:focus, textarea:focus, select:focus { border-color: var(--c-gold-deep); }
textarea { min-height: 140px; resize: vertical; }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 19, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.modal.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--c-bg);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(20px);
  transition: transform .4s var(--ease);
}
.modal.open .modal-box { transform: translateY(0); }
.modal-img { background: var(--c-cream); aspect-ratio: 1 / 1; overflow: hidden; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: clamp(30px, 4vw, 50px); position: relative; }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s var(--ease);
}
.modal-close:hover { background: var(--c-cream); }
.modal-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.4; }

/* ---------- Empty state ---------- */
.empty-state {
  grid-column: 1 / -1;
  padding: 80px 20px;
  text-align: center;
  color: var(--c-muted);
  border: 1px dashed var(--c-line);
}
.empty-state h3 { font-family: var(--ff-display); font-size: 1.6rem; margin-bottom: 10px; color: var(--c-ink); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4, .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero { padding-top: 140px; min-height: auto; }
  .split { grid-template-columns: 1fr; }
  .split-image { aspect-ratio: 16 / 10; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .modal-box { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav-right .icon-btn.search { display: none; }
  .hamburger { display: block; grid-column: 3; justify-self: end; }
  .site-header { padding: 16px var(--pad); }
  .header-inner { grid-template-columns: 1fr auto 1fr; }
  .logo img { height: 64px; max-width: 64vw; }
  .scrolled .logo img { height: 54px; }
  .products-grid, .grid-2, .grid-3, .grid-4, .collections-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .form-row.two { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
