/* ============================================================
   Cannabis Portrait — Global Stylesheet
   cannabisportrait.com
   Qann Commerce OÜ — qann.co
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --ink:     #0d0d0b;
  --paper:   #f2ede4;
  --paper2:  #e9e3d8;
  --red:     #ff2d00;
  --mid:     #6a6050;
  --body:    #3a342a;
  --rule:    #cec8b8;
  --rule-dk: #2a2620;

  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Libre Baskerville', Georgia, serif;
  --fm: 'Barlow', sans-serif;

  --nh: 62px;
  --max: 1200px;
  --pad: clamp(20px, 5vw, 72px);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--body);
  font-family: var(--fb);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--nh);
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ── UTILITIES ──────────────────────────────────────────────── */
.wrap      { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.wrap-text { max-width: 680px;      margin: 0 auto; padding: 0 var(--pad); }

.eyebrow {
  font-family: var(--fm);
  font-size: 9px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.25rem;
}
.eyebrow::after {
  content: ''; flex: 1; height: 1px; background: var(--rule);
}

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nh);
  background: var(--paper);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--rule-dk);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  transition: box-shadow .25s;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.08); }
.nav-logo { display: flex; align-items: center; }
.nav-right { display: flex; align-items: center; gap: 2.25rem; }

.nl {
  font-family: var(--fm);
  font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--mid); text-decoration: none;
  transition: color .15s; position: relative;
}
.nl::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s;
}
.nl:hover { color: var(--ink); }
.nl:hover::after, .nl.on::after { transform: scaleX(1); }
.nl.on { color: var(--red); }

.lang-btn {
  font-family: var(--fm);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); border: 1px solid var(--red);
  padding: 5px 12px; text-decoration: none;
  transition: all .18s;
}
.lang-btn:hover { background: var(--red); color: #fff; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: 52px var(--pad) 40px;
  margin-top: 80px;
}
.sf-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 2rem;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 28px;
}
.sf-tagline {
  font-family: var(--fd);
  font-size: 15px; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.35);
  margin-top: 16px; max-width: 340px; line-height: 1.6;
}
.sf-social { display: flex; gap: 1rem; align-items: center; flex-shrink: 0; }
.sf-social a {
  color: rgba(255,255,255,.3); text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.08);
  transition: all .18s;
}
.sf-social a:hover { color: var(--red); border-color: var(--red); }
.sf-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; }
.sf-meta {
  font-family: var(--fm);
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.18); line-height: 2.2;
}
.sf-meta a { color: rgba(255,255,255,.28); text-decoration: none; transition: color .15s; }
.sf-meta a:hover { color: var(--red); }
.sf-icon {
  width: 48px; height: 48px; background: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── PORTRAIT CARDS ─────────────────────────────────────────── */
.pcard { display: block; text-decoration: none; }
.pcard-thumb {
  background: var(--red);
  aspect-ratio: 1;
  position: relative; overflow: hidden;
  transition: opacity .2s;
}
.pcard-thumb:hover { opacity: .88; }
.pcard-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  filter: grayscale(100%);
  transition: transform .4s ease;
}
.pcard:hover .pcard-photo { transform: scale(1.03); }
.pcard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,11,.82) 0%, rgba(13,13,11,.1) 55%, rgba(13,13,11,0) 100%);
}
.pcard-corner-c  { position: absolute; bottom: 14px; right: 14px; z-index: 2; }
.pcard-bg        { position: absolute; inset: -8%; display: flex; align-items: center; justify-content: center; opacity: .08; }
.pcard-mark      { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.pcard-name {
  position: absolute; bottom: 14px; left: 14px; z-index: 1;
  font-family: var(--fm); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: #fff;
}
.pcard-info   { padding: 14px 0 0; }
.pcard-title  {
  font-family: var(--fd); font-size: 19px; font-weight: 700;
  color: var(--ink); line-height: 1.1; margin-bottom: 5px;
  transition: color .15s;
}
.pcard:hover .pcard-title { color: var(--red); }
.pcard-meta {
  font-family: var(--fm); font-size: 9px;
  color: var(--mid); letter-spacing: .1em; text-transform: uppercase;
  display: flex; gap: .6rem; align-items: center;
}
.pcard-meta .sep { color: var(--rule); }

/* ── COOKIE BANNER ──────────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--ink); border-top: 3px solid var(--red);
  padding: 1.25rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  transform: translateY(100%); transition: transform .35s ease;
}
#cookie-banner.show { transform: translateY(0); }
.cb-text {
  font-family: var(--fm); font-size: 10px;
  color: rgba(255,255,255,.5); line-height: 1.7; max-width: 600px;
}
.cb-text a { color: rgba(255,255,255,.6); text-decoration: underline; }
.cb-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cb-btn {
  font-family: var(--fm); font-size: 9px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 9px 18px; border: none; cursor: pointer; transition: all .18s;
}
.cb-accept  { background: var(--red); color: #fff; }
.cb-accept:hover { opacity: .88; }
.cb-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.5);
}
.cb-decline:hover { border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.8); }

/* ── PAGE: HOME ─────────────────────────────────────────────── */
.hero {
  background: var(--ink); overflow: hidden;
  min-height: calc(86vh - var(--nh));
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative;
}
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  filter: grayscale(100%); opacity: .35;
}
.hero-left {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end;
  padding: 3.5rem clamp(2rem,5vw,5rem) 3.5rem var(--pad);
}
.hero-right {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 3.5rem var(--pad) 3.5rem 2rem;
  background: linear-gradient(to left, rgba(13,13,11,.75) 0%, rgba(13,13,11,0) 100%);
}
.hero-eyebrow {
  font-family: var(--fm); font-size: 8.5px; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1.25rem;
  animation: fadeUp .5s ease .1s both;
}
.hero-headline {
  font-family: var(--fd);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700; line-height: .88; letter-spacing: -.035em;
  color: #fff; margin-bottom: 1.75rem;
  animation: fadeUp .5s ease .2s both;
}
.hero-headline em { display: block; font-style: italic; font-weight: 300; }
.hero-excerpt {
  font-family: var(--fb); font-size: 14.5px; line-height: 1.85;
  color: rgba(255,255,255,.55); max-width: 380px; margin-bottom: 2.25rem;
  animation: fadeUp .5s ease .3s both;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--fm); font-size: 9.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,.3);
  padding: 13px 22px; transition: all .2s; width: fit-content;
  animation: fadeUp .5s ease .4s both;
}
.hero-cta:hover { background: var(--red); border-color: var(--red); }
.hero-cta .arr { transition: transform .2s; }
.hero-cta:hover .arr { transform: translateX(5px); }

.mission {
  padding: 4.5rem var(--pad);
  max-width: 720px; margin: 0 auto;
  text-align: center; border-bottom: 1px solid var(--rule);
}
.mission-text {
  font-family: var(--fd);
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 300; font-style: italic;
  line-height: 1.5; color: var(--ink);
}
.portraits      { padding: 4.5rem 0 0; }
.portraits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px; margin-top: 1.5rem;
}

/* ── PAGE: ARCHIVE ──────────────────────────────────────────── */
.archive-hd   { padding: 4.5rem 0 3.5rem; border-bottom: 1px solid var(--rule); }
.archive-h1   {
  font-family: var(--fd);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700; line-height: .9; letter-spacing: -.03em;
  color: var(--ink); margin-top: .75rem;
}
.archive-h1 em { font-style: italic; font-weight: 300; color: var(--red); }
.count {
  font-family: var(--fm); font-size: 9px;
  color: var(--mid); letter-spacing: .1em; text-transform: uppercase;
  margin: 2rem 0 1.25rem;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

/* ── PAGE: PORTRAIT / STORY ─────────────────────────────────── */
.reading-bar {
  position: fixed; top: var(--nh); left: 0;
  width: 0%; height: 3px; background: var(--red);
  z-index: 200; transition: width .06s linear;
}
.ph {
  background: var(--ink);
  padding: 5.5rem var(--pad) 4.5rem;
  position: relative; overflow: hidden; min-height: 280px;
}
.ph-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  filter: grayscale(100%); opacity: .22;
}
.ph-c-bg {
  position: absolute; right: -4%; top: 50%;
  transform: translateY(-50%);
  pointer-events: none; opacity: .04;
}
.ph-kicker {
  font-family: var(--fm); font-size: 9px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1.25rem;
  position: relative; z-index: 1;
  animation: fadeUp .4s ease both;
}
.ph-name {
  font-family: var(--fd);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700; line-height: .88; letter-spacing: -.035em;
  color: #fff; margin-bottom: 1.75rem;
  position: relative; z-index: 1;
  animation: fadeUp .4s ease .1s both;
}
.ph-name em { display: block; font-style: italic; font-weight: 300; }
.ph-details {
  display: flex; flex-wrap: wrap; gap: 2rem;
  position: relative; z-index: 1;
  animation: fadeUp .4s ease .2s both;
}
.ph-detail {
  font-family: var(--fm); font-size: 9.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.ph-detail span { color: rgba(255,255,255,.65); margin-left: 7px; }

.pb {
  display: grid; grid-template-columns: 1fr 260px;
  gap: 4.5rem; align-items: start;
  padding: 4rem var(--pad);
  max-width: var(--max); margin: 0 auto;
}
.video-wrap { margin-bottom: 3rem; aspect-ratio: 16/9; background: var(--ink); }
.video-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

.byline {
  font-family: var(--fm); font-size: 9px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--mid);
  padding-bottom: 1.25rem; border-bottom: 1px solid var(--rule);
  margin-bottom: 2rem;
  display: flex; justify-content: space-between;
}
.byline .ed { color: var(--red); }

/* Story body text */
.story p {
  font-family: var(--fb); font-size: 16.5px; line-height: 1.95;
  color: var(--body); margin-bottom: 1.5rem;
}
.story p:last-child { margin-bottom: 0; }
.story p strong { color: var(--ink); }
.story h2 {
  font-family: var(--fd); font-size: 1.6rem; font-weight: 700;
  color: var(--ink); margin: 2.5rem 0 1rem;
  line-height: 1.1;
}
.story .pull {
  border-left: 3px solid var(--red);
  padding: 1.25rem 1.5rem 1.25rem 2rem;
  background: var(--paper2); margin: 2.25rem 0;
}
.story .pull p {
  font-family: var(--fd); font-size: 1.25rem;
  font-style: italic; font-weight: 300;
  color: var(--ink); margin-bottom: 0; line-height: 1.55;
}
.story .coming {
  background: var(--paper2); border: 1px solid var(--rule);
  padding: 2rem; text-align: center; margin-top: 2rem;
}
.story .coming p {
  font-family: var(--fm); font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--mid); margin: 0;
}

/* Sidebar */
.sidebar { position: sticky; top: calc(var(--nh) + 3rem); }
.sb-thumb {
  aspect-ratio: 1; background: var(--red);
  position: relative; overflow: hidden; margin-bottom: 1.5rem;
}
.sb-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  filter: grayscale(100%);
}
.sb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,11,.7) 0%, rgba(13,13,11,0) 60%);
}
.sb-thumb-bg  { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: .1; }
.sb-thumb-mark{ position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.sb-thumb-name {
  position: absolute; bottom: 12px; left: 12px; z-index: 1;
  font-family: var(--fm); font-size: 9.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #fff;
}
.sb-block { border: 1px solid var(--rule); margin-bottom: 1.25rem; }
.sb-lbl {
  font-family: var(--fm); font-size: 8.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--mid);
  padding: 9px 14px; background: var(--paper2);
  border-bottom: 1px solid var(--rule);
}
.sb-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 14px; border-bottom: 1px solid var(--rule); gap: 1rem;
}
.sb-row:last-child { border-bottom: none; }
.sb-k {
  font-family: var(--fm); font-size: 9px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--mid);
}
.sb-v { font-size: 13px; color: var(--ink); font-weight: 700; text-align: right; }
.sb-v a { color: var(--red); text-decoration: none; }

.pnav {
  border-top: 1px solid var(--rule);
  padding: 1.75rem var(--pad);
  display: flex; justify-content: space-between;
}
.pnav a {
  font-family: var(--fm); font-size: 9.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color .15s;
}
.pnav a:hover { color: var(--red); }

/* ── PAGE: ABOUT ────────────────────────────────────────────── */
.about-hd    { padding: 4.5rem 0 3.5rem; border-bottom: 1px solid var(--rule); }
.about-h1    {
  font-family: var(--fd);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700; line-height: .9; letter-spacing: -.03em;
  color: var(--ink); margin-top: .75rem;
}
.about-h1 em { font-style: italic; font-weight: 300; color: var(--red); }
.about-sec {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 4rem; align-items: start;
  padding: 4rem 0; border-bottom: 1px solid var(--rule);
}
.about-sec:last-child { border-bottom: none; }
.about-sec-num {
  font-family: var(--fm); font-size: 9px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); margin-bottom: .65rem;
}
.about-sec-h2 {
  font-family: var(--fd); font-size: 1.85rem; font-weight: 700;
  color: var(--ink); line-height: 1.05;
}
.about-sec-sub {
  font-family: var(--fb); font-size: 13px;
  line-height: 1.75; color: var(--mid); margin-top: .85rem;
}
.about-body p {
  font-family: var(--fb); font-size: 15.5px; line-height: 1.9;
  color: var(--body); margin-bottom: 1.15rem;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body p strong { color: var(--ink); }
.is-list   { margin-top: 1.75rem; border-top: 1px solid var(--rule); }
.is-row    {
  display: flex; align-items: baseline; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px solid var(--rule); font-size: 13.5px;
}
.is-tick   {
  font-family: var(--fm); font-size: 9px; font-weight: 700;
  min-width: 26px; letter-spacing: .08em;
}
.yes .is-tick { color: var(--red); }
.no  .is-tick { color: var(--mid); }
.no  .is-copy { text-decoration: line-through; text-decoration-color: rgba(255,45,0,.4); color: var(--mid); }
.writers { }
.wr {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 1.5rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule); align-items: start;
}
.wr:first-child { border-top: 1px solid var(--rule); }
.wr-lang  { font-family: var(--fm); font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--red); padding-top: 3px; }
.wr-name  { font-family: var(--fd); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.wr-pub   { font-family: var(--fm); font-size: 9px; color: var(--mid); letter-spacing: .08em; margin-bottom: 6px; }
.wr-borrow{ font-size: 13px; color: var(--body); line-height: 1.7; }
.contact-block {
  background: var(--ink);
  padding: 4.5rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.contact-q {
  font-family: var(--fd);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.5); max-width: 460px; line-height: 1.4;
}
.contact-q strong { font-style: normal; color: #fff; }
.contact-cta {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--fm); font-size: 9.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,.2); padding: 13px 22px;
  white-space: nowrap; transition: all .2s; flex-shrink: 0;
}
.contact-cta:hover { background: var(--red); border-color: var(--red); }

/* ── PAGE: LEGAL ────────────────────────────────────────────── */
.legal-wrap  { max-width: 760px; margin: 0 auto; padding: 4.5rem clamp(20px,5vw,48px) 5rem; }
.legal-hd    { padding-bottom: 3rem; border-bottom: 1px solid var(--rule); margin-bottom: 3.5rem; }
.legal-eyebrow {
  font-family: var(--fm); font-size: 9px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--red); margin-bottom: .75rem;
}
.legal-h1 {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700; line-height: .92; letter-spacing: -.025em; color: var(--ink);
}
.legal-updated {
  font-family: var(--fm); font-size: 9.5px;
  color: var(--mid); letter-spacing: .1em; text-transform: uppercase;
  margin-top: 1.25rem;
}
.legal-body h2 {
  font-family: var(--fd); font-size: 1.4rem; font-weight: 700;
  color: var(--ink); margin: 2.75rem 0 .75rem;
  padding-top: 2.75rem; border-top: 1px solid var(--rule);
}
.legal-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-body h3 {
  font-family: var(--fm); font-size: 9.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); margin: 1.75rem 0 .65rem;
}
.legal-body p {
  font-family: var(--fb); font-size: 15px;
  line-height: 1.9; color: var(--body); margin-bottom: 1rem;
}
.legal-body ul { margin: .75rem 0 1rem 1.25rem; }
.legal-body ul li {
  font-family: var(--fb); font-size: 15px;
  line-height: 1.85; color: var(--body); margin-bottom: .4rem;
}
.legal-body a { color: var(--red); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-body .highlight {
  background: var(--paper2); border-left: 3px solid var(--red);
  padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.legal-body .highlight p { margin-bottom: 0; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .portraits-grid,
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .pb { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .about-sec { grid-template-columns: 1fr; gap: 1.75rem; }
  .contact-block { flex-direction: column; }
}
@media (max-width: 780px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { display: none; }
  .hero-right { padding: 3rem clamp(20px,5vw,40px); }
}
@media (max-width: 640px) {
  .nav-right .lang-btn { display: none; }
  .sf-top { flex-direction: column; }
  .sf-bottom { flex-direction: column; align-items: flex-start; }
  .portraits-grid,
  .archive-grid { grid-template-columns: 1fr; }
}
