/* ============================================================
   Atelier Léon — demo site (Brussels ceramics, bilingual EN/FR)
   Warm artisan palette: ivory, charcoal, clay, gold
   ============================================================ */

:root {
  --ink: #2a241d;
  --muted: #7a7163;
  --cream: #f7f1e7;
  --paper: #fffcf6;
  --clay: #b4552d;
  --clay-dark: #8f3f1f;
  --gold: #c9a227;
  --line: #e7decd;
  --shadow: 0 12px 32px rgba(42, 36, 29, .08);
  --radius: 14px;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--clay); }
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.12;
}
h1 em, h2 em { font-style: italic; }
.container { max-width: 1120px; margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--paper); border-block: 1px solid var(--line); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--clay);
  margin-bottom: 16px;
}
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(32px, 4.5vw, 46px); }
.section-head .lede { margin-top: 14px; font-size: 17.5px; color: var(--muted); }
.section-foot { margin-top: 40px; text-align: center; }
.lede { font-size: 18px; color: var(--muted); }
.p-muted { color: var(--muted); font-size: 15.5px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: 600 15px var(--font-sans);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--clay); color: #fff; }
.btn-primary:hover { background: var(--clay-dark); }
.btn-light { background: #fff; color: var(--clay-dark); }
.btn-light:hover { background: #f6e7db; }
.btn-outline { border-color: var(--clay); color: var(--clay); background: transparent; }
.btn-outline:hover { background: var(--clay); color: #fff; }
.btn-ghost { border-color: rgba(255, 255, 255, .65); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255, 255, 255, .14); }
.btn-ghost-light { border-color: rgba(255, 255, 255, .65); color: #fff; background: transparent; }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .14); }
.btn-block { width: 100%; margin-top: 6px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 241, 231, .92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 18px rgba(42, 36, 29, .06); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 21px; height: 21px; }
.brand-text { font-family: var(--font-serif); font-size: 20px; font-weight: 600; }
.brand-text em { font-style: italic; color: var(--clay); }
.brand-light { color: #fff; }
.brand-light .brand-text em { color: #f0b98c; }

.site-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav-link { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; position: relative; transition: color .15s ease; }
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); font-weight: 600; }
.nav-link.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  margin-top: 5px;
}
.nav-cta { margin-left: 6px; padding: 11px 20px; font-size: 14.5px; }

.lang-toggle {
  display: inline-flex;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper);
}
.lang-btn {
  border: 0;
  background: transparent;
  font: 600 12.5px var(--font-sans);
  letter-spacing: .06em;
  padding: 8px 13px;
  cursor: pointer;
  color: var(--muted);
  transition: background .15s ease, color .15s ease;
}
.lang-btn.active { background: var(--ink); color: #fff; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span { width: 18px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 100px 0 110px;
  color: #fff;
  background: linear-gradient(120deg, #2a241d, #4a3a2a);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30, 22, 14, .82) 0%, rgba(30, 22, 14, .5) 55%, rgba(30, 22, 14, .25) 100%); }
.hero-content { position: relative; max-width: 700px; }
.hero .eyebrow { color: #f0c88a; }
.hero h1 { font-size: clamp(38px, 5.6vw, 60px); margin-bottom: 22px; }
.hero h1 em { color: #f0c88a; }
.hero .lede { color: rgba(255, 255, 255, .9); font-size: 18.5px; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Values strip */
.values-strip { background: var(--ink); color: #fff; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 34px 0;
  text-align: center;
}
.values-grid strong { display: block; font-family: var(--font-serif); font-size: 21px; color: #f0c88a; }
.values-grid span { font-size: 13.5px; color: rgba(255, 255, 255, .72); }

/* Work cards */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card, .service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.work-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(42, 36, 29, .14); }
.work-card .media { aspect-ratio: 4 / 5; }
.work-card-body { padding: 20px 22px 24px; }
.work-card-body h3 { font-size: 20px; margin-bottom: 4px; }
.price { font-weight: 700; color: var(--clay); font-size: 15px; }
.card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; }
.link-arrow { color: var(--clay); font-weight: 600; text-decoration: none; }
.link-arrow:hover { color: var(--clay-dark); }

.media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f2e4d2, var(--line));
}
.media img { width: 100%; height: 100%; object-fit: cover; }

.service-card { padding: 30px; }
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 15px; }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #f6e7db;
  color: var(--clay);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }

/* Two-column */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-2 h2 { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 14px; }
.cta-row { margin-top: 28px; }
.check-list { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; }
.check-list li::before {
  content: "✓";
  width: 23px; height: 23px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f6e7db;
  color: var(--clay);
  font-weight: 700;
  font-size: 12px;
  display: grid; place-items: center;
  margin-top: 2px;
}

/* Press quote */
.press-quote { text-align: center; max-width: 760px; margin-inline: auto; }
.press-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.3;
  color: var(--ink);
}
.press-quote figcaption { margin-top: 20px; color: var(--muted); font-size: 15px; letter-spacing: .04em; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--clay-dark), var(--clay) 60%, #d4885a); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding: 64px 24px; }
.cta-band .eyebrow { color: #ffe0c4; }
.cta-inner h2 { font-size: clamp(28px, 3.6vw, 40px); max-width: 620px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .72); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 52px; }
.footer-brand p { font-size: 14.5px; margin-top: 18px; max-width: 320px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.footer-col h4 { color: #f0c88a; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; }
.footer-col a { color: rgba(255, 255, 255, .72); text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13.5px; color: rgba(255, 255, 255, .5);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 24px;
}
.footer-bottom a { color: rgba(255, 255, 255, .65); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* Inner page hero */
.page-hero { background: linear-gradient(120deg, #2a241d, #4a3a2a); color: #fff; padding: 84px 0 72px; }
.page-hero .eyebrow { color: #f0c88a; }
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); max-width: 760px; margin-bottom: 18px; }
.page-hero .lede { color: rgba(255, 255, 255, .88); max-width: 640px; }

/* Filter bar + gallery */
.filter-bar { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font: 600 14px var(--font-sans);
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.gallery-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-card .media { aspect-ratio: 4 / 5; border-radius: 0; box-shadow: none; }
.gallery-card figcaption { padding: 18px 20px 20px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gallery-card figcaption strong { font-family: var(--font-serif); font-size: 18px; font-weight: 600; }
.gallery-card figcaption span { color: var(--clay); font-weight: 700; }

/* Note card */
.note-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); max-width: 760px; margin-inline: auto; }
.note-card h3 { font-size: 24px; margin-bottom: 8px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 26px; align-items: start; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 38px; }
.form-card h2 { font-size: 28px; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; font-size: 14px; font-weight: 600; }
.field input, .field select, .field textarea {
  font: 500 15px var(--font-sans);
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(180, 85, 45, .14);
}
.field-full { grid-column: 1 / -1; margin-top: 18px; }
.form-note { margin-top: 16px; font-size: 13px; color: var(--muted); }
.form-success { background: #f6e7db; border: 1px solid var(--clay); color: var(--clay-dark); border-radius: var(--radius); padding: 30px; }
.form-success h3 { font-size: 22px; margin-bottom: 8px; }
.info-stack { display: grid; gap: 18px; position: sticky; top: 100px; }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow); }
.info-card h3 { font-size: 17px; margin-bottom: 8px; }
.info-card p { font-size: 14.5px; }
.info-card .p-muted { margin-top: 6px; }
.info-link { font-family: var(--font-serif); font-size: 20px; font-weight: 600; text-decoration: none; color: var(--clay); }
.info-link:hover { color: var(--clay-dark); }
.info-mail { color: var(--clay); font-weight: 600; text-decoration: none; }
.map { width: 100%; height: 400px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); display: block; background: #f2e4d2; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Responsive */
@media (max-width: 960px) {
  .cards-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-stack { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 68px 0; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .site-nav {
    position: fixed;
    top: 76px;
    left: 16px; right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 14px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-link { padding: 11px 12px; border-radius: 10px; font-size: 16px; }
  .nav-link.active { background: #f6e7db; }
  .nav-link.active::after { display: none; }
  .hero { min-height: 0; padding: 84px 0 96px; }
  .form-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 18px; text-align: left; }
}
@media (max-width: 560px) {
  .cards-grid, .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .info-stack { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
}
