/* =============================================================
   Cabinet Dagna Frydryszak — feuille de style
   Aesthetic : warm editorial · Parisian · accessible
   ============================================================= */

:root {
  /* Palette : papier, encre, laiton */
  --paper:        #F2EADA;
  --paper-warm:   #EAE0CB;
  --paper-deep:   #DFD3B7;
  --ink:          #1A1814;
  --ink-soft:     #4A4136;
  --ink-mute:     #7A6E5E;
  --gold:         #A47A38;
  --gold-deep:    #7A5A28;
  --burgundy:     #6E2D2A;
  --rule:         rgba(26, 24, 20, 0.18);
  --rule-soft:    rgba(26, 24, 20, 0.10);

  /* Typo */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body:    'Newsreader', Georgia, 'Times New Roman', serif;

  /* Mesure */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(5rem, 10vw, 9rem);

  /* Type scale */
  --t-xxs: 0.78rem;
  --t-xs:  0.875rem;
  --t-sm:  1rem;
  --t-md:  1.125rem;
  --t-lg:  1.25rem;
  --t-xl:  1.5rem;
  --t-2xl: clamp(1.75rem, 3vw, 2.25rem);
  --t-3xl: clamp(2.25rem, 4.5vw, 3.5rem);
  --t-4xl: clamp(3rem, 7vw, 5.5rem);
  --t-5xl: clamp(3.5rem, 9vw, 7rem);

  /* Motion — design tokens for consistent, refined transitions.
     "Out" curves for entries (decelerate into rest),
     "in-out" for state shifts, a tiny spring for tactile feedback. */
  --ease-out-quart:    cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-spring:       cubic-bezier(0.34, 1.4, 0.64, 1);

  --dur-xfast: 140ms;
  --dur-fast:  220ms;
  --dur-base:  340ms;
  --dur-med:   520ms;
  --dur-slow:  780ms;
  --dur-xslow: 1100ms;
}

/* -------- Reset light -------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Anchor jumps respect the sticky header */
  scroll-padding-top: 5.5rem;
}
body, h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; }

/* -------- Base -------- */
html, body { background: var(--paper); color: var(--ink); }

body {
  font-family: var(--body);
  font-size: var(--t-md);
  line-height: 1.65;
  font-variant-numeric: oldstyle-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

/* Subtle paper grain over everything */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.10 0 0 0 0 0.09 0 0 0 0 0.08 0 0 0 0.16 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* -------- Typography defaults -------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 350;
  font-variation-settings: 'opsz' 80, 'SOFT' 50;
  letter-spacing: -0.012em;
  line-height: 1.05;
  color: var(--ink);
}

p { color: var(--ink-soft); }
p strong, p b { color: var(--ink); font-weight: 500; }
em, i { font-style: italic; }
em { color: var(--gold-deep); font-family: var(--display); font-weight: 350; }

a {
  text-decoration: none;
  color: var(--ink);
  transition: color var(--dur-fast) var(--ease-out-quart);
}

::selection { background: var(--ink); color: var(--paper); }

/* -------- Layout helpers -------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}

.section { padding-block: var(--section-y); position: relative; }
.section + .section { border-top: 1px solid var(--rule-soft); }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(1rem, 3vw, 2.5rem);
  row-gap: 0.75rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.section-head .numeral { grid-row: 1 / span 2; }
.section-head .section-title { grid-column: 2; }
.section-head .section-kicker {
  grid-column: 2;
  font-size: var(--t-md);
  color: var(--ink-soft);
  max-width: 60ch;
  font-style: italic;
}

.numeral {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
}

.section-title {
  font-size: var(--t-3xl);
  font-weight: 350;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
}
.section-title em {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold-deep);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
}
@media (min-width: 920px) {
  .two-col { grid-template-columns: 16rem 1fr; align-items: start; }
}
.col-marker { position: sticky; top: 6rem; }
@media (max-width: 919px) {
  .col-marker { display: flex; align-items: baseline; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--rule); }
}
.col-marker .section-title { font-size: var(--t-2xl); margin-top: 0.25rem; }

/* =============================================================
   SKIP LINK
   ============================================================= */
.skip {
  position: absolute;
  top: -100px; left: 1rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  border-radius: 2px;
  font-size: var(--t-sm);
}
.skip:focus { top: 1rem; }


/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--dur-med) var(--ease-out-quart),
    background-color var(--dur-med) var(--ease-out-quart),
    backdrop-filter var(--dur-med) var(--ease-out-quart),
    padding var(--dur-med) var(--ease-out-quart);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
.site-header[data-scrolled='true'] {
  border-bottom-color: var(--rule);
  background: rgba(242, 234, 218, 0.86);
  backdrop-filter: saturate(1.1) blur(10px);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
}
.site-header[data-scrolled='true'] .header-inner { padding-block: 0.85rem; }
.header-inner { transition: padding var(--dur-med) var(--ease-out-quart); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 30;
  font-size: 1.15rem;
  width: 2.4rem; height: 2.4rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  letter-spacing: -0.02em;
  position: relative;
  transition:
    background-color var(--dur-base) var(--ease-out-quart),
    color var(--dur-base) var(--ease-out-quart),
    border-color var(--dur-base) var(--ease-out-quart),
    transform var(--dur-med) var(--ease-spring);
}
.brand:hover .brand-mark {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(-6deg);
}
.brand:hover .brand-mark-amp { color: var(--gold); }
.brand-mark-amp { color: var(--gold-deep); margin-inline: 1px; font-style: normal; }
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name-line {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  font-variation-settings: 'opsz' 30, 'SOFT' 50;
  letter-spacing: -0.005em;
}
.brand-name-sub {
  font-size: 0.72rem;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  gap: clamp(1.25rem, 2.4vw, 2rem);
  align-items: center;
}
.nav-list a {
  font-size: 0.95rem;
  position: relative;
  color: var(--ink-soft);
  transition: color var(--dur-fast) var(--ease-out-quart);
  padding-block: 0.25rem;
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--dur-base) var(--ease-out-expo);
}
.nav-list a:hover, .nav-list a:focus-visible { color: var(--ink); }
.nav-list a:hover::after, .nav-list a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.nav-list .nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition:
    background-color var(--dur-base) var(--ease-out-quart),
    color var(--dur-base) var(--ease-out-quart),
    transform var(--dur-base) var(--ease-out-expo);
}
.nav-list .nav-cta:hover {
  background: var(--gold-deep);
  color: var(--paper);
  transform: translateY(-1px);
}
.nav-list .nav-cta:active { transform: translateY(0) scale(0.97); transition-duration: var(--dur-xfast); }
.nav-list .nav-cta::after { display: none; }

.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .nav-toggle-bars {
    display: inline-flex; flex-direction: column; gap: 5px; width: 22px;
  }
  .nav-toggle-bars span {
    display: block; height: 1px; background: var(--ink); width: 100%;
    transition: transform var(--dur-base) var(--ease-out-expo);
  }
  .nav-toggle[aria-expanded='true'] .nav-toggle-bars span:first-child { transform: translateY(3px) rotate(45deg); }
  .nav-toggle[aria-expanded='true'] .nav-toggle-bars span:last-child { transform: translateY(-3px) rotate(-45deg); }

  .nav-list {
    position: fixed;
    top: 4.6rem;
    right: 0;
    left: 0;
    height: calc(100dvh - 4.6rem);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--paper-warm);
    padding: 1.5rem var(--gutter) 2rem;
    gap: 0;
    border-top: 1px solid var(--rule);
    transform: translateY(-100%);
    transition:
      transform var(--dur-med) var(--ease-in-out-quart),
      visibility var(--dur-med);
    visibility: hidden;
    z-index: 80;
    overflow-y: auto;
  }
  .nav-list[data-open='true'] {
    transform: translateY(0);
    visibility: visible;
  }
  .nav-list li { border-bottom: 1px solid var(--rule-soft); }
  .nav-list a {
    display: block;
    padding-block: 1.1rem;
    font-family: var(--display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--ink);
  }
  .nav-list .nav-cta {
    margin-top: 1.5rem;
    text-align: center;
    border-radius: 0;
    font-style: normal;
    font-family: var(--body);
    font-size: 1rem;
    padding: 1rem;
  }
}


/* =============================================================
   HERO
   ============================================================= */
.hero {
  padding-block: clamp(3rem, 7vw, 6rem) 0;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}
@media (min-width: 920px) {
  .hero-inner { grid-template-columns: 1.15fr 0.85fr; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2rem;
  font-variant-numeric: lining-nums;
  opacity: 0;
  animation: fade-in 0.7s var(--ease-out-quart) 0.05s forwards;
}
.eyebrow-mark {
  width: 0; height: 1px;
  background: var(--gold);
  display: inline-block;
  animation: rule-extend 0.9s var(--ease-out-expo) 0.18s forwards;
}
@keyframes rule-extend { to { width: 2.5rem; } }

.hero-title {
  font-size: var(--t-5xl);
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  letter-spacing: -0.025em;
  line-height: 0.96;
  color: var(--ink);
  margin-bottom: 2.5rem;
}
.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(0.55em);
  /* Mask each line so its rise reads as a stage curtain reveal */
  -webkit-mask-image: linear-gradient(180deg, #000 80%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 80%, transparent 100%);
  animation: line-rise 1.15s var(--ease-out-expo) forwards;
}
.hero-title-line:nth-child(1) { animation-delay: 0.10s; }
.hero-title-line:nth-child(2) { animation-delay: 0.22s; }
.hero-title-line:nth-child(3) { animation-delay: 0.34s; }
.hero-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

@keyframes line-rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-lede {
  font-size: var(--t-lg);
  line-height: 1.55;
  max-width: 38rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(8px);
  animation: fade-rise 0.9s var(--ease-out-expo) 0.55s forwards;
}

@keyframes fade-in { to { opacity: 1; } }
@keyframes fade-rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(8px);
  animation: fade-rise 0.9s var(--ease-out-expo) 0.7s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-size: 1rem;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  transition:
    transform var(--dur-base) var(--ease-out-expo),
    background-color var(--dur-base) var(--ease-out-quart),
    color var(--dur-base) var(--ease-out-quart),
    border-color var(--dur-base) var(--ease-out-quart),
    box-shadow var(--dur-base) var(--ease-out-quart);
  will-change: transform;
}
.btn:active { transition-duration: var(--dur-xfast); transform: translateY(0) scale(0.985); }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 18px -12px rgba(26,24,20,0.5);
}
.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 18px 30px -18px rgba(122,90,40,0.55);
}
.btn-primary:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 6px 14px -10px rgba(122,90,40,0.4);
}
.btn-primary .btn-detail {
  font-variant-numeric: lining-nums tabular-nums;
  border-left: 1px solid rgba(242, 234, 218, 0.3);
  padding-left: 0.65rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: border-color var(--dur-base) var(--ease-out-quart);
}
.btn-primary:hover .btn-detail { border-left-color: rgba(242, 234, 218, 0.55); }

/* Subtle sheen sweeping on hover for the primary CTA */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 30%, rgba(242,234,218,0.12) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform var(--dur-slow) var(--ease-out-expo);
  pointer-events: none;
  z-index: -1;
}
.btn-primary:hover::before { transform: translateX(110%); }

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -22px rgba(26,24,20,0.5);
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  padding-top: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  animation: fade-rise 0.9s var(--ease-out-expo) 0.85s forwards;
}

.hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--rule);
}
.hero-meta li:last-child { border-bottom: none; }

@media (min-width: 600px) {
  .hero-meta li {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    gap: 1.5rem;
    align-items: baseline;
  }
}

.meta-key {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-variant-numeric: lining-nums;
}
.meta-val {
  font-size: 0.95rem;
  color: var(--ink);
}

/* Portrait */
.hero-portrait {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fade-rise 1.1s var(--ease-out-expo) 0.45s forwards;
  translate: 0 var(--parallax-y, 0);
  will-change: translate;
}
.portrait-frame {
  position: relative;
  padding: 1.4rem;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 0.55rem;
  border: 1px solid var(--rule);
  pointer-events: none;
  z-index: 2;
}
.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 1.2s var(--ease-out-expo), filter var(--dur-slow) var(--ease-out-quart);
  /* Slow reveal — image pulls into view from below its frame */
  clip-path: inset(100% 0 0 0);
  animation: portrait-unveil 1.4s var(--ease-out-expo) 0.55s forwards;
}
@keyframes portrait-unveil {
  to { clip-path: inset(0 0 0 0); }
}
.portrait-frame:hover img {
  transform: scale(1.025);
  filter: saturate(1.02) contrast(1.04);
}

/* Corner ticks tighten in — like calipers settling */
.portrait-corner {
  opacity: 0;
  animation: corner-in 0.7s var(--ease-out-expo) forwards;
}
.portrait-corner--tl { animation-delay: 1.45s; }
.portrait-corner--tr { animation-delay: 1.55s; }
.portrait-corner--bl { animation-delay: 1.65s; }
.portrait-corner--br { animation-delay: 1.75s; }
@keyframes corner-in { to { opacity: 1; } }

.portrait-corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  z-index: 2;
}
.portrait-corner--tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.portrait-corner--tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.portrait-corner--bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.portrait-corner--br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.hero-portrait figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ink-mute);
  padding-top: 0.25rem;
}
.portrait-name { font-family: var(--display); font-style: italic; font-size: 1.05rem; color: var(--ink); }
.portrait-name em { color: var(--gold-deep); }
.portrait-line { letter-spacing: 0.05em; font-variant-numeric: lining-nums; }

/* Marquee */
.hero-marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding-block: 1rem;
  background: var(--paper-warm);
  position: relative;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 1.5rem;
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  color: var(--ink);
  animation: marquee 38s linear infinite;
  animation-play-state: running;
}
.hero-marquee:hover .marquee-track { animation-play-state: paused; }
/* Soft fade at the marquee edges — premium framing detail */
.hero-marquee::before,
.hero-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 4rem;
  z-index: 2;
  pointer-events: none;
}
.hero-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper-warm), transparent);
}
.hero-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper-warm), transparent);
}
.marquee-track span:nth-child(even) { color: var(--gold); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* =============================================================
   CABINET
   ============================================================= */
.section-cabinet { background: var(--paper); }

/* Illustrations */
.section-illus {
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.75rem);
  translate: 0 var(--parallax-y, 0);
  will-change: translate;
}
.section-illus img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.92);
  mix-blend-mode: multiply;
}

/* Cabinet — tiny marginalia vignette, very subtle */
.section-illus--cabinet {
  margin: 1.5rem auto 0.5rem;
  max-width: 11rem;
  text-align: center;
}
.section-illus--cabinet img {
  width: 100%;
  height: auto;
  filter: saturate(0.7) contrast(0.92) sepia(0.15);
  opacity: 0.7;
  mix-blend-mode: multiply;
}
@media (min-width: 720px) {
  .section-illus--cabinet {
    float: right;
    width: 11rem;
    margin: 0.6rem -1rem 1rem 1.5rem;
    shape-outside: inset(0);
  }
}
@media (max-width: 600px) {
  .section-illus { margin-bottom: 1.5rem; }
}

.lead {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 350;
  font-variation-settings: 'opsz' 80, 'SOFT' 60;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
}
.lead em { color: var(--gold-deep); }

.col-body p { font-size: var(--t-md); margin-bottom: 1.25rem; max-width: 62ch; }
.col-body p:last-of-type { margin-bottom: 0; }

.pull-quote {
  margin-block: 3rem;
  padding-left: 2rem;
  border-left: 2px solid var(--gold);
  position: relative;
}
/* The gold border draws itself in when the quote enters view */
.js .reveal.pull-quote { border-left-color: transparent; }
.js .reveal.pull-quote.is-visible {
  border-left-color: var(--gold);
  transition:
    opacity var(--dur-slow) var(--ease-out-expo),
    transform var(--dur-slow) var(--ease-out-expo),
    border-left-color var(--dur-xslow) var(--ease-out-quart) 200ms;
}
.pull-quote p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  color: var(--ink);
  font-variation-settings: 'opsz' 80, 'SOFT' 80;
}

.values {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 720px) {
  .values {
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--rule);
  }
}
.values li {
  position: relative;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule-soft);
}
.values li:last-child { border-bottom: none; }
@media (min-width: 720px) {
  .values li {
    padding: 1.5rem 1.75rem 0.5rem;
    border-bottom: none;
  }
  /* Vertical rules sit between columns, contained within the top rule */
  .values li + li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0.5rem;
    width: 1px;
    background: var(--rule-soft);
  }
  .values li:first-child { padding-left: 0; }
  .values li:last-child  { padding-right: 0; }
}
.value-num {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-variant-numeric: lining-nums;
  display: block;
  margin-bottom: 1.25rem;
  position: relative;
  transition: color var(--dur-base) var(--ease-out-quart), letter-spacing var(--dur-med) var(--ease-out-expo);
}
.values li:hover .value-num { color: var(--gold-deep); letter-spacing: 0.36em; }
.values h3 { transition: color var(--dur-base) var(--ease-out-quart); }
/* Tiny gold tick that anchors the number to the top rule */
@media (min-width: 720px) {
  .value-num::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 0;
    width: 1.75rem;
    height: 1px;
    background: var(--gold);
  }
  .values li:first-child .value-num::before { left: 0; }
}
.values h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-variation-settings: 'opsz' 80, 'SOFT' 60;
  line-height: 1.15;
}
.values p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 32ch;
}


/* =============================================================
   DOMAINES
   ============================================================= */
.section-domaines { background: var(--paper-warm); }

.domains {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: dom;
  border-top: 1px solid var(--rule);
}
.domain {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
  transition:
    padding var(--dur-med) var(--ease-out-expo),
    background-color var(--dur-med) var(--ease-out-quart);
}
.domain:hover {
  padding-inline: 1rem;
  background: rgba(255, 250, 240, 0.45);
}

.domain-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  padding-top: 0.4rem;
  border-right: 1px solid var(--rule);
  display: inline-block;
  transition:
    color var(--dur-base) var(--ease-out-quart),
    transform var(--dur-med) var(--ease-out-expo),
    border-color var(--dur-med) var(--ease-out-quart);
}
.domain:hover .domain-num {
  color: var(--gold-deep);
  transform: translateX(4px);
  border-right-color: var(--gold);
}
.domain-body h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 350;
  font-variation-settings: 'opsz' 80, 'SOFT' 60;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  transition: color var(--dur-base) var(--ease-out-quart);
}
.domain:hover .domain-body h3 { color: var(--burgundy); }
.domain-body p {
  font-size: var(--t-md);
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .domain { grid-template-columns: 3rem 1fr; gap: 1rem; }
  .domain-num { padding-right: 0.5rem; }
}


/* =============================================================
   INFORMATIONS PRATIQUES
   ============================================================= */
.section-info {
  background: var(--paper-warm);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Large faded backdrop image — modern editorial treatment */
.section-info .section-bg {
  position: absolute;
  inset: auto -8% -10% auto;
  width: clamp(28rem, 70vw, 64rem);
  height: auto;
  max-height: 130%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0.28;
  mix-blend-mode: multiply;
  filter: saturate(0.85) contrast(0.95);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 70% 60%, #000 30%, transparent 85%);
          mask-image: radial-gradient(ellipse 90% 90% at 70% 60%, #000 30%, transparent 85%);
}
.section-info .container { position: relative; z-index: 1; }

@media (max-width: 720px) {
  .section-info .section-bg {
    inset: auto -30% -10% auto;
    width: 130%;
    opacity: 0.22;
  }
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) { .info-grid { grid-template-columns: 1fr 1fr; } }

.info-card {
  padding: 2rem 2rem 2.25rem;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  position: relative;
  transition:
    transform var(--dur-med) var(--ease-out-expo),
    box-shadow var(--dur-med) var(--ease-out-quart),
    border-color var(--dur-med) var(--ease-out-quart);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(26, 24, 20, 0.04),
    0 28px 50px -32px rgba(26, 24, 20, 0.32);
  border-color: rgba(26, 24, 20, 0.18);
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2.5rem; height: 1px;
  background: var(--gold);
  transition: width var(--dur-med) var(--ease-out-expo);
}
.info-card:hover::before { width: 5rem; }
.info-card h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1rem;
  font-variation-settings: 'opsz' 80, 'SOFT' 60;
  color: var(--ink);
}
.info-card p {
  font-size: 0.98rem;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}
.info-card p:last-child { margin-bottom: 0; }

.bullets {
  margin-block: 0.5rem 1rem;
  padding-left: 1.25rem;
}
.bullets li {
  position: relative;
  padding-left: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
  list-style: none;
}
.bullets li::before {
  content: '';
  position: absolute;
  left: -0.5rem; top: 0.7em;
  width: 6px; height: 1px;
  background: var(--gold);
}

.info-note {
  font-style: italic;
  color: var(--ink-mute);
  font-size: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--rule-soft);
}

.lang-list {
  display: grid;
  gap: 0.6rem;
}
.lang-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.4rem;
  border-bottom: 1px dotted var(--rule-soft);
  font-size: 0.98rem;
  transition: border-bottom-color var(--dur-base) var(--ease-out-quart);
}
.lang-list li:hover { border-bottom-color: var(--gold); }
.lang-list li:last-child { border-bottom: none; }
.lang-list span:first-child {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}
.lang-level {
  font-size: 0.8rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}


/* =============================================================
   CONTACT
   ============================================================= */
.section-contact {
  background: var(--ink);
  color: var(--paper);
}
.section-contact .section-title,
.section-contact .numeral { color: var(--paper); }
.section-contact .numeral { color: var(--gold); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
@media (min-width: 920px) { .contact-inner { grid-template-columns: 1.2fr 0.8fr; } }

.contact-text .numeral { display: block; margin-bottom: 0.5rem; }
.contact-title {
  font-size: var(--t-4xl);
  margin-bottom: 1.5rem;
}
.contact-title em { color: var(--gold); }

.contact-lede {
  font-size: var(--t-lg);
  color: rgba(242, 234, 218, 0.78);
  max-width: 50ch;
  margin-bottom: 3rem;
  line-height: 1.55;
}

.contact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(242, 234, 218, 0.15);
}
@media (min-width: 600px) { .contact-list { grid-template-columns: 1fr 1fr; } }
.contact-list > div {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(242, 234, 218, 0.15);
}
@media (min-width: 600px) {
  .contact-list > div:nth-child(odd) { padding-right: 2rem; border-right: 1px solid rgba(242, 234, 218, 0.15); }
  .contact-list > div:nth-child(even) { padding-left: 2rem; }
}
.contact-list dt {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 234, 218, 0.55);
  margin-bottom: 0.5rem;
}
.contact-list dd {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 350;
  font-variation-settings: 'opsz' 80, 'SOFT' 60;
  color: var(--paper);
  margin: 0;
  line-height: 1.3;
}
.contact-list dd a {
  color: var(--paper);
  border-bottom: 1px solid rgba(164, 122, 56, 0.5);
  position: relative;
  transition:
    color var(--dur-base) var(--ease-out-quart),
    border-color var(--dur-base) var(--ease-out-quart);
}
.contact-list dd a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.metro-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  background: var(--gold);
  color: var(--ink);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  margin-inline: 0.15rem;
  font-variant-numeric: lining-nums;
}

/* Business card */
.contact-card {
  background: var(--paper);
  color: var(--ink);
  padding: 2.5rem 2.25rem;
  position: relative;
  transform: rotate(-1.5deg);
  transition: transform var(--dur-slow) var(--ease-out-expo), box-shadow var(--dur-slow) var(--ease-out-quart);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.08),
    0 25px 40px -25px rgba(0, 0, 0, 0.45),
    0 60px 80px -40px rgba(0, 0, 0, 0.45);
  max-width: 26rem;
  margin-inline: auto;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(164, 122, 56, 0.06), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(110, 45, 42, 0.04), transparent 40%);
}
.contact-card:hover { transform: rotate(0deg) translateY(-4px); }

.card-corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
}
.card-corner--tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.card-corner--tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.card-corner--bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.card-corner--br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.card-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.card-name {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.card-name em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
}
.card-role {
  font-size: 0.92rem;
  color: var(--ink-mute);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
.card-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin-block: 1.25rem;
}
.card-line {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
  font-variant-numeric: lining-nums;
}
.card-line--tel { margin-top: 0.6rem; color: var(--ink); letter-spacing: 0.02em; }
.card-line--mail { color: var(--ink); }

.card-foot {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  text-transform: uppercase;
}


/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding-block: 3rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 760px) {
  .footer-inner {
    grid-template-columns: auto 1fr auto;
    gap: 2.5rem;
  }
}

.footer-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition:
    color var(--dur-fast) var(--ease-out-quart),
    border-color var(--dur-base) var(--ease-out-quart);
}
.footer-nav a:hover { color: var(--ink); border-bottom-color: var(--gold); }

.footer-legal {
  font-size: 0.78rem;
  color: var(--ink-mute);
  text-align: right;
  font-variant-numeric: lining-nums;
}
@media (max-width: 759px) {
  .footer-legal { text-align: center; }
  .footer-nav { justify-content: flex-start; }
}
.footer-legal abbr { text-decoration: none; border-bottom: 1px dotted var(--rule); }


/* =============================================================
   FOCUS — refined, animated, intentional.
   A double-ring effect (outline + inset stroke via box-shadow)
   that fades + scales in. Color follows the surface.
   ============================================================= */
:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
  transition:
    outline-color var(--dur-fast) var(--ease-out-quart),
    outline-offset var(--dur-base) var(--ease-spring),
    box-shadow var(--dur-base) var(--ease-out-quart);
  box-shadow: 0 0 0 4px rgba(164, 122, 56, 0.10);
}

/* On dark surfaces, brighten the ring */
.section-contact :focus-visible,
.call-bar :focus-visible {
  outline-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(164, 122, 56, 0.22);
}

/* Pill / button focus needs more breathing room */
.btn:focus-visible,
.nav-list .nav-cta:focus-visible,
.call-bar a:focus-visible {
  outline-offset: 5px;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(164, 122, 56, 0.14);
}

/* Inline text links: keep ring tight to glyphs */
a:focus-visible:not(.btn):not(.nav-cta):not(.brand) {
  outline-offset: 3px;
  border-radius: 1px;
}


/* =============================================================
   PARALLAX
   script.js writes --parallax-y onto .hero-portrait and .section-illus.
   We apply it to a non-animated descendant where it won't collide
   with the hero entrance animation that already drives transform on
   .hero-portrait itself.
   ============================================================= */
.section-illus img {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 80ms linear;
  will-change: transform;
}
/* Cabinet vignette is small + decorative — keep it still */
.section-illus--cabinet img { transform: none; transition: none; will-change: auto; }

@media (prefers-reduced-motion: reduce) {
  .hero-portrait,
  .section-illus img { translate: none !important; transform: none !important; }
}

/* =============================================================
   SCROLL REVEAL
   Drives the IntersectionObserver-based stagger in script.js.
   Defaults stay visible (graceful degradation if JS / IO fails).
   ============================================================= */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity var(--dur-slow) var(--ease-out-expo),
    transform var(--dur-slow) var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@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;
  }
  .marquee-track { animation: none; }
  .hero-title-line { opacity: 1; transform: none; }
  .hero-lede, .hero-actions, .hero-meta, .hero-portrait { opacity: 1; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}


/* =============================================================
   SECTION ILLUSTRATIONS
   Watercolor-style images that match the Parisian editorial tone.
   Treated as inset prints, not full-bleed photography.
   ============================================================= */
/* =============================================================
   MOBILE — small screens (≤ 600px)
   Pass tuned for iPhone SE / 13 mini / 14 / Plus.
   Goals: large tap targets, generous line-height, tighter
   vertical rhythm, prominent phone CTA, no horizontal overflow.
   ============================================================= */

@media (max-width: 600px) {

  :root {
    --section-y: 3.75rem;
    --gutter: 1.25rem;
  }

  body { font-size: 1.0625rem; line-height: 1.6; }

  /* Header */
  .header-inner { padding-block: 0.85rem; gap: 0.75rem; }
  .brand { gap: 0.6rem; min-width: 0; flex: 1; max-width: calc(100% - 5.5rem); }
  .brand-mark { width: 2.1rem; height: 2.1rem; font-size: 0.95rem; flex-shrink: 0; }
  .brand-name { min-width: 0; flex: 1; }
  .brand-name-line { font-size: 0.92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand-name-sub { font-size: 0.62rem; letter-spacing: 0.06em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  .nav-toggle { padding: 0.4rem; min-width: 44px; min-height: 44px; justify-content: flex-end; }
  .nav-toggle-label { font-size: 0.78rem; }

  .nav-list a {
    min-height: 56px;
    display: flex;
    align-items: center;
    padding-block: 0.5rem;
  }
  .nav-list .nav-cta { min-height: 56px; }

  /* Hero */
  .hero { padding-block: 1.5rem 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-bottom: 2.5rem;
    align-items: stretch;
  }
  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    margin-bottom: 1.25rem;
    gap: 0.5rem;
  }
  .eyebrow-mark { width: 1.5rem; }
  .hero-title {
    font-size: clamp(2.65rem, 13.5vw, 3.75rem);
    line-height: 0.98;
    margin-bottom: 1.5rem;
  }
  .hero-title-line br { display: none; }

  .hero-lede {
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
  }
  .btn {
    width: 100%;
    justify-content: center;
    min-height: 56px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
  .btn-primary {
    flex-direction: column;
    gap: 0.15rem;
    padding-block: 0.85rem;
  }
  .btn-primary .btn-detail {
    border-left: none;
    padding-left: 0;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
  }
  .btn-primary .btn-label {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.78;
  }

  .hero-meta { grid-template-columns: 1fr; padding-top: 1.25rem; }
  .hero-meta li { padding-block: 0.4rem; }

  /* Hero portrait — tighter */
  .portrait-frame { padding: 0.85rem; }
  .portrait-frame::before { inset: 0.3rem; }
  .portrait-corner { width: 18px; height: 18px; }
  .hero-portrait figcaption {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
  .hero-portrait figcaption .portrait-line { font-size: 0.78rem; }

  /* Marquee — slower & thinner */
  .hero-marquee { padding-block: 0.75rem; }
  .marquee-track {
    font-size: 1.15rem;
    gap: 1.1rem;
    animation-duration: 50s;
  }

  /* Sections + numerals */
  .section-head {
    grid-template-columns: 1fr;
    row-gap: 0.4rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
  .section-head .numeral { grid-row: auto; grid-column: 1; }
  .section-head .section-title,
  .section-head .section-kicker { grid-column: 1; }
  .section-head .section-kicker { font-size: 1rem; }
  .numeral { font-size: 2rem; }
  .section-title { font-size: clamp(1.85rem, 6.5vw, 2.4rem); }

  /* Two-col → one-col */
  .col-marker {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    padding-bottom: 0.85rem;
    margin-bottom: 1.5rem;
  }
  .col-marker .section-title { font-size: 1.85rem; margin: 0; }
  .col-marker .numeral { font-size: 2rem; }

  /* Cabinet */
  .lead { font-size: 1.35rem; line-height: 1.3; margin-bottom: 1.25rem; }
  .col-body p { font-size: 1.0625rem; margin-bottom: 1rem; }
  .pull-quote { margin-block: 2rem; padding-left: 1.25rem; }
  .pull-quote p { font-size: 1.2rem; line-height: 1.4; }

  .values { margin-top: 2rem; }
  .values li { padding: 1.25rem 0; }
  .values h3 { font-size: 1.3rem; }

  /* Domains */
  .domain {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.85rem;
    padding: 1.4rem 0;
  }
  .domain:hover { padding-inline: 0; background: transparent; }
  .domain-num {
    font-size: 1.2rem;
    padding-top: 0.3rem;
    padding-right: 0.4rem;
  }
  .domain-body h3 { font-size: 1.4rem; line-height: 1.15; margin-bottom: 0.4rem; }
  .domain-body p { font-size: 1rem; line-height: 1.55; }

  /* Informations */
  .info-grid { gap: 1rem; }
  .info-card { padding: 1.5rem 1.4rem 1.75rem; }
  .info-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
  .info-card p { font-size: 0.98rem; }
  .lang-list li { padding-block: 0.55rem; min-height: 44px; }
  .lang-list span:first-child { font-size: 1.05rem; }

  /* Contact */
  .contact-inner { gap: 2.25rem; }
  .contact-title { font-size: clamp(2.4rem, 11vw, 3.25rem); margin-bottom: 1rem; }
  .contact-lede { font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.5; }
  .contact-list { grid-template-columns: 1fr; }
  .contact-list > div {
    padding: 1.1rem 0;
  }
  .contact-list > div:first-child { padding-top: 1rem; }
  .contact-list dd { font-size: 1.25rem; line-height: 1.35; }
  .contact-list dd a { padding-block: 0.2rem; display: inline-block; min-height: 44px; }

  /* Business card — drop the rotation, it overflows on phones */
  .contact-card {
    transform: none;
    padding: 2rem 1.5rem;
    max-width: 100%;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), 0 20px 40px -25px rgba(0, 0, 0, 0.45);
  }
  .contact-card:hover { transform: none; }
  .card-corner { width: 14px; height: 14px; }
  .card-corner--tl, .card-corner--tr { top: 10px; }
  .card-corner--bl, .card-corner--br { bottom: 10px; }
  .card-corner--tl, .card-corner--bl { left: 10px; }
  .card-corner--tr, .card-corner--br { right: 10px; }
  .card-name { font-size: 2.1rem; }
  .card-line { font-size: 0.92rem; }

  /* Footer */
  .footer-inner { gap: 1.25rem; }
  .footer-nav { gap: 0.8rem 1.1rem; justify-content: center; }
  .footer-nav a { padding-block: 0.4rem; min-height: 44px; display: inline-flex; align-items: center; }
  .footer-legal { text-align: center; line-height: 1.5; }

  /* Reserve space for the sticky bottom call bar (added below) */
  body { padding-bottom: 4.75rem; }
  .site-footer { margin-bottom: 0; }

  /* Don't double-show the floating bar over its own contact section */
  .section-contact { padding-bottom: calc(var(--section-y) + 1rem); }
}

/* Even tighter for very narrow (≤ 360px, e.g. iPhone SE 1st gen) */
@media (max-width: 360px) {
  :root { --gutter: 1rem; }
  .hero-title { font-size: 2.4rem; }
  .brand-name-line { font-size: 0.85rem; }
  .brand-name-sub { display: none; }
  .nav-toggle-label { display: none; }
  .card-name { font-size: 1.75rem; }
}


/* =============================================================
   STICKY MOBILE CALL BAR
   The single most important affordance for clients in distress:
   one tap → phone dial. Hidden on desktop, only on small screens.
   ============================================================= */
.call-bar {
  display: none;
}

@media (max-width: 600px) {
  .call-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: var(--ink);
    border-top: 1px solid rgba(242, 234, 218, 0.15);
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
    gap: 0.5rem;
    box-shadow: 0 -10px 30px -15px rgba(0, 0, 0, 0.4);
  }
  .call-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    font-size: 0.95rem;
    color: var(--paper);
    text-decoration: none;
    white-space: nowrap;
    transition:
      background-color var(--dur-base) var(--ease-out-quart),
      color var(--dur-base) var(--ease-out-quart),
      transform var(--dur-base) var(--ease-out-expo);
  }
  .call-bar a:active { transform: scale(0.97); transition-duration: var(--dur-xfast); }
  .call-bar .call-bar-primary {
    flex: 1;
    background: var(--gold);
    color: var(--ink);
    font-weight: 500;
  }
  .call-bar .call-bar-primary strong {
    font-variant-numeric: lining-nums tabular-nums;
    letter-spacing: 0.02em;
  }
  .call-bar .call-bar-secondary {
    flex-shrink: 0;
    width: 52px;
    padding: 0.65rem;
    border: 1px solid rgba(242, 234, 218, 0.35);
  }
  .call-bar svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
  }
}


/* =============================================================
   PRINT
   ============================================================= */
@media print {
  body::before { display: none; }
  .site-header, .site-footer, .hero-marquee, .nav-toggle, .call-bar { display: none; }
  body { background: white; color: black; padding-bottom: 0; }
  .section { padding-block: 1.5rem; }
}
