:root {
  --bg: #faf6ef;
  --bg-deep: #f1e8db;
  --surface: rgba(255, 252, 248, 0.72);
  --surface-strong: #fffaf3;
  --ink: #17120d;
  --muted: #6e655a;
  --line: rgba(23, 18, 13, 0.10);
  --gold: #cfa66a;
  --gold-deep: #b6894e;
  --shadow: 0 12px 36px rgba(44, 33, 20, 0.07), 0 2px 8px rgba(44, 33, 20, 0.04);
  --shadow-lift: 0 20px 52px rgba(44, 33, 20, 0.12), 0 4px 12px rgba(44, 33, 20, 0.06);
  --radius: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 56px));
  --container-tight: min(760px, calc(100vw - 48px));
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.narrow {
  width: var(--container-tight);
}

/* ── Header ──────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 243, 234, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 251, 246, 0.94);
  border-color: var(--line);
}

.header-inner,
.footer-inner,
.footer-bottom {
  width: var(--container);
  margin: 0 auto;
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-wordmark {
  width: clamp(90px, 10vw, 136px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.main-nav a,
.footer-links a {
  color: var(--muted);
  transition: color var(--transition);
}

.main-nav a {
  position: relative;
  padding: 0.45rem 0.65rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.3rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

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

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Buttons chrome (header) ─────────────────────────────────────────────── */

.menu-toggle,
.cart-toggle,
.cart-close,
.search-btn,
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.menu-toggle:hover,
.cart-toggle:hover,
.search-btn:hover,
.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(23, 18, 13, 0.18);
}

.menu-toggle {
  display: none;
}

.search-btn {
  padding: 0 10px;
  min-width: 38px;
}

.search-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}

/* ── Language toggle ─────────────────────────────────────────────────────── */

.lang-toggle {
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 4px;
  color: var(--muted);
}

.lang-toggle .lang-sep {
  opacity: 0.3;
}

.lang-toggle .lang-active {
  color: var(--ink);
}

/* ── Cart toggle ─────────────────────────────────────────────────────────── */

.cart-icon {
  position: relative;
  width: 14px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-top: 0;
  border-radius: 0 0 3px 3px;
}

.cart-icon::before,
.cart-icon::after {
  content: "";
  position: absolute;
}

.cart-icon::before {
  left: 2px;
  right: 2px;
  top: -5px;
  height: 5px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.cart-icon::after {
  width: 3px;
  height: 3px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -35%);
  border-radius: 999px;
  background: currentColor;
  opacity: 0.2;
}

.cart-count {
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
}

/* ── Search overlay ──────────────────────────────────────────────────────── */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: start center;
  padding-top: 72px;
  background: rgba(23, 18, 13, 0.40);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.search-panel {
  width: min(640px, calc(100vw - 32px));
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  transform: translateY(-8px);
  transition: transform 200ms ease;
}

.search-overlay.is-open .search-panel {
  transform: translateY(0);
}

.search-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.search-input-row svg {
  width: 16px;
  height: 16px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  flex-shrink: 0;
}

.search-input-row input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.96rem;
  color: var(--ink);
}

.search-input-row input::placeholder {
  color: var(--muted);
}

.search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  font-size: 0.78rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

.search-close:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.search-results {
  max-height: 360px;
  overflow-y: auto;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  transition: background var(--transition), box-shadow var(--transition);
}

.search-result:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(44, 33, 20, 0.06);
}

.search-result-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  padding: 4px;
}

.search-result-body {
  flex: 1;
  min-width: 0;
}

.search-result-body .eyebrow {
  margin-bottom: 2px;
  font-size: 0.62rem;
}

.search-result-body strong {
  display: block;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-body span {
  font-size: 0.82rem;
  color: var(--muted);
}

.search-empty {
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Sections ────────────────────────────────────────────────────────────── */

.hero,
.page-hero {
  padding: 52px 0 22px;
}

.hero-grid,
.editorial-grid,
.contact-grid,
.narrative-grid {
  display: grid;
  gap: 26px;
}

/* ── Contact info (settings) ─────────────────────────────────────── */

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.contact-info-icon svg {
  width: 16px;
  height: 16px;
}

.contact-info-card .eyebrow {
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--text);
  white-space: pre-line;
}

.contact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.contact-map-iframe {
  border: 0;
  display: block;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.editorial-copy h2,
.narrative-card h2,
.hero-note h2,
.split-heading h2,
.contact-card h2,
.showcase-card h3,
.value-card h3,
.product-card h3,
.empty-state h3,
.legal-copy h2 {
  margin: 0;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.page-hero h1,
.split-heading h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

.editorial-copy h2,
.narrative-card h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
}

.hero-note h2,
.contact-card h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.lead,
.hero-note p,
.editorial-copy p,
.value-card p,
.showcase-card p,
.contact-card p,
.narrative-card p,
.legal-copy p,
.legal-copy li,
.footer-copy,
.form-note,
.product-description,
.product-meta,
.summary-card p,
.cart-empty p,
.cart-item p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 640px;
  margin: 16px 0 0;
  font-size: 0.96rem;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.hero-actions,
.contact-actions,
.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.button,
.text-link {
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(23, 18, 13, 0.18);
}

.button:active {
  transform: translateY(0);
  box-shadow: none;
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: rgba(23, 18, 13, 0.22);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 12px rgba(23, 18, 13, 0.08);
}

.button-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.button-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  box-shadow: 0 6px 18px rgba(207, 166, 106, 0.32);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link-inline {
  margin-top: 0;
  font-size: inherit;
}

.text-link:hover {
  transform: none;
}

.text-link:hover::after {
  transform: translateX(3px);
}

/* ── Hero visual ─────────────────────────────────────────────────────────── */

.hero-visual {
  display: grid;
  gap: 14px;
}

.hero-visual-card,
.hero-note,
.product-card,
.value-card,
.contact-card,
.narrative-card,
.cart-drawer,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual-card {
  position: relative;
  padding: clamp(20px, 3vw, 32px);
}

.hero-monogram {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.42) 58%, rgba(207, 166, 106, 0.18));
  border: 1px solid rgba(207, 166, 106, 0.22);
  box-shadow: 0 10px 24px rgba(23, 18, 13, 0.08);
  transform-style: preserve-3d;
  animation: monogram-float 10s ease-in-out infinite;
  overflow: hidden;
}

.hero-monogram img {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
  animation: monogram-tilt 8.5s ease-in-out infinite;
}

.hero-monogram-glow {
  position: absolute;
  inset: -38%;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.05) 38%, rgba(255, 255, 255, 0.7) 50%, rgba(207, 166, 106, 0.18) 58%, transparent 76%);
  transform: translateX(-120%) rotate(16deg);
  animation: monogram-glint 5.8s ease-in-out infinite;
}

.hero-note {
  padding: 20px;
  max-width: 390px;
  justify-self: end;
}

.section {
  padding: 40px 0;
}

.soft-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}

.band {
  padding-top: 12px;
  padding-bottom: 12px;
}

.band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-inner p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.editorial-grid {
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  align-items: start;
}

.showcase-grid,
.values-grid {
  display: grid;
  gap: 14px;
}

.showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase-card,
.value-card {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  transition: border-color var(--transition);
}

.showcase-card:hover,
.value-card:hover {
  border-color: var(--gold);
}

.value-card {
  padding-right: 12px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.split-heading p {
  margin: 0;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
  font-size: 0.84rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.tag:hover {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(23, 18, 13, 0.16);
  color: var(--ink);
}

.tag.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* ── Products ────────────────────────────────────────────────────────────── */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.product-media {
  position: relative;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: transparent;
}


.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transition: transform 320ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.02);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(23, 18, 13, 0.86);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-head {
  margin-bottom: 2px;
}

.product-head .eyebrow {
  margin-bottom: 4px;
}

.summary-row,
.cart-line-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.product-price {
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
}

.product-description {
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.product-options {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.product-options-stack {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr);
  max-width: 50%;
  margin-top: 14px;
}

.product-options label,
.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-options select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 8px 11px;
  border: 1px solid rgba(60, 50, 38, 0.18);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.product-options select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 2px rgba(207, 166, 106, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(110, 101, 90, 0.55);
}

.product-foot {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.product-meta {
  font-size: 0.82rem;
}

/* ── Add-to-cart icon button ─────────────────────────────────────────────── */

.btn-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--transition), transform 120ms ease;
}

.btn-add-cart:hover {
  transform: scale(1.12);
}

.btn-add-cart svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.btn-add-cart--gold {
  color: var(--gold);
}

.btn-add-cart--gold:hover {
  color: var(--gold-deep);
}

.product-price-foot {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.empty-state {
  padding: 24px;
}

.values-grid,
.narrative-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.narrative-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-status-section {
  padding-top: 0;
  padding-bottom: 0;
}

.contact-card,
.narrative-card {
  padding: 24px;
}

.contact-card-wide {
  grid-column: 1 / -1;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.contact-form-wide {
  margin-top: 16px;
}

.form-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-feedback {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.9rem;
}

.form-feedback.is-success {
  border-color: rgba(28, 112, 62, 0.22);
  background: rgba(239, 249, 242, 0.9);
  color: #1a5c37;
}

.form-feedback.is-error,
.form-feedback.form-feedback--err {
  border-color: rgba(155, 51, 42, 0.2);
  background: rgba(254, 243, 240, 0.92);
  color: #8b2e26;
}

.form-feedback.form-feedback--ok {
  border-color: rgba(28, 112, 62, 0.22);
  background: rgba(239, 249, 242, 0.9);
  color: #1a5c37;
}

.link-muted {
  color: var(--muted);
  font-size: 0.83rem;
}

.forgot-panel {
  padding-bottom: 60px;
}

/* ── Checkbox RGPD ───────────────────────────────────────────────────────── */

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

.consent-row input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--gold-deep);
  cursor: pointer;
}

.consent-row a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-row a:hover {
  color: var(--ink);
}

.form-section-label {
  margin: 6px 0 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ── Honeypot ────────────────────────────────────────────────────────────── */

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ── Order summary ───────────────────────────────────────────────────────── */

.order-summary {
  display: grid;
  gap: 10px;
}

.summary-card {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.summary-card p {
  margin: 6px 0 0;
}

/* ── Legal ───────────────────────────────────────────────────────────────── */

.legal-copy {
  display: grid;
  gap: 10px;
}

.legal-copy h2 {
  margin-top: 14px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.legal-copy ul {
  padding-left: 1.4em;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

.site-footer {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.18);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
}

.footer-copy {
  max-width: 26rem;
  margin: 0;
  font-size: 0.9rem;
}

.footer-wordmark {
  width: 100px;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 7px;
  font-size: 0.88rem;
}

.footer-links a {
  color: var(--muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 0 20px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

/* ── Footer socials ─────────────────────────────────────────────────────── */

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.social-icon:hover {
  opacity: 1;
}

.social-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke: none;
}

/* ── Cookie banner ───────────────────────────────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 60;
  background: var(--surface-strong);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 24px rgba(23, 18, 13, 0.08);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: opacity 280ms ease, transform 280ms ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.cookie-banner-text {
  flex: 1;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-banner-text a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ── Account button (header) ─────────────────────────────────────────────── */

.account-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.account-btn:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(23, 18, 13, 0.18);
  color: var(--ink);
}

.account-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  flex-shrink: 0;
}

/* ── Password field ──────────────────────────────────────────────────────── */

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  flex: 1;
  padding-right: 44px;
}

.password-toggle {
  position: absolute;
  right: 10px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--muted);
  border-radius: 6px;
  transition: color var(--transition);
}

.password-toggle:hover {
  color: var(--ink);
}

.password-toggle svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}

/* ── Captcha ─────────────────────────────────────────────────────────────── */

.captcha-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.captcha-question {
  font-size: 1.06rem;
  font-family: "EB Garamond", serif;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}

.captcha-input-label {
  flex: 1;
  min-width: 100px;
  max-width: 140px;
}

.captcha-input-label input {
  width: 100%;
  padding: 8px 11px;
  border: 1px solid rgba(60, 50, 38, 0.18);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.captcha-input-label input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 2px rgba(207, 166, 106, 0.12);
}

/* ── Checkout layout ─────────────────────────────────────────────────────── */

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 24px;
  align-items: start;
}

.checkout-summary-aside {
  position: sticky;
  top: 84px;
}

/* ── Account layout ──────────────────────────────────────────────────────── */

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.account-profile {
  position: sticky;
  top: 84px;
}

.profile-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  margin: 16px 0 0;
  font-size: 0.9rem;
}

.profile-list dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-top: 2px;
}

.profile-list dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.5;
}

.profile-actions {
  margin-top: 18px;
}

.account-orders h2 {
  margin: 0 0 16px;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

/* ── Order cards ─────────────────────────────────────────────────────────── */

.orders-list {
  display: grid;
  gap: 12px;
}

.orders-empty {
  display: grid;
  gap: 14px;
}

.order-card {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

.order-card:hover {
  box-shadow: var(--shadow-lift);
}

.order-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.order-ref {
  font-weight: 600;
  font-size: 0.92rem;
  margin-right: 10px;
}

.order-date {
  font-size: 0.8rem;
  color: var(--muted);
}

.order-total {
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}

.order-items-summary {
  margin: 4px 0 10px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

.order-status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-status-badge.is-en_attente {
  background: rgba(207, 166, 106, 0.16);
  color: var(--gold-deep);
}

.order-status-badge.is-confirmee {
  background: rgba(28, 112, 62, 0.12);
  color: #1a5c37;
}

.order-status-badge.is-expediee {
  background: rgba(28, 80, 130, 0.12);
  color: #1a4a7a;
}

.order-status-badge.is-annulee {
  background: rgba(155, 51, 42, 0.10);
  color: #8b2e26;
}

/* ── Confirmation page ───────────────────────────────────────────────────── */

.confirmation-card {
  text-align: center;
  padding: 40px 32px;
}

.confirmation-ref {
  font-family: "EB Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  margin: 4px 0 16px;
}

.confirmation-detail {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 auto 24px;
  max-width: 480px;
  line-height: 1.65;
}

.confirmation-detail.is-error {
  color: #8b2e26;
}

.confirmation-detail a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.confirmation-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── Animations ──────────────────────────────────────────────────────────── */

@keyframes monogram-tilt {
  0%, 100% { transform: perspective(320px) rotateX(0deg) rotateY(-10deg) rotateZ(-6deg) scale(1); }
  50%       { transform: perspective(320px) rotateX(8deg) rotateY(12deg) rotateZ(6deg) scale(1.04); }
}

@keyframes monogram-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%       { transform: translate3d(0, -4px, 0); }
}

@keyframes monogram-glint {
  0%, 74%, 100% { transform: translateX(-120%) rotate(16deg); opacity: 0; }
  12%, 18%      { opacity: 1; }
  24%           { transform: translateX(120%) rotate(16deg); opacity: 0; }
}

/* ── Cart drawer ─────────────────────────────────────────────────────────── */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 18, 13, 0.30);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 70;
}

.cart-drawer {
  position: fixed;
  top: 14px;
  right: 14px;
  bottom: 14px;
  width: min(400px, calc(100vw - 20px));
  padding: 20px;
  display: flex;
  flex-direction: column;
  z-index: 71;
  transform: translateX(calc(100% + 20px));
  transition: transform 240ms ease;
}

.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-header,
.cart-footer,
.cart-item-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.cart-header {
  margin-bottom: 16px;
}

.cart-items {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding-right: 2px;
}

.cart-item {
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.cart-item p {
  margin: 6px 0 10px;
  font-size: 0.86rem;
}

.cart-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.qty-button,
.ghost-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  border-radius: 999px;
  transition: background var(--transition), border-color var(--transition);
}

.qty-button:hover,
.ghost-button:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(23, 18, 13, 0.18);
}

.qty-button {
  width: 30px;
  height: 30px;
  font-size: 1rem;
}

.ghost-button {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.82rem;
}

.cart-continue-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 8px 0 2px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.cart-continue-btn:hover {
  color: var(--ink);
}

/* ── Reveal animation ────────────────────────────────────────────────────── */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.cart-open,
body.search-open {
  overflow: hidden;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .hero-grid,
  .editorial-grid,
  .contact-grid,
  .narrative-grid,
  .values-grid,
  .showcase-grid,
  .footer-inner,
  .split-heading,
  .product-grid,
  .checkout-layout,
  .account-layout {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-summary-aside,
  .account-profile {
    position: static;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100vw - 28px, 1240px);
    --container-tight: min(100vw - 28px, 760px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 251, 246, 0.97);
    box-shadow: var(--shadow-lift);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
    font-size: 0.82rem;
  }

  .product-options {
    grid-template-columns: 1fr;
  }

  .form-grid-two {
    grid-template-columns: 1fr;
  }

  .product-foot,
  .toolbar,
  .band-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  /* Tablet: touch-friendly nav items */
  .main-nav a {
    padding: 14px 12px;
    min-height: 44px;
  }

  /* Tablet: hero typography */
  .hero-copy h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
  }

  /* Tablet: section padding */
  .hero,
  .section,
  .page-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Tablet: product cards */
  .product-card-img {
    aspect-ratio: 4 / 3;
  }

  /* Tablet: btn touch targets */
  .btn,
  .btn-sm {
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 64px;
  }

  .brand-wordmark {
    width: 108px;
  }

  .hero,
  .page-hero,
  .section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-note,
  .product-body,
  .contact-card,
  .narrative-card,
  .cart-drawer {
    padding: 18px;
  }

  .hero-monogram {
    width: 44px;
    height: 44px;
    top: 12px;
    right: 12px;
  }

  .hero-monogram img {
    width: 20px;
    height: 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile: product foot stays inline on single-column layout */
  .product-foot {
    flex-direction: row;
    align-items: center;
  }

  /* Mobile: touch-friendly form inputs */
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .product-options select {
    min-height: 44px;
    padding: 10px 13px;
    font-size: 1rem;
  }

  /* Mobile: qty buttons bigger touch target */
  .qty-button {
    width: 40px;
    height: 40px;
  }

  .lang-toggle .lang-label {
    display: none;
  }

  /* Mobile: typography scale */
  h1, .h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  h2, .h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  h3, .h3 { font-size: clamp(1.1rem, 4vw, 1.4rem); }

  /* Mobile: card padding */
  .product-card,
  .narrative-card,
  .contact-card,
  .values-card {
    padding: 16px;
  }

  /* Mobile: section headings */
  .section-label {
    font-size: 0.7rem;
  }

  /* Mobile: hero / contact buttons full-width and centered */
  .hero-actions,
  .contact-actions,
  .profile-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .contact-actions .button,
  .profile-actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Mobile: footer stack nicely */
  .footer-inner {
    gap: 32px;
    text-align: center;
  }

  .footer-inner > * {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-socials {
    gap: 12px;
    justify-content: center;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon svg {
    width: 17px;
    height: 17px;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  /* Mobile: contact info cards stack */
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Mobile: checkout / account full-width btns */
  .checkout-actions,
  .account-actions {
    flex-direction: column;
  }

  /* Mobile: cart drawer header */
  .cart-header {
    padding: 14px 16px;
  }

  /* Mobile: form inputs larger touch area */
  .form-input,
  .form-select,
  .form-textarea {
    padding: 13px 14px;
    font-size: 1rem;
  }

  /* Mobile: btn full-width in stacked contexts */
  .btn {
    min-height: 48px;
  }
}

/* ── Account dropdown ────────────────────────────────────────────────────── */

.account-dropdown {
  position: relative;
}

.account-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 188px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 90;
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transform-origin: top right;
  transition: opacity 160ms ease, transform 160ms ease;
}

.account-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.account-menu-user {
  padding: 10px 10px 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}

.account-menu-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.account-menu-email {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 172px;
}

.account-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}

.account-menu-item:hover {
  background: rgba(207, 166, 106, 0.12);
  color: var(--gold-deep);
}

.account-menu-item svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Auth drawer ─────────────────────────────────────────────────────────── */

.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 18, 13, 0.30);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 80;
}

.auth-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.auth-drawer {
  position: fixed;
  top: 14px;
  right: 14px;
  width: min(420px, calc(100vw - 20px));
  max-height: calc(100vh - 28px);
  display: flex;
  flex-direction: column;
  z-index: 81;
  transform: translateX(calc(100% + 20px));
  transition: transform 240ms ease;
  border-radius: var(--radius);
  background: var(--surface);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}

.auth-drawer.is-open {
  transform: translateX(0);
}

body.auth-open {
  overflow: hidden;
}

/* Header contains .auth-tabs (left) + .auth-close (right) */
.auth-drawer-header {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
  padding: 0 14px 0 0;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.auth-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  color: var(--muted);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
  align-self: center;
}

.auth-close:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.auth-close svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.auth-tabs {
  display: flex;
  gap: 0;
  flex: 1;
}

.auth-tab {
  flex: 1;
  padding: 16px 12px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  margin-bottom: -1px;
  transition: color var(--transition), border-color var(--transition);
}

.auth-tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.auth-tab:hover:not(.is-active) {
  color: var(--ink);
}

.auth-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

/* Visibility handled by the hidden attribute set in JS */
.auth-panel[hidden] {
  display: none;
}

.auth-panel-heading {
  font-family: "EB Garamond", serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--ink);
}

.auth-panel-lead {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.5;
}

.auth-feedback {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 16px;
}

.auth-feedback.is-error {
  background: rgba(180, 50, 30, 0.08);
  border: 1px solid rgba(180, 50, 30, 0.18);
  color: #a33020;
}

.auth-feedback.is-success {
  background: rgba(40, 140, 80, 0.08);
  border: 1px solid rgba(40, 140, 80, 0.18);
  color: #1d6b3e;
}

.form-link {
  font-size: 0.83rem;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

.pw-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}

.form-link button,
.form-link a {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--gold-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: inherit;
}

.form-link button:hover,
.form-link a:hover {
  color: var(--ink);
}

/* Auth drawer — compact form spacing */
.auth-drawer-body .contact-form {
  gap: 12px;
}

.auth-drawer-body .contact-form .form-section-label:first-child {
  margin-top: 0;
}

/* Auth drawer mobile */
@media (max-width: 500px) {
  .auth-drawer {
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    width: 100vw;
  }
}

/* Small phones ≤390px */
@media (max-width: 390px) {
  :root {
    --container: min(100vw - 20px, 1240px);
    --container-tight: min(100vw - 20px, 760px);
  }

  .brand-wordmark {
    width: 96px;
  }

  .hero-copy h1 {
    font-size: 1.7rem;
  }

  .product-grid {
    gap: 14px;
  }

  .footer-socials {
    gap: 8px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
