/* ==========================================================================
   Pascal Sun — Galerie en ligne
   Identité : papier chaud, encre profonde, une touche de corail.
   ========================================================================== */

:root {
  --paper: #f7f3ec;
  --paper-deep: #efe9de;
  --ink: #16130f;
  --ink-soft: #4a443c;
  --ink-faint: #8c8478;
  --line: #ddd5c8;
  --accent: #d4593a;        /* corail hibiscus */
  --accent-soft: #e8b7a8;
  --lagoon: #2f7f86;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(.22, .61, .21, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection { background: var(--accent); color: #fff; }

/* --------------------------------------------------------------- utils -- */

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
}
/* frise tapa (niho — dents de requin) devant chaque étiquette de section */
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 7px;
  margin-right: 11px;
  vertical-align: 6%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M0 7 5 0 10 7Z' fill='%23d4593a'/%3E%3C/svg%3E") repeat-x;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.12;
  letter-spacing: .01em;
  margin-top: 14px;
}

.lede {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.6vw, 18px);
  max-width: 62ch;
}

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* -------------------------------------------------------------- header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}

.brand {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 700;
  letter-spacing: .05em;
  white-space: nowrap;
  line-height: 1;
}
.brand .sun { color: var(--accent); }
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }

.nav a.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
  position: relative;
}
.nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  border-bottom: 2px solid var(--accent);
  transition: right .35s var(--ease);
}
.nav a.nav-link:hover::after, .nav a.nav-link.active::after { right: 0; }
.nav a.nav-link.active { color: var(--ink); }

.header-tools { display: flex; align-items: center; gap: 12px; }

.tool-select {
  appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ink-soft);
  padding: 7px 12px;
  cursor: pointer;
}
.tool-select:hover { border-color: var(--ink-faint); }

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}
.cart-btn:hover { background: var(--ink); color: var(--paper); }
.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
}
.cart-count.empty { background: var(--line); color: var(--ink-soft); }

/* mobile nav */
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

@media (max-width: 900px) {
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 10px clamp(20px, 4vw, 48px) 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .3s var(--ease);
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a.nav-link { padding: 12px 0; font-size: 15px; }
}

/* ---------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: 1.04;
  letter-spacing: .01em;
  margin: 18px 0 22px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .lede { margin-bottom: 34px; }

.hero-art {
  position: relative;
  padding: clamp(10px, 1.6vw, 18px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(22, 19, 15, .35);
  transform: rotate(.6deg);
}
.hero-art img { width: 100%; }
.hero-art figcaption {
  padding: 14px 6px 4px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
}
.hero-art figcaption strong { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--ink); }

.hero-marks {
  position: absolute;
  inset: auto 0 0 0;
  pointer-events: none;
  opacity: .5;
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; min-height: 0; padding-top: 56px; padding-bottom: 64px; }
  .hero-art { max-width: 480px; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, color .25s, transform .25s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn[disabled] { opacity: .45; cursor: not-allowed; pointer-events: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ------------------------------------------------------------- gallery -- */

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section.tinted {
  background-color: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  /* lisières tapa en haut et en bas de la section */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='9'%3E%3Cpath d='M0 0 5.5 9 11 0Z M11 0 16.5 9 22 0Z' fill='%2316130f' opacity='.13'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='9'%3E%3Cpath d='M0 9 5.5 0 11 9Z M11 9 16.5 0 22 9Z' fill='%2316130f' opacity='.13'/%3E%3C/svg%3E");
  background-position: top center, bottom center;
  background-repeat: repeat-x, repeat-x;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(30px, 4vw, 54px);
}
.section-head .more { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
.section-head .more:hover { text-decoration: underline; text-underline-offset: 5px; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 40px; }
.chip {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: .25s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 40px);
}
@media (max-width: 980px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid { grid-template-columns: 1fr; } }

.card { position: relative; }
.card .frame {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  overflow: hidden;
}
.card:hover .frame {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -28px rgba(22, 19, 15, .4);
}
.card .frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.card .frame img.landscape { aspect-ratio: 5 / 4; }

.badge-sold, .badge-new {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.badge-sold { background: var(--ink); color: var(--paper); }
.badge-new { background: var(--accent); color: #fff; }

.card-meta { padding: 16px 4px 0; display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.card-meta h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; line-height: 1.25; }
.card-meta .sub { font-size: 12.5px; color: var(--ink-faint); margin-top: 3px; letter-spacing: .04em; }
.card-meta .price { font-size: 15px; font-weight: 700; white-space: nowrap; }
.card-meta .price.sold { color: var(--ink-faint); font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }

/* ------------------------------------------------------------ artwork -- */

.artwork-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  padding: clamp(40px, 6vw, 80px) 0;
}
@media (max-width: 900px) { .artwork-layout { grid-template-columns: 1fr; } }

.artwork-visual {
  position: sticky;
  top: 104px;
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(12px, 1.8vw, 22px);
  box-shadow: 0 34px 70px -40px rgba(22, 19, 15, .45);
  cursor: zoom-in;
}
@media (max-width: 900px) { .artwork-visual { position: static; } }

.artwork-info h1 { font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 500; line-height: 1.1; margin: 12px 0 6px; }
.artwork-info .story { color: var(--ink-soft); margin: 22px 0; }
.artwork-info .price-line { font-size: 26px; font-family: var(--serif); font-weight: 600; margin: 8px 0 24px; }
.price-line .sold-label { color: var(--accent); font-family: var(--sans); font-size: 13px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }

.spec-list { border-top: 1px solid var(--line); margin: 28px 0; }
.spec-list div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.spec-list dt { color: var(--ink-faint); letter-spacing: .06em; }
.spec-list dd { font-weight: 600; text-align: right; }

.assurances { display: grid; gap: 12px; margin-top: 28px; }
.assurances li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); }
.assurances .dot { color: var(--accent); font-size: 18px; line-height: 1.3; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: none;
  place-items: center;
  background: rgba(22, 19, 15, .92);
  padding: 4vw;
  cursor: zoom-out;
}
.lightbox.open { display: grid; }
.lightbox img { max-height: 92vh; max-width: 92vw; box-shadow: 0 0 80px rgba(0,0,0,.5); background: #fff; padding: 12px; }

/* --------------------------------------------------------------- quote -- */

.quote-block { text-align: center; max-width: 880px; margin: 0 auto; }
.quote-block blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.3;
}
.quote-block blockquote .hl { color: var(--accent); }
.quote-block cite { display: block; margin-top: 22px; font-style: normal; font-size: 12px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint); }

/* ------------------------------------------------------------- artist -- */

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.portrait {
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px;
  transform: rotate(-.7deg);
  box-shadow: 0 30px 60px -35px rgba(22,19,15,.4);
  position: sticky;
  top: 104px;
}
@media (max-width: 900px) { .portrait { position: static; max-width: 440px; } }

.prose p { margin-bottom: 1.2em; color: var(--ink-soft); }
.prose p strong { color: var(--ink); }
.prose .drop::first-letter {
  font-family: var(--serif);
  font-size: 3.4em;
  float: left;
  line-height: .82;
  padding: 6px 10px 0 0;
  color: var(--accent);
}

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 36px); margin-top: clamp(40px, 6vw, 70px); }
@media (max-width: 760px) { .values { grid-template-columns: 1fr; } }
.value-card { padding-top: 0; }
.value-card::before {
  content: "";
  display: block;
  width: 66px;
  height: 8px;
  margin-bottom: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='8'%3E%3Cpath d='M0 8 5.5 0 11 8Z' fill='%2316130f'/%3E%3C/svg%3E") repeat-x;
}
.value-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; color: var(--ink-soft); }
.value-card .num { font-size: 11px; font-weight: 800; letter-spacing: .25em; color: var(--accent); }

/* --------------------------------------------------------------- cart -- */

.cart-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item .thumb { background: #fff; border: 1px solid var(--line); padding: 6px; }
.cart-item h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.cart-item .sub { font-size: 13px; color: var(--ink-faint); }
.cart-item .price { font-weight: 700; }
.remove-btn { background: none; border: 0; color: var(--ink-faint); font-size: 12.5px; letter-spacing: .06em; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; margin-top: 6px; }
.remove-btn:hover { color: var(--accent); }

.order-panel { background: #fff; border: 1px solid var(--line); padding: clamp(24px, 3vw, 36px); }
.order-panel h2 { font-family: var(--serif); font-size: 28px; font-weight: 600; margin-bottom: 18px; }
.totals { margin: 18px 0; }
.totals div { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14.5px; color: var(--ink-soft); }
.totals .grand { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 16px; font-size: 19px; font-weight: 700; color: var(--ink); font-family: var(--serif); }

.empty-state { text-align: center; padding: clamp(50px, 8vw, 100px) 0; }
.empty-state p { color: var(--ink-soft); margin: 10px 0 26px; }

/* --------------------------------------------------------------- forms -- */

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 13px; color: var(--ink-faint); margin-top: 14px; }

/* -------------------------------------------------------------- footer -- */

.site-footer { background: var(--ink); color: #cfc8bc; margin-top: clamp(60px, 9vw, 110px); }
/* lisière tapa : le papier se déchire en dents sur l'encre */
.site-footer::before {
  content: "";
  display: block;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='12'%3E%3Cpath d='M0 0 12 12 24 0Z' fill='%23f7f3ec'/%3E%3C/svg%3E") repeat-x;
}
.site-footer .top {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(48px, 6vw, 80px) 0;
}
@media (max-width: 800px) { .site-footer .top { grid-template-columns: 1fr; } }
.site-footer .brand { color: var(--paper); }
.site-footer .brand small { color: #7d766a; }
.site-footer p { font-size: 14.5px; max-width: 40ch; margin-top: 14px; color: #a49c8e; }
.site-footer h4 { font-size: 11px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; color: #7d766a; margin-bottom: 16px; }
.site-footer ul { list-style: none; display: grid; gap: 10px; font-size: 14.5px; }
.site-footer ul a:hover { color: var(--paper); }
.site-footer .bottom {
  border-top: 1px solid #2c2822;
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12.5px;
  color: #7d766a;
}

/* --------------------------------------------------------------- toast -- */

.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .03em;
  opacity: 0;
  pointer-events: none;
  transition: .35s var(--ease);
  z-index: 90;
  box-shadow: 0 20px 40px -18px rgba(0,0,0,.5);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast .hl { color: var(--accent-soft); }

/* --------------------------------------------------- timeline vernissages -- */

.timeline { position: relative; padding-left: 26px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  border-left: 2px solid var(--line);
}
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: clamp(18px, 3vw, 40px);
  padding: 0 0 clamp(30px, 4vw, 44px) 24px;
}
@media (max-width: 640px) { .tl-item { grid-template-columns: 1fr; gap: 8px; } }
.tl-item::before {
  content: "";
  position: absolute;
  left: -25px; top: 10px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--line);
}
.timeline.past .tl-item::before { background: var(--ink-faint); }

.tl-date { text-align: left; }
.tl-date .day { font-family: var(--serif); font-size: 44px; font-weight: 500; line-height: 1; }
.tl-date .my { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }
.timeline.past .tl-date .my { color: var(--ink-faint); }
.tl-date .hour { font-size: 13px; color: var(--ink-faint); margin-top: 6px; }

.tl-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(18px, 2.6vw, 28px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tl-card:hover { transform: translateY(-3px); box-shadow: 0 24px 44px -26px rgba(22,19,15,.35); }
.tl-card h3 { font-family: var(--serif); font-size: clamp(21px, 2.4vw, 27px); font-weight: 600; }
.tl-card .place { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin: 6px 0 10px; }
.timeline.past .tl-card .place { color: var(--ink-faint); }
.tl-card p { color: var(--ink-soft); font-size: 15px; }
.tl-card .btn { margin-top: 16px; padding: 10px 22px; font-size: 12px; }
.timeline.past .tl-card { opacity: .75; }
.timeline .empty { color: var(--ink-faint); font-style: italic; padding-left: 24px; }

/* --------------------------------------------------------------- vidéo -- */

.video-duo {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: clamp(18px, 2.5vw, 28px);
  align-items: start;
  margin-top: clamp(28px, 4vw, 46px);
  max-width: 760px;
}
@media (max-width: 700px) { .video-duo { grid-template-columns: 1fr; } }

.video-frame {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px;
  box-shadow: 0 22px 44px -28px rgba(22, 19, 15, .4);
}
.video-frame video { width: 100%; display: block; background: #000; }
.video-frame.portrait { max-width: 210px; }
.video-frame.portrait video { aspect-ratio: 9 / 16; }
.video-frame.landscape video { aspect-ratio: 16 / 9; }

/* ---------------------------------------------------------- page heads -- */

.page-head { padding: clamp(56px, 8vw, 100px) 0 clamp(30px, 4vw, 50px); }
.page-head .lede { margin-top: 18px; }
