/* France Boutique — токены: слоновая кость, тёмно-синий, латунь */

:root {
  --bg: #F5F1E6;
  --surface: #FFFFFF;
  --ink: #1C1B18;
  --ink-soft: #5B5648;
  --navy: #1F2A44;
  --gold: #A9832E;
  --blush: #B96B71;
  --line: rgba(28, 27, 24, 0.14);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --container: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
}

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

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* Header */
.site-header {
  background: var(--navy);
  color: #F5F1E6;
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #F5F1E6; }
.brand img { width: 36px; height: 36px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.02em; }
.brand-text span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

nav.main-nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
nav.main-nav a {
  text-decoration: none; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #E7E2D3; border-bottom: 1px solid transparent; padding-bottom: 3px;
}
nav.main-nav a:hover, nav.main-nav a[aria-current="page"] { border-color: var(--gold); color: #fff; }

/* Hero */
.hero { padding: 74px 0 60px; border-bottom: 1px solid var(--line); }
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blush); margin: 0 0 14px; }
.hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(36px, 4.6vw, 60px); line-height: 1.05; margin: 0 0 20px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lead { font-size: 18px; color: var(--ink-soft); max-width: 48ch; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn { display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: 14px; text-decoration: none; padding: 13px 24px; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: #142035; }
.btn-ghost { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-figure { background: var(--surface); border: 1px solid var(--line); padding: 18px; }
.hero-figure svg { width: 100%; height: auto; }
.hero-figure figcaption { margin-top: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; }

section { padding: 62px 0; }
section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 36px; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(28px, 3.2vw, 38px); margin: 0; }
.section-head p { margin: 0; color: var(--ink-soft); max-width: 42ch; font-size: 15px; }

/* Arrondissement directory — signature element */
.directory { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.directory li {
  display: grid; grid-template-columns: 70px 1fr auto; gap: 22px; align-items: center;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.directory .num {
  font-family: var(--font-display); font-size: 34px; color: var(--gold); line-height: 1;
}
.directory h3 { font-family: var(--font-display); font-size: 21px; margin: 0 0 4px; }
.directory p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.directory .arr-tag { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); white-space: nowrap; }

/* Article grid */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.article-card { background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; }
.article-card .thumb { aspect-ratio: 4/3; background: var(--bg); border-bottom: 1px solid var(--line); }
.article-card .body { padding: 20px; }
.article-card .kicker { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blush); margin: 0 0 8px; }
.article-card h3 { font-family: var(--font-display); font-size: 21px; margin: 0 0 8px; }
.article-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.article-card .meta { margin-top: 14px; font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); }

.article-list-full { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.article-row { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.article-row .thumb { aspect-ratio: 1; background: var(--surface); border: 1px solid var(--line); }
.article-row .kicker { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blush); margin: 0 0 6px; }
.article-row h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 6px; }
.article-row p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }

/* Quote / pull */
.pull-quote {
  border-left: 3px solid var(--gold); padding: 4px 0 4px 24px; margin: 0;
  font-family: var(--font-display); font-style: italic; font-size: 24px; color: var(--navy);
}
.pull-quote cite { display: block; font-family: var(--font-mono); font-style: normal; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-top: 10px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field textarea { width: 100%; font-family: var(--font-body); font-size: 15px; padding: 12px 14px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-list b { display: block; font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 4px; }

footer.site-footer { background: var(--navy); color: #E7E2D3; padding: 36px 0; }
footer.site-footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
footer.site-footer p { margin: 0; font-size: 13px; color: #B7AF98; }
footer .foot-nav { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; font-size: 13px; }
footer .foot-nav a { text-decoration: none; color: #E7E2D3; }
footer .foot-nav a:hover { color: var(--gold); }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .directory li { grid-template-columns: 50px 1fr; }
  .directory .arr-tag { grid-column: 2; }
  .article-row { grid-template-columns: 84px 1fr; }
  nav.main-nav ul { gap: 14px; flex-wrap: wrap; }
  .site-header .wrap { flex-wrap: wrap; row-gap: 12px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
