:root {
  --ink: #0f1526;
  --deep: #1b2745;
  --brand: #2f4a86;
  --brand-tint: #dde3f0;
  --paper: #f3f5fa;
  --line: #c9d1e3;
  --text-muted: #576281;
  --white: #ffffff;

  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  --f-xs: 0.8125rem;
  --f-sm: 0.875rem;
  --f-base: 1rem;
  --f-md: 1.25rem;
  --f-lg: 1.5625rem;
  --f-xl: 1.9375rem;
  --f-2xl: 2.4375rem;
  --f-3xl: 3.0625rem;

  --container: 1240px;
  --radius: 2px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: var(--f-base);
  line-height: 1.6;
  font-feature-settings: "tnum" 0;
}

h1, h2, h3, h4 {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

a { color: var(--brand); }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.eyebrow {
  font-size: var(--f-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  min-height: 76px;
}

.brand {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: var(--f-md);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.brand b { display: block; font-weight: 500; }

.brand span { display: block; font-family: "Inter", sans-serif; font-size: 0.625rem; font-weight: 600; letter-spacing: 0.24em; color: var(--text-muted); line-height: 1.6; }

.site-footer .brand span { color: #c3cade; }

.site-nav {
  display: flex;
  gap: var(--s-2);
  margin-left: auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 var(--s-3);
  font-size: var(--f-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--deep);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover, .site-nav a:focus-visible { border-bottom-color: var(--brand); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--ink); }

.currency {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.currency button {
  min-width: 56px;
  min-height: 48px;
  padding: 0 var(--s-3);
  border: 0;
  background: var(--white);
  color: var(--deep);
  font: inherit;
  font-size: var(--f-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.currency button + button { border-left: 1px solid var(--line); }
.currency button[aria-pressed="true"] { background: var(--deep); color: var(--white); }

.basket {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: 0 var(--s-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: var(--f-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--deep);
  font-family: inherit;
  cursor: default;
}

.basket b { font-weight: 700; }

.hero {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-8);
  align-items: center;
  padding-block: var(--s-9);
}

.hero h1 {
  font-size: var(--f-3xl);
  margin: var(--s-5) 0 var(--s-5);
  max-width: 15ch;
}

.hero p.lede {
  font-size: var(--f-md);
  line-height: 1.6;
  color: var(--deep);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-5);
  margin-top: var(--s-7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 var(--s-6);
  border-radius: var(--radius);
  font-size: var(--f-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid transparent;
}

.btn-primary { background: var(--deep); color: var(--white); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--brand); }

.btn-quiet {
  background: var(--white);
  color: var(--deep);
  border-color: var(--line);
  min-height: 48px;
  padding: 0 var(--s-4);
  letter-spacing: 0.08em;
}

.btn-quiet:hover, .btn-quiet:focus-visible { border-color: var(--deep); background: var(--paper); }

.hero-note {
  font-size: var(--f-sm);
  color: var(--text-muted);
  max-width: 28ch;
}

.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  overflow: hidden;
}

.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.hero-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: var(--s-3) var(--s-4);
  font-size: var(--f-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep);
}

.media-fallback {
  position: absolute;
  inset: 0;
  background-color: var(--brand-tint);
  background-image:
    repeating-linear-gradient(45deg, rgba(47,74,134,0.16) 0 6px, rgba(47,74,134,0) 6px 12px),
    repeating-linear-gradient(-45deg, rgba(15,21,38,0.10) 0 6px, rgba(15,21,38,0) 6px 12px);
  display: none;
}

.is-missing .media-fallback { display: block; }
.is-missing img { visibility: hidden; }

.assurances {
  border-bottom: 1px solid var(--line);
}

.assurances-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.assurance {
  padding: var(--s-6) var(--s-5);
  border-left: 1px solid var(--line);
}

.assurance:first-child { border-left: 0; padding-left: 0; }
.assurance:last-child { padding-right: 0; }

.assurance h3 {
  font-family: "Inter", sans-serif;
  font-size: var(--f-base);
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: var(--s-2);
  line-height: 1.5;
}

.assurance p { font-size: var(--f-sm); color: var(--text-muted); line-height: 1.6; }

.section { padding: var(--s-9) 0; }
.section-bordered { border-top: 1px solid var(--line); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}

.section-head h2 { font-size: var(--f-2xl); margin-top: var(--s-3); }
.section-head p { font-size: var(--f-sm); color: var(--text-muted); max-width: 40ch; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--s-7);
}

.filter {
  min-height: 48px;
  padding: 0 var(--s-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--deep);
  font: inherit;
  font-size: var(--f-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.filter:hover { border-color: var(--deep); }
.filter[aria-pressed="true"] { background: var(--brand-tint); border-color: var(--brand); color: var(--deep); font-weight: 600; }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6) var(--s-5);
}

.card { display: flex; flex-direction: column; }

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
}

.card-media img { width: 100%; height: 100%; object-fit: cover; }

.card-tag {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  background: var(--white);
  border: 1px solid var(--line);
  padding: var(--s-1) var(--s-2);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep);
  line-height: 1.6;
}

.card h3 {
  font-size: var(--f-md);
  margin: var(--s-4) 0 var(--s-2);
  line-height: 1.3;
}

.card p {
  font-size: var(--f-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  margin-top: auto;
  padding-top: var(--s-4);
}

.price {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: var(--f-md);
  color: var(--ink);
  white-space: nowrap;
}

.price small {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: var(--f-xs);
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.measure {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.measure h2 { font-size: var(--f-2xl); margin-top: var(--s-3); }

.measure-note { font-size: var(--f-sm); color: var(--text-muted); max-width: 34ch; margin-top: var(--s-4); }

.measure-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--s-8);
  padding-block: var(--s-9);
}

.steps { display: grid; gap: var(--s-5); }

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
}

.step-no {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: var(--f-lg);
  color: var(--brand);
  line-height: 1.2;
}

.step h3 { font-size: var(--f-md); margin-bottom: var(--s-2); }
.step p { font-size: var(--f-sm); color: var(--text-muted); }

.page-head {
  border-bottom: 1px solid var(--line);
  padding: var(--s-9) 0 var(--s-7);
  background: var(--paper);
}

.page-head h1 { font-size: var(--f-2xl); margin: var(--s-3) 0 var(--s-4); }
.page-head p { color: var(--text-muted); max-width: 60ch; font-size: var(--f-sm); }

.legal { padding: var(--s-8) 0 var(--s-9); }

.legal-inner { max-width: 720px; }

.legal-inner > * { max-width: 100%; }

.legal h2 {
  font-size: var(--f-lg);
  margin: var(--s-8) 0 var(--s-4);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
}

.legal h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }

.legal h3 {
  font-family: "Inter", sans-serif;
  font-size: var(--f-base);
  font-weight: 600;
  margin: var(--s-5) 0 var(--s-2);
  line-height: 1.5;
}

.legal p, .legal li { font-size: var(--f-base); line-height: 1.7; color: var(--deep); }
.legal p + p { margin-top: var(--s-4); }
.legal ul { margin: var(--s-4) 0 0; padding-left: var(--s-5); }
.legal li + li { margin-top: var(--s-2); }

.legal-meta {
  margin-top: var(--s-8);
  padding: var(--s-5);
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: var(--f-sm);
  color: var(--deep);
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #dfe3ee;
  padding: var(--s-8) 0 var(--s-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s-7);
}

.site-footer .brand, .site-footer h4 { color: var(--white); }

.site-footer h4 {
  font-family: "Inter", sans-serif;
  font-size: var(--f-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
  line-height: 1.5;
}

.site-footer p, .site-footer li { font-size: var(--f-sm); line-height: 1.7; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer a { color: #ffffff; text-decoration: none; border-bottom: 1px solid #6f7d9e; }
.site-footer a:hover { border-bottom-color: var(--white); }
.site-footer .about { max-width: 40ch; color: #c3cade; margin-top: var(--s-4); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  justify-content: space-between;
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: 1px solid #313b56;
  font-size: var(--f-xs);
  color: #c3cade;
}

:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

@media (max-width: 1080px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { gap: var(--s-6); }
}

@media (max-width: 860px) {
  .hero-grid, .measure-grid { grid-template-columns: 1fr; padding-block: var(--s-8); }
  .hero-media { aspect-ratio: 3 / 2; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .assurances-grid { grid-template-columns: 1fr; }
  .assurance { border-left: 0; border-top: 1px solid var(--line); padding: var(--s-5) 0; }
  .assurance:first-child { border-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { flex-wrap: wrap; padding-block: var(--s-3); gap: var(--s-3); }
  .site-nav { margin-left: 0; order: 3; width: 100%; border-top: 1px solid var(--line); }
  .basket { margin-left: auto; }
  .hero h1 { font-size: var(--f-2xl); }
  .section { padding: var(--s-8) 0; }
}

@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: var(--f-xl); }
  .section-head h2 { font-size: var(--f-xl); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
