:root {
  --bone: #F4EFE6;
  --bone-deep: #E7DFCE;
  --ink: #26201A;
  --ink-soft: #4A4139;
  --saddle: #8C5A2E;
  --saddle-deep: #6E4522;
  --silver: #B9B4AC;
  --denim: #2F6673;
  --maroon: #5A2333;
  --card: #FDFBF7;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Work Sans", -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--saddle);
}

.ikat-band {
  height: 14px;
  background-image: url("assets/brand/ikat-pattern.png");
  background-size: auto 220px;
  background-position: center 38%;
  opacity: 0.85;
}

header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 239, 230, 0.96);
  border-bottom: 1px solid var(--bone-deep);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; max-width: 1200px; margin: 0 auto;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft);
}
.nav-links a:hover { color: var(--saddle); }
.nav-links a.active { color: var(--ink); border-bottom: 2px solid var(--saddle); padding-bottom: 2px; }
.nav-cta {
  background: var(--ink); color: var(--bone) !important;
  padding: 11px 24px;
}
.nav-cta:hover { background: var(--saddle); }

.btn {
  display: inline-block; padding: 15px 34px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}
.btn-primary { background: var(--ink); color: var(--bone); box-shadow: 4px 4px 0 var(--bone-deep); }
.btn-primary:hover { background: var(--saddle); }
.btn-ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em; }

/* page hero (interior pages) */
.page-head { padding: 56px 0 40px; }
.page-head h1, .page-head h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.1; margin-top: 12px; }
.page-head .count { color: var(--ink-soft); margin-top: 10px; }

/* tag links (collections) */
.tag-stack { display: flex; flex-direction: column; gap: 24px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 9px 18px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
/* lines: saddle outline pills */
.tag-group-line .tag {
  border: 1.5px solid var(--saddle);
  background: transparent;
  color: var(--saddle-deep);
  border-radius: 999px;
}
.tag-group-line .tag:hover,
.tag-group-line .tag.active {
  background: var(--saddle);
  border-color: var(--saddle);
  color: var(--bone);
}
/* categories: square bone bricks */
.tag-group-category .tag {
  border: 1.5px solid var(--bone-deep);
  background: var(--card);
  color: var(--ink-soft);
  border-radius: 0;
  box-shadow: 2px 2px 0 var(--bone-deep);
}
.tag-group-category .tag:hover {
  border-color: var(--saddle);
  color: var(--saddle);
}
.tag-group-category .tag.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bone);
  box-shadow: 2px 2px 0 var(--saddle);
}

/* product grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-bottom: 88px; }
.product {
  background: var(--card); border: 1px solid var(--bone-deep);
  position: relative; transition: box-shadow 0.2s, transform 0.2s;
}
.product:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(38, 32, 26, 0.12); }
.product-img { aspect-ratio: 1; overflow: hidden; background: #fff; }
.product-img img, .product-img video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.product:hover .product-img img, .product:hover .product-img video { transform: scale(1.04); }
.product-img-empty {
  width: 100%; height: 100%; min-height: 120px;
  background: var(--bone-deep); aspect-ratio: 1;
}
.product-line {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--saddle); margin-bottom: 6px;
}
.catalog-msg { padding: 48px 0 88px; color: var(--ink-soft); }
.catalog-msg-error { color: var(--maroon); }
.detail-k {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--saddle);
}
.gallery-main video { width: 100%; aspect-ratio: 1; object-fit: contain; background: #1a1612; display: block; }
.thumbs video { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-info { padding: 18px 20px 22px; }
.product-info h3 { font-weight: 500; font-size: 17px; line-height: 1.3; margin-bottom: 8px; }
.price { font-weight: 700; font-size: 15px; color: var(--saddle-deep); letter-spacing: 0.02em; }
.price.sold-price { color: var(--silver); text-decoration: line-through; }
.ribbon {
  position: absolute; top: 0; left: 0; z-index: 2;
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 14px; color: var(--bone);
}
.ribbon-new { background: var(--denim); }
.ribbon-sold { background: var(--maroon); }
.ribbon-ltd { background: var(--saddle); }
.product.is-sold .product-img img { filter: grayscale(0.7); opacity: 0.75; }

/* breadcrumb */
.crumbs { padding: 28px 0 0; font-size: 13px; color: var(--ink-soft); letter-spacing: 0.04em; }
.crumbs a { color: var(--saddle); }
.crumbs a:hover { text-decoration: underline; }

/* product detail */
.detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; padding: 40px 0 88px; align-items: start; }
.gallery-main {
  margin-bottom: 14px;
  position: relative;
}
.gallery-main img, .gallery-main video {
  width: 100%; aspect-ratio: 1; object-fit: contain;
  background: transparent;
}
.gallery-main video { background: #1a1612; }
.thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.thumbs button {
  width: 76px; height: 76px; padding: 0; cursor: pointer;
  border: 1.5px solid var(--bone-deep); background: #fff;
}
.thumbs button.sel { border-color: var(--saddle); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.detail-info h1 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.12; margin: 8px 0 18px; }
.detail-price { font-size: 24px; font-weight: 700; color: var(--saddle-deep); font-family: var(--serif); }
.stock { display: inline-block; margin-left: 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.stock.in { color: var(--denim); }
.stock.out { color: var(--maroon); }
.detail-desc { margin: 26px 0 30px; color: var(--ink-soft); white-space: pre-line; }
.detail-colls { font-size: 13px; color: var(--ink-soft); margin-bottom: 30px; }
.detail-colls a { color: var(--saddle); font-weight: 600; }
.detail-colls a:hover { text-decoration: underline; }
.detail-note {
  border-left: 3px solid var(--saddle); padding: 6px 0 6px 18px;
  font-family: var(--serif); font-style: italic; color: var(--saddle); font-size: 16px;
  margin-top: 30px;
}

/* related */
.related { border-top: 1px solid var(--bone-deep); padding: 56px 0 88px; }
.related h2 { font-size: 26px; margin-bottom: 28px; }

footer { background: var(--ink); color: var(--bone); }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 64px 32px 44px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px;
}
.footer-logo { height: 44px; width: auto; filter: invert(1) brightness(1.4); margin-bottom: 18px; }
.footer-inner p { color: var(--silver); font-size: 14px; max-width: 34ch; }
.footer-inner h4 { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver); margin-bottom: 18px; font-family: var(--sans); }
.footer-inner ul { list-style: none; }
.footer-inner li { margin-bottom: 10px; }
.footer-inner li a { font-size: 14px; color: var(--bone); opacity: 0.85; }
.footer-inner li a:hover { color: var(--saddle); opacity: 1; }
.insta {
  display: inline-block; margin-top: 14px; font-weight: 700; font-size: 14px;
  color: var(--bone); border-bottom: 2px solid var(--saddle); padding-bottom: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  text-align: center; padding: 24px; font-size: 12px; color: var(--silver); letter-spacing: 0.08em;
}

/* scroll cue (mobile intro frames) */
.scroll-cue { display: none; }

/* cart + mock POS */
.cart-link { position: relative; display: inline-flex; align-items: center; color: var(--ink-soft); }
.cart-link:hover { color: var(--saddle); }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--saddle); color: var(--bone);
  font-size: 10px; font-weight: 700; line-height: 1;
  padding: 4px 6px; min-width: 18px; text-align: center;
}
.btn[disabled] { background: var(--silver); color: var(--card); cursor: not-allowed; box-shadow: none; }
.btn.added { background: var(--denim); }
.demo-note { margin-top: 14px; font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em; }
.demo-note strong { color: var(--maroon); text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; }

.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; padding: 40px 0 88px; align-items: start; }
.cart-lines { border-top: 1px solid var(--bone-deep); }
.cart-line {
  display: grid; grid-template-columns: 84px 1fr auto; gap: 20px; align-items: center;
  padding: 20px 0; border-bottom: 1px solid var(--bone-deep);
}
.cart-line img { width: 84px; height: 84px; object-fit: cover; border: 1px solid var(--bone-deep); background: #fff; }
.cart-line h3 { font-size: 17px; font-weight: 500; }
.cart-line .line-price { font-weight: 700; color: var(--saddle-deep); }
.line-note { margin-top: 6px; font-size: 12px; color: var(--maroon); }
.cart-line button {
  background: none; border: none; cursor: pointer; color: var(--ink-soft);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--sans);
  padding: 4px 0; text-align: right;
}
.cart-line button:hover { color: var(--maroon); text-decoration: underline; }
.summary {
  border: 1.5px solid var(--ink); background: var(--card); padding: 28px;
}
.summary h2 { font-size: 22px; margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-soft); padding: 6px 0; }
.summary-row.total {
  border-top: 1px solid var(--bone-deep); margin-top: 12px; padding-top: 14px;
  font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ink);
}
.summary .btn { width: 100%; text-align: center; margin-top: 20px; }
.cart-empty { padding: 40px 0 88px; color: var(--ink-soft); }
.cart-empty h2 { font-size: 26px; margin-bottom: 12px; }

/* checkout */
.checkout-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; padding: 40px 0 88px; align-items: start; }
.fieldset { margin-bottom: 36px; }
.fieldset legend {
  font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 16px;
  display: flex; align-items: baseline; gap: 10px;
}
.fieldset legend .step {
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--bone); background: var(--saddle); padding: 3px 8px;
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-grid .full { grid-column: 1 / -1; }
label.f { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
label.f input {
  display: block; width: 100%; margin-top: 6px; padding: 12px 14px;
  border: 1.5px solid var(--bone-deep); background: var(--card);
  font-family: var(--sans); font-size: 15px; color: var(--ink);
}
label.f input:focus { outline: none; border-color: var(--saddle); }
label.f input[readonly] { background: var(--bone); color: var(--ink-soft); }
.pay-banner {
  border: 1.5px dashed var(--saddle); background: var(--card);
  padding: 12px 16px; font-size: 13px; color: var(--ink-soft); margin-bottom: 16px;
}
.pay-banner strong { color: var(--maroon); text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; }
.checkout-error { color: var(--maroon); font-size: 14px; font-weight: 600; margin: 0 0 16px; }

/* confirmation */
.confirm { max-width: 640px; margin: 0 auto; text-align: center; padding: 88px 32px 120px; }
.confirm .ok-mark {
  width: 64px; height: 64px; margin: 0 auto 28px; border: 2px solid var(--denim);
  display: flex; align-items: center; justify-content: center; color: var(--denim);
  font-size: 30px; font-family: var(--serif);
}
.confirm h1 { font-size: clamp(34px, 4.5vw, 48px); margin-bottom: 14px; }
.confirm .order-no { font-family: var(--serif); font-style: italic; color: var(--saddle); font-size: 19px; margin-bottom: 26px; }
.confirm p { color: var(--ink-soft); margin-bottom: 12px; }
.confirm .order-lines { text-align: left; margin: 24px auto; max-width: 420px; }
.confirm .summary-row.total {
  max-width: 420px; margin: 0 auto 26px; text-align: left;
}
.confirm .btn { margin-top: 28px; }

/* homepage extras */
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center; padding: 88px 32px 96px;
  max-width: 1200px; margin: 0 auto;
}
.hero-grid h1 { font-size: clamp(42px, 5.4vw, 68px); line-height: 1.06; margin: 20px 0 24px; }
.hero-grid h1 em { font-style: italic; color: var(--saddle); }
.hero-grid p.lede { font-size: 18px; color: var(--ink-soft); max-width: 46ch; margin-bottom: 36px; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img { overflow: hidden; box-shadow: 24px 24px 0 var(--bone-deep); }
.hero-img img { width: 100%; height: 520px; object-fit: cover; }

.featured { padding: 88px 0 0; }
.featured-head { text-align: center; margin-bottom: 48px; }
.featured-head h2 { font-size: 34px; }
.featured-head p { color: var(--ink-soft); margin-top: 10px; }

.labels { background: var(--ink); color: var(--bone); padding: 72px 0; }
.labels .eyebrow { color: var(--silver); text-align: center; display: block; }
.labels h2 { font-weight: 500; font-size: 30px; text-align: center; margin: 12px 0 48px; }
.label-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; align-items: center; }
.label-row figure { text-align: center; }
.label-row img { max-height: 72px; margin: 0 auto; width: auto; object-fit: contain; }
.label-row figcaption { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); margin-top: 16px; }

.about { padding: 96px 0 120px; }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.about-imgs { position: relative; }
.about-imgs .main-img img { width: 100%; height: 560px; object-fit: cover; }
.about-imgs .float-img {
  position: absolute; bottom: -36px; right: -36px; width: 45%;
  border: 6px solid var(--bone);
  box-shadow: 0 20px 40px rgba(38, 32, 26, 0.18);
}
.about h2 { font-size: 34px; margin: 14px 0 22px; }
.about p { color: var(--ink-soft); margin-bottom: 18px; }
.about strong { color: var(--ink); }
.about-flair {
  font-family: var(--serif); font-style: italic; font-size: 19px;
  color: var(--saddle); border-left: 3px solid var(--saddle);
  padding-left: 20px; margin-top: 28px;
}

@media (max-width: 900px) {
  .hero-grid, .about-grid, .detail, .cart-layout, .checkout-layout { grid-template-columns: 1fr; gap: 44px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .label-row { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { gap: 18px; }
  .nav-links a:not(.nav-cta):not(.cart-link) { display: none; }
  .hero-img img { height: 380px; }
  .about-imgs .float-img { bottom: -20px; right: 0; }
}

/* ---------- mobile: tuned for iPhone SE (375x667) ---------- */
@media (max-width: 560px) {
  :root { --nav-h: 52px; --bar-buffer: 56px; }
  /* pin the header to exactly --nav-h (border included) so the snap offset
     matches the real navbar edge with zero gap */
  header { height: var(--nav-h); box-sizing: border-box; }
  .nav { height: 100%; padding: 0 18px; align-items: center; }
  .nav-logo img { height: 28px; }
  /* the standalone band would push the hero off its snap point; paint it
     inside the top edge of the hero and labels frames instead */
  .ikat-band { display: none; }
  html.snap .hero-frame, html.snap .labels { position: relative; }
  html.snap .hero-frame::before, html.snap .labels::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 14px;
    background-image: url("assets/brand/ikat-pattern.png");
    background-size: auto 220px; background-position: center 38%;
    opacity: 0.85;
  }
  .nav-links { gap: 14px; }
  .nav-cta { padding: 9px 16px; font-size: 12px; }
  .wrap { padding: 0 22px; }

  /* hard snaps: every frame is viewport-minus-navbar; merch grids stay free */
  html.snap { scroll-snap-type: y mandatory; scroll-padding-top: var(--nav-h); }
  html.snap body { overflow-x: clip; }
  html.snap .snap-frame {
    /* Measure against the LARGE viewport (browser bar dismissed) so frame
       heights never change as the bar shows/hides — no reflow, no jank.
       --bar-buffer reserves the bottom band the bar covers when visible;
       content is budgeted to fit above it. */
    min-height: calc(100vh - var(--nav-h));
    min-height: calc(100lvh - var(--nav-h));
    padding-bottom: var(--bar-buffer);
    display: flex; flex-direction: column; justify-content: center;
    scroll-snap-align: start; scroll-snap-stop: always;
    overflow: clip;
  }
  html.snap .snap-top { scroll-snap-align: start; }
  /* snap position at the END of tall free-scroll sections: scrolling up from
     below rests at the merch grid's bottom edge instead of jumping to its top */
  html.snap .snap-end { scroll-snap-align: end; height: 1px; }

  .eyebrow { font-size: 10px; letter-spacing: 0.18em; }
  /* hero gets extra clearance under the image beyond the standard buffer */
  html.snap .hero-frame { padding-bottom: calc(var(--bar-buffer) + 26px); }
  .hero-grid { gap: 18px; padding: 16px 22px 24px; }
  .hero-grid h1 { font-size: clamp(26px, 8.6vw, 32px); margin: 10px 0 12px; }
  .hero-grid p.lede { font-size: 14px; margin-bottom: 18px; }
  .btn { padding: 13px 22px; font-size: 12px; }
  .hero-grid .btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-grid .btn { padding: 12px 6px; font-size: 11px; text-align: center; }
  .hero-img { box-shadow: 8px 8px 0 var(--bone-deep); }
  .hero-img img { height: 24lvh; min-height: 150px; }

  .tag { padding: 8px 14px; font-size: 11px; }

  .featured { padding: 40px 0 0; }
  .featured-head { margin-bottom: 22px; }
  .featured-head h2 { font-size: 26px; }
  .featured-head p { font-size: 14px; }
  .grid { grid-template-columns: 1fr 1fr; gap: 12px; padding-bottom: 48px; }
  .product-info { padding: 12px 12px 14px; }
  .product-info h3 { font-size: 14px; margin-bottom: 5px; }
  .price { font-size: 13px; }

  .labels { padding: 0; }
  .labels h2 { font-size: 24px; margin: 8px 0 26px; }
  .label-row { gap: 26px 18px; }
  .label-row img { max-height: 46px; }
  .label-row figcaption { font-size: 10px; margin-top: 9px; }

  .about { padding: 0; }
  .about-grid { gap: 12px; }
  .about-imgs .main-img img { height: 15lvh; min-height: 100px; }
  .about-imgs .float-img { width: 32%; bottom: -8px; border-width: 3px; }
  .about h2 { font-size: 20px; margin: 5px 0 8px; }
  .about p { font-size: 12.5px; line-height: 1.5; margin-bottom: 7px; }
  .about-flair { font-size: 13px; margin-top: 8px; padding-left: 12px; }

  /* collection / shop intros: centered, one frame */
  .page-head { text-align: center; }
  html.snap .page-intro { position: relative; }
  html.snap .scroll-cue {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    position: absolute; bottom: 16px; left: 0; right: 0;
    color: var(--saddle); font-size: 10px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
  }
  html.snap .scroll-cue svg { animation: cue-bob 1.6s ease-in-out infinite; }
  @keyframes cue-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
  }
  @media (prefers-reduced-motion: reduce) { html.snap .scroll-cue svg { animation: none; } }

  .page-intro .page-head { padding: 0 0 20px; }
  .page-intro h1, .page-intro h2 { font-size: 30px; }
  .page-intro .count { font-size: 14px; }
  .page-intro .tag-row { justify-content: center; }

  /* footer: one compressed frame behind a snap */
  html.snap footer.snap-frame { justify-content: space-between; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 20px 16px; padding: 26px 22px 16px; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .footer-logo { height: 28px; margin-bottom: 10px; }
  .footer-inner p { font-size: 12.5px; }
  .footer-inner h4 { margin-bottom: 10px; font-size: 11px; letter-spacing: 0.16em; }
  .footer-inner li { margin-bottom: 6px; }
  .footer-inner li a { font-size: 13px; }
  .insta { margin-top: 8px; font-size: 13px; }
  .footer-bottom { padding: 12px; font-size: 10px; }
}

/* taller phones (iPhone 12-16 class): scale content up to fill the frame.
   The SE tier above stays untouched below 740px of height. */
@media (max-width: 560px) and (min-height: 740px) {
  .eyebrow { font-size: 11px; }
  .hero-grid { gap: 28px; padding: 24px 22px 32px; }
  .hero-grid h1 { font-size: clamp(32px, 10vw, 40px); margin: 12px 0 16px; }
  .hero-grid p.lede { font-size: 16px; line-height: 1.65; margin-bottom: 24px; }
  .hero-grid .btn { padding: 15px 8px; font-size: 12px; }
  .hero-img img { height: 30lvh; }

  /* short frames spread their content across the tall frame instead of
     clumping in the middle with dead space above and below */
  html.snap .page-intro .wrap {
    flex: 1; display: flex; flex-direction: column;
    justify-content: space-evenly; padding-block: 7lvh;
  }
  .page-intro .page-head { padding: 0; }
  .page-intro h1, .page-intro h2 { font-size: 42px; }
  .page-intro .count { font-size: 16px; margin-top: 12px; }
  .tag { padding: 13px 22px; font-size: 13px; }
  .tag-row { gap: 12px; }
  .tag-stack { gap: 28px; }

  html.snap .labels .wrap {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    justify-content: space-evenly; padding-block: 7lvh;
  }
  .labels h2 { font-size: 32px; margin: 0; }
  .label-row { gap: 40px 28px; align-self: stretch; }
  .label-row img { max-height: 70px; }
  .label-row figcaption { font-size: 11px; margin-top: 12px; }

  .about-grid { gap: 24px; }
  .about-imgs .main-img img { height: 19lvh; }
  .about-imgs .float-img { width: 38%; bottom: -14px; border-width: 4px; }
  .about h2 { font-size: 24px; margin: 8px 0 12px; }
  .about p { font-size: 14px; line-height: 1.6; margin-bottom: 10px; }
  .about-flair { font-size: 15px; margin-top: 14px; }

  html.snap footer.snap-frame .footer-inner { flex: 1; align-content: space-evenly; }
  .footer-inner { gap: 28px 20px; padding: 40px 24px 24px; }
  .footer-logo { height: 34px; margin-bottom: 14px; }
  .footer-inner p { font-size: 14px; }
  .footer-inner h4 { font-size: 12px; margin-bottom: 14px; }
  .footer-inner li { margin-bottom: 9px; }
  .footer-inner li a { font-size: 14.5px; }
  .insta { font-size: 14px; margin-top: 12px; }
  .footer-bottom { padding: 16px; font-size: 11px; }
}
