/* =========================================================================
   DRIFTIS CALL AND COMMUNICATION — Design System
   Palette derived from the company signage: gold on deep charcoal.
   ========================================================================= */

:root {
  /* --- Brand ------------------------------------------------------------ */
  --ink:        #0E1013;   /* near-black charcoal (signage wall)            */
  --ink-2:      #171A1F;   /* dark surface                                  */
  --ink-3:      #22262D;   /* dark border / raised                          */
  --ink-soft:   #2A2E34;   /* body text on paper                            */

  --gold:       #C08A2E;   /* primary brand gold (signage lettering)        */
  --gold-lite:  #E7C77E;   /* highlight / marker blocks                     */
  --gold-glow:  #F2E0BB;   /* soft gold tint                                */
  --gold-ink:   #7E5A11;   /* gold used as TEXT on light bg (AA)            */
  --gold-deep:  #8A6114;

  --paper:      #FAF7F2;   /* warm off-white page                           */
  --paper-2:    #FFFFFF;
  --paper-3:    #F1EBE1;   /* tinted band                                   */

  --line:       #E2DACC;
  --line-dark:  #2C313A;
  --muted:      #5C6169;
  --muted-dark: #A6ADB7;

  --danger:     #B3261E;
  --danger-lite:#E5484D;

  /* --- Type ------------------------------------------------------------- */
  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* --- Space (standard density) ----------------------------------------- */
  --space-1: 4px;  --space-2: 8px;  --space-3: 16px; --space-4: 24px;
  --space-5: 32px; --space-6: 48px; --space-7: 64px; --space-8: 96px;

  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 22px;

  --shell: 1240px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur:  260ms;

  --z-header: 100;
  --z-drawer: 200;
}

/* =========================== Reset / Base ================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; line-height: 1.06; letter-spacing: -0.025em; font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 999;
  background: var(--ink); color: var(--paper);
  padding: 12px 20px; border-radius: var(--radius-sm); font-weight: 600;
  transition: top 160ms var(--ease);
}
.skip-link:focus { top: 16px; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px)  { .shell { padding-inline: 40px; } }
@media (min-width: 1280px) { .shell { padding-inline: 24px; } }

/* =========================== Reveal animation ============================ */
/* Scoped to .js so content is never hidden when scripting is unavailable. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 90ms; }
.reveal.d2 { transition-delay: 180ms; }
.reveal.d3 { transition-delay: 270ms; }
.reveal.d4 { transition-delay: 360ms; }
.reveal.d5 { transition-delay: 450ms; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =========================== Buttons ===================================== */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: 600 15px/1.2 var(--font-body);
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: center;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform 160ms var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn .ico { width: 18px; height: 18px; flex: none; transition: transform var(--dur) var(--ease); }
.btn:hover .ico { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn-dark:hover  { --btn-bg: #22262D; box-shadow: 0 10px 26px -14px rgba(14,16,19,.8); }
.btn-gold        { --btn-bg: var(--gold); --btn-fg: #16110A; }
.btn-gold:hover  { --btn-bg: var(--gold-lite); box-shadow: 0 10px 26px -12px rgba(192,138,46,.75); }
.btn-ghost       { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--paper); }
.btn-sm          { min-height: 42px; padding: 10px 20px; font-size: 14px; }
.btn-block       { width: 100%; }

.btn[data-loading="true"] { pointer-events: none; opacity: .85; }
.spinner { display: none; width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid currentColor; border-top-color: transparent; animation: spin 700ms linear infinite; }
.btn[data-loading="true"] .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner { animation-duration: 1.6s; } }

/* =========================== Marker highlight ============================ */
.marker {
  background: var(--gold-lite);
  color: var(--ink);
  padding: 0 .18em .06em;
  border-radius: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.section--dark .marker { background: var(--gold); color: #16110A; }

/* =========================== Tricolore band ============================== */
/* Nod to the French partnership. The hairline keeps the white stripe
   readable against the warm paper background. */
.tricolore {
  display: flex;
  height: 5px;
  border-bottom: 1px solid var(--line);
}
.tricolore i { flex: 1; }
.tricolore i:nth-child(1) { background: #0B3B8C; }
.tricolore i:nth-child(2) { background: #FFFFFF; }
.tricolore i:nth-child(3) { background: #C8102E; }

/* =========================== Header ====================================== */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); background: color-mix(in srgb, var(--paper) 96%, transparent); }

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

.brand { display: inline-flex; align-items: center; color: var(--ink); }
/* Sized so the "CALL & COMMUNICATION" bar stays readable, not a smudge. */
.brand-logo {
  width: auto;
  height: 48px;
  transition: opacity var(--dur) var(--ease);
}
.brand:hover .brand-logo { opacity: .78; }
@media (min-width: 768px) { .brand-logo { height: 58px; } }

.site-nav { display: none; gap: 4px; }
.site-nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after, .site-nav a[aria-current="true"]::after { transform: scaleX(1); }
.site-nav a[aria-current="true"] { color: var(--ink); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-cta { display: none; }

.nav-toggle {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--paper-2); color: var(--ink); cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav-toggle:hover { background: var(--paper-3); border-color: var(--ink); }
.nav-toggle-bars { display: grid; gap: 4px; width: 20px; }
.nav-toggle-bars i {
  display: block; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity 160ms var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: var(--space-3) 20px var(--space-5);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav nav { display: grid; gap: 2px; max-width: var(--shell); margin-inline: auto; }
.mobile-nav a {
  min-height: 52px; display: flex; align-items: center;
  padding: 0 6px; font-size: 17px; font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { margin-top: var(--space-3); border: 0; justify-content: center; }

@media (min-width: 1024px) {
  .site-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* =========================== Hero ======================================== */
.hero { padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 6vw, 80px); }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line); background: var(--paper-2);
  border-radius: 999px; padding: 8px 16px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 22%, transparent);
}

.hero-title {
  margin: var(--space-4) 0 var(--space-6);
  font-size: clamp(2.4rem, 8.2vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.hero-title span { display: block; }
.hero-title span:nth-child(3) { color: var(--muted); }

/* --- Stage: photo + floating cards ------------------------------------- */
.hero-stage {
  position: relative;
  display: grid;
  gap: var(--space-4);
}

.hero-visual { position: relative; padding: 26px 0 0; }
.hero-visual-block {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--gold-lite) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  border-radius: var(--radius-lg);
  transform: rotate(-2.4deg) scale(1.012);
}
.hero-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -50px rgba(14,16,19,.7);
}
.hero-guide { display: none; }

.float-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: 0 24px 50px -40px rgba(14,16,19,.6);
}
.float-card-label { font-size: 13px; font-weight: 600; color: var(--muted); line-height: 1.4; }
.float-card-figure {
  font-family: var(--font-display); font-size: clamp(2.6rem, 9vw, 3.6rem);
  font-weight: 700; color: var(--ink); line-height: 1; letter-spacing: -0.04em;
  margin-top: var(--space-2);
}
.float-card-figure span { font-size: .4em; font-weight: 600; color: var(--gold-ink); margin-left: 4px; }
.float-icon {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: var(--ink); color: var(--gold); margin-bottom: var(--space-3);
}
.float-icon svg { width: 20px; height: 20px; }
.float-card-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); }
.float-card-text { font-size: 13.5px; color: var(--muted); margin-top: 6px; line-height: 1.5; }

.hero-foot {
  display: grid; gap: var(--space-5);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
}
.hero-lede { font-size: clamp(1.05rem, 2.4vw, 1.25rem); color: var(--ink-soft); max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .btn { flex: 1 1 220px; }

@media (min-width: 900px) {
  .hero-stage {
    grid-template-columns: minmax(190px, 1fr) minmax(0, 1.9fr) minmax(190px, 1fr);
    align-items: center;
    gap: var(--space-4);
  }
  .hero-visual { grid-column: 2; padding: 0; }
  .hero-visual img { aspect-ratio: 5 / 4; }
  .float-card--left  { grid-column: 1; grid-row: 1; justify-self: end; max-width: 260px; }
  .float-card--right,
  .float-card--right-2 { grid-column: 3; max-width: 270px; }
  .float-card--right   { grid-row: 1; align-self: start; }
  .float-card--right-2 { grid-row: 1; align-self: end; margin-top: auto; }
  .hero-stage > .float-card--right   { margin-bottom: auto; }

  .hero-guide {
    display: block; position: absolute; width: 46px; height: 46px;
    border-color: var(--gold); border-style: dashed; border-width: 0;
  }
  .hero-guide--tl { top: -14px; left: -14px; border-top-width: 2px; border-left-width: 2px; }
  .hero-guide--br { bottom: -14px; right: -14px; border-bottom-width: 2px; border-right-width: 2px; }

  .hero-foot {
    grid-template-columns: 1.4fr auto;
    align-items: end;
  }
  .hero-actions { justify-content: flex-end; }
  .hero-actions .btn { flex: 0 0 auto; }
}

@media (min-width: 900px) and (max-width: 1100px) {
  .float-card { padding: var(--space-3); }
  .float-card-figure { font-size: 2.4rem; }
}

/* =========================== Marquee ===================================== */
.marquee-band {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border-block: 1px solid var(--ink-3);
  overflow: hidden;
  padding: 18px 0;
}

/* WCAG 2.2.2 — moving content that starts automatically needs a pause control. */
.marquee-pause {
  position: absolute; z-index: 3; top: 50%; right: 12px; transform: translateY(-50%);
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--ink-3); border-radius: 50%;
  background: var(--ink-2); color: var(--gold); cursor: pointer;
  box-shadow: -28px 0 26px 18px var(--ink);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.marquee-pause:hover { background: var(--ink-3); border-color: var(--gold); }
.marquee-pause svg { width: 20px; height: 20px; }
.marquee-pause .ico-play { display: none; }
.marquee-pause[aria-pressed="true"] .ico-pause { display: none; }
.marquee-pause[aria-pressed="true"] .ico-play { display: block; }
.marquee { display: flex; width: max-content; }
.marquee-track {
  display: flex; align-items: center; gap: 30px;
  padding-right: 30px;
  font-family: var(--font-display);
  font-size: clamp(15px, 2.2vw, 20px);
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
  animation: slide 38s linear infinite;
}
.marquee-track .sep { color: var(--gold); font-size: .7em; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* Paused by the control, and never started when the user asked for less motion. */
body.motion-paused .marquee-track,
body.motion-paused .stamp > svg:first-child,
body.motion-paused .pf-wave i { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .marquee { width: 100%; overflow-x: auto; }
  .marquee-track { animation: none; }
  .marquee-pause { display: none; }
}

/* =========================== Sections shell ============================== */
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--dark {
  background: var(--ink);
  color: var(--muted-dark);
}
.section--dark h2, .section--dark h3 { color: var(--paper); }

.eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-ink);
  margin-bottom: var(--space-3);
}
.section--dark .eyebrow { color: var(--gold); }
.eyebrow--center { text-align: center; }

.sec-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.sec-desc { font-size: 1.0625rem; max-width: 54ch; color: var(--muted); }
.section--dark .sec-desc { color: var(--muted-dark); }
.sec-desc--inline { margin-top: var(--space-4); }

.sec-head {
  display: grid; gap: var(--space-4);
  margin-bottom: clamp(40px, 6vw, 72px);
}
@media (min-width: 900px) {
  .sec-head { grid-template-columns: 1.15fr 1fr; gap: var(--space-7); align-items: end; }
}

/* =========================== Pillars (dark cards) ======================== */
.pillar-grid { display: grid; gap: 0; border-top: 1px solid var(--line-dark); }
.pillar {
  position: relative;
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--line-dark);
  transition: background var(--dur) var(--ease);
}
.pillar-num {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; color: var(--gold);
}
.pillar-icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; margin: var(--space-4) 0 var(--space-4);
  border: 1px solid var(--line-dark); border-radius: 14px;
  background: var(--ink-2); color: var(--gold);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar:hover .pillar-icon { border-color: var(--gold); background: var(--ink-3); transform: translateY(-3px); }
.pillar h3 { font-size: clamp(1.35rem, 3vw, 1.7rem); margin-bottom: var(--space-3); }
.pillar p { font-size: 15.5px; max-width: 42ch; }

@media (min-width: 860px) {
  .pillar-grid { grid-template-columns: repeat(3, 1fr); border-top: 0; gap: 1px; background: var(--line-dark); }
  .pillar { background: var(--ink); padding: var(--space-5) var(--space-5) var(--space-6); border: 0; }
  .pillar:hover { background: var(--ink-2); }
  .pillar:first-child { padding-left: 0; }
  .pillar:last-child  { padding-right: 0; }
}

/* =========================== Expertise =================================== */
.expertise-grid { display: grid; gap: clamp(40px, 6vw, 72px); }

.expertise-visual { display: grid; gap: var(--space-4); align-content: start; }

.expertise-quote {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 44px);
}
.expertise-quote::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(150deg, var(--gold-lite), var(--gold));
  border-radius: var(--radius-lg);
  transform: rotate(-1.8deg);
}
.quote-icon { display: block; width: 34px; height: 34px; color: var(--gold); margin-bottom: var(--space-4); }
.quote-icon svg { width: 100%; height: 100%; }
.expertise-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  line-height: 1.35; letter-spacing: -0.02em; font-weight: 500;
  text-wrap: pretty;
}

.expertise-aside {
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.5vw, 30px);
  display: grid; gap: var(--space-3); justify-items: start;
}
.ea-title { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink); letter-spacing: -0.02em; }
.ea-text { font-size: 14.5px; color: var(--muted); }

.service-list { margin-top: var(--space-5); border-top: 1px solid var(--line); }
.service {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "idx name" ". note";
  column-gap: var(--space-3);
  align-items: baseline;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left var(--dur) var(--ease), background var(--dur) var(--ease);
}
.service:hover { background: color-mix(in srgb, var(--gold-glow) 40%, transparent); padding-left: 12px; }
.service-idx {
  grid-area: idx;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; color: var(--gold-ink);
}
.service-name {
  grid-area: name;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem); color: var(--ink);
  letter-spacing: -0.02em;
}
.service-note { grid-area: note; font-size: 14.5px; color: var(--muted); margin-top: 4px; }

@media (min-width: 1000px) {
  .expertise-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
  .expertise-visual { position: sticky; top: 110px; }
}

/* =========================== Stats band ================================== */
.stats-band {
  background: var(--paper-3);
  border-block: 1px solid var(--line);
  padding: clamp(44px, 6vw, 72px) 0;
}
.stats-grid { display: grid; gap: var(--space-5); }
.stat { display: grid; gap: var(--space-2); }
.stat-figure {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 3.75rem);
  font-weight: 700; color: var(--ink); line-height: 1;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.stat-figure i { font-style: normal; color: var(--gold-ink); }
.stat-figure sup { font-size: .4em; color: var(--gold-ink); vertical-align: super; }
.stat-label { font-size: 14px; font-weight: 600; color: var(--ink-soft); line-height: 1.5; }
.stat-label span { font-weight: 400; color: var(--muted); }

@media (min-width: 640px)  { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6) var(--space-5); } }
@media (min-width: 1000px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* =========================== Partenariat ================================= */
.sec-head--light .sec-desc { color: var(--muted); }

/* Two tiles — our roots (Algeria) and our first market (France) — joined by a stamp. */
.partner-stage {
  position: relative;
  display: grid;
  gap: var(--space-4);
  align-items: stretch;
}

.ptile {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ptile--ink {
  background: var(--ink);
  color: var(--muted-dark);
  padding: clamp(26px, 4vw, 40px);
}
.ptile--photo {
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.ptile--photo img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: 50% 45%;
}
.ptile--photo figcaption { padding: clamp(24px, 3.5vw, 34px); }

.pt-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-ink);
}
.ptile--ink .pt-kicker { color: var(--gold); }
.pt-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1;
  color: var(--ink);
  margin: var(--space-3) 0 var(--space-3);
}
.ptile--ink .pt-title { color: var(--paper); }
.pt-text { font-size: 15.5px; color: var(--muted); max-width: 38ch; }
.ptile--ink .pt-text { color: var(--muted-dark); }
.pt-foot {
  margin-top: auto; padding-top: var(--space-5);
  font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); font-variant-numeric: tabular-nums;
}

.partner-notes { display: grid; gap: var(--space-3); margin-top: var(--space-4); }

.annot {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: 0 24px 50px -42px rgba(14,16,19,.55);
}
.annot-bullet {
  display: block; width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); margin-bottom: var(--space-3);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 20%, transparent);
}
.annot-title { font-family: var(--font-display); font-weight: 600; font-size: 16.5px; color: var(--ink); }
.annot-text { font-size: 14px; color: var(--muted); margin-top: 6px; line-height: 1.5; }

.stamp {
  position: relative;
  display: grid; place-items: center;
  width: 118px; height: 118px;
  margin: var(--space-4) auto 0;
  border-radius: 50%;
  background: var(--gold);
  color: #16110A;
}
.stamp > svg:first-child { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 22s linear infinite; }
.stamp text { font: 700 10.4px/1 var(--font-body); letter-spacing: .1em; fill: #16110A; }
.stamp-arrow { width: 30px; height: 30px; }
@media (prefers-reduced-motion: reduce) { .stamp > svg:first-child { animation: none; } }

@media (min-width: 900px) {
  .partner-stage { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
  .partner-notes { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); margin-top: var(--space-5); }
  .stamp {
    position: absolute; z-index: 2;
    top: 26%; left: 50%; transform: translate(-50%, -50%);
    margin: 0;
    box-shadow: 0 0 0 10px var(--paper);
  }
}

/* =========================== Podcast ===================================== */
.section--podcast { background: var(--ink-2); }
.podcast-grid { display: grid; gap: var(--space-5); }

.podcast-rows { border-top: 1px solid var(--line-dark); }
.prow {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--line-dark);
}
.prow h3 { font-size: clamp(1.2rem, 2.6vw, 1.55rem); margin-bottom: 8px; }
.prow p { font-size: 15px; color: var(--muted-dark); max-width: 46ch; }
.prow-mark { flex: none; width: 32px; height: 32px; color: var(--gold); }
.prow-mark svg { width: 100%; height: 100%; }

.podcast-feature {
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pf-visual {
  position: relative;
  display: grid; place-items: center;
  min-height: 190px;
  background: linear-gradient(155deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #16110A;
}
.pf-mic { position: relative; width: 54px; height: 54px; }
.pf-wave {
  position: absolute; inset: auto 0 22px; display: flex; align-items: flex-end;
  justify-content: center; gap: 5px; height: 40px; opacity: .38;
}
.pf-wave i {
  display: block; width: 4px; border-radius: 2px; background: #16110A;
  height: 30%;
  animation: wave 1.5s ease-in-out infinite;
}
.pf-wave i:nth-child(2n)   { animation-delay: .12s; }
.pf-wave i:nth-child(3n)   { animation-delay: .26s; }
.pf-wave i:nth-child(4n)   { animation-delay: .38s; }
.pf-wave i:nth-child(5n)   { animation-delay: .5s;  }
@keyframes wave { 0%,100% { height: 22%; } 50% { height: 92%; } }
@media (prefers-reduced-motion: reduce) { .pf-wave i { animation: none; height: 55%; } }

.pf-body { padding: clamp(24px, 4vw, 36px); }
.pf-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-3);
}
.pf-title { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: var(--space-3); }
.pf-text { font-size: 15px; color: var(--muted-dark); }

@media (min-width: 1000px) {
  .podcast-grid { grid-template-columns: 1.15fr .85fr; gap: var(--space-7); align-items: start; }
}

/* =========================== Direction =================================== */
.direction-grid { display: grid; gap: clamp(36px, 6vw, 72px); align-items: center; }

.direction-figure { position: relative; margin: 0; padding: 20px 0 0 20px; }
.direction-block {
  position: absolute; inset: 0 20px 20px 0;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
}
.direction-figure img {
  position: relative;
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 25%;
  border-radius: var(--radius-lg);
}

.direction-quote { margin: 0; }
.direction-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.4vw, 2.15rem);
  line-height: 1.25; letter-spacing: -0.03em; font-weight: 500;
  color: var(--ink);
  text-wrap: pretty;
}
.direction-sign { margin-top: var(--space-5); padding-top: var(--space-4); border-top: 2px solid var(--gold); }
.ds-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: .06em; color: var(--ink); }
.ds-role { font-size: 14px; color: var(--muted); margin-top: 4px; }

@media (min-width: 900px) { .direction-grid { grid-template-columns: 1fr 1.05fr; } }

/* =========================== Vision ====================================== */
.section--vision {
  background: var(--ink);
  color: var(--muted-dark);
  text-align: center;
}
.vision-title {
  display: grid; gap: 2px;
  font-size: clamp(2.2rem, 7.4vw, 4.5rem);
  font-weight: 700; letter-spacing: -0.045em;
  color: var(--paper);
  margin-bottom: var(--space-5);
}
.vision-title span:nth-child(2) { color: var(--gold); }
.vision-text {
  max-width: 66ch; margin-inline: auto;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--muted-dark);
  text-wrap: pretty;
}
@media (min-width: 860px) {
  .vision-title { grid-auto-flow: column; justify-content: center; gap: var(--space-5); }
}

/* =========================== CTA / Contact =============================== */
.cta-band {
  background: linear-gradient(150deg, var(--gold-lite) 0%, var(--gold) 100%);
  color: #16110A;
  padding: clamp(56px, 8vw, 110px) 0;
}
.cta-grid { display: grid; gap: clamp(36px, 5vw, 64px); align-items: start; }

.cta-title {
  font-size: clamp(2.3rem, 6.5vw, 4rem);
  color: #16110A; letter-spacing: -0.04em; font-weight: 700;
}
/* The band is a gradient: every value below is checked against its DARKEST
   stop (#C08A2E), not the light end. */
.cta-text { margin-top: var(--space-4); font-size: 1.0625rem; color: #2A2008; max-width: 42ch; }
.cta-meta { margin-top: var(--space-5); display: grid; gap: var(--space-2); }
.cta-meta li {
  display: flex; align-items: center; gap: 12px;
  min-height: 48px;
  font-weight: 600; font-size: 15px; color: #241B08;
}
.cta-meta li > span[aria-hidden] {
  width: 38px; height: 38px; flex: none; display: grid; place-items: center;
  background: rgba(22,17,10,.1); border-radius: 11px;
}
.cta-meta svg { width: 19px; height: 19px; }
.cta-meta .cm-body { display: grid; line-height: 1.35; }
.cta-meta small { font-size: 13px; font-weight: 500; color: #2A2008; }
.cta-meta a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(36,27,8,.35);
  transition: text-decoration-color var(--dur) var(--ease);
}
.cta-meta a:hover { text-decoration-color: currentColor; }

.form-note { font-size: 13px; line-height: 1.5; color: var(--muted); }
.form-note a { color: var(--gold-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.cta-form {
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 34px);
  display: grid; gap: var(--space-4);
  box-shadow: 0 40px 80px -55px rgba(14,16,19,.75);
}
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field abbr { color: var(--danger); text-decoration: none; margin-left: 2px; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font: 400 16px/1.5 var(--font-body);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%235C6169' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 20px;
  padding-right: 42px;
}
.field input:hover, .field textarea:hover, .field select:hover { border-color: #C9BFAC; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: var(--paper-2);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 26%, transparent);
}
.field-help { font-size: 13px; color: var(--muted); }
.field-err { font-size: 13px; font-weight: 600; color: var(--danger); display: flex; align-items: center; gap: 6px; }
.field-err[hidden] { display: none; }
.field[data-invalid="true"] input,
.field[data-invalid="true"] textarea { border-color: var(--danger); background: #FDF4F3; }

.form-status { display: none; border-radius: 10px; padding: 12px 14px; font-size: 14.5px; font-weight: 600; }
.form-status[data-state="error"]   { display: block; background: #FDF4F3; color: var(--danger); border: 1px solid #F2C9C6; }
.form-status[data-state="success"] { display: block; background: #F2F8F3; color: #1E6B3A; border: 1px solid #C7E3CF; }

@media (min-width: 960px) {
  .cta-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
}

/* =========================== Footer ====================================== */
.site-footer {
  background: var(--ink);
  color: var(--muted-dark);
  padding: clamp(56px, 7vw, 88px) 0 var(--space-5);
}
.footer-top { display: grid; gap: var(--space-6); }
.brand--footer { color: var(--paper); }
.brand--footer .brand-logo { height: 76px; }
.footer-tag {
  margin-top: var(--space-4);
  max-width: 24ch;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  line-height: 1.3; letter-spacing: -0.02em; color: var(--paper);
  text-wrap: balance;
}

.footer-contact { margin-top: var(--space-5); font-style: normal; display: grid; gap: 2px; }
.footer-contact p {
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px 10px;
  min-height: 34px;
  font-size: 15px; color: var(--muted-dark);
}
.footer-contact a {
  color: var(--paper);
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: var(--line-dark);
  transition: text-decoration-color var(--dur) var(--ease);
}
.footer-contact a:hover { text-decoration-color: var(--gold); }
.footer-contact span {
  font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
}

.footer-social { display: flex; gap: 10px; margin-top: var(--space-4); }
.footer-social a {
  width: 46px; height: 46px; display: grid; place-items: center;
  border: 1px solid var(--line-dark); border-radius: 12px;
  color: var(--muted-dark);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.footer-social a:hover { color: #16110A; background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 22px; height: 22px; }

.footer-cols { display: grid; gap: var(--space-5); }
.footer-cols h2 {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--space-3);
}
.footer-cols ul { display: grid; gap: 2px; }
.footer-cols a {
  display: inline-flex; align-items: center; min-height: 34px;
  font-size: 15px; color: var(--muted-dark);
  transition: color var(--dur) var(--ease);
}
.footer-cols a:hover { color: var(--paper); }

.footer-claim {
  margin: clamp(48px, 7vw, 80px) 0 var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5.2vw, 3rem);
  font-weight: 600; letter-spacing: -0.035em; color: var(--paper);
  text-wrap: balance;
}

.footer-bottom {
  display: grid; gap: 6px;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-dark);
  font-size: 13.5px; color: var(--muted-dark);
}

@media (min-width: 700px)  { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) {
  .footer-top { grid-template-columns: 1fr 1.25fr; gap: var(--space-8); }
  .footer-bottom { grid-auto-flow: column; justify-content: space-between; }
}

/* =========================== Print ======================================= */
@media print {
  .site-header, .cta-form, .marquee-band, .nav-toggle { display: none; }
  body { background: #fff; color: #000; }
}
