/* =========================================================================
   Zornaviq — feuille de style principale (statique, 100% local)
   Dark Luxury Theme
   ========================================================================= */

/* ------------------------------ Fonts ---------------------------------- */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/playfair-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/playfair-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/dmsans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/dmsans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ------------------------------ Tokens --------------------------------- */
:root {
  --bg: #0f0d0b;
  --bg-deep: #0d0b09;
  --surface: #1a1612;
  --surface-2: #211e18;
  --ivoire: #faf7f2;
  --or: #c9a96e;
  --or-light: #dfc28e;
  --terracotta: #c8614a;
  --sauge: #7a9e87;
  --muted: #8a8580;
  --border: rgba(201, 169, 110, 0.15);
  --border-strong: rgba(201, 169, 110, 0.35);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --radius: 4px;
  --maxw: 80rem;      /* max-w-7xl */
}

/* ------------------------------ Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ivoire);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); line-height: 1.15; font-weight: 500; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }
ul, ol { list-style: none; padding: 0; }

/* ------------------------------ Helpers -------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) { .container { padding-inline: 2rem; } }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--or);
}
.text-gold {
  background: linear-gradient(135deg, #c9a96e 0%, #dfc28e 45%, #c9a96e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.6), transparent);
}
.muted { color: var(--muted); }
.section { padding-block: 5rem; background: var(--bg); }
.section--deep { background: var(--bg-deep); }
.section--surface { background: var(--surface); border-block: 1px solid rgba(201, 169, 110, 0.1); }
@media (min-width: 768px) { .section { padding-block: 7rem; } }

.section-head { text-align: center; max-width: 42rem; margin: 0 auto 3.5rem; }
.section-head .eyebrow { display: block; margin-bottom: 0.75rem; }
.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--ivoire);
  text-wrap: balance;
}

/* ------------------------------ Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, gap .2s ease;
}
.btn--gold { background: var(--or); color: var(--bg); }
.btn--gold:hover { background: var(--or-light); gap: 0.75rem; }
.btn--outline { border-color: var(--border-strong); color: rgba(250, 247, 242, 0.8); }
.btn--outline:hover { border-color: var(--or); color: var(--ivoire); }
.btn--block { width: 100%; }
.btn .icon { width: 1rem; height: 1rem; transition: transform .2s ease; }
.btn--gold:hover .icon { transform: translateX(3px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--or);
  transition: color .2s ease, gap .2s ease;
}
.link-arrow:hover { color: var(--or-light); gap: 0.75rem; }
.link-arrow .icon { width: 1rem; height: 1rem; }

.icon { display: inline-block; flex-shrink: 0; vertical-align: middle; }

/* ------------------------------ Header --------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-block: 1.25rem;
  background: transparent;
  transition: background-color .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(15, 13, 11, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: rgba(201, 169, 110, 0.2);
  padding-block: 0.75rem;
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 0.5rem; }
.brand__mark {
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.4);
  transition: background-color .2s ease;
}
.brand:hover .brand__mark { background: rgba(201, 169, 110, 0.2); }
.brand__mark .icon { width: 1rem; height: 1rem; color: var(--or); }
.brand__name { font-family: var(--font-serif); font-size: 1.25rem; letter-spacing: 0.02em; color: var(--ivoire); }
.brand__name span { color: var(--or); }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(250, 247, 242, 0.7);
  transition: color .2s ease;
}
.nav-desktop a:hover { color: var(--or); }
.nav-desktop .btn { min-height: 2.5rem; padding: 0.5rem 1.25rem; }

.nav-toggle {
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 0; color: var(--ivoire);
  transition: color .2s ease;
}
.nav-toggle:hover { color: var(--or); }
.nav-toggle .icon { width: 1.25rem; height: 1.25rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-mobile {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .3s ease, opacity .3s ease;
}
.nav-mobile.open { max-height: 26rem; opacity: 1; }
.nav-mobile__inner {
  margin-top: 1rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1rem 1rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.nav-mobile__inner a {
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.8);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  transition: color .2s ease;
}
.nav-mobile__inner a:hover { color: var(--or); }
.nav-mobile__inner .btn { margin-top: 0.75rem; }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-toggle, .nav-mobile { display: none; }
}

/* ------------------------------ Hero ----------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(15,13,11,0.6), transparent 55%),
    linear-gradient(105deg, rgba(15,13,11,0.95) 0%, rgba(15,13,11,0.75) 45%, rgba(15,13,11,0.2) 100%);
}
.hero__content { position: relative; z-index: 10; padding-block: 7rem 5rem; }
.hero__inner { max-width: 42rem; }
.hero__eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero__eyebrow .rule { height: 1px; width: 2.5rem; background: var(--or); }
.hero__title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.08;
  color: var(--ivoire);
  text-wrap: balance;
  margin-bottom: 1.5rem;
}
.hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(250, 247, 242, 0.65);
  max-width: 32rem;
  margin-bottom: 2.5rem;
}
.hero__cta { display: flex; flex-direction: column; gap: 1rem; }
.hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hero__stats .value { font-family: var(--font-serif); font-size: 1.5rem; color: var(--or); }
.hero__stats .label { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 10; color: rgba(201, 169, 110, 0.5);
  animation: bob 1.6s ease-in-out infinite alternate;
}
.hero__scroll .icon { width: 1.25rem; height: 1.25rem; }
@keyframes bob { from { transform: translate(-50%, -4px); } to { transform: translate(-50%, 4px); } }
@media (min-width: 768px) {
  .hero__cta { flex-direction: row; }
  .hero__cta .btn { width: auto; }
  .hero__subtitle { font-size: 1.125rem; }
}

/* ------------------------------ Trust bar ------------------------------ */
.trust {
  background: var(--surface);
  border-block: 1px solid rgba(201, 169, 110, 0.12);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.trust__item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.25rem 1rem;
}
.trust__item + .trust__item { border-left: 1px solid rgba(201, 169, 110, 0.08); }
.trust__item .icon { width: 1.25rem; height: 1.25rem; color: var(--or); }
.trust__item .t { font-size: 0.875rem; font-weight: 600; color: var(--ivoire); }
.trust__item .d { font-size: 0.75rem; color: var(--muted); }
@media (min-width: 768px) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .trust__item { padding-inline: 1.5rem; }
}
/* reset the left border on first column start of each row (mobile 2-col) */
@media (max-width: 767.98px) {
  .trust__item:nth-child(odd) { border-left: 0; }
  .trust__item:nth-child(n+3) { border-top: 1px solid rgba(201, 169, 110, 0.08); }
}

/* ------------------------------ Collections ---------------------------- */
.grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .grid { gap: 1.5rem; } }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.collection-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
}
.collection-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.collection-card:hover img { transform: scale(1.05); }
.collection-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,13,11,0.9), rgba(15,13,11,0.3) 50%, transparent);
}
.collection-card__border {
  position: absolute; inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: border-color .3s ease;
}
.collection-card:hover .collection-card__border { border-color: rgba(201, 169, 110, 0.5); }
.collection-card__body { position: absolute; inset: auto 0 0 0; padding: 1.5rem; }
.collection-card__accent { width: 1.5rem; height: 2px; margin-bottom: 0.75rem; transition: width .3s ease; }
.collection-card:hover .collection-card__accent { width: 2.5rem; }
.collection-card__title { font-size: 1.25rem; color: var(--ivoire); margin-bottom: 0.25rem; }
.collection-card__desc { font-size: 0.875rem; color: rgba(250, 247, 242, 0.6); margin-bottom: 1rem; }
.collection-card__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--or);
  transition: gap .2s ease;
}
.collection-card:hover .collection-card__link { gap: 0.75rem; }
.collection-card__link .icon { width: 0.75rem; height: 0.75rem; }

/* ------------------------------ Product cards -------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.card:hover { border-color: var(--border-strong); box-shadow: 0 8px 32px rgba(201, 169, 110, 0.08); }
.product__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .product__media img { transform: scale(1.05); }
.badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.625rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; border-radius: var(--radius);
  background: var(--terracotta);
}
.product__body { padding: 1rem; }
.product--lg .product__body { padding: 1.25rem; }
.product__name {
  font-size: 0.875rem; color: var(--ivoire); line-height: 1.35;
  margin-bottom: 0.5rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product__price-row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.75rem; }
.product__price { font-family: var(--font-serif); font-size: 1.125rem; color: var(--or); }
.product__ttc { font-size: 0.75rem; color: var(--muted); }
.btn-ghost {
  width: 100%; min-height: 2.5rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border: 1px solid var(--border);
  color: var(--or);
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: var(--radius);
  background: transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn-ghost:hover { background: var(--or); color: var(--bg); border-color: var(--or); }
.btn-ghost .icon { width: 0.875rem; height: 0.875rem; }

.bestsellers__head {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 3rem;
}
.bestsellers__head .eyebrow { display: block; margin-bottom: 0.75rem; }
.bestsellers__head h2 { font-size: clamp(1.875rem, 4vw, 3rem); color: var(--ivoire); }
.bestsellers__head p { font-size: 0.875rem; color: var(--muted); margin-top: 0.5rem; }
.bestsellers__viewall { display: none; }
.bestsellers__mobile { margin-top: 2.5rem; text-align: center; }
@media (min-width: 768px) {
  .bestsellers__head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .bestsellers__viewall { display: inline-flex; }
  .bestsellers__mobile { display: none; }
}

/* ------------------------------ Promise -------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.promise__figure { position: relative; }
.promise__img { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; }
.promise__img img { width: 100%; height: 100%; object-fit: cover; }
.promise__frame {
  position: absolute; bottom: -1rem; right: -1rem;
  width: 66%; height: 66%;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius);
  pointer-events: none;
}
.promise__badge {
  position: absolute; top: 1.5rem; right: -1rem;
  background: var(--surface);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.promise__badge .value { font-family: var(--font-serif); font-size: 1.5rem; color: var(--or); }
.promise__badge .label { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }
@media (min-width: 768px) { .promise__badge { right: -2rem; } }

.promise__points { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 0; }
.feature { display: flex; gap: 1rem; }
.feature__icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
}
.feature__icon .icon { width: 1rem; height: 1rem; color: var(--or); }
.feature__title { font-family: var(--font-sans); font-weight: 600; color: var(--ivoire); margin-bottom: 0.25rem; }
.feature__desc { font-size: 0.875rem; color: var(--muted); }
.promise__title { font-size: clamp(1.875rem, 3.5vw, 2.25rem); color: var(--ivoire); text-wrap: balance; margin-bottom: 2rem; }

/* ------------------------------ Testimonials --------------------------- */
.testimonial {
  display: flex; flex-direction: column; gap: 1.25rem;
  padding: 1.5rem;
}
.stars { display: flex; gap: 0.25rem; }
.stars .icon { width: 1rem; height: 1rem; }
.testimonial blockquote {
  font-size: 0.875rem; color: rgba(250, 247, 242, 0.75);
  font-style: italic; flex: 1;
}
.testimonial__author {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 1rem; border-top: 1px solid rgba(201, 169, 110, 0.08);
}
.avatar {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.25);
  font-size: 0.75rem; font-weight: 600; color: var(--or);
}
.testimonial__name { font-size: 0.875rem; font-weight: 600; color: var(--ivoire); }
.testimonial__city { font-size: 0.75rem; color: var(--muted); }
.testimonial__legal { font-size: 0.625rem; color: rgba(138, 133, 128, 0.6); font-style: italic; }
.legal-note { text-align: center; font-size: 0.75rem; color: rgba(138, 133, 128, 0.6); font-style: italic; margin-top: 2rem; }

/* ------------------------------ Newsletter ----------------------------- */
.newsletter__inner { max-width: 36rem; margin-inline: auto; text-align: center; }
.newsletter__inner .eyebrow { display: block; margin-bottom: 0.75rem; }
.newsletter__inner h2 { font-size: clamp(1.875rem, 3.5vw, 2.25rem); color: var(--ivoire); margin-bottom: 0.75rem; text-wrap: balance; }
.newsletter__inner .lead { font-size: 0.875rem; color: var(--muted); margin-bottom: 2rem; }
.newsletter__form { display: flex; flex-direction: column; gap: 0.75rem; }
.field {
  flex: 1; min-height: 3rem;
  padding: 0.75rem 1rem;
  background: var(--surface-2);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius);
  color: var(--ivoire);
  font-size: 0.875rem;
  transition: border-color .2s ease;
}
.field::placeholder { color: var(--muted); }
.field:focus { outline: none; border-color: var(--or); }
.newsletter__form .btn { white-space: nowrap; padding-inline: 1.5rem; }
.newsletter__fineprint { font-size: 0.75rem; color: rgba(138, 133, 128, 0.7); margin-top: 1rem; }
.newsletter__fineprint a { color: rgba(201, 169, 110, 0.85); text-decoration: underline; text-underline-offset: 2px; }
.newsletter__fineprint a:hover { color: var(--or); }
.form-success {
  display: none;
  align-items: center; justify-content: center; gap: 0.5rem;
  padding-block: 1rem; color: var(--sauge); font-size: 0.875rem;
}
.form-success .icon { width: 1.25rem; height: 1.25rem; }
.is-sent .newsletter__form { display: none; }
.is-sent .form-success { display: flex; }
@media (min-width: 640px) { .newsletter__form { flex-direction: row; } }

/* ------------------------------ Footer --------------------------------- */
.site-footer { background: var(--bg-deep); border-top: 1px solid rgba(201, 169, 110, 0.12); }
.site-footer .inner { padding-block: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer__tagline { font-size: 0.875rem; color: var(--muted); font-family: var(--font-serif); font-style: italic; margin: 1rem 0 1.5rem; }
.social { display: flex; gap: 0.75rem; }
.social a {
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius);
  color: var(--muted);
  transition: color .2s ease, border-color .2s ease;
}
.social a:hover { color: var(--or); border-color: rgba(201, 169, 110, 0.4); }
.social .icon { width: 1rem; height: 1rem; }
.footer h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--or); margin-bottom: 1.25rem;
}
.footer ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer a.flink, .footer li.fitem { font-size: 0.875rem; color: var(--muted); transition: color .2s ease; }
.footer a.flink:hover { color: var(--ivoire); }
.footer .contact-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--muted); }
.footer .contact-item .icon { width: 1rem; height: 1rem; color: var(--or); margin-top: 0.15rem; flex-shrink: 0; }
.footer .contact-item a:hover { color: var(--ivoire); }
.footer-bottom { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.footer-bottom p { font-size: 0.75rem; color: var(--muted); text-align: center; }
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .footer-bottom p { text-align: left; }
}

/* ------------------------------ Cookie banner -------------------------- */
.cookie {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 50;
  background: var(--surface);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  padding: 1.25rem;
}
.cookie[hidden] { display: none; }
.cookie__close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: transparent; border: 0; color: var(--muted);
  transition: color .2s ease;
}
.cookie__close:hover { color: var(--ivoire); }
.cookie__close .icon { width: 1rem; height: 1rem; }
.cookie__title { display: block; margin-bottom: 0.5rem; }
.cookie p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }
.cookie p a { color: var(--or); text-decoration: underline; text-underline-offset: 2px; }
.cookie p a:hover { color: var(--or-light); }
.cookie__actions { display: flex; gap: 0.75rem; }
.cookie__actions button {
  flex: 1; min-height: 2.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem; font-weight: 600;
  border-radius: var(--radius);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.cookie__accept { background: var(--or); color: var(--bg); border: 1px solid var(--or); }
.cookie__accept:hover { background: var(--or-light); }
.cookie__decline { background: transparent; color: var(--muted); border: 1px solid rgba(201, 169, 110, 0.3); font-weight: 400; }
.cookie__decline:hover { border-color: rgba(201, 169, 110, 0.5); color: var(--ivoire); }
@media (min-width: 768px) { .cookie { left: auto; right: 1.5rem; max-width: 28rem; } }

/* ------------------------------ Page hero (sub-pages) ------------------ */
.page-hero {
  position: relative;
  padding-block: 8rem 4rem;
  background: var(--bg);
  overflow: hidden;
}
.page-hero--glow-tl::before,
.page-hero--glow-tr::before {
  content: ''; position: absolute; inset: 0;
}
.page-hero--glow-tl::before { background: radial-gradient(ellipse at top left, rgba(201,169,110,0.06), transparent 60%); }
.page-hero--glow-tr::before { background: radial-gradient(ellipse at top right, rgba(201,169,110,0.07), transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { display: block; margin-bottom: 1rem; }
.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--ivoire); text-wrap: balance;
  margin-bottom: 1rem;
}
.page-hero .lead { font-size: 1rem; color: var(--muted); max-width: 36rem; }
.page-hero--center { text-align: center; }
.page-hero--center .lead { margin-inline: auto; }
@media (min-width: 768px) { .page-hero { padding-block: 10rem 5rem; } }

/* ------------------------------ About ---------------------------------- */
.value-card { padding: 1.75rem; }
.value-card__icon {
  width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  margin-bottom: 1.25rem;
}
.value-card__icon .icon { width: 1.25rem; height: 1.25rem; color: var(--or); }
.value-card h3 { font-size: 1.25rem; color: var(--ivoire); margin-bottom: 0.75rem; }
.value-card p { font-size: 0.875rem; color: var(--muted); }

.prose-block h2 { font-size: clamp(1.875rem, 3.5vw, 2.25rem); color: var(--ivoire); margin-bottom: 1.5rem; text-wrap: balance; }
.prose-block p { color: var(--muted); font-size: 0.875rem; margin-bottom: 1rem; }
.prose-block strong { color: var(--ivoire); }

.stats-banner { padding-block: 4rem; background: var(--terracotta); }
.stats-banner .grid3 { display: grid; grid-template-columns: 1fr; gap: 2rem; text-align: center; }
@media (min-width: 768px) { .stats-banner .grid3 { grid-template-columns: repeat(3, 1fr); } }
.stats-banner .value { font-family: var(--font-serif); font-size: 3rem; color: var(--ivoire); margin-bottom: 0.5rem; }
.stats-banner .label { font-size: 0.875rem; color: rgba(250,247,242,0.7); text-transform: uppercase; letter-spacing: 0.05em; }
.stats-banner .foot { text-align: center; font-size: 0.75rem; color: rgba(250,247,242,0.5); font-style: italic; margin-top: 2rem; }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(5, 1fr); } }
.team-member { text-align: center; }
.team-member .ph { aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; margin-bottom: 0.75rem; }
.team-member .ph img { width: 100%; height: 100%; object-fit: cover; }
.team-member p { font-size: 0.875rem; color: var(--ivoire); }

.about-figure { position: relative; }
.about-figure .ph { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; }
.about-figure .ph img { width: 100%; height: 100%; object-fit: cover; }
.about-figure__frame {
  position: absolute; top: -1rem; left: -1rem;
  width: 50%; height: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius);
  pointer-events: none;
}

/* ------------------------------ Products page -------------------------- */
.filters {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.filters > .icon { width: 1rem; height: 1rem; color: var(--muted); flex-shrink: 0; }
.filters__tabs { display: flex; gap: 0.5rem; flex-wrap: nowrap; }
.tab {
  white-space: nowrap;
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 110, 0.2);
  background: transparent;
  color: var(--muted);
  transition: all .2s ease;
}
.tab:hover { border-color: rgba(201, 169, 110, 0.5); color: var(--ivoire); }
.tab[aria-selected="true"] { background: var(--or); color: var(--bg); border-color: var(--or); }
.products-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
.product-item[hidden] { display: none; }

/* ------------------------------ Contact -------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 3fr 2fr; } }
.form-card { padding: 1.5rem; }
@media (min-width: 768px) { .form-card { padding: 2rem; } }
.form-card h2 { font-size: 1.5rem; color: var(--ivoire); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 0.5rem;
}
.form-group .field { width: 100%; min-height: 2.75rem; }
.form-group textarea.field { min-height: auto; resize: vertical; }
.form-hint { font-size: 0.75rem; color: rgba(138,133,128,0.6); text-align: center; margin-top: 1rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; }
.info-card .ic {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
}
.info-card .ic .icon { width: 1rem; height: 1rem; color: var(--or); }
.info-card .lbl { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--or); margin-bottom: 0.25rem; }
.info-card .val { font-size: 0.875rem; color: rgba(250,247,242,0.75); white-space: pre-line; }
.contact-success {
  display: none;
  padding: 2.5rem; text-align: center;
}
.contact-success .icon { width: 3rem; height: 3rem; color: var(--sauge); margin: 0 auto 1rem; }
.contact-success h2 { font-size: 1.5rem; color: var(--ivoire); margin-bottom: 0.5rem; }
.contact-success p { font-size: 0.875rem; color: var(--muted); }
.contact-form-wrap.is-sent .form-card { display: none; }
.contact-form-wrap.is-sent .contact-success { display: block; }

/* ------------------------------ Legal pages ---------------------------- */
.legal { padding-block: 8rem 5rem; background: var(--bg); }
@media (min-width: 768px) { .legal { padding-top: 10rem; } }
.legal .wrap { max-width: 48rem; margin-inline: auto; }
.legal .eyebrow { display: block; margin-bottom: 1rem; }
.legal h1 { font-size: 2.25rem; color: var(--ivoire); margin-bottom: 0.5rem; }
.legal .updated { font-size: 0.875rem; color: var(--muted); margin-bottom: 2.5rem; }
.legal-body { display: flex; flex-direction: column; gap: 2rem; font-size: 0.875rem; color: var(--muted); }
.legal-body h2 { font-size: 1.25rem; color: var(--ivoire); margin-bottom: 0.75rem; }
.legal-body p { margin-bottom: 0; }
.legal-body strong { color: var(--ivoire); }
.legal-body a { color: var(--or); }
.legal-body a:hover { color: var(--or-light); }
.legal-body ul, .legal-body ol { margin-top: 0.5rem; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.25rem; }
.legal-body ul { list-style: disc; }
.legal-body ol { list-style: decimal; }
.legal-back { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.legal-back a { font-size: 0.875rem; color: var(--or); transition: color .2s ease; }
.legal-back a:hover { color: var(--or-light); }

/* ------------------------------ Scroll reveal -------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll { animation: none; }
}
