/* Velvet Strategy — quiet luxury */

@font-face {
  font-family: "Antipasto Pro";
  src: url("../assets/fonts/AntipastoPro-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Antipasto Pro";
  src: url("../assets/fonts/AntipastoPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Antipasto Pro";
  src: url("../assets/fonts/AntipastoPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Antipasto Pro";
  src: url("../assets/fonts/AntipastoPro-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Antipasto Pro";
  src: url("../assets/fonts/AntipastoPro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #081830;
  --navy-2: #0c2040;
  --navy-3: #122a4c;
  --gold: #c6b08a;
  --gold-2: #e4d3b2;
  --gold-dim: rgba(198, 176, 138, 0.28);
  --gold-deep: #4f3f28;
  --cream: #f1eadc;
  --mist: rgba(241, 234, 220, 0.72);
  --mute: rgba(241, 234, 220, 0.52);
  --beige: #ece4d8;
  --ink-mist: rgba(8, 24, 48, 0.82);
  --ink-mute: rgba(8, 24, 48, 0.62);
  --ink-line: rgba(8, 24, 48, 0.16);
  --line: rgba(198, 176, 138, 0.22);
  --header-h: 4.75rem;
  --pad: clamp(1.25rem, 4.2vw, 3.5rem);
  --max: 72rem;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Antipasto Pro", "Outfit", "Segoe UI", sans-serif;
  --gothic: "Antipasto Pro", "Outfit", "Segoe UI", sans-serif;
  --script: "Pinyon Script", "Snell Roundhand", "Apple Chancery", cursive;
  --ar-serif: "Amiri", "Noto Naskh Arabic", serif;
  --ar-sans: "Noto Naskh Arabic", "Amiri", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --z-header: 50;
  --z-menu: 60;
  --z-film: 70;
  --z-toast: 80;
  --z-curtain: 96;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: hidden;
  overflow-x: clip;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.article-scroll::-webkit-scrollbar,
.ribbon-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.article-scroll,
.ribbon-track {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html:has(.curtain):not(.curtain-skip):not(.is-ready) {
  overflow: hidden;
}

html[lang="ar"] {
  --serif: var(--ar-serif);
  --sans: var(--ar-sans);
  --gothic: var(--ar-serif);
  --script: var(--ar-serif);
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--cream);
  background: var(--navy);
  font-optical-sizing: auto;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

input,
textarea {
  font-family: var(--sans);
}

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

[hidden] {
  display: none !important;
}

.skip {
  position: absolute;
  inset-inline-start: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--gold);
  color: var(--navy);
  padding: 0.55rem 0.9rem;
}

.skip:focus {
  top: 1rem;
}

.banner {
  display: none;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  padding: 0.45rem var(--pad);
  background: var(--navy);
}

.banner.is-on {
  display: block;
}

/* Opening scene */
.curtain {
  position: fixed;
  inset: 0;
  z-index: var(--z-curtain);
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold-2);
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}

.curtain.is-out,
html.curtain-skip .curtain {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

html.curtain-skip .curtain {
  display: none;
}

button.curtain-skip {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  inset-inline-end: var(--pad);
  appearance: none;
  border: 0;
  background: none;
  color: var(--gold);
  min-height: 44px;
  padding: 0 0.2rem;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

button.curtain-skip:hover {
  color: var(--gold-2);
}

.curtain-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
}

.curtain-place,
.curtain-line {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.curtain-mark {
  height: clamp(3.4rem, 11vw, 5.4rem);
  width: auto;
  margin: 1.15rem 0 0;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  animation: appear 1.1s 0.35s var(--ease) both;
}

.curtain-place {
  opacity: 0;
  animation: appear 0.9s 0.12s var(--ease) both;
}

.curtain-rule {
  display: block;
  width: min(11rem, 42vw);
  height: 1px;
  margin: 1.45rem 0 1.15rem;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  animation: draw-rule 1s 0.7s var(--ease) both;
}

.curtain-line {
  opacity: 0;
  animation: appear 0.95s 1.15s var(--ease) both;
}

html.curtain-skip .curtain-mark,
html.curtain-skip .curtain-place,
html.curtain-skip .curtain-rule,
html.curtain-skip .curtain-line,
.curtain.is-out .curtain-mark,
.curtain.is-out .curtain-place,
.curtain.is-out .curtain-rule,
.curtain.is-out .curtain-line {
  animation: none;
}

.read-line {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 55;
  height: 2px;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

html.is-ready .read-line,
html.curtain-skip .read-line {
  opacity: 1;
}

.read-line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

html[dir="rtl"] .read-line i {
  transform-origin: 100% 50%;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes draw-rule {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 0 var(--pad);
  background: rgba(8, 24, 48, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s, opacity 0.7s var(--ease);
}

html:has(.curtain):not(.curtain-skip):not(.is-ready) .site-header {
  opacity: 0;
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(8, 24, 48, 0.94);
  border-bottom-color: var(--line);
}

.wordmark {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.wordmark img {
  display: block;
  height: 48px;
  width: auto;
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}

html[dir="rtl"] .wordmark img {
  transform-origin: right center;
}

.site-header.is-compact .wordmark img {
  transform: scale(0.72);
}

.mast-nav {
  display: none;
  flex: 1 0 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 0.35rem;
  border-top: 1px solid var(--line);
  padding: 0.15rem var(--pad) 0.35rem;
}

.mast-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  min-height: 44px;
  padding: 0 0.85rem;
  display: inline-flex;
  align-items: center;
}

.mast-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0.85rem;
  bottom: 0.6rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease);
}

.mast-nav a:hover {
  color: var(--gold);
}

.mast-nav a:hover::after,
.mast-nav a.is-on::after {
  transform: scaleX(1);
}

.mast-nav a.is-on {
  color: var(--gold);
}

.header-end {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-switch {
  display: flex;
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--mute);
  min-width: 40px;
  min-height: 44px;
  cursor: pointer;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.lang-btn.is-active {
  color: var(--gold);
}

.btn-talk {
  display: none;
  align-items: center;
  min-height: 42px;
  padding: 0 1.05rem;
  border: 1px solid var(--gold);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-inline-start: 0.4rem;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.btn-talk:hover {
  background: var(--gold);
  color: var(--navy);
}

.menu-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--cream);
}

.burger {
  width: 18px;
  height: 11px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger i {
  display: block;
  height: 1px;
  background: currentColor;
}

/* Menu */
.menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  background: var(--navy);
  display: flex;
  flex-direction: column;
  padding: 1.2rem var(--pad) 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--header-h);
}

.menu-top .wordmark img {
  height: 52px;
}

.menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.menu-link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  text-decoration: none;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 5.6vw, 2.55rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.18;
}

.menu-link.is-on {
  color: var(--gold);
}

.menu-link span {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  font-size: 0.8rem;
}

body.menu-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  align-items: center;
  padding: 3.5rem var(--pad) 4.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -4%;
  background: #081830 url("../assets/hero-dubai.jpg") center 42% / cover no-repeat;
  transform: scale(1.04);
  filter: brightness(0.92) saturate(1.06) contrast(1.04);
}

html.is-ready .hero-bg,
html.curtain-skip .hero-bg {
  animation: ken 32s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 48, 0.58) 0%, transparent 32%, rgba(8, 24, 48, 0.42) 100%),
    linear-gradient(
      105deg,
      rgba(8, 13, 22, 0.74) 0%,
      rgba(8, 13, 22, 0.16) 48%,
      rgba(8, 13, 22, 0.38) 100%
    );
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

html:has(.curtain):not(.curtain-skip):not(.is-ready) .hero-copy > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

html.is-ready .hero-copy > * {
  animation: appear 1.05s var(--ease) both;
}

html.is-ready .hero-copy > *:nth-child(1) {
  animation-delay: 0.06s;
}
html.is-ready .hero-copy > *:nth-child(2) {
  animation-delay: 0.18s;
}
html.is-ready .hero-copy > *:nth-child(3) {
  animation-delay: 0.32s;
}
html.is-ready .hero-copy > *:nth-child(4) {
  animation-delay: 0.46s;
}

html.curtain-skip .hero-copy > * {
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-title {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 5.4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.hero-title em {
  display: block;
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-top: 0.12em;
}

html[lang="ar"] .hero-title em {
  font-family: var(--ar-serif);
  font-style: italic;
}

.hero-body {
  margin: 1.15rem 0 1.7rem;
  max-width: 32rem;
  color: var(--mist);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}

html[dir="rtl"] .hero-actions {
  align-items: flex-start;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0 1.15rem;
  border: 1px solid var(--gold);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-ghost .arrow {
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: transform 0.35s var(--ease);
}

.btn-ghost:hover .arrow {
  transform: translateX(5px);
}

html[dir="rtl"] .btn-ghost:hover .arrow {
  transform: translateX(-5px);
}

.btn-ghost .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

html[dir="rtl"] .btn-ghost .arrow::after {
  right: auto;
  left: 0;
  transform: rotate(-135deg);
}

.film-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: none;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  min-height: 44px;
  padding: 0;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.film-ring {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: live 2.4s ease-out infinite;
}

.film-ring i {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

@keyframes ken {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.2%, 0.8%, 0);
  }
}

/* Featured */
.featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
  padding: 1.7rem var(--pad) 1.85rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}

.featured p {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

.featured-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 52rem;
}

.featured-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.featured-logos img {
  display: block;
  height: 24px;
  width: auto;
  max-width: 118px;
  object-fit: contain;
  filter: brightness(0) invert(0.88);
  opacity: 0.9;
}

.featured-logos img[alt="Associated Press"] {
  height: 34px;
}

.press-mark {
  appearance: none;
  margin: 0;
  padding: 0.35rem 0.2rem;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.press-mark img {
  pointer-events: none;
}

.press-mark:hover img,
.press-mark.is-on img {
  opacity: 1;
  filter: brightness(0) invert(0.92) sepia(0.35) saturate(1.4) hue-rotate(6deg);
}

.press-mark.is-on {
  border-bottom-color: var(--gold);
}

.featured-hint {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Impact */
.impact {
  position: relative;
  overflow: hidden;
  padding: 6.4rem var(--pad) 6.8rem;
  background: var(--beige);
  color: var(--navy);
}

.impact::before {
  content: "VS";
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(14rem, 34vw, 26rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: rgba(8, 24, 48, 0.045);
  pointer-events: none;
}

.impact-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.impact .eyebrow {
  margin: 0 0 1.15rem;
  color: var(--gold-deep);
}

.impact h2 {
  margin: 0 auto;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.05rem, 5.4vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--navy);
}

.impact h2 span {
  display: block;
}

.impact-rule {
  display: block;
  width: 3.2rem;
  height: 1px;
  margin: 1.7rem auto 1.55rem;
  background: var(--gold);
}

.impact-copy {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.85;
}

.impact-copy + .impact-copy {
  margin-top: 1.05rem;
}

.impact-mark {
  margin: 2.4rem 0 0;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* Events */
.heat {
  position: relative;
  overflow: hidden;
  padding: 3.4rem var(--pad) 4rem;
  background:
    radial-gradient(80% 70% at 18% 12%, rgba(198, 176, 138, 0.08), transparent 58%),
    var(--navy);
  color: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.heat::before {
  content: "Baku";
  position: absolute;
  right: -2%;
  top: 18%;
  font-family: var(--script);
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 0.8;
  color: rgba(198, 176, 138, 0.055);
  pointer-events: none;
}

html[dir="rtl"] .heat::before {
  right: auto;
  left: -2%;
}

.heat-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-inline: auto;
}

.heat-head {
  margin-bottom: 1.6rem;
}

.heat-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.heat h2 {
  margin: 0;
  max-width: 22rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 4.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--gold);
  overflow-wrap: break-word;
}

.heat-feature {
  display: grid;
  gap: 1.35rem;
  min-width: 0;
}

.heat-frame {
  margin: 0;
  padding: 0;
  min-width: 0;
  background: transparent;
  border: 0;
}

.heat-mat {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  box-shadow:
    0 0 0 1px rgba(198, 176, 138, 0.22),
    0 0 32px 6px rgba(198, 176, 138, 0.18),
    0 0 88px 28px rgba(8, 24, 48, 0.88),
    0 36px 72px rgba(4, 8, 16, 0.55);
}

.heat-mat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s var(--ease);
}

.heat-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 78% 72% at 50% 36%,
      transparent 28%,
      rgba(8, 24, 48, 0.18) 62%,
      rgba(8, 24, 48, 0.78) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 24, 48, 0.22) 0%,
      transparent 20%,
      transparent 55%,
      rgba(8, 24, 48, 0.55) 82%,
      var(--navy) 100%
    );
  box-shadow:
    inset 0 0 80px 28px rgba(8, 24, 48, 0.38),
    0 0 64px 24px rgba(8, 24, 48, 0.75);
}

.heat-feature:hover .heat-mat img,
.heat-feature:focus-within .heat-mat img {
  transform: scale(1.035);
}

.heat-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
  max-width: 38rem;
  padding-block: 0.15rem 0.2rem;
}

.heat-meta,
.heat-meta time {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
  margin: 0;
  font-family: "Outfit", "Antipasto Pro", sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-variant-numeric: lining-nums;
  color: var(--gold);
}

.heat-meta time {
  display: inline;
}

.heat-story {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.18rem, 3.6vw, 1.85rem);
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: var(--gold-2);
  overflow-wrap: break-word;
}

.heat-rule {
  display: block;
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
}

.heat-lede {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: var(--mist);
  overflow-wrap: break-word;
}

@media (min-width: 860px) {
  .heat {
    padding: 4.4rem var(--pad) 5rem;
  }

  .heat-head {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .heat h2 {
    max-width: 28rem;
  }

  .heat-mat {
    aspect-ratio: 16 / 9;
  }

  .heat-copy {
    max-width: 40rem;
    padding-inline-start: 0.15rem;
  }

  .heat-story {
    font-size: clamp(1.55rem, 2.1vw, 2.05rem);
  }
}

@media (max-width: 859px) {
  .heat-feature,
  .heat-frame,
  .heat-mat,
  .heat-copy {
    width: 100%;
    max-width: 100%;
  }

  .heat-mat {
    aspect-ratio: auto;
    height: auto;
    overflow: hidden;
  }

  .heat-mat img {
    position: static;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .heat-veil {
    position: absolute;
    inset: 0;
  }

  .heat-feature:hover .heat-mat img,
  .heat-feature:focus-within .heat-mat img {
    transform: none;
  }

  .heat-story {
    font-size: clamp(1.12rem, 5vw, 1.4rem);
  }
}

/* Why Velvet Strategy */
.why {
  position: relative;
  overflow: hidden;
  padding: 5.6rem var(--pad) 6rem;
  background: var(--beige);
  color: var(--navy);
}

.why::before {
  content: "Why";
  position: absolute;
  left: 50%;
  top: 7.2rem;
  transform: translateX(-50%);
  font-family: var(--script);
  font-size: clamp(8rem, 22vw, 16rem);
  line-height: 0.7;
  color: rgba(8, 24, 48, 0.045);
  pointer-events: none;
}

.why-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-inline: auto;
}

.why-head {
  max-width: 38rem;
  margin: 0 auto 2.8rem;
  text-align: center;
}

.why-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.why h2 {
  margin: 0 auto 0.85rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.15rem, 5.6vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--navy);
  text-wrap: balance;
}

.why-lead {
  margin: 0 auto;
  max-width: 28rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.12rem, 2.2vw, 1.38rem);
  line-height: 1.45;
  color: var(--ink-mist);
  text-wrap: balance;
}

.why-rule {
  display: block;
  width: 3.2rem;
  height: 1px;
  margin: 1.55rem auto 0;
  background: var(--gold);
}

.why-folio-wrap {
  position: relative;
}

.why-folio {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink-line);
  border-inline-start: 1px solid var(--ink-line);
}

.why-corner {
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 2;
}

.why-corner-tl {
  top: -1px;
  inset-inline-start: -1px;
  border-inline-end: 0;
  border-bottom: 0;
}

.why-corner-tr {
  top: -1px;
  inset-inline-end: -1px;
  border-inline-start: 0;
  border-bottom: 0;
}

.why-corner-bl {
  bottom: -1px;
  inset-inline-start: -1px;
  border-inline-end: 0;
  border-top: 0;
}

.why-corner-br {
  bottom: -1px;
  inset-inline-end: -1px;
  border-inline-start: 0;
  border-top: 0;
}

.why-plate {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 16.5rem;
  margin: 0;
  padding: 1.85rem 1.45rem 1.7rem;
  border-inline-end: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  background: transparent;
  transition: background 0.45s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}

.why-plate:hover,
.why-plate:focus-within {
  background: rgba(8, 24, 48, 0.035);
}

.why-roman {
  position: absolute;
  inset-inline-end: 0.35rem;
  top: 0.15rem;
  z-index: 0;
  font-family: var(--serif);
  font-size: clamp(5.4rem, 12vw, 7.4rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: rgba(198, 176, 138, 0.22);
  pointer-events: none;
  transition: color 0.45s var(--ease);
}

.why-plate:hover .why-roman,
.why-plate:focus-within .why-roman {
  color: rgba(198, 176, 138, 0.42);
}

.why-plate h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.28rem, 2.4vw, 1.55rem);
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-wrap: balance;
}

html[lang="en"] .why-plate h3 {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
}

.why-hair {
  position: relative;
  z-index: 1;
  display: block;
  width: 2.2rem;
  height: 1px;
  margin: 1.05rem 0 0.95rem;
  background: var(--gold);
  transform-origin: 0 50%;
  transition: width 0.45s var(--ease);
}

html[dir="rtl"] .why-hair {
  transform-origin: 100% 50%;
}

.why-plate:hover .why-hair,
.why-plate:focus-within .why-hair {
  width: 3.4rem;
}

.why-plate p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 18rem;
  color: var(--ink-mist);
  font-size: 0.98rem;
  line-height: 1.7;
}

@media (min-width: 720px) {
  .why-folio {
    grid-template-columns: 1fr 1fr;
  }

  .why-plate {
    min-height: 18.5rem;
    padding: 2.1rem 1.7rem 1.9rem;
  }
}

@media (min-width: 1024px) {
  .why {
    padding: 6.6rem var(--pad) 7rem;
  }

  .why-head {
    margin-bottom: 3.2rem;
  }

  .why-folio {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-plate {
    min-height: 22rem;
    padding: 2.25rem 1.55rem 2rem;
  }

  .why-plate p {
    max-width: none;
  }
}

/* The atelier */
.atelier {
  position: relative;
  overflow: hidden;
  padding: 3.6rem var(--pad) 4.4rem;
  background:
    radial-gradient(70% 60% at 78% 8%, rgba(198, 176, 138, 0.1), transparent 58%),
    var(--navy);
  color: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.atelier::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/hero-silk.png") center 40% / cover no-repeat;
  opacity: 0.14;
  filter: brightness(0.55) saturate(0.85);
  pointer-events: none;
}

.atelier-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-inline: auto;
}

.atelier-hero {
  position: relative;
  margin: 0;
  padding: 0;
}

.atelier-mat {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  box-shadow:
    0 0 0 1px rgba(198, 176, 138, 0.22),
    0 0 32px 6px rgba(198, 176, 138, 0.16),
    0 0 88px 28px rgba(8, 24, 48, 0.88),
    0 36px 72px rgba(4, 8, 16, 0.55);
}

.atelier-mat::after {
  content: "";
  position: absolute;
  inset: 0.7rem;
  z-index: 2;
  border: 1px solid rgba(198, 176, 138, 0.38);
  pointer-events: none;
}

.atelier-mat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 1.4s var(--ease);
}

.atelier-hero:hover .atelier-mat img,
.atelier-hero:focus-within .atelier-mat img {
  transform: scale(1.03);
}

.atelier-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 78% 72% at 50% 36%,
      transparent 22%,
      rgba(8, 24, 48, 0.22) 62%,
      rgba(8, 24, 48, 0.72) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 24, 48, 0.18) 0%,
      transparent 24%,
      rgba(8, 24, 48, 0.42) 58%,
      rgba(8, 24, 48, 0.88) 100%
    );
}

.atelier-caption {
  position: absolute;
  z-index: 3;
  inset-inline: 1.15rem;
  bottom: 1.25rem;
  max-width: 36rem;
}

.atelier-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.atelier h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 4.8vw, 3.05rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--gold-2);
  text-wrap: balance;
}

.atelier-lead {
  margin: 1.7rem 0 0;
  max-width: 40rem;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: var(--mist);
}

.atelier-steps {
  position: relative;
  display: grid;
  gap: 1.55rem;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}

.atelier-steps li {
  position: relative;
  margin: 0;
  padding: 0;
  transition-delay: calc(var(--i, 0) * 90ms);
}

.atelier-step-n {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  margin: 0 0 0.85rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(8, 24, 48, 0.55);
}

.atelier-steps h3 {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--gold-2);
}

.atelier-steps p {
  margin: 0;
  max-width: 18rem;
  color: var(--mist);
  font-size: 0.98rem;
  line-height: 1.65;
}

.atelier-actions {
  margin-top: 2.2rem;
}

@media (min-width: 860px) {
  .atelier {
    padding: 4.6rem var(--pad) 5.2rem;
  }

  .atelier-caption {
    inset-inline: 1.8rem;
    bottom: 1.7rem;
  }

  .atelier-lead {
    margin-top: 2.1rem;
    font-size: 1.12rem;
  }

  .atelier-steps {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 2.6rem;
  }

  .atelier-steps::before {
    content: "";
    position: absolute;
    top: 1.05rem;
    inset-inline: 1.2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
    opacity: 0.38;
    pointer-events: none;
  }

  html[dir="rtl"] .atelier-steps::before {
    background: linear-gradient(270deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
  }
}

@media (max-width: 859px) {
  .atelier-mat {
    aspect-ratio: auto;
    height: auto;
  }

  .atelier-mat img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
  }

  .atelier-hero:hover .atelier-mat img,
  .atelier-hero:focus-within .atelier-mat img {
    transform: none;
  }

  .atelier-veil {
    position: absolute;
    inset: 0;
  }

  .atelier-caption {
    inset-inline: 0.95rem;
    bottom: 0.95rem;
  }
}

/* Founder */
.founder {
  position: relative;
  overflow: hidden;
  padding: 6rem var(--pad) 9.4rem;
  background: var(--beige);
  color: var(--navy);
}

.founder::after {
  content: "“";
  position: absolute;
  inset-inline-end: 4vw;
  top: 0.4rem;
  font-family: var(--sans);
  font-size: clamp(8rem, 18vw, 15rem);
  font-weight: 500;
  line-height: 1;
  color: rgba(198, 176, 138, 0.16);
  pointer-events: none;
}

html[dir="rtl"] .founder::after {
  content: "”";
}

.founder-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.6rem;
  align-items: center;
}

.founder-portrait {
  position: relative;
  margin: 0;
  isolation: isolate;
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 26rem;
  object-fit: cover;
  object-position: center 8%;
  mix-blend-mode: multiply;
  filter: contrast(1.06);
}

.founder-copy {
  max-width: 38rem;
}

.founder .eyebrow {
  margin: 0 0 0.35rem;
  color: var(--gold-deep);
  font-size: 0.68rem;
}

.founder h2 {
  margin: 0 0 1.2rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.founder-copy > p:not(.founder-sign) {
  margin: 0.7rem 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.75;
}

.founder blockquote {
  margin: 1.5rem 0;
  padding-inline-start: 1.35rem;
  border-inline-start: 2px solid var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.65;
  font-style: normal;
}

.founder-sign {
  margin: 1.15rem 0 0;
}

.founder-sign strong {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
}

.founder-sign small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

@media (min-width: 860px) {
  .founder-grid {
    grid-template-columns: 22.5rem 1fr;
    gap: 4.75rem;
    align-items: center;
  }

  .founder-portrait img {
    height: 34rem;
  }
}

/* Sections */
.section {
  padding: 4.4rem var(--pad);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section-title,
.intro-lead {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 4.4vw, 2.85rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--gold-2);
  text-wrap: balance;
}

.lede {
  margin: 0 0 2rem;
  max-width: 38rem;
  color: var(--mist);
}

.page-sheet {
  min-height: calc(100svh - var(--header-h));
}

.page-band {
  padding: 3.2rem var(--pad) 2.6rem;
}

.page-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--gold);
  text-wrap: balance;
}

.page-rule {
  display: block;
  width: 4.2rem;
  height: 1px;
  margin: 1.35rem 0 0;
  background: var(--gold);
  transform-origin: 0 50%;
}

html[dir="rtl"] .page-rule {
  transform-origin: 100% 50%;
}

html.is-ready .page-rule {
  animation: draw-rule 0.9s var(--ease) both;
}

.page-sheet > .wrap {
  padding: 1.4rem var(--pad) 4.6rem;
}

.house-paper .page-band {
  background: var(--navy);
}

.house-paper .page-title {
  color: var(--gold);
}

.house-ink .page-band .lede {
  color: var(--mist);
}

.letter {
  max-width: 40rem;
  padding: 2.2rem 0 1.5rem;
}

.letter p {
  margin: 0 0 1.4rem;
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--ink-mist);
}

.letter p:first-child {
  font-size: 1.22rem;
  line-height: 1.75;
  color: var(--navy);
}

.letter p:last-child {
  margin-bottom: 0;
}

.house-paper {
  background: var(--beige);
  color: var(--navy);
}

.house-paper .section-title {
  color: var(--navy);
}

.house-paper .lede,
.house-paper .house-copy,
.house-paper .house-note {
  color: var(--ink-mist);
}

.house-paper .eyebrow {
  color: var(--gold-deep);
}

.house-paper .page-band .eyebrow {
  color: var(--gold);
}

.house-paper .page-band .lede {
  color: var(--mist);
}

.house-ink {
  background: var(--navy);
}

.house-copy {
  margin: 0 0 1.1rem;
  max-width: 38rem;
  color: var(--mist);
  font-size: 1.02rem;
  line-height: 1.7;
}

.house-note {
  margin: 1.6rem 0 0;
  max-width: 36rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--mist);
}

.about-grid,
.service-list,
.event-list,
.principle-list,
.partner-list,
.case-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-grid {
  display: grid;
  gap: 2.4rem;
}

.principle-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink-line);
}

.principle,
.service-item,
.event-item {
  display: grid;
  grid-template-columns: 3.1rem 1fr;
  column-gap: 0.9rem;
  row-gap: 0.25rem;
  margin: 0;
  padding: 1.05rem 0 1.15rem;
  border-bottom: 1px solid var(--ink-line);
}

.house-ink .principle,
.house-ink .service-item,
.house-ink .event-item {
  border-bottom-color: var(--line);
}

.principle span,
.service-item span,
.event-item span {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold-deep);
  line-height: 1.2;
}

.house-ink .principle span,
.house-ink .service-item span,
.house-ink .event-item span {
  color: var(--gold);
}

.principle b,
.service-item b,
.event-item b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.28rem;
  line-height: 1.25;
  color: var(--navy);
}

.house-ink .principle b,
.house-ink .service-item b,
.house-ink .event-item b {
  color: var(--gold-2);
}

.principle p,
.service-item p,
.event-item p {
  grid-column: 2;
  margin: 0.15rem 0 0;
  color: var(--ink-mist);
  font-size: 0.98rem;
  line-height: 1.55;
}

.house-ink .principle p,
.house-ink .service-item p,
.house-ink .event-item p {
  color: var(--mist);
}

.event-item .event-meta,
.event-item b,
.event-item p {
  grid-column: 2;
}

.event-item .event-meta {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.event-item span {
  grid-row: 1 / span 3;
}

.house-ink .event-item .event-meta {
  color: var(--gold);
}

.partner-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ink-line);
}

.partner-list li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--ink-line);
}

.partner-list button,
.partner-list a {
  appearance: none;
  width: 100%;
  margin: 0;
  padding: 0.95rem 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
  text-align: start;
  text-decoration: none;
  cursor: pointer;
  display: block;
}

.partner-list button:hover,
.partner-list a:hover {
  color: var(--gold-deep);
}

.case-grid {
  display: grid;
  gap: 1.4rem;
}

.case-card {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: start;
}

.case-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.92);
  border: 1px solid var(--line);
}

.case-card span {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.case-card b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--gold-2);
}

.case-card p {
  margin: 0;
  color: var(--mist);
  font-size: 0.95rem;
  line-height: 1.55;
}

.magazine {
  background: var(--beige);
}

#about,
#services,
#magazine,
#events,
#partners,
#cases,
#contact,
#why,
#atelier,
#founder {
  scroll-margin-top: calc(var(--header-h) + 6px);
}

/* Type ribbon */
.ribbon {
  position: sticky;
  top: var(--header-h);
  z-index: 45;
  background: rgba(227, 225, 219, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transition: top 0.35s var(--ease);
}

.ribbon-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  min-height: 2.55rem;
}

.ribbon-all {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0 0.85rem 0 var(--pad);
  border: 0;
  border-inline-end: 1px solid var(--ink-line);
  background: transparent;
  color: var(--gold-deep);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
}

.ribbon-all.is-on {
  color: var(--navy);
}

.ribbon-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 28px), transparent);
}

html[dir="rtl"] .ribbon-track {
  mask-image: linear-gradient(270deg, transparent, #000 18px, #000 calc(100% - 28px), transparent);
}

.ribbon-run {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}

.ribbon-track:hover .ribbon-run,
.ribbon-track:focus-within .ribbon-run {
  animation-play-state: paused;
}

.ribbon-unit {
  display: flex;
  align-items: center;
}

.ribbon-item {
  appearance: none;
  background: none;
  border: 0;
  color: var(--navy);
  font-family: var(--gothic);
  font-size: clamp(0.88rem, 1.9vw, 1.12rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  min-height: 44px;
  padding: 0 0.1rem;
  cursor: pointer;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.ribbon-item:hover {
  color: var(--gold-deep);
}

.ribbon-item.is-on {
  color: var(--gold-deep);
  transform: none;
}

.ribbon-sep {
  padding: 0 0.75rem;
  color: var(--gold-deep);
  opacity: 0.55;
  font-family: var(--serif);
  font-size: 0.85rem;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

html[dir="rtl"] .ribbon-run {
  animation-name: marquee-rtl;
}

@keyframes marquee-rtl {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(50%, 0, 0);
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  min-height: 44px;
}

.text-link .arrow {
  width: 16px;
  height: 1px;
  background: currentColor;
  position: relative;
}

.text-link .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

/* Desk — fifteen dispatches */
.desk {
  background: var(--beige);
  color: var(--navy);
  padding-top: 4.8rem;
  padding-bottom: 5.5rem;
}

.desk-wrap {
  max-width: 92rem;
  margin: 0 auto;
}

.desk-masthead {
  margin-bottom: 0.4rem;
}

.desk-folio {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.desk-folio .eyebrow {
  margin: 0;
}

.desk-volume {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.desk-title {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-wrap: balance;
}

.desk-lead {
  margin: 0;
  max-width: 36rem;
  color: var(--ink-mist);
  font-size: 1.02rem;
}

.desk-rule {
  margin: 1.65rem 0 0;
  height: 7px;
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--gold-dim);
}

html:has(.site-header.is-compact) .ribbon-shell {
  min-height: 2.35rem;
}

html:has(.site-header.is-compact) .ribbon-item,
html:has(.site-header.is-compact) .ribbon-all {
  min-height: 40px;
}

.desk-colophon {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
}

.desk .eyebrow {
  color: var(--gold-deep);
}

.desk-showing {
  margin: 0.7rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: dense;
  border-top: 1px solid var(--ink-line);
  border-inline-start: 1px solid var(--ink-line);
}

.news-card {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.9rem;
  width: 100%;
  margin: 0;
  padding: 1.2rem 1.15rem 1.4rem;
  border: 0;
  border-inline-end: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  background: transparent;
  color: inherit;
  text-align: start;
  cursor: pointer;
  min-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), background 0.45s var(--ease);
  transition-delay: calc(var(--i, 0) * 45ms);
}

.news-card.is-in {
  opacity: 1;
  transform: none;
}

.news-card:hover,
.news-card:focus-visible {
  background: rgba(8, 24, 48, 0.04);
}

.news-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.news-frame {
  position: relative;
  display: block;
  width: 100%;
  flex: 0 0 auto;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--navy);
  border: 1px solid var(--ink-line);
}

.news-card.is-lead .news-frame {
  aspect-ratio: 16 / 9;
}

.news-card.is-banner .news-frame,
.news-card.is-brief .news-frame {
  aspect-ratio: 16 / 10;
}

.news-frame::after {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border: 1px solid rgba(198, 176, 138, 0.45);
  pointer-events: none;
  z-index: 1;
}

.news-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.08) brightness(0.92);
  transform: none;
  transition: filter 0.7s var(--ease);
}

.news-card:hover img,
.news-card:focus-visible img {
  transform: none;
  filter: saturate(0.92) contrast(1.12) brightness(0.98);
}

.news-index {
  position: absolute;
  inset-inline-start: 0.7rem;
  bottom: 0.4rem;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: 0.02em;
  color: var(--gold-2);
  text-shadow: 0 8px 28px rgba(8, 24, 48, 0.55);
  pointer-events: none;
}

.news-card.is-lead .news-index {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}

.news-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.news-meta time {
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: none;
  font-size: 0.72rem;
  font-variant-numeric: lining-nums;
}

.news-kind {
  font-family: var(--gothic);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.news-headline {
  margin: 0.4rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.22rem, 2.2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.22;
  color: var(--navy);
  text-wrap: balance;
  overflow-wrap: break-word;
}

.news-card.is-lead .news-headline {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-style: normal;
  color: var(--navy);
}

.news-card.is-banner .news-headline {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.news-deck {
  margin: 0.55rem 0 0;
  color: var(--ink-mist);
  font-size: 0.95rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card.is-lead .news-deck {
  -webkit-line-clamp: 7;
}

.news-card.is-brief .news-deck {
  -webkit-line-clamp: 4;
}

.news-card:nth-child(3n) .news-headline {
  font-style: italic;
  color: var(--navy);
}

.news-card.is-lead:nth-child(3n) .news-headline {
  font-style: normal;
}

.news-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-mute);
  font-family: var(--serif);
  font-style: italic;
}

/* Article view */
.article {
  position: fixed;
  inset: 0;
  z-index: var(--z-film);
  display: none;
  flex-direction: column;
  background: #070d18;
  pointer-events: none;
}

.article.is-open {
  display: flex;
  pointer-events: auto;
}

.article[hidden] {
  display: none !important;
}

.article-progress {
  position: absolute;
  top: 0;
  inset-inline: 0;
  z-index: 3;
  height: 2px;
  background: rgba(198, 176, 138, 0.15);
}

.article-progress i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.12s linear;
}

html[dir="rtl"] .article-progress i {
  transform-origin: right center;
}

.article-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  min-height: calc(3.4rem + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) var(--pad) 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 13, 24, 0.94);
  backdrop-filter: blur(16px);
}

.article-back,
.article-x {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--gold);
  min-height: 44px;
  cursor: pointer;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0;
}

.article-back {
  justify-self: start;
  max-width: 42vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-back::before {
  content: "‹";
  margin-inline-end: 0.4rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1;
}

html[dir="rtl"] .article-back::before {
  content: "›";
}

.article-bar-end {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.2rem;
}

.article-bar-meta {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-scroll {
  flex: 1;
  overflow: auto;
  overscroll-behavior: contain;
}

.article-hero {
  position: relative;
  margin: 0;
  height: min(72vh, 40rem);
  overflow: hidden;
  background: #050a14;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08) brightness(0.88);
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  z-index: 1;
  border: 1px solid rgba(198, 176, 138, 0.38);
  pointer-events: none;
  box-shadow: inset 0 0 7rem rgba(7, 13, 24, 0.28);
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, #070d18 100%);
}

.article-folio {
  position: absolute;
  z-index: 2;
  inset-inline-start: var(--pad);
  bottom: 1.4rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.75;
  color: var(--gold-2);
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.article-well {
  width: min(42rem, calc(100% - 2 * var(--pad)));
  margin: -4.5rem auto 0;
  position: relative;
  z-index: 1;
  padding: 0 0 calc(5rem + env(safe-area-inset-bottom));
}

.article.is-open .article-well {
  animation: rise 0.85s var(--ease) both;
}

.article-printed {
  margin: 0 0 0.45rem;
  font-family: var(--gothic);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

.article-well h1 {
  margin: 0 0 1.1rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--gold-2);
  text-wrap: balance;
}

.article-standfirst {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--cream);
}

.article-byline {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-rule {
  margin: 1.5rem 0 1.7rem;
  height: 7px;
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--gold-dim);
}

.article-body p {
  margin: 0 0 1.15rem;
  color: var(--mist);
  font-size: 1.08rem;
  line-height: 1.85;
}

.article-body p.is-drop::first-letter {
  float: left;
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 0.75;
  padding-inline-end: 0.45rem;
  padding-top: 0.18rem;
  color: var(--gold);
}

html[dir="rtl"] .article-body p.is-drop::first-letter {
  float: right;
}

.article-finis {
  margin: 2.4rem 0 0;
  text-align: center;
  font-family: var(--script);
  font-style: normal;
  font-size: 1.55rem;
  color: var(--gold);
}

html[lang="ar"] .article-finis {
  font-family: var(--ar-serif);
  font-style: italic;
  font-size: 1.15rem;
}

.article-finis::before,
.article-finis::after {
  content: " † ";
  opacity: 0.55;
}

.article-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 2.4rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.article-nav {
  appearance: none;
  display: grid;
  gap: 0.25rem;
  min-height: 64px;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  text-align: start;
}

.article-nav:last-child {
  text-align: end;
}

.article-nav-dir {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-nav-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.25;
  color: inherit;
}

.article-nav:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold-2);
}

.article-nav:disabled {
  opacity: 0.32;
  cursor: default;
}

.article-more {
  margin-top: 2.8rem;
}

.article-more h2 {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.article-related {
  display: grid;
  gap: 0.85rem;
}

.article-related-card {
  appearance: none;
  display: grid;
  grid-template-columns: 4.6rem 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.9rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: start;
  cursor: pointer;
}

.article-related-card img {
  grid-row: 1 / span 2;
  width: 4.6rem;
  height: 6.1rem;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(0.8) contrast(1.08);
  transition: filter 0.45s var(--ease);
}

.article-related-card:hover img,
.article-related-card:focus-visible img {
  filter: saturate(0.96) contrast(1.1);
}

.article-related-card span {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: end;
}

.article-related-card b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.12rem;
  color: var(--cream);
  line-height: 1.25;
}

.article-related-card:hover b {
  color: var(--gold-2);
}

body.article-open {
  overflow: hidden;
}

body.article-open .site-header,
body.article-open .ribbon,
body.article-open .skip {
  visibility: hidden;
}

/* Contact */
.contact {
  background: var(--navy-2);
  min-height: calc(100svh - var(--header-h));
}

.contact-grid {
  display: grid;
  gap: 2.2rem;
}

.contact-item {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-item span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item a,
.contact-item p {
  margin: 0;
  color: var(--cream);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.form {
  display: grid;
  gap: 1.05rem;
}

.field {
  display: grid;
  gap: 0.3rem;
}

.field label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  min-height: 46px;
  padding: 0.45rem 0;
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--mist);
}

.consent input {
  margin-top: 0.3rem;
  accent-color: var(--gold);
}

.consent a {
  color: var(--gold);
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.9rem;
}

.form-status.is-error {
  color: #e3b6b6;
}
.form-status.is-ok {
  color: var(--gold);
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.3rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--navy);
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.btn-solid:hover {
  background: var(--gold-2);
}

.btn-solid:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Footer */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.4rem;
  padding: 1.4rem var(--pad) 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.82rem;
}

body:has(.wa) .site-footer {
  padding-bottom: 5.5rem;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.wa {
  position: fixed;
  inset-inline-end: 1rem;
  bottom: 1.1rem;
  z-index: 40;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  text-decoration: none;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease);
}

html.is-ready .wa,
html.curtain-skip .wa {
  opacity: 1;
  transform: none;
  transition-delay: 0.45s;
}

.wa:hover {
  background: var(--gold);
  color: var(--navy);
}

body.menu-open .wa,
body.article-open .wa {
  opacity: 0;
  pointer-events: none;
}

.toast {
  position: fixed;
  z-index: var(--z-toast);
  inset-inline: 1rem;
  bottom: 5.2rem;
  background: var(--cream);
  color: var(--navy);
  padding: 0.9rem 1rem;
  display: none;
}

.toast.is-on {
  display: block;
}

/* Film */
.film {
  position: fixed;
  inset: 0;
  z-index: var(--z-film);
  background: #070b12;
  display: grid;
  place-items: center;
  padding: var(--pad);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.film.is-open {
  opacity: 1;
  visibility: visible;
}

.film-stage {
  position: relative;
  width: min(56rem, 100%);
  min-height: min(70vh, 36rem);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  place-items: end start;
  padding: 2rem;
}

.film-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/hero-silk.png") center / cover;
  filter: brightness(0.45);
  animation: ken 22s var(--ease) infinite alternate;
}

.film-copy {
  position: relative;
  max-width: 28rem;
}

.film-copy h2 {
  margin: 0 0 0.6rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold);
}

.film-copy p {
  margin: 0;
  color: var(--mist);
}

.film-close {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  z-index: 2;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--cream);
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}

body.film-open {
  overflow: hidden;
}

/* Legal */
.legal-hero {
  padding: 5rem var(--pad) 2.2rem;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--gold);
}

.legal-updated {
  color: var(--gold);
  font-size: 0.85rem;
}

.legal-body {
  padding: 2.4rem var(--pad) 4rem;
  max-width: 42rem;
  margin: 0 auto;
  color: var(--mist);
}

.legal-body h2 {
  color: var(--gold-2);
  font-family: var(--serif);
  font-weight: 600;
}

html[lang="ar"] .hero-title,
html[lang="ar"] .section-title,
html[lang="ar"] .page-title,
html[lang="ar"] .desk-title,
html[lang="ar"] .news-headline,
html[lang="ar"] .menu-link,
html[lang="ar"] .founder h2,
html[lang="ar"] .founder blockquote,
html[lang="ar"] .impact h2,
html[lang="ar"] .heat h2,
html[lang="ar"] .heat-story,
html[lang="ar"] .why h2,
html[lang="ar"] .why-plate h3,
html[lang="ar"] .atelier h2,
html[lang="ar"] .atelier-steps h3 {
  letter-spacing: 0;
  text-transform: none;
}

html[lang="ar"] .impact h2,
html[lang="ar"] .heat-kicker,
html[lang="ar"] .heat-meta,
html[lang="ar"] .impact-mark,
html[lang="ar"] .why-kicker,
html[lang="ar"] .atelier-kicker,
html[lang="ar"] .atelier-step-n {
  text-transform: none;
  letter-spacing: 0;
}

html[lang="ar"] .heat-meta {
  font-family: var(--ar-sans);
}

html[lang="ar"] .heat-lede,
html[lang="ar"] .why-lead,
html[lang="ar"] .atelier-lead,
html[lang="ar"] .why-plate p,
html[lang="ar"] .atelier-steps p {
  font-family: var(--ar-sans);
  font-weight: 400;
}

html[lang="ar"] .why::before {
  content: none;
}

html[lang="ar"] .why h2 {
  font-size: clamp(1.85rem, 5vw, 3.1rem);
}

html[lang="ar"] .atelier h2 {
  font-size: clamp(1.55rem, 4.6vw, 2.6rem);
}

html[lang="ar"] .impact h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

html[lang="ar"] .ribbon-item {
  font-family: var(--ar-serif);
  letter-spacing: 0;
  text-transform: none;
  font-size: clamp(1.02rem, 2.2vw, 1.28rem);
}

html[lang="ar"] .ribbon-all,
html[lang="ar"] .article-printed,
html[lang="ar"] .article-kicker,
html[lang="ar"] .article-byline,
html[lang="ar"] .article-bar-meta,
html[lang="ar"] .article-back,
html[lang="ar"] .article-x,
html[lang="ar"] .news-kind,
html[lang="ar"] .featured-hint {
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--ar-serif);
}

html[lang="ar"] .desk-masthead {
  text-align: center;
}

html[lang="ar"] .desk-folio {
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

html[lang="ar"] .desk-title {
  font-size: clamp(2.8rem, 9vw, 6.2rem);
  line-height: 1.12;
}

html[lang="ar"] .desk-lead,
html[lang="ar"] .desk-colophon {
  margin-inline: auto;
  max-width: 28rem;
}

html[lang="ar"] .news-headline {
  line-height: 1.4;
}

html[lang="ar"] .article-well h1,
html[lang="ar"] .article-body p {
  letter-spacing: 0;
  line-height: 1.9;
}

html[lang="ar"] .article-body p.is-drop::first-letter {
  font-size: 3.6rem;
}

html[lang="ru"] .desk-title {
  letter-spacing: 0.01em;
}

html[lang="ru"] .ribbon-item {
  letter-spacing: 0.1em;
}

html[lang="ru"] .hero-title em {
  font-weight: 400;
}

html[lang="ru"] .article-well h1 {
  letter-spacing: 0.01em;
}

.footer-colophon {
  flex-basis: 100%;
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

@media (min-width: 860px) {
  .mast-nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: start;
  }
  .partner-list {
    grid-template-columns: 1fr 1fr;
  }
  .partner-list button,
  .partner-list a {
    padding-inline-end: 1rem;
  }
  .case-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem 1.4rem;
  }
}

@media (min-width: 720px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 1.6rem;
  }
  .featured-logos {
    gap: 1.6rem 2.8rem;
  }
  .featured-logos img {
    height: 26px;
  }
  .featured-logos img[alt="Associated Press"] {
    height: 38px;
  }
  .news-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .news-card.is-lead,
  .news-card.is-banner {
    grid-column: span 6;
  }
  .news-card.is-column,
  .news-card.is-standard,
  .news-card.is-brief {
    grid-column: span 3;
  }
  .news-card.is-lead,
  .news-card.is-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 1.15rem;
    align-items: stretch;
  }
  .news-card.is-lead .news-frame,
  .news-card.is-banner .news-frame {
    aspect-ratio: auto;
    height: 100%;
    min-height: 100%;
    align-self: stretch;
  }
  .news-card.is-lead .news-copy,
  .news-card.is-banner .news-copy {
    justify-content: center;
    padding-top: 0.15rem;
  }
  .article-hero {
    height: min(68vh, 38rem);
  }
  .article-related {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
  }
  body:has(.wa) .site-footer {
    padding-bottom: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .wordmark img {
    height: 54px;
  }
  .site-header.is-compact .wordmark img {
    transform: scale(0.67);
  }
  .btn-talk {
    display: inline-flex;
  }
  .hero {
    align-items: center;
    padding-inline-end: 8vw;
  }
  .hero-copy {
    max-width: 44rem;
  }
  .section {
    padding: 5.8rem var(--pad);
  }
  .desk {
    padding-top: 6.2rem;
    padding-bottom: 6.5rem;
  }
  .news-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .news-card.is-lead {
    grid-column: span 8;
  }
  .news-card.is-banner {
    grid-column: span 8;
  }
  .news-card.is-column,
  .news-card.is-standard,
  .news-card.is-brief {
    grid-column: span 4;
  }
  .article-related {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .article-related-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .article-related-card img {
    grid-row: auto;
    width: 100%;
    height: 11rem;
  }
}

@media (max-width: 859px) {
  .mast-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .article-bar-meta {
    display: none;
  }
  .article-bar {
    grid-template-columns: auto 1fr auto;
  }
  .article-pager {
    grid-template-columns: 1fr;
  }
  .article-nav:last-child {
    text-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-bg,
  .film-stage::before,
  .menu,
  .film,
  .article,
  .article-progress i,
  .news-frame img,
  .news-card,
  .heat-feature,
  .heat-mat img,
  .atelier-mat img,
  .why-plate,
  .why-hair,
  .film-ring,
  .ribbon-run,
  .curtain,
  .curtain-mark,
  .curtain-place,
  .curtain-rule,
  .curtain-line,
  .hero-copy > *,
  .reveal,
  .wa,
  .page-rule {
    animation: none !important;
    transition: none !important;
  }
  .curtain,
  html.curtain-skip .curtain {
    display: none !important;
  }
  .reveal,
  .news-card,
  .heat-feature,
  .atelier-hero,
  .hero-copy > *,
  .site-header,
  .wa {
    opacity: 1 !important;
    transform: none !important;
  }
  .ribbon-track {
    overflow-x: auto;
    mask-image: none;
  }
  .ribbon-run {
    width: auto;
  }
  .ribbon-unit[aria-hidden="true"] {
    display: none;
  }
}

@media print {
  .curtain {
    display: none !important;
  }
  .reveal,
  .news-card,
  .heat-feature,
  .atelier-hero,
  .hero-copy > *,
  .site-header,
  .wa {
    opacity: 1 !important;
    transform: none !important;
  }
}
