
:root {
  /* Colour */
  --bg: #ffffff;
  --bg-2: #f5f6f7;
  --card: #ffffff;
  --border: rgba(11, 15, 20, 0.12);
  --border-strong: rgba(11, 15, 20, 0.42);
  --text: #0b0f14;
  --text-2: #5b656f;
  --gold: #8a6a2f;
  --gold-deep: #6d5324;
  --ink: #0b0f14;
  --on-accent: #ffffff;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --shell: 1320px;
  --gutter: 24px;
  --header-h: 84px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --slow: 900ms;
}

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

html, body { max-width: 100%; overflow-x: hidden; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }

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

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

/* ---------- Utilities ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: 20px 0; position: relative; }
.section--tight { padding: 96px 0; }
.section--alt { background: var(--bg-2); }

.rule {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 0;
}

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
}

.label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.label--plain::before { display: none; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-2);
}

.h-display {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.98;
}

.h-section {
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  line-height: 1.02;
}

.h-sub {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.serif-accent {
  font-style: italic;
  color: var(--gold);
}

.lede {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: var(--text-2);
  max-width: 62ch;
}

.muted { color: var(--text-2); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.stack > * + * { margin-top: 24px; }

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 30px;
  border: 1px solid var(--border);
  color: var(--btn-fg);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease);
}

.btn span { position: relative; z-index: 1; }

.btn .arw {
  position: relative;
  z-index: 1;
  transition: transform 0.45s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}

.btn:hover { color: var(--on-accent); border-color: var(--ink); }
.btn:hover::after { transform: scaleX(1); }
.btn:hover .arw { transform: translateX(6px); }

.btn--gold {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--gold::after { background: var(--gold); }
.btn--solid {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--on-accent);
}
.btn--solid::after { background: var(--gold); }
.btn--solid:hover { color: var(--on-accent); border-color: var(--gold); }

.link-ul {
  position: relative;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
}
.link-ul::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.link-ul:hover::after { transform: scaleX(1); transform-origin: left; }
.link-ul .arw { transition: transform 0.45s var(--ease); }
.link-ul:hover .arw { transform: translateX(6px); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease),
    height 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}

.header.is-stuck {
  height: 68px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}

.header__inner {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 13px; }
.logo__mark { width: 32px; height: 32px; flex: none; }
.logo__mark circle, .logo__mark path, .logo__mark line { vector-effect: non-scaling-stroke; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  font-weight: 400;
}
.logo__name {
  color: var(--gold) !important;
}

.logo__sub {
  color: var(--gold-deep) !important;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 38px; }
.nav__link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  padding: 6px 0;
  transition: color 0.4s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--text); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__link[aria-current="page"] { color: var(--gold); }

.header__cta { padding: 13px 22px; }

/* Burger */
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.4s var(--ease);
}
.burger:hover { border-color: var(--gold); }
.burger i {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text);
  transition: transform 0.45s var(--ease), opacity 0.3s;
}
.burger.is-open i:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger.is-open i:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* Mobile overlay nav */
.mnav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  left: 0;

  z-index: 89;
  background: var(--bg);

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 40px var(--gutter);

  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease);

  pointer-events: none;
  overflow-y: auto;
}

.mnav.is-open {
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}

.mnav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mnav__list li {
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.mnav.is-open .mnav__list li {
  opacity: 1;
  transform: none;
}

.mnav__list a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 11vw, 3rem);
  line-height: 1;
}

.mnav__list a .n {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.mnav__foot {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transition: opacity 0.6s var(--ease) 0.45s;
}

.mnav.is-open .mnav__foot {
  opacity: 1;
}

body.is-locked {
  overflow: hidden;
}

/* Header always stays above mobile menu */
.header {
  z-index: 1000;
}
.mnav.is-open .mnav__list li { opacity: 1; transform: none; }
.mnav.is-open .mnav__list li:nth-child(1) { transition-delay: 0.14s; }
.mnav.is-open .mnav__list li:nth-child(2) { transition-delay: 0.2s; }
.mnav.is-open .mnav__list li:nth-child(3) { transition-delay: 0.26s; }
.mnav.is-open .mnav__list li:nth-child(4) { transition-delay: 0.32s; }
.mnav.is-open .mnav__list li:nth-child(5) { transition-delay: 0.38s; }
.mnav__list a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 11vw, 3rem);
  line-height: 1;
}
.mnav__list a .n {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.mnav__foot {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transition: opacity 0.6s var(--ease) 0.45s;
}
.mnav.is-open .mnav__foot { opacity: 1; }

body.is-locked { overflow: hidden; }

/* ---------- Hero ---------- */
 .hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 60px) 0 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 22s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.99) 4%, rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0.7) 100%),
    linear-gradient(to right, rgba(255, 255, 255, 0.96) 12%, rgba(255, 255, 255, 0.42) 68%, rgba(255, 255, 255, 0.18));
}

@media (max-width: 768px) {
  .hero__media img {
    object-position: 75% center;
  }
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}
.hero h1 { margin-bottom: 30px; }
.hero__copy { max-width: 56ch; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.hero__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  text-align: right;
}
.hero__meta .goldline {
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
.scrollcue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: var(--text-2);
  text-transform: uppercase;
}
.scrollcue .bar {
  width: 1px;
  height: 54px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.scrollcue .bar::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 40%;
  background: var(--gold);
  animation: cue 2.6s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(260%); }
}

/* Page hero (inner pages) */
.phero {
  position: relative;
  padding: calc(var(--header-h) + 110px) 0 96px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.phero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px 460px at 12% -10%, rgba(138, 106, 47, 0.1), transparent 70%);
}
.phero > * { position: relative; top:0;margin-top: 0; padding: 0;
}
.phero h1 { margin-top: 0px; }
.phero .lede { margin-top: 0px; }
.crumbs {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-2);
}
.crumbs a:hover { color: var(--gold); }

 

/* ---------- Logo Row ---------- */

.logo-row {
  flex: 1;
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
}


/* ---------- Individual Logo ---------- */

.logo-row > span {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;

  color: var(--text-2);

  white-space: nowrap;

  transition:
    color 250ms var(--ease),
    opacity 250ms var(--ease),
    transform 250ms var(--ease);
}


/* ---------- Gold Separators ---------- */

.logo-row > span:not(:last-child)::after {
  content: "◆";

  position: absolute;
  top: 50%;
  right: -17px;

  transform: translateY(-50%);

  font-family: Arial, sans-serif;
  font-size: 5px;
  line-height: 1;

  color: var(--gold);
  opacity: 0.8;
}


/* ---------- Featured Logos ---------- */

.logo-row .emph {
  color: var(--text);
  font-weight: 500;
}


/* Forbes */

.logo-row .emph:first-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.025em;
}


/* Destiny */

.logo-row .emph:last-child {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
}


/* ---------- Hover ---------- */

.logo-row > span:hover {
  color: var(--text);
  opacity: 1;
  transform: translateY(-1px);
}


/* ============================================================
   LARGE DESKTOP
   ============================================================ */

@media (max-width: 1200px) {

  .as-seen__inner {
    gap: 32px;
  }

  .logo-row {
    gap: 20px;
  }

  .logo-row > span {
    font-size: 12px;
  }

  .logo-row .emph:first-child {
    font-size: 15px;
  }

  .logo-row > span:not(:last-child)::after {
    right: -12px;
  }
}
.closing-premium-actions span{
font-size: 12px;
}

/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 900px) {

  .as-seen.section--tight {
    padding: 26px 0;
  }

  .as-seen__inner {
    display: block;
  }

  .as-seen__label {
    margin-bottom: 20px;
  }

  .logo-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  .logo-row > span {
    font-size: 11px;
  }

  .logo-row .emph:first-child {
    font-size: 14px;
  }

  .logo-row .emph:last-child {
    font-size: 11px;
  }

  .logo-row > span:not(:last-child)::after {
    right: -8px;
    font-size: 4px;
  }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 600px) {

  .as-seen.section--tight {
    padding: 24px 0;
  }

  .as-seen__label {
    margin-bottom: 18px;

    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .as-seen__line {
    width: 28px;
  }

  .logo-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px 20px;

    width: 100%;
  }

  .logo-row > span {
    min-width: 0;

    min-height: 28px;

    font-size: 11px;
    line-height: 1.3;

    white-space: normal;
    text-align: center;
  }

  .logo-row .emph:first-child {
    font-size: 15px;
  }

  .logo-row .emph:last-child {
    font-size: 11px;
  }

  /* Mobile par diamonds remove */
  .logo-row > span::after {
    display: none !important;
  }
}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 380px) {

  .as-seen.section--tight {
    padding: 20px 0;
  }

  .as-seen__label {
    font-size: 8px;
    gap: 10px;
  }

  .as-seen__line {
    width: 24px;
  }

  .logo-row {
    gap: 13px 12px;
  }

  .logo-row > span {
    font-size: 10px;
  }

  .logo-row .emph:first-child {
    font-size: 13px;
  }

  .logo-row .emph:last-child {
    font-size: 10px;
  }
}
/* =========================================
   ABOUT SECTION
========================================= */

.about-head {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 55px 0 !important;
  padding: 0 !important;
}

.about-head .label {
  display: block;
  width: 100%;
  margin: 0 0 16px 0;
}

.about-head .h-section {
  display: block;
  width: 100%;
  max-width: 100% !important;
  margin: 0;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.about-head .h-section span {
  display: block;
  width: 100%;
}


/* =========================================
   IMAGE + CONTENT
========================================= */

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(45px, 6vw, 90px);
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}


/* =========================================
   IMAGE — FULL IMAGE / NO CROP
========================================= */

.media-frame {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
}

.media-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center;
  transition: transform 1.4s var(--ease);
  filter: saturate(1.02) contrast(1.02);
}

.media-frame:hover img {
  transform: scale(1.05);
}


/* EXISTING REVEAL ANIMATION — KEEP */

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--bg);
  transform-origin: top;
  transition: transform 1.1s var(--ease);
  pointer-events: none;
}

.media-frame.is-in::after {
  transform: scaleY(0);
}


/* =========================================
   CONTENT
========================================= */

.about-content {
  width: 100%;
  max-width: 680px;
  min-width: 0;
}

.about-content .lede {
  width: 100%;
  max-width: 650px;
  margin: 0 0 18px 0 !important;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.75;
}

.about-content .lede:last-of-type {
  margin-bottom: 0 !important;
}

.about-content .link-ul {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 10px;
}


/* =========================================
   ICON CARDS — FULL WIDTH
========================================= */

.minigrid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100% !important;
  max-width: 100% !important;
  margin: 58px 0 0 0 !important;
  padding: 0 !important;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.minigrid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 125px;
  padding: 20px 12px;
  background: var(--bg);
  text-align: center;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.minigrid div:hover {
  background: var(--bg-2);
  transform: translateY(-3px);
}


/* =========================================
   SVG ICONS
========================================= */

.minigrid svg {
  display: block;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* CARD TEXT */

.minigrid span {
  display: block;
  font-family: var(--font-mono);
  font-size: 8px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

  .about-head {
    margin-bottom: 45px !important;
  }

  .about-head .h-section {
    font-size: clamp(38px, 5vw, 54px);
  }

  .split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 42px;
  }

  .about-content .lede {
    font-size: 13.5px;
  }

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

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

  .about-head {
    margin-bottom: 38px !important;
  }

  .about-head .h-section {
    font-size: clamp(36px, 7vw, 52px);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .split__media {
    width: 100%;
  }

  .media-frame {
    width: 100%;
  }

  .media-frame img {
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
  }

  .about-content {
    max-width: 100%;
  }

  .about-content .lede {
    max-width: 100%;
  }

  .minigrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px !important;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .about-head {
    margin-bottom: 32px !important;
  }

  .about-head .label {
    margin-bottom: 13px;
  }

  .about-head .h-section {
    font-size: clamp(31px, 9vw, 43px);
    line-height: 1;
  }

  .split {
    gap: 35px;
  }

  .media-frame img {
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
  }

  .about-content .lede {
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 16px !important;
  }

  .about-content .link-ul {
    margin-top: 7px;
  }

  .minigrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 36px !important;
  }

  .minigrid div {
    min-height: 105px;
    padding: 17px 10px;
  }

  .minigrid svg {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }

  .minigrid span {
    font-size: 7.5px;
    letter-spacing: 0.09em;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  .about-head .h-section {
    font-size: 30px;
  }

  .about-content .lede {
    font-size: 13px;
  }

  .minigrid div {
    min-height: 96px;
    padding: 14px 8px;
  }

  .minigrid svg {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }

  .minigrid span {
    font-size: 7px;
  }

}/* ---------- Section head ---------- */
.sechead {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: 72px;
}
.sechead--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

/* ---------- Service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.card {
  background: var(--bg);
  padding: clamp(32px, 3.4vw, 54px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  transition: transform 0.6s var(--ease), background 0.6s var(--ease);
}
.section--alt .card { background: var(--bg-2); }
.section--alt .card:hover { background: var(--bg); }
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.card:hover { transform: translateY(-8px); background: var(--bg-2); }
.card:hover::before { transform: scaleX(1); }
.card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--gold);
}
.card h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.95rem);
  letter-spacing: 0.01em;
}
.card p { color: var(--text-2); font-size: 15px; }
.card__foot {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
}
.card__foot .arw { color: var(--gold); transition: transform 0.5s var(--ease); }
.card:hover .card__foot .arw { transform: translateX(8px); }

/* ---------- Featured band ---------- */
.feature {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(90px, 12vw, 170px) 0;
}
.feature__bg { position: absolute; inset: 0; z-index: -2; }
.feature__bg img { width: 100%; height: 100%; object-fit: cover; }
.feature__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.97) 26%, rgba(255, 255, 255, 0.74) 62%, rgba(255, 255, 255, 0.35) 100%);
}
.feature__inner { max-width: 640px; }
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0;
}
.pill {
  border: 1px solid var(--border);
  padding: 9px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ---------- Numbered list (why / process) ---------- */
.steps { position: relative; padding-left: 0; list-style: none; margin: 0; }
.steps::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--border);
}
.steps::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(var(--progress, 0));
  transform-origin: top;
  transition: transform 0.4s linear;
}
.step {
  padding: 38px 0 38px 40px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: 0; }
.step__n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold);
  padding-top: 8px;
}
.step h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); margin-bottom: 12px; }
.step p { color: var(--text-2); font-size: 15px; max-width: 62ch; }

/* ---------- Quiet / confidentiality band ---------- */
.quiet {
  position: relative;
  padding: clamp(96px, 13vw, 180px) 0;
  background: var(--bg-2);
  overflow: hidden;
  text-align: center;
}
.quiet::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 340px at 50% 0%, rgba(138, 106, 47, 0.09), transparent 70%);
}
.quiet > * { position: relative; }

/* ---------- CTA ---------- */
.cta {
  border-top: 1px solid var(--border);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
}
.cta__note {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--gold);
  background: var(--bg-2);
  color: var(--text);
  padding: 84px 0 34px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  font-weight: 400;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.footer a { color: var(--text-2); transition: color 0.4s var(--ease); }
.footer a:hover { color: var(--gold); }
.footer__addr { color: var(--text-2); font-size: 14.5px; margin-top: 26px; max-width: 34ch; }
.footer__bottom {
  margin-top: 72px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ---------- Blog ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.post {
  border: 1px solid var(--border);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease);
}
.post:hover { transform: translateY(-8px); border-color: var(--border-strong); }
.post__media { overflow: hidden; aspect-ratio: 3 / 2; }
.post__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
  filter: saturate(1);
}
.post:hover .post__media img { transform: scale(1.06); }
.post__body { padding: 30px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.post__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.post__meta .cat { color: var(--gold); }
.post h3 { font-size: 1.55rem; }
.post p { color: var(--text-2); font-size: 14.5px; }
.post .link-ul { margin-top: auto; padding-top: 18px; }

.post--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
}
.post--wide .post__media { flex: 1 1 52%; aspect-ratio: auto; min-height: 340px; }
.post--wide .post__body { flex: 1 1 48%; justify-content: center; padding: clamp(30px, 4vw, 60px); }
.post--wide h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }

/* ---------- Blog Responsive Fix ---------- */

.posts {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.post {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.post__media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

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

/* Tablet */
@media (max-width: 992px) {
  .posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post--wide {
    grid-column: 1 / -1;
    flex-direction: column;
  }

  .post--wide .post__media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 3 / 2;
    flex: none;
  }

  .post--wide .post__body {
    width: 100%;
    flex: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .posts {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .post {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .post--wide {
    width: 100%;
    max-width: 100%;
    grid-column: 1;
    display: flex;
    flex-direction: column;
  }

  .post--wide .post__media {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
    flex: none;
  }

  .post__media {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3 / 2;
  }

  .post__media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
  }

  .post__body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 24px 20px;
  }

  .post h2,
  .post h3,
  .post p,
  .post a {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* Inline image styles ko override */
  .post__media[style] {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .post__media[style] img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .posts {
    gap: 20px;
  }

  .post__body {
    padding: 22px 16px;
  }

  .post__media {
    aspect-ratio: 4 / 3;
  }

  .post--wide .post__media {
    aspect-ratio: 4 / 3;
  }

  .post h3 {
    font-size: 1.35rem;
  }

  .post p {
    font-size: 14px;
  }
}
/* ---------- Article ---------- */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 26px; }
.prose p { color: var(--text-2); font-size: 16.5px; line-height: 1.85; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-top: 54px; }
.prose h3 { font-size: 1.4rem; margin-top: 38px; }
.prose ul { color: var(--text-2); padding-left: 20px; display: grid; gap: 12px; }
.prose blockquote {
  margin: 44px 0;
  padding: 6px 0 6px 30px;
  border-left: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.35;
  color: var(--text);
  font-style: italic;
}
.prose strong { color: var(--text); font-weight: 500; }

.aside { position: sticky; top: 104px; display: grid; gap: 34px; }
.aside__block { border: 1px solid var(--border); padding: 28px; background: var(--bg-2); }
.aside h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
  font-weight: 400;
}
.aside ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.aside a { color: var(--text-2); font-size: 14px; transition: color 0.4s var(--ease); }
.aside a:hover { color: var(--text); }
.aside li.recent a { font-family: var(--font-display); font-size: 17px; color: var(--text); line-height: 1.3; }
.aside li.recent a:hover { color: var(--gold); }
.aside .date { display: block; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.2em; color: var(--text-2); margin-top: 6px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.info-list { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.info-list li { background: var(--bg); padding: 24px 26px; }
.info-list dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.info-list dd { margin: 0; color: var(--text-2); font-size: 15px; }

.form {
  border: 1px solid var(--border);
  background: var(--bg-2);
  padding: clamp(28px, 4vw, 52px);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-2);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 2px;
  transition: border-color 0.4s var(--ease);
  width: 100%;
  border-radius: 0;
}
.field select option { background: var(--bg-2); color: var(--text); }
.field textarea { resize: vertical; min-height: 132px; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.field .err {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b3261e;
  min-height: 13px;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-bottom-color: #b3261e; }

.radio-row { display: flex; flex-wrap: wrap; gap: 12px; }
.radio-chip {
  position: relative;
  border: 1px solid var(--border);
  padding: 11px 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.radio-chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-chip:hover { border-color: var(--border-strong); color: var(--text); }
.radio-chip:has(input:checked) { border-color: var(--gold); color: var(--gold); }
.radio-chip:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 3px; }

.privacy-note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.privacy-note::before { content: ""; width: 22px; height: 1px; background: var(--gold); margin-top: 11px; flex: none; }

.form__status {
  margin-top: 22px;
  border: 1px solid var(--gold);
  background: rgba(138, 106, 47, 0.07);
  padding: 18px 22px;
  color: var(--text);
  font-size: 14.5px;
  display: none;
}
.form__status.is-visible { display: block; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

.lines span { display: block; overflow: hidden; }
.lines span > i {
  display: block;
  font-style: inherit;
  transform: translateY(105%);
  transition: transform 1.1s var(--ease);
}
.lines.is-in span:nth-child(1) > i { transition-delay: 0.05s; }
.lines.is-in span:nth-child(2) > i { transition-delay: 0.16s; }
.lines.is-in span:nth-child(3) > i { transition-delay: 0.27s; }
.lines.is-in span > i { transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .lines span > i { opacity: 1; transform: none; }
  .media-frame::after { display: none; }
}








/* ============================================================
   CHASE — SERVICE STATS
   ============================================================ */

.stats-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--bg);
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  position: relative;

  min-height: 185px;
  padding: 38px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  background: var(--bg);

  transition:
    background-color 450ms var(--ease),
    transform 450ms var(--ease);
}

.stat + .stat {
  border-left: 1px solid var(--border);
}

/* Gold hover line */
.stat::before {
  content: "";

  position: absolute;
  top: -1px;
  left: 50%;

  width: 0;
  height: 2px;

  background: var(--gold);

  transform: translateX(-50%);

  transition: width 450ms var(--ease);
}

/* Icon circle */
.stat__icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 21px;

  color: var(--gold);

  border: 1px solid rgba(138, 106, 47, 0.38);
  border-radius: 50%;

  background: rgba(138, 106, 47, 0.035);

  transition:
    color 400ms var(--ease),
    background-color 400ms var(--ease),
    border-color 400ms var(--ease),
    transform 450ms var(--ease);
}

.stat__icon svg {
  width: 22px;
  height: 22px;

  stroke-width: 1.35;

  transition: transform 450ms var(--ease);
}

/* Text */
.stat__label {
  max-width: 180px;

  margin: 0;

  color: var(--text);

  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.5;
  font-weight: 500;

  letter-spacing: 0.13em;
  text-transform: uppercase;

  transition: color 350ms var(--ease);
}


/* ============================================================
   HOVER
   ============================================================ */

.stat:hover {
  background: var(--bg-2);
  transform: translateY(-3px);
}

.stat:hover::before {
  width: 42px;
}

.stat:hover .stat__icon {
  color: var(--on-accent);
  background: var(--gold);
  border-color: var(--gold);

  transform: translateY(-4px);
}

.stat:hover .stat__icon svg {
  transform: scale(1.08);
}

.stat:hover .stat__label {
  color: var(--gold-deep);
}


/* ============================================================
   TABLET — 3 + 2
   ============================================================ */

@media (max-width: 1100px) {

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

  .stat {
    min-height: 175px;
    padding: 34px 20px;
  }

  /* Remove desktop borders */
  .stat + .stat {
    border-left: 0;
  }

  /* Vertical borders */
  .stat:nth-child(2),
  .stat:nth-child(3) {
    border-left: 1px solid var(--border);
  }

  .stat:nth-child(5) {
    border-left: 1px solid var(--border);
  }

  /* Second row */
  .stat:nth-child(4),
  .stat:nth-child(5) {
    border-top: 1px solid var(--border);
  }
}


/* ============================================================
   MOBILE — 2 COLUMNS
   ============================================================ */

@media (max-width: 700px) {

  .stats-section {
    padding-top: 55px;
    padding-bottom: 55px;
  }

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

  .stat {
    min-height: 160px;
    padding: 30px 14px;
  }

  /* Reset tablet borders */
  .stat + .stat,
  .stat:nth-child(2),
  .stat:nth-child(3),
  .stat:nth-child(5) {
    border-left: 0;
  }

  /* Every second item gets vertical divider */
  .stat:nth-child(even) {
    border-left: 1px solid var(--border);
  }

  /* Rows */
  .stat:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

  .stat__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

  .stat__icon svg {
    width: 20px;
    height: 20px;
  }

  .stat__label {
    max-width: 145px;
    font-size: 9.5px;
    line-height: 1.55;
    letter-spacing: 0.1em;
  }
}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 420px) {

  .stats-section {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .stat {
    min-height: 145px;
    padding: 25px 9px;
  }

  .stat__icon {
    width: 47px;
    height: 47px;
    margin-bottom: 14px;
  }

  .stat__icon svg {
    width: 18px;
    height: 18px;
  }

  .stat__label {
    max-width: 125px;
    font-size: 8.5px;
    letter-spacing: 0.08em;
  }
}


/* ============================================================
   ACCESSIBILITY
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

  .stat,
  .stat::before,
  .stat__icon,
  .stat__icon svg,
  .stat__label {
    transition: none;
  }
}
.stat__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}











/* =========================================================
   PREMIUM LIHLE SECTIONS
   Uses existing theme variables:
   --bg
   --bg-2
   --ink
   --gold
   --gold-deep
   --text
   --text-2
   --border
   --border-strong
   --font-display
   --font-body
   --font-mono
   --ease
========================================================= */


/* =========================================================
   GLOBAL PREMIUM HELPERS
========================================================= */

.premium-section {
  position: relative;
  overflow: hidden;
}

.premium-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 70px;
}

.premium-heading .h-section {
  margin-top: 18px;
  max-width: 900px;
  font-size: clamp(52px, 6vw, 88px);
  line-height: .88;
  letter-spacing: -.04em;
}

.premium-heading .h-section span {
  display: block;
}

.heading-mark {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 9px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .18em;
  color: var(--text-2);
}

.heading-mark i {
  width: 70px;
  height: 1px;
  display: block;
  background: var(--gold);
}

.serif-accent {
  color: var(--gold);
  font-style: italic;
}

.text-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--border-strong);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .16em;
  transition:
    color .35s ease,
    border-color .35s ease,
    gap .35s ease;
}

.text-arrow-link span {
  color: var(--gold);
  font-size: 17px;
}

.text-arrow-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 25px;
}


/* =========================================================
   01 — AREAS OF FOCUS
========================================================= */

.focus-section {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(138,106,47,.07),
      transparent 30%
    ),
    var(--bg-2);
}

.focus-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -260px;
  left: -260px;
  border: 1px solid rgba(138,106,47,.12);
  border-radius: 50%;
  pointer-events: none;
}

.premium-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.premium-focus-card {
  position: relative;
  min-height: 340px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255,255,255,.96);
  color: var(--text);
  transition:
    transform .6s var(--ease),
    background .55s var(--ease),
    color .45s ease;
}

.premium-focus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      135deg,
      rgba(138,106,47,.18),
      transparent 45%
    );
  opacity: 0;
  transition: opacity .55s ease;
}

.premium-focus-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  bottom: -90px;
  border: 1px solid rgba(138,106,47,.2);
  border-radius: 50%;
  transition:
    transform .8s var(--ease),
    opacity .5s ease;
  opacity: .35;
}

.premium-focus-card:hover {
  transform: translateY(-8px);
  background: var(--ink);
  color: #fff;
  z-index: 3;
}

.premium-focus-card:hover::before {
  opacity: 1;
}

.premium-focus-card:hover::after {
  transform: scale(2.1);
  opacity: .65;
}

.premium-card-number {
  position: absolute;
  top: 26px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .2em;
  color: var(--text-2);
  transition: color .35s ease;
}

.premium-focus-card:hover .premium-card-number {
  color: rgba(255,255,255,.45);
}

.premium-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  color: var(--gold);
  transition:
    transform .6s var(--ease),
    border-color .35s ease,
    background .35s ease;
}

.premium-card-icon i {
  font-size: 19px;
}

.premium-focus-card:hover .premium-card-icon {
  transform: translateY(-6px) rotate(-3deg);
  border-color: rgba(138,106,47,.6);
  background: rgba(138,106,47,.08);
}

.premium-card-bottom {
  position: relative;
}

.premium-card-bottom p {
  margin-bottom: 13px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .22em;
  color: var(--gold);
}

.premium-card-bottom h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: .13em;
}

.premium-card-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--gold);
  font-size: 22px;
  transition:
    transform .4s var(--ease),
    color .35s ease;
}

.premium-focus-card:hover .premium-card-arrow {
  transform: translate(5px,-5px);
}


/* =========================================================
   02 — WORK WITH LIHLE
========================================================= */

.work-premium-section {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  background: var(--ink);
  color: #fff;
}

.work-premium-bg {
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    linear-gradient(
      90deg,
      rgba(11,15,20,.98) 0%,
      rgba(11,15,20,.9) 45%,
      rgba(11,15,20,.55) 100%
    ),
    url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=2000&q=85")
    center/cover no-repeat;
  transform: scale(1.03);
  transition: transform 2s var(--ease);
}

.work-premium-section:hover .work-premium-bg {
  transform: scale(1);
}

.work-premium-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.work-premium-copy {
  max-width: 560px;
}

.work-premium-copy .label {
  color: rgba(255,255,255,.5);
}

.work-premium-copy h2 {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(58px, 6vw, 92px);
  line-height: .88;
  font-weight: 400;
  letter-spacing: -.045em;
}

.work-premium-copy h2 span {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.work-premium-description {
  max-width: 460px;
  margin-top: 34px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.9;
}

.premium-gold-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 235px;
  gap: 35px;
  margin-top: 38px;
  padding: 17px 19px;
  overflow: hidden;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .15em;
  transition:
    transform .4s var(--ease),
    background .35s ease;
}

.premium-gold-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-101%);
  transition: transform .5s var(--ease);
}

.premium-gold-btn span,
.premium-gold-btn b {
  position: relative;
  z-index: 1;
}

.premium-gold-btn b {
  font-size: 17px;
  font-weight: 400;
}

.premium-gold-btn:hover {
  color: var(--ink);
  transform: translateY(-4px);
}

.premium-gold-btn:hover::before {
  transform: translateX(0);
}

.work-premium-list {
  border-top: 1px solid rgba(255,255,255,.17);
}

.work-premium-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 30px;
  align-items: center;
  gap: 15px;
  min-height: 92px;
  border-bottom: 1px solid rgba(255,255,255,.17);
  color: #fff;
  transition:
    padding .45s var(--ease),
    background .45s ease;
}

.work-premium-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(138,106,47,.07);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.work-premium-item:hover {
  padding-left: 17px;
}

.work-premium-item:hover::before {
  transform: scaleX(1);
}

.work-premium-item > * {
  position: relative;
  z-index: 1;
}

.work-index {
  font-family: var(--font-mono);
  font-size: 8px;
  color: rgba(255,255,255,.35);
}

.work-premium-item div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.work-premium-item i {
  width: 24px;
  color: var(--gold);
  font-size: 16px;
}

.work-premium-item strong {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.work-arrow {
  color: var(--gold);
  font-size: 18px;
  transition: transform .35s ease;
}

.work-premium-item:hover .work-arrow {
  transform: translate(5px,-5px);
}


/* =========================================================
   03 — MEDIA
========================================================= */

.media-premium-section {
  background: var(--bg);
  overflow: hidden;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.editorial-card {
  display: block;
  min-width: 0;
  color: var(--text);
}

.editorial-card--large {
  grid-column: span 1;
}

.editorial-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-2);
}

.editorial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      transparent 40%,
      rgba(11,15,20,.48)
    );
  pointer-events: none;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s var(--ease),
    filter .7s ease;
  filter: saturate(.82) contrast(1.04);
}

.editorial-card:hover .editorial-image img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.04);
}

.editorial-tag {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 17px;
  padding: 8px 10px;
  background: rgba(255,255,255,.94);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: .16em;
}

.editorial-image-overlay {
  position: absolute;
  z-index: 4;
  inset: auto 17px 17px;
  display: flex;
  justify-content: flex-end;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .14em;
  transform: translateY(15px);
  opacity: 0;
  transition:
    transform .45s var(--ease),
    opacity .45s ease;
}

.editorial-card:hover .editorial-image-overlay {
  transform: translateY(0);
  opacity: 1;
}

.editorial-content {
  padding-top: 20px;
}

.editorial-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: .15em;
}

.editorial-content h3 {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(23px, 2vw, 29px);
  line-height: 1.03;
  letter-spacing: -.02em;
  transition: color .3s ease;
}

.editorial-card:hover .editorial-content h3 {
  color: var(--gold-deep);
}

.editorial-read {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .14em;
}

.editorial-read b {
  color: var(--gold);
  font-size: 16px;
  font-weight: 400;
  transition: transform .35s ease;
}

.editorial-card:hover .editorial-read b {
  transform: translate(4px,-4px);
}


/* =========================================================
   04 — VENTURES
========================================================= */

.ventures-premium-section {
  position: relative;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(138,106,47,.06),
      transparent 30%
    ),
    var(--bg-2);
}

.ventures-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.venture-premium-card {
  position: relative;
  min-height: 475px;
  padding: 42px;
  overflow: hidden;
  background: var(--bg);
  transition:
    transform .6s var(--ease),
    background .5s ease;
}

.venture-premium-card:hover {
  transform: translateY(-7px);
  z-index: 2;
}

.venture-premium-card--dark {
  background: var(--ink);
  color: #fff;
}

.venture-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.venture-card-top > span {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .18em;
  color: var(--text-2);
}

.venture-premium-card--dark .venture-card-top > span {
  color: rgba(255,255,255,.4);
}

.venture-card-top i {
  color: var(--gold);
  font-size: 22px;
}

.venture-card-main {
  position: relative;
  z-index: 2;
  margin-top: 85px;
  max-width: 540px;
}

.venture-kicker {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .2em;
}

.venture-card-main h3 {
  margin-top: 16px;
  font-size: clamp(43px, 5vw, 72px);
  line-height: .83;
  letter-spacing: -.04em;
}

.venture-card-main h3 em {
  color: var(--gold);
  font-style: italic;
}

.venture-card-main > p:not(.venture-kicker) {
  max-width: 470px;
  margin-top: 28px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.85;
}

.venture-premium-card--dark .venture-card-main > p:not(.venture-kicker) {
  color: rgba(255,255,255,.6);
}

.venture-card-main a {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .16em;
}

.venture-card-main a span {
  color: var(--gold);
  font-size: 17px;
  transition: transform .35s ease;
}

.venture-card-main a:hover span {
  transform: translate(4px,-4px);
}

.venture-outline {
  position: absolute;
  right: -35px;
  bottom: -75px;
  font-family: var(--font-display);
  font-size: 260px;
  line-height: 1;
  color: rgba(138,106,47,.055);
  pointer-events: none;
  transition:
    transform 1s var(--ease),
    color .5s ease;
}

.venture-premium-card:hover .venture-outline {
  transform: translate(-25px,-15px);
  color: rgba(138,106,47,.09);
}


/* =========================================================
   05 — AUTHOR
========================================================= */

.author-premium-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.author-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  opacity: .09;
  background:
    linear-gradient(
      90deg,
      var(--bg) 0%,
      rgba(255,255,255,.2) 100%
    ),
    url("https://images.unsplash.com/photo-1495446815901-a7297e633e8d?auto=format&fit=crop&w=1500&q=80")
    center/cover no-repeat;
}

.author-premium-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
  max-width: 1120px;
  margin-inline: auto;
}

.book-stage {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.book-frame {
  position: relative;
  z-index: 3;
  width: min(100%, 350px);
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow:
    0 35px 80px rgba(11,15,20,.13),
    0 10px 30px rgba(11,15,20,.07);
  transform: rotate(-3deg);
  transition:
    transform 1s var(--ease),
    box-shadow .7s ease;
}

.book-frame::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid var(--gold);
  opacity: .4;
  pointer-events: none;
}

.book-frame:hover {
  transform: rotate(0deg) translateY(-12px);
  box-shadow:
    0 45px 100px rgba(11,15,20,.18),
    0 15px 35px rgba(11,15,20,.08);
}

.book-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
}

.book-frame-label {
  position: absolute;
  z-index: 4;
  top: 25px;
  left: 25px;
  right: 25px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  mix-blend-mode: difference;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: .18em;
}

.book-shadow {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -25px;
  height: 30px;
  background: rgba(11,15,20,.16);
  filter: blur(20px);
  border-radius: 50%;
}

.book-orbit {
  position: absolute;
  border: 1px solid rgba(138,106,47,.25);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 1.5s var(--ease);
}

.book-orbit--one {
  width: 450px;
  height: 450px;
}

.book-orbit--two {
  width: 550px;
  height: 550px;
  border-color: rgba(11,15,20,.08);
}

.book-stage:hover .book-orbit--one {
  transform: rotate(22deg) scale(1.04);
}

.book-stage:hover .book-orbit--two {
  transform: rotate(-18deg) scale(.96);
}

.author-premium-copy {
  max-width: 600px;
}

.author-premium-copy .h-section {
  margin-top: 18px;
  font-size: clamp(58px, 6vw, 90px);
  line-height: .86;
  letter-spacing: -.045em;
}

.author-rule {
  width: 75px;
  height: 1px;
  margin-top: 32px;
  background: var(--gold);
}

.author-premium-text {
  max-width: 540px;
  margin-top: 30px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.9;
}

.premium-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  gap: 35px;
  margin-top: 34px;
  padding: 16px 19px;
  border: 1px solid var(--border-strong);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .15em;
  transition:
    background .4s ease,
    color .4s ease,
    transform .4s var(--ease);
}

.premium-outline-btn b {
  color: var(--gold);
  font-size: 17px;
  font-weight: 400;
}

.premium-outline-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-4px);
}


/* =========================================================
   06 — CLOSING CTA
========================================================= */

.closing-premium-section {
  position: relative;
  padding: 175px 0;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
}

.closing-glow {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%,-50%);
  background:
    radial-gradient(
      circle,
      rgba(138,106,47,.18),
      transparent 62%
    );
  filter: blur(15px);
}

.closing-ring {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(138,106,47,.22);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.closing-ring--one {
  width: 600px;
  height: 600px;
  animation: premiumRingOne 18s linear infinite;
}

.closing-ring--two {
  width: 850px;
  height: 850px;
  border-color: rgba(255,255,255,.06);
  animation: premiumRingTwo 25s linear infinite reverse;
}

@keyframes premiumRingOne {
  from {
    transform: translate(-50%,-50%) rotate(0deg);
  }
  to {
    transform: translate(-50%,-50%) rotate(360deg);
  }
}

@keyframes premiumRingTwo {
  from {
    transform: translate(-50%,-50%) rotate(0deg);
  }
  to {
    transform: translate(-50%,-50%) rotate(360deg);
  }
}

.closing-premium-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.closing-premium-content .label {
  color: rgba(255,255,255,.45);
  margin-bottom: 30px;
}

.closing-premium-content h2 {
  max-width: 1000px;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 118px);
  line-height: .79;
  font-weight: 400;
  letter-spacing: -.055em;
}

.closing-premium-content h2 span,
.closing-premium-content h2 em {
  display: block;
}

.closing-premium-content h2 span {
  color: #fff;
}

.closing-premium-content h2 em {
  color: var(--gold);
  font-style: italic;
}

.closing-subtitle {
  max-width: 480px;
  margin: 38px auto 0;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  line-height: 1.8;
}

.closing-premium-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 45px;
}

.closing-premium-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 205px;
  gap: 30px;
  padding: 17px 20px;
  border: 1px solid rgba(255,255,255,.25);
  overflow: hidden;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .16em;
  transition:
    color .4s ease,
    border-color .4s ease,
    transform .4s var(--ease);
}

.closing-premium-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}

.closing-premium-btn b {
  color: var(--gold);
  font-size: 17px;
  font-weight: 400;
}

.closing-premium-btn:hover {
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-4px);
}

.closing-premium-btn:hover::before {
  transform: translateY(0);
}

.closing-premium-btn--gold {
  background: var(--gold);
  border-color: var(--gold);
}

.closing-premium-btn--gold::before {
  background: var(--gold-deep);
}

.closing-premium-btn--gold:hover {
  color: #fff;
  border-color: var(--gold-deep);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

  .premium-focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }

  .work-premium-grid {
    gap: 60px;
  }

  .author-premium-grid {
    gap: 70px;
  }

  .book-orbit--two {
    width: 470px;
    height: 470px;
  }

}


@media (max-width: 850px) {

  .premium-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .heading-mark {
    display: none;
  }

  .work-premium-section {
    padding: 110px 0;
  }

  .work-premium-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .ventures-premium-grid {
    grid-template-columns: 1fr;
  }

  .author-premium-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
  }

  .author-bg-image {
    width: 100%;
    opacity: .045;
  }

  .book-stage {
    min-height: 520px;
  }

}


@media (max-width: 650px) {

  .premium-heading {
    margin-bottom: 45px;
  }

  .premium-heading .h-section {
    font-size: clamp(45px, 12vw, 68px);
  }

  .premium-focus-grid {
    grid-template-columns: 1fr;
  }

  .premium-focus-card {
    min-height: 270px;
  }

  .work-premium-section {
    padding: 90px 0;
  }

  .work-premium-copy h2 {
    font-size: clamp(55px, 15vw, 75px);
  }

  .work-premium-item {
    min-height: 82px;
    grid-template-columns: 28px 1fr 20px;
  }

  .work-premium-item div {
    gap: 12px;
  }

  .work-premium-item strong {
    font-size: 9px;
    line-height: 1.5;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-image {
    aspect-ratio: 4 / 5;
  }

  .venture-premium-card {
    min-height: 400px;
    padding: 30px;
  }

  .venture-card-main {
    margin-top: 65px;
  }

  .venture-card-main h3 {
    font-size: 48px;
  }

  .book-stage {
    min-height: 450px;
  }

  .book-frame {
    width: min(80%, 300px);
  }

  .book-orbit--one {
    width: 360px;
    height: 360px;
  }

  .book-orbit--two {
    width: 430px;
    height: 430px;
  }

  .author-premium-copy .h-section {
    font-size: 60px;
  }

  .closing-premium-section {
    padding: 110px 0;
  }

  .closing-premium-content h2 {
    font-size: clamp(52px, 14vw, 78px);
  }

  .closing-ring--one {
    width: 380px;
    height: 380px;
  }

  .closing-ring--two {
    width: 540px;
    height: 540px;
  }

  .closing-premium-actions {
    flex-direction: column;
    max-width: 310px;
    margin-inline: auto;
  }

  .closing-premium-btn {
    width: 100%;
  }

}


@media (max-width: 430px) {

  .premium-focus-card {
    min-height: 245px;
    padding: 27px;
  }

  .premium-card-icon {
    width: 48px;
    height: 48px;
  }

  .premium-card-bottom h3 {
    font-size: 10px;
  }

  .editorial-content h3 {
    font-size: 25px;
  }

  .venture-premium-card {
    min-height: 380px;
  }

  .venture-card-main h3 {
    font-size: 43px;
  }

  .author-premium-copy .h-section {
    font-size: 53px;
  }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .closing-ring--one,
  .closing-ring--two {
    animation: none;
  }

  .premium-focus-card,
  .editorial-image img,
  .book-frame,
  .work-premium-bg,
  .venture-premium-card {
    transition: none;
  }

}


/* ---------- About Hero Background ---------- */
/* =========================================================
   SHARED EDITORIAL PAGE HERO
   About / Media / Work / Contact
========================================================= */

.about-hero,
.media-hero,
.work-hero,
.contact-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: var(--header-h) 0 60px !important;
  overflow: hidden;
  isolation: isolate;
}

/* =========================================================
   BACKGROUND MEDIA
========================================================= */

.about-hero__media,
.media-hero__media,
.work-hero__media,
.contact-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.about-hero__media img,
.media-hero__media img,
.work-hero__media img,
.contact-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.08);
}

/* Individual animations */

.about-hero__media img {
  animation: aboutHeroZoom 22s var(--ease) forwards;
}

.media-hero__media img {
  animation: mediaHeroZoom 22s var(--ease) forwards;
}

.work-hero__media img {
  animation: workHeroZoom 22s var(--ease) forwards;
}

.contact-hero__media img {
  animation: contactHeroZoom 22s var(--ease) forwards;
}

.about-hero .crumbs,
.media-hero .crumbs,
.work-hero .crumbs,
.contact-hero .crumbs {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.about-hero,
.media-hero,
.work-hero,
.contact-hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 10px) 0 60px;
}
.about-hero {
  padding-top: var(--header-h);
}

.about-hero .shell {
  transform: translateY(-40px);
}

.about-hero .crumbs {
  margin-top: 0;
  margin-left: 20px;
}
/* =========================================================
   PREMIUM WHITE EDITORIAL OVERLAY
========================================================= */

.about-hero__media::after,
.media-hero__media::after,
.work-hero__media::after,
.contact-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(255, 255, 255, 0.99) 4%,
      rgba(255, 255, 255, 0.82) 42%,
      rgba(255, 255, 255, 0.70) 100%
    ),
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.96) 12%,
      rgba(255, 255, 255, 0.42) 68%,
      rgba(255, 255, 255, 0.18) 100%
    );
}


/* =========================================================
   ZOOM ANIMATIONS
========================================================= */

@keyframes aboutHeroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@keyframes mediaHeroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@keyframes workHeroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@keyframes contactHeroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .about-hero,
  .media-hero,
  .work-hero,
  .contact-hero {
    min-height: 90svh;
    padding-bottom: 45px;
  }

  .about-hero__media img,
  .media-hero__media img,
  .work-hero__media img,
  .contact-hero__media img {
    object-position: 75% center;
  }
}


/* =========================================================
   BIOGRAPHY
========================================================= */

.bio-section {
  padding-top: 10px;
  padding-bottom: 130px;
}

.bio-heading {
  max-width: 700px;
  margin-bottom: 65px;
}

.bio-heading .h-section {
  max-width: 14ch;
  margin-top: 14px;
}


/* =========================================================
   BIO IMAGES
========================================================= */

.bio-images {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 90px;
}

.bio-photo {
  position: relative;
  overflow: hidden;
  background: #eee;
}

.bio-photo--large {
  height: 720px;
}

.bio-photo--small {
  height: 570px;
  margin-bottom: 70px;
}


/* =========================================================
   BIO MOBILE
========================================================= */

@media (max-width: 768px) {

  .bio-section {
    padding-top: 10px;
    padding-bottom: 80px;
  }

  .bio-heading {
    margin-bottom: 40px;
  }

  .bio-images {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 55px;
  }

  .bio-photo--large {
    height: 520px;
  }

  .bio-photo--small {
    height: 420px;
    margin-bottom: 0;
  }
}
/* ---------- Biography ---------- */


/* Heading */
.bio-heading {
  max-width: 700px;
  margin-bottom: 65px;
}

.bio-heading .h-section {
  max-width: 14ch;
  margin-top: 14px;
}


/* ---------- Two Images ---------- */

.bio-images {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 90px;
}

.bio-photo {
  position: relative;
  overflow: hidden;
  background: #eee;
}

.bio-photo--large {
  height: 720px;
}

.bio-photo--small {
  height: 570px;
  margin-bottom: 70px;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.9s var(--ease);
}

.bio-photo:hover img {
  transform: scale(1.025);
}


/* Image badge */

.bio-photo .media-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  margin: 0;
  padding: 14px 19px;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bio-photo .media-badge strong {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  letter-spacing: 0.04em;
}


/* ---------- Full Width Biography ---------- */

.bio-full {
  width: 100%;
}

.bio-lead {
  max-width: 1050px;
  margin-bottom: 65px;
}

.bio-lead .lede {
  font-size: 22px;
  line-height: 1.65;
}


/* Two text columns after intro */

.bio-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 55px;
}

.bio-columns .lede {
  font-size: 16px;
  line-height: 1.85;
}


/* ---------- Tablet ---------- */

@media (max-width: 992px) {

  .bio-images {
    grid-template-columns: 1fr 0.82fr;
    gap: 20px;
  }

  .bio-photo--large {
    height: 620px;
  }

  .bio-photo--small {
    height: 500px;
    margin-bottom: 45px;
  }

  .bio-columns {
    gap: 45px;
  }

}


/* ---------- Mobile ---------- */

@media (max-width: 768px) {

  /* .bio-section {
    padding-top: 75px;
    padding-bottom: 90px;
  } */

  .bio-heading {
    margin-bottom: 45px;
  }

  .bio-images {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 65px;
  }

  .bio-photo--large {
    height: 560px;
  }

  .bio-photo--small {
    height: 430px;
    margin-bottom: 0;
  }

  .bio-lead {
    margin-bottom: 45px;
  }

  .bio-lead .lede {
    font-size: 18px;
    line-height: 1.7;
  }

  .bio-columns {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 40px;
  }

  .bio-columns > div + div {
    margin-top: 0;
  }

  .bio-columns .lede {
    font-size: 15.5px;
    line-height: 1.8;
  }

}


/* ---------- Small Mobile ---------- */

@media (max-width: 480px) {

  .bio-photo--large {
    height: 480px;
  }

  .bio-photo--small {
    height: 380px;
  }

  .bio-photo .media-badge {
    left: 14px;
    bottom: 14px;
    padding: 11px 13px;
  }

}
.bio-heading {
  width: 100%;
  max-width: none;
  margin-bottom: 65px;
}

.bio-heading .h-section {
  width: 100%;
  max-width: none;
  margin-top: 14px;
}
/* =========================================
   AUTHOR FEATURE
========================================= */

.author-feature {
  position: relative;
  width: 100%;
  padding: 120px 0;
  overflow: hidden;
}

/* Main 2-column layout */
.author-feature__inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

/* =========================================
   LEFT CONTENT
========================================= */

.author-feature__content {
  width: 100%;
  max-width: none;
  min-width: 0;
  overflow: visible;
}

/* Label */
.author-feature__content .label {
  display: block;
  width: 100%;
  margin-bottom: 18px;
}

/* Heading */
.author-feature__content .h-section {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}

/* Heading lines */
.author-feature__content .h-section span {
  display: block;
  width: 100%;
  max-width: none;
  white-space: normal;
  overflow: visible;
}

/* Heading italic text */
.author-feature__content .h-section i {
  display: inline;
  white-space: normal;
}

/* Paragraph */
.author-feature__content .lede {
  display: block;
  width: 100%;
  max-width: 620px;
  margin-top: 32px;
  line-height: 1.8;
  overflow: visible;
}

/* Button area */
.author-feature__content > p:last-child {
  width: 100%;
  margin-top: 34px !important;
}


/* =========================================
   RIGHT IMAGE
========================================= */

.author-feature__image {
  width: 100%;
  min-width: 0;
  position: relative;
}

.author-feature__frame {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  background: #eee;
}

.author-feature__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.9s var(--ease);
}

.author-feature__frame:hover img {
  transform: scale(1.06);
}


/* =========================================
   IMAGE CAPTION
========================================= */

.author-feature__caption {
  position: absolute;
  left: 24px;
  bottom: 24px;

  display: flex;
  flex-direction: column;

  padding: 15px 20px;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.author-feature__caption span {
  display: block;
  margin-bottom: 5px;

  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.author-feature__caption strong {
  display: block;

  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.04em;
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1200px) {

  .author-feature__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 90px;
  }

  .author-feature__content .lede {
    max-width: 650px;
  }

  .author-feature__frame {
    height: 640px;
  }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

  .author-feature {
    padding: 90px 0;
  }

  .author-feature__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 45px;
  }

  .author-feature__content {
    width: 100%;
    max-width: none;
  }

  .author-feature__content .h-section {
    width: 100%;
    max-width: none;
  }

  .author-feature__content .lede {
    width: 100%;
    max-width: 100%;
  }

  .author-feature__frame {
    height: 520px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .author-feature {
    padding: 75px 0;
  }

  .author-feature__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: stretch;
  }

  .author-feature__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .author-feature__content .h-section {
    width: 100%;
    max-width: 100%;
  }

  .author-feature__content .h-section span {
    width: 100%;
    max-width: 100%;
  }

  .author-feature__content .lede {
    width: 100%;
    max-width: 100%;
  }

  .author-feature__image {
    width: 100%;
  }

  .author-feature__frame {
    width: 100%;
    height: 450px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .author-feature {
    padding: 60px 0;
  }

  .author-feature__inner {
    gap: 40px;
  }

  .author-feature__content .lede {
    line-height: 1.7;
  }

  .author-feature__frame {
    height: 390px;
  }

  .author-feature__caption {
    left: 14px;
    bottom: 14px;
    padding: 12px 15px;
  }

  .author-feature__caption span {
    font-size: 9px;
  }

  .author-feature__caption strong {
    font-size: 12px;
  }
}
/* =========================================
   AUTHOR LABEL — RESTORE ORIGINAL SLASH / LINE
========================================= */

.author-feature__content .label {
  display: flex;
  align-items: center;
  width: auto;
  max-width: max-content;
  margin: 0 0 18px 0;
  overflow: visible;
}

/* Decorative line/slash */
.author-feature__content .label::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  margin-right: 14px;
  background: currentColor;
  flex-shrink: 0;
  transform: translateY(-1px);
}

/* Keep label text visible */
.author-feature__content .label {
  white-space: nowrap;
}


.logo img {
  width: 40px !important;
  height: 60px !important;
  object-fit: contain;
  display: block;
}




.about-hero,
.media-hero,
.work-hero,
.contact-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;

  /* TOP | RIGHT | BOTTOM | LEFT */
  padding: var(--header-h) 0 60px;

  overflow: hidden;
  isolation: isolate;
}

/* CONTENT SPACING */
.about-hero .shell,
.media-hero .shell,
.work-hero .shell,
.contact-hero .shell {
  width: 100%;
  /* padding-left: 7vw
  ; */
  padding-right: 7vw;
}

/* Breadcrumb */
.about-hero .crumbs,
.media-hero .crumbs,
.work-hero .crumbs,
.contact-hero .crumbs {
  margin-top: 0;
  margin-bottom: 28px;
}

/* Heading */
.about-hero .h-display,
.media-hero .h-display,
.work-hero .h-display,
.contact-hero .h-display {
  margin-left: 0;
}

/* Description */
.about-hero .lede,
.media-hero .lede,
.work-hero .lede,
.contact-hero .lede {
  margin-left: 0;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .about-hero,
  .media-hero,
  .work-hero,
  .contact-hero {
    min-height: 90svh;
    padding: var(--header-h) 0 45px;
  }

  .about-hero .shell,
  .media-hero .shell,
  .work-hero .shell,
  .contact-hero .shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-hero .crumbs,
  .media-hero .crumbs,
  .work-hero .crumbs,
  .contact-hero .crumbs {
    margin-bottom: 20px;
    margin-left: 7px;
    padding-left: 0px;
  }
}
/* =========================================
   CONTACT SOCIAL LINKS
========================================= */
.contact-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
  padding-right: 20px;
}

.contact-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 120px;
  height: 48px;
  padding: 0 18px;

  color: inherit;
  text-decoration: none;

  border: 1px solid rgba(0, 0, 0, 0.16);
  background: transparent;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.contact-social i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  font-size: 17px;
  line-height: 1;
  flex-shrink: 0;
}

.contact-social span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-social:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {
  .contact-socials {
    gap: 10px;
    margin-top: 26px;
    padding-right: 0;
  }

  .contact-social {
    min-width: 110px;
    height: 44px;
    padding: 0 15px;
    gap: 8px;
  }

  .contact-social i {
    width: 17px;
    font-size: 16px;
  }

  .contact-social span {
    font-size: 10px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {
  .contact-socials {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .contact-social {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0 10px;
    gap: 8px;
  }

  .contact-social i {
    width: 16px;
    font-size: 15px;
  }

  .contact-social span {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .contact-social:last-child {
    grid-column: 1 / -1;
  }
}

.post__media--work-lihle {
  display: block;
  width: 100%;
  overflow: hidden;
}

.post__media--work-lihle img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Tablet + Mobile */
@media (max-width: 991px) {
  .post__media--work-lihle {
    height: auto;
  }

  .post__media--work-lihle img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
}



/* Content at TOP */
.about-hero__shell {
  position: relative;
  z-index: 2;

  width: 100%;
  padding-top: 100px !important;
}

.about-hero .hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.about-hero h1 {
  margin-top: 28px;
  margin-bottom: 28px;
}

.about-hero .hero__copy {
  max-width: 56ch;
  padding-left: 10px;
}



/* =========================================
   LIHLE ABOUT HERO
   ========================================= */

.lihle-about-hero {
  position: relative;
  min-height: 700px;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

/* Background image */
.lihle-about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.lihle-about-hero__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.03);
}


/* Overlay */
.lihle-about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.97) 0%,
      rgba(255,255,255,0.88) 25%,
      rgba(255,255,255,0.55) 55%,
      rgba(255,255,255,0.18) 100%
    );
}

/* Content stays at TOP */
.lihle-about-hero__shell {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 55px;
  padding-bottom: 80px;
}

.lihle-about-hero .crumbs {
  margin-bottom: 50px;
}

.lihle-about-hero .h-display {
  width: 100%;
  max-width: 950px;
  margin: 0;
}

.lihle-about-hero .lede {
  max-width: 650px;
  margin-top: 28px;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 992px) {

  .lihle-about-hero {
    min-height: 620px;
    height: 72vh;
  }

  .lihle-about-hero__shell {
    padding-top: 45px;
  }

  .lihle-about-hero .crumbs {
    margin-bottom: 40px;
  }

  .lihle-about-hero .h-display {
    max-width: 780px;
  }

  .lihle-about-hero .lede {
    max-width: 600px;
  }
}



/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

  .lihle-about-hero {
    min-height: 400px !important;
    height: 78svh;
  }

  .lihle-about-hero__shell {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .lihle-about-hero .crumbs {
    margin-bottom: 32px;
  }

  .lihle-about-hero .h-display {
    width: 100%;
    max-width: 100%;
  }

  .lihle-about-hero .h-display span {
    display: block;
    width: 100%;
  }

  .lihle-about-hero .lede {
    width: 100%;
    max-width: 100%;
    margin-top: 22px;
    line-height: 1.7;
  }

  .lihle-about-hero__bg img {
    object-position: 65% center;
    transform: scale(1);
  }

  .lihle-about-hero__overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(255,255,255,0.98) 0%,
        rgba(255,255,255,0.88) 30%,
        rgba(255,255,255,0.48) 65%,
        rgba(255,255,255,0.16) 100%
      );
  }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

  .lihle-about-hero {
    min-height: 350px;
    height: 76svh;
  }

  .lihle-about-hero__shell {
    padding-top: 25px;
    padding-bottom: 50px;
    padding-left: 10px;
  }

  .lihle-about-hero .crumbs {
    margin-bottom: 28px;
  }

  .lihle-about-hero .lede {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.65;
  }

  .lihle-about-hero__bg img {
    object-position: 68% center;
  }
}

/* =========================================
   ABOUT HERO
   Same background effect as main hero
   Content fixed at TOP
   ========================================= */

.about-hero {
  position: relative;
  min-height: 300px !important;

  display: flex;
  align-items: flex-start;

  padding: calc(var(--header-h) + 40px) 0 60px;

  overflow: hidden;
  isolation: isolate;
}

/* Background */
.about-hero__media {
  position: absolute !important;
  inset: 0 !important;
  z-index: -2 !important;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
object-position: 75% center !important;
  transform: scale(1.08);
  animation: heroZoom 22s var(--ease) forwards;
  animation: heroZoom 22s var(--ease) forwards !important;
  
}

/* EXACT SAME BACKGROUND EFFECT */
.about-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(255, 255, 255, 0.99) 4%,
      rgba(255, 255, 255, 0.82) 42%,
      rgba(255, 255, 255, 0.7) 100%
    ),
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.96) 12%,
      rgba(255, 255, 255, 0.42) 68%,
      rgba(255, 255, 255, 0.18)
    );
}

/* Content at TOP */
.about-hero__shell {
  position: relative;
  z-index: 2;

  width: 100%;
  padding-top: 120px !important;
}

.about-hero .hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.about-hero h1 {
  margin-top: 28px;
  margin-bottom: 28px;
}

.about-hero .hero__copy {
  max-width: 56ch;
  padding-left: 10px;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

  .about-hero {
    min-height: 100svh;

    align-items: flex-start;

    padding:
      calc(var(--header-h) + 25px)
      0
      50px;
  }

  .about-hero__shell {
    padding-top: 0;
  }

  .about-hero h1 {
    margin-top: 22px;
    margin-bottom: 22px;
  }

  .about-hero .hero__copy {
    max-width: 100%;
    padding-left: 10px;
  }

  .about-hero__media img {
    object-position: 75% center;
  }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

  .about-hero {
    padding:
      calc(var(--header-h) + 20px)
      0
      45px;
  }

  .about-hero h1 {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .about-hero .hero__copy {
    font-size: 14px;
    line-height: 1.7;
    padding-left: 10px;
  }

}

/* =========================================================
   LOGO PRELOADER
========================================================= */

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.8s cubic-bezier(.77, 0, .18, 1),
    visibility 0.8s;
}

.site-preloader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  width: min(280px, 75vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Logo */

.preloader-logo {
  width: 95px;
  height: 110px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  opacity: 0;
  transform: translateY(15px) scale(.94);

  animation: preloaderLogoIn 1s cubic-bezier(.16, 1, .3, 1) forwards;
}

.preloader-logo img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

/* Loading line */

.preloader-line {
  position: relative;

  width: 150px;
  height: 1px;

  margin-top: 22px;

  background: rgba(0, 0, 0, 0.12);

  overflow: hidden;
}

.preloader-line span {
  position: absolute;
  left: 0;
  top: 0;

  width: 0;
  height: 100%;

  background: #c9a86a;

  animation: preloaderLine 1.7s cubic-bezier(.65, 0, .35, 1) forwards;
}

/* Text */

.preloader-text {
  margin: 16px 0 0;

  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;

  color: #111;

  opacity: 0;

  animation:
    preloaderTextIn .8s ease .35s forwards;
}

/* Animations */

@keyframes preloaderLogoIn {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(.94);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preloaderLine {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes preloaderTextIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .preloader-inner {
    width: 220px;
  }

  .preloader-logo {
    width: 78px;
    height: 92px;
  }

  .preloader-line {
    width: 125px;
    margin-top: 18px;
  }

  .preloader-text {
    font-size: 15px;
    margin-top: 13px;
    letter-spacing: .13em;
  }
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

  .preloader-logo {
    width: 88px;
    height: 102px;
  }

  .preloader-line {
    width: 140px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .preloader-logo,
  .preloader-line span,
  .preloader-text {
    animation: none;
  }

  .preloader-logo,
  .preloader-text {
    opacity: 1;
    transform: none;
  }

  .preloader-line span {
    width: 100%;
  }

}

/* ===== MINIGRID ===== */

.minigrid > div {
  gap: 9px;
}

.minigrid > div svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.minigrid > div span {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
}


/* ===== SMALL / MOBILE ===== */

@media (max-width: 767px) {

  .minigrid > div {
    gap: 7px;
  }

  .minigrid > div svg {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
  }

  .minigrid > div span {
    font-size: 10px;
    line-height: 1.2;
  }
}


/* ===== TABLET ===== */

@media (min-width: 768px) and (max-width: 1024px) {

  .minigrid > div svg {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .minigrid > div span {
    font-size: 11px;
  }
}