:root {
  --ink: #171412;
  --ink-soft: #342b25;
  --paper: #fff;
  --paper-muted: #f2f0ec;
  --line: rgba(23, 20, 18, 0.13);
  --line-dark: rgba(23, 20, 18, 0.16);
  --ruby: #df5149;
  --amber: #d99022;
  --teal: #0c837b;
  --white: #fff;
  --shadow: 0 28px 80px rgba(71, 45, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

.grain {
  display: none;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(23, 20, 18, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 10%, rgba(23, 20, 18, 0.1) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(23, 20, 18, 0.08) 0 1px, transparent 1px);
  background-size: 9px 9px, 13px 13px, 17px 17px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 24px;
  min-height: 74px;
  padding: 14px 34px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(71, 45, 22, 0.08);
}

.brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 8px;
  align-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand span:last-child {
  color: var(--amber);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(23, 20, 18, 0.72);
  font-size: 0.92rem;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--ruby);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  overflow-wrap: anywhere;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-action {
  background: var(--ink);
  color: var(--white);
}

.header-tools {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(12, 131, 123, 0.48);
  background: #fff;
}

.lang-toggle [data-lang-flag] {
  font-size: 1rem;
  line-height: 1;
}

.header-action:hover,
.btn:hover {
  transform: translateY(-2px);
}

.section-band {
  width: 100%;
  padding: 96px 34px;
}

.section-band > * {
  width: min(1160px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 674px) minmax(340px, 430px);
  align-items: start;
  justify-content: center;
  column-gap: 56px;
  row-gap: 44px;
  width: min(1160px, calc(100% - 68px));
  min-height: auto;
  margin-right: auto;
  margin-left: auto;
  padding: 24px 0 32px;
  background: #fff;
  overflow: hidden;
}

.hero > * {
  width: auto;
  margin: 0;
}

.eyebrow,
.card-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.96;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 6rem;
}

h2 {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 3.8rem;
}

h3 {
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.16;
}

.hero-line {
  max-width: 680px;
  color: rgba(23, 20, 18, 0.76);
  font-size: 1.32rem;
  line-height: 1.52;
}

.hero-note {
  max-width: 680px;
  margin: 18px 0 0;
  padding: 14px 18px;
  border: 1px solid rgba(12, 131, 123, 0.24);
  border-radius: 24px;
  color: rgba(23, 20, 18, 0.78);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(71, 45, 22, 0.08);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 42px;
}

.btn-primary {
  border-color: transparent;
  background: var(--ruby);
  color: var(--white);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.btn-icon {
  display: inline-block;
  flex: 0 0 auto;
  margin-right: 10px;
}

.play-dot {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin: 0;
  padding: 1px;
  background: var(--line);
  border-radius: 28px;
  overflow: hidden;
}

.hero-stats div {
  min-height: 112px;
  padding: 18px;
  background: #fff;
}

.hero-stats dt {
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(23, 20, 18, 0.68);
  font-size: 0.92rem;
  line-height: 1.35;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.portrait-stage {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 342 / 513;
  padding: 0;
}

.portrait-stage::before,
.portrait-stage::after {
  content: none;
}

.portrait-stage::before {
  top: -28px;
}

.portrait-stage::after {
  bottom: -28px;
}

.portrait-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: var(--shadow);
  filter: contrast(1.04) saturate(0.93);
}

.vertical-tag {
  position: absolute;
  top: 36px;
  right: -20px;
  display: flex;
  align-items: center;
  min-height: 190px;
  padding: 14px 8px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.spec {
  position: absolute;
  right: -58px;
  width: 178px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 20, 18, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(71, 45, 22, 0.14);
  font-size: 0.84rem;
  font-weight: 800;
}

.spec-top {
  right: -58px;
  bottom: 128px;
}

.spec-mid {
  right: -58px;
  bottom: 74px;
}

.spec-bottom {
  right: -58px;
  bottom: 20px;
}

.section-head {
  display: grid;
  grid-template-columns: 0.32fr 1fr;
  gap: 38px;
  align-items: start;
  margin-bottom: 42px;
}

.section-head .eyebrow {
  margin-top: 8px;
}

.signature {
  background: #fff;
  color: var(--ink);
  padding-top: 42px;
}

.signature h2,
.signature h3 {
  color: var(--ink);
}

.signature .eyebrow {
  color: var(--ruby);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line-dark);
  border-radius: 30px;
  overflow: hidden;
}

.signature-grid article,
.work-card,
.timeline article,
.video-card {
  border-radius: 28px;
}

.signature-grid article {
  min-height: 270px;
  padding: 30px;
  background: #fff;
}

.index {
  display: block;
  margin-bottom: 34px;
  color: var(--ruby);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  font-weight: 700;
}

.signature-grid p,
.work-card p,
.timeline p,
.contact-copy p,
.player-copy p {
  color: rgba(23, 20, 18, 0.7);
  line-height: 1.58;
}

.signature-grid p {
  color: rgba(16, 16, 15, 0.72);
}

.demos {
  background: #fff;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 1px;
  margin-bottom: 26px;
  padding: 1px;
  background: var(--line);
  border-radius: 32px;
  overflow: hidden;
  outline: 0 solid rgba(223, 81, 73, 0);
  outline-offset: 0;
  scroll-margin-block: 14vh;
  box-shadow: var(--shadow);
  transition:
    box-shadow 260ms ease,
    outline-color 260ms ease,
    outline-offset 260ms ease;
}

.demo-layout.is-focused {
  outline-color: rgba(223, 81, 73, 0.48);
  outline-offset: 9px;
  box-shadow:
    0 0 0 10px rgba(223, 81, 73, 0.13),
    0 32px 90px rgba(223, 81, 73, 0.2),
    var(--shadow);
}

.player-shell {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(23, 20, 18, 0.04), rgba(23, 20, 18, 0.34)),
    var(--preview, linear-gradient(135deg, var(--ruby), #fff1dd 54%, var(--teal)));
  background-position: center;
  background-size: cover;
}

.player-shell.is-contain-preview {
  background-color: #10100f;
  background-repeat: no-repeat;
  background-size: cover, contain;
}

.player-shell.is-tight-preview {
  background-position: center, center;
  background-size: cover, 136% auto;
}

.player-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 50%, transparent 0 28%, rgba(23, 20, 18, 0.24) 78%);
  opacity: 0.55;
}

.watch-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 10px 22px 10px 10px;
  border: 1px solid rgba(255, 250, 241, 0.54);
  border-radius: 999px;
  color: var(--white);
  background: rgba(23, 20, 18, 0.7);
  box-shadow: 0 22px 52px rgba(23, 20, 18, 0.24);
  font-weight: 900;
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.player-shell:hover .watch-badge,
.player-shell:focus-visible .watch-badge {
  transform: translateY(-2px) scale(1.02);
  background: rgba(23, 20, 18, 0.82);
}

.watch-badge .play-button {
  position: relative;
  right: auto;
  bottom: auto;
  background: var(--ruby);
}

.player-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 30px;
  background: #fff;
}

.player-copy h3 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.demo-credits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 4px 0 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  line-height: 1.35;
}

.demo-credits[hidden] {
  display: none;
}

.demo-credits div {
  min-width: 0;
}

.demo-credits dt {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-credits dd {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 10px;
  color: var(--amber);
  font-weight: 800;
}

.text-link::after {
  margin-left: 8px;
  content: "↗";
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px auto;
}

.filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.filter.active,
.filter:hover,
.filter:focus-visible {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.video-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 292px;
  padding: 0 0 18px;
  border: 1px solid var(--line);
  color: inherit;
  text-align: left;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.video-card:hover,
.video-card:focus-visible,
.video-card.active {
  transform: translateY(-3px);
  border-color: rgba(217, 144, 34, 0.74);
  background: #fff;
}

.poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
  border-radius: 28px 28px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.04), rgba(23, 20, 18, 0.42)),
    var(--thumb, linear-gradient(135deg, var(--ruby), #fff1dd 54%, var(--teal)));
  background-position: center;
  background-size: cover;
}

.poster-vimeo {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.04), rgba(23, 20, 18, 0.42)),
    var(--thumb, linear-gradient(135deg, rgba(223, 81, 73, 0.88), rgba(255, 243, 227, 0.9) 58%, rgba(12, 131, 123, 0.74)));
  background-position: center;
  background-size: cover;
}

.video-card[data-card-key="rconfort"] .poster {
  background: var(--thumb) center / cover no-repeat #fff;
}

.video-card[data-thumb-zoom="tight"] .poster {
  background-position: center, center;
  background-size: cover, 136% auto;
}

.video-card[data-fit="contain"] .poster {
  background-color: #10100f;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover, contain;
}

.play-button {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, 0.56);
  border-radius: 50%;
  background: rgba(16, 16, 15, 0.72);
}

.play-button::before {
  width: 0;
  height: 0;
  margin-left: 3px;
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--white);
}

.video-card .card-kicker,
.video-card strong,
.video-card > span:last-child {
  margin-right: 16px;
  margin-left: 16px;
}

.video-card .card-kicker {
  margin-bottom: 8px;
  color: var(--ruby);
  font-size: 0.76rem;
}

.video-card strong {
  display: block;
  min-height: 46px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.video-card > span:last-child {
  align-self: end;
  color: rgba(23, 20, 18, 0.62);
  font-size: 0.86rem;
  line-height: 1.35;
}

.video-card.hidden {
  display: none;
}

.work {
  background: #fff;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.work-card {
  min-height: 400px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.work-card h3 {
  min-height: 62px;
  margin-bottom: 18px;
}

.work-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(23, 20, 18, 0.82);
}

.work-card li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  line-height: 1.35;
}

.parcours {
  background: #fff;
  color: var(--ink);
}

.parcours h2,
.parcours h3 {
  color: var(--ink);
}

.parcours .eyebrow {
  color: var(--ruby);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line-dark);
  border-radius: 30px;
  overflow: hidden;
}

.timeline article {
  min-height: 276px;
  padding: 28px;
  background: #fff;
}

.timeline span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--ruby);
  font-weight: 900;
}

.timeline p {
  color: rgba(16, 16, 15, 0.7);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: 48px;
  align-items: end;
  background: #fff;
}

.contact > * {
  width: auto;
  margin: 0;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
  overflow-wrap: anywhere;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.contact-links a::after {
  margin-left: 16px;
  color: var(--amber);
  content: "↗";
}

.contact-links a:hover,
.contact-links a:focus-visible {
  transform: translateX(4px);
  border-color: rgba(12, 131, 123, 0.48);
  background: rgba(255, 255, 255, 0.98);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 34px;
  color: rgba(23, 20, 18, 0.64);
  border-top: 1px solid var(--line);
  background: #fff;
  font-size: 0.9rem;
}

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

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-tools {
    justify-self: end;
  }

  .hero,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    width: min(720px, calc(100% - 68px));
    row-gap: 42px;
    padding-bottom: 38px;
  }

  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .hero-stats,
  .work-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-layout {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
    gap: 12px;
  }

  .brand {
    font-size: 1.04rem;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.86rem;
  }

  .header-action {
    min-height: 38px;
    padding: 0 13px;
  }

  .header-tools {
    gap: 8px;
  }

  .lang-toggle {
    min-height: 38px;
    padding: 0 11px;
  }

  .section-band {
    padding: 72px 18px;
  }

  .hero {
    width: calc(100% - 36px);
    row-gap: 24px;
    min-height: auto;
    padding-top: 26px;
    padding-bottom: 30px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero-copy h1 {
    order: 2;
  }

  .hero-copy .hero-line {
    order: 3;
  }

  .hero-actions {
    order: 4;
  }

  .hero-visual {
    order: 5;
  }

  .hero-stats {
    order: 6;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.42rem;
    line-height: 1.02;
  }

  .hero-line {
    font-size: 1.08rem;
  }

  .hero-stats,
  .signature-grid,
  .work-grid,
  .timeline,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .portrait-stage {
    width: min(360px, 92%);
    padding: 0;
  }

  .vertical-tag {
    right: -12px;
  }

  .spec {
    right: -32px;
    width: 156px;
    font-size: 0.78rem;
  }

  .spec-top {
    right: -32px;
    bottom: 116px;
  }

  .spec-mid {
    right: -32px;
    bottom: 66px;
  }

  .spec-bottom {
    right: -32px;
    bottom: 16px;
  }

  .player-copy,
  .work-card,
  .timeline article,
  .signature-grid article {
    padding: 22px;
  }

  .player-copy h3 {
    font-size: 1.45rem;
  }

  .demo-credits {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}

@media (max-width: 440px) {
  .hero-actions {
    display: grid;
  }

  .hero-stats div {
    min-height: 98px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .video-card {
    min-height: 276px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Cinematic refresh based on the 2026-06-13 reference site. */
:root {
  --bg: #f7f9f7;
  --surface: #ffffff;
  --surface-soft: #eef4f1;
  --ink: #18201f;
  --ink-soft: #475450;
  --muted: #68736f;
  --line: rgba(24, 32, 31, 0.12);
  --line-dark: rgba(24, 32, 31, 0.16);
  --blue: #315b76;
  --green: #6d8f7b;
  --coral: #d97761;
  --soft-blue: #dfeaf3;
  --ruby: var(--coral);
  --amber: var(--blue);
  --teal: var(--green);
  --white: #ffffff;
  --paper: var(--surface);
  --paper-muted: var(--surface-soft);
  --shadow: 0 18px 50px rgba(35, 52, 49, 0.1);
}

body {
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfcfb 0%, var(--bg) 44%, var(--surface-soft) 100%);
}

.site-header {
  position: fixed;
  top: 16px;
  right: clamp(14px, 4vw, 48px);
  left: clamp(14px, 4vw, 48px);
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 0;
  gap: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 30px rgba(27, 45, 42, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: rgba(24, 32, 31, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.brand span:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.brand strong {
  font-size: 14px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.4vw, 28px);
  color: #475450;
  font-size: 14px;
}

.main-nav a {
  padding: 0;
  text-decoration: none;
}

.main-nav a::after {
  content: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
}

.header-tools {
  gap: 8px;
}

.header-action,
.lang-toggle,
.btn {
  min-height: 38px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.header-action {
  padding: 0 16px;
  color: #fff;
  background: var(--ink);
  border-color: transparent;
}

.lang-toggle {
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(24, 32, 31, 0.14);
}

.section-band {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 82px);
}

.section-band > * {
  width: min(1180px, 100%);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(360px, 430px);
  align-items: center;
  justify-content: center;
  gap: 64px;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 96px clamp(28px, 2.8vw, 48px) 52px;
  background: #fff;
  overflow: visible;
}

.hero::before {
  content: none;
}

.hero > * {
  position: relative;
  z-index: 2;
  width: auto;
  margin: 0;
}

.hero > .hero-image {
  display: none;
}

.hero > .hero-overlay {
  display: none;
}

.hero-content {
  max-width: 680px;
}

.eyebrow,
.card-kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #15211f;
  font-size: clamp(64px, 7.3vw, 102px);
  line-height: 0.92;
}

h2 {
  color: #17231f;
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1.04;
}

.hero-line,
.hero-note {
  max-width: 680px;
  color: #4b5753;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.32;
}

.hero-note {
  margin-top: 24px;
  padding: 15px 18px;
  border: 1px solid rgba(74, 178, 171, 0.32);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  font-size: 1.03rem;
}

.hero-actions {
  margin: 34px 0 0;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.hero .btn-primary {
  color: #fff;
  background: #e7554d;
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(231, 85, 77, 0.22);
}

.hero .btn-ghost {
  color: var(--ink);
  background: #fff;
  border-color: rgba(24, 32, 31, 0.14);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 680px;
  margin: 40px 0 0;
  padding: 0;
  border: 1px solid rgba(24, 32, 31, 0.12);
  border-radius: 26px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.hero-stats div {
  min-height: 132px;
  padding: 20px 14px;
  background: transparent;
  border-right: 1px solid rgba(24, 32, 31, 0.12);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  display: block;
  margin-bottom: 7px;
  color: #d89019;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.16;
}

.hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
  overflow: visible;
}

.hero-portrait {
  position: relative;
  overflow: visible;
  box-shadow: 0 26px 70px rgba(24, 32, 31, 0.14);
}

.hero-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: 50% 28%;
}

.vertical-tag {
  position: absolute;
  top: 36px;
  right: -19px;
  z-index: 3;
  display: grid;
  min-height: 190px;
  place-items: center;
  padding: 14px 9px;
  border-radius: 16px;
  color: #181818;
  background: #e19719;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.spec-tags {
  position: absolute;
  right: -36px;
  bottom: 20px;
  z-index: 3;
  display: grid;
  gap: 12px;
  width: min(180px, 42vw);
}

.spec-tags span {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 0 15px;
  border: 1px solid rgba(24, 32, 31, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(24, 32, 31, 0.08);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.signature {
  color: var(--ink);
  background: var(--surface-soft);
}

.signature-grid,
.timeline {
  gap: 18px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.signature-grid article,
.work-card,
.timeline article,
.video-card {
  border: 1px solid rgba(24, 32, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(47, 71, 67, 0.06);
}

.signature-grid article {
  min-height: 245px;
  padding: 26px;
}

.favorite-quote {
  margin: 26px auto 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(24, 32, 31, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(223, 234, 243, 0.62)),
    #fff;
  box-shadow: 0 12px 32px rgba(47, 71, 67, 0.06);
}

.quote-label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.favorite-quote blockquote {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
}

.favorite-quote figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.index {
  color: var(--coral);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 900;
}

.demos {
  background: transparent;
}

.demo-layout {
  grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.68fr);
  border: 1px solid rgba(24, 32, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 36px rgba(47, 71, 67, 0.08);
}

.player-copy {
  background: #fff;
}

.filter {
  min-height: 42px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  font-weight: 750;
}

.filter.active,
.filter:hover,
.filter:focus-visible {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.video-card {
  min-height: 0;
  border-radius: 8px;
}

.poster {
  border-radius: 8px 8px 0 0;
}

.work {
  background:
    linear-gradient(135deg, rgba(223, 234, 243, 0.75), rgba(238, 244, 241, 0.95)),
    var(--surface-soft);
}

.work-grid {
  gap: 18px;
}

.work-card {
  min-height: 0;
  padding: 26px;
}

.work-card h3,
.timeline h3,
.signature-grid h3 {
  color: #18201f;
  font-size: 24px;
}

.parcours {
  background: transparent;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline article {
  min-height: 245px;
  padding: 26px;
}

.timeline span {
  margin-bottom: 34px;
  color: var(--coral);
}

.contact {
  display: block;
  padding-top: 24px;
  background: transparent;
}

.contact-copy,
.contact-links {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.contact-copy {
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid rgba(24, 32, 31, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(223, 234, 243, 0.82)),
    var(--surface);
  box-shadow: var(--shadow);
}

.contact-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.contact-links a {
  justify-content: center;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.66);
}

.site-footer {
  padding: 28px clamp(20px, 6vw, 82px);
  background: #fff;
  color: #69736f;
}

@media (max-width: 980px) {
  .hero,
  .demo-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    width: min(76vw, 430px);
    justify-self: center;
  }

  .spec-tags {
    right: -34px;
  }

  .video-grid,
  .work-grid,
  .timeline,
  .contact-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    top: 12px;
    right: 14px;
    left: 14px;
    grid-template-columns: auto auto;
    align-items: center;
    border-radius: 8px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 8px 14px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 48px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
    border-radius: 20px;
  }

  .hero-stats div {
    min-height: 104px;
    padding: 18px;
  }

  .hero-stats div:nth-child(2n) {
    border-right: 0;
  }

  .hero-visual {
    width: min(82vw, 340px);
    margin-top: 10px;
  }

  .vertical-tag {
    top: 24px;
    right: -14px;
    min-height: 150px;
    border-radius: 14px;
    font-size: 11px;
  }

  .spec-tags {
    right: -16px;
    bottom: 12px;
    width: 158px;
    gap: 9px;
  }

  .spec-tags span {
    min-height: 36px;
    padding: 0 10px;
    font-size: 11.5px;
  }

  .hero-copy {
    display: block;
  }

  .hero-copy > * {
    order: initial;
  }

  h1 {
    font-size: 42px;
  }

  .video-grid,
  .work-grid,
  .timeline,
  .contact-links,
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand strong {
    display: none;
  }

  h1 {
    font-size: 38px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .hero-stats div:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(24, 32, 31, 0.12);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .spec-tags {
    right: 10px;
    width: 150px;
  }

  .btn,
  .contact-links a {
    width: 100%;
  }
}
