/*
 * style.css — Merek Weed Portfolio
 * ─────────────────────────────────────────────────────────────────
 * Shared styles for all pages.
 * Organisation:
 *   1.  Tokens & Reset
 *   2.  Base / Typography
 *   3.  Navigation
 *   4.  Footer
 *   5.  Utility classes
 *   6.  Hero (home page)
 *   7.  Home — category preview grid
 *   8.  Home — about preview
 *   9.  Portfolio page
 *  10.  Category pages (automotive-photos, automotive-events, portraits)
 *  11.  Gallery pages (individual photo grids)
 *  12.  Lightbox
 *  13.  About page
 *  14.  Contact page
 *  15.  Page transitions / animations
 *  16.  Responsive
 * ─────────────────────────────────────────────────────────────────
 */


/* ────────────────────────────────────────────────────────────────
   1. TOKENS & RESET
──────────────────────────────────────────────────────────────── */
:root {
  --black:      #0a0a0a;
  --off-black:  #111111;
  --gray-900:   #1a1a1a;
  --gray-700:   #333333;
  --gray-500:   #666666;
  --gray-300:   #999999;
  --gray-100:   #e8e8e8;
  --off-white:  #f5f4f0;
  --white:      #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h:  72px;
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Page gutter — update in one place */
  --gutter: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  background:  var(--black);
  color:       var(--off-white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size:   15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  cursor:     pointer;
  border:     none;
  background: none;
  font:       inherit;
  color:      inherit;
}


/* ────────────────────────────────────────────────────────────────
   2. BASE / TYPOGRAPHY
──────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 300;
}


/* ────────────────────────────────────────────────────────────────
   3. NAVIGATION
──────────────────────────────────────────────────────────────── */
#site-nav {
  position:   fixed;
  top: 0; left: 0; right: 0;
  z-index:    100;
  height:     var(--nav-h);
  display:    flex;
  align-items: center;
  justify-content: space-between;
  padding:    0 var(--gutter);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}

#site-nav.scrolled {
  background:       rgba(10, 10, 10, 0.92);
  backdrop-filter:  blur(14px);
}

.nav-logo {
  font-family:     var(--font-display);
  font-size:       20px;
  font-weight:     400;
  letter-spacing:  0.04em;
  color:           var(--white);
  transition:      opacity 0.2s;
  text-shadow:     0 1px 12px rgba(0, 0, 0, 0.55);
}
.nav-logo:hover { opacity: 0.6; }

.nav-links {
  display:    flex;
  gap:        40px;
  list-style: none;
}

.nav-links a {
  font-size:       12px;
  font-weight:     400;
  letter-spacing:  0.12em;
  text-transform:  uppercase;
  color:           var(--white);
  transition:      color 0.2s;
  cursor:          pointer;
  text-shadow:     0 1px 12px rgba(0, 0, 0, 0.55);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

/* Hamburger button */
.nav-hamburger {
  display:        none;
  flex-direction: column;
  gap:            5px;
  width:          24px;
  cursor:         pointer;
  padding:        4px 0;
}
.nav-hamburger span {
  display:    block;
  height:     1px;
  background: var(--off-white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display:        none;
  position:       fixed;
  inset:          0;
  z-index:        99;
  background:     var(--black);
  flex-direction: column;
  align-items:    center;
  justify-content: center;
  gap:            44px;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family:    var(--font-display);
  font-size:      38px;
  font-weight:    300;
  letter-spacing: 0.02em;
  color:          var(--off-white);
  transition:     opacity 0.2s;
}
.mobile-menu a:hover { opacity: 0.45; }


/* ────────────────────────────────────────────────────────────────
   4. FOOTER
──────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--gray-900);
  padding:    48px var(--gutter);
  display:    flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap:  wrap;
  gap:        16px;
}

.footer-logo {
  font-family:    var(--font-display);
  font-size:      18px;
  font-weight:    400;
  letter-spacing: 0.04em;
}

.footer-meta {
  font-size:      11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          var(--gray-500);
}


/* ────────────────────────────────────────────────────────────────
   5. UTILITY CLASSES
──────────────────────────────────────────────────────────────── */
.eyebrow {
  font-size:      11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color:          var(--gray-500);
  margin-bottom:  16px;
}

.section-title {
  font-family:    var(--font-display);
  font-size:      clamp(36px, 5vw, 64px);
  font-weight:    300;
  line-height:    1.05;
  letter-spacing: -0.01em;
}

.text-link {
  font-size:       12px;
  letter-spacing:  0.12em;
  text-transform:  uppercase;
  color:           var(--gray-300);
  border-bottom:   1px solid var(--gray-700);
  padding-bottom:  2px;
  transition:      color 0.2s, border-color 0.2s;
  display:         inline-block;
}
.text-link:hover { color: var(--white); border-color: var(--white); }

/* Breadcrumb */
.breadcrumb {
  display:     flex;
  align-items: center;
  gap:         10px;
  font-size:   11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:       var(--gray-500);
  margin-bottom: 24px;
}
.breadcrumb .sep   { color: var(--gray-700); }
.breadcrumb a      { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--off-white); }

/* Page header block (used on interior pages) */
.page-header {
  padding: calc(var(--nav-h) + 80px) var(--gutter) 80px;
  border-bottom: 1px solid var(--gray-900);
}

.page-header-title {
  font-family:    var(--font-display);
  font-size:      clamp(48px, 6vw, 80px);
  font-weight:    300;
  letter-spacing: -0.02em;
  line-height:    1.0;
}

.page-header-desc {
  margin-top:  16px;
  font-size:   14px;
  color:       var(--gray-500);
  max-width:   520px;
  line-height: 1.7;
}


/* ────────────────────────────────────────────────────────────────
   6. HERO (index.html)
──────────────────────────────────────────────────────────────── */
.hero {
  position:   relative;
  height:     100vh;
  min-height: 600px;
  overflow:   hidden;
}

.hero-bg {
  position:   absolute;
  inset:      0;
  /* Image set via inline style on element, or replace background-image here */
  background-color: var(--gray-900);
  background-size:  cover;
  background-position: center 68%;
  transform:  scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.15) 0%,
    rgba(10, 10, 10, 0.60) 100%
  );
}

.hero-content {
  position:        relative;
  z-index:         2;
  height:          100%;
  display:         flex;
  flex-direction:  column;
  justify-content: flex-end;
  padding:         0 var(--gutter) 80px;
}

.hero-eyebrow {
  font-size:      11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          rgba(245, 244, 240, 0.55);
  margin-bottom:  20px;
}

.hero-title {
  font-family:    var(--font-display);
  font-size:      clamp(56px, 8vw, 108px);
  font-weight:    300;
  line-height:    0.95;
  letter-spacing: -0.025em;
  max-width:      700px;
  margin-bottom:  28px;
}

.hero-subtitle {
  font-size:    14px;
  font-weight:  300;
  color:        rgba(245, 244, 240, 0.65);
  max-width:    360px;
  line-height:  1.75;
  margin-bottom: 44px;
}

.hero-scroll {
  display:     flex;
  align-items: center;
  gap:         12px;
  font-size:   11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color:       rgba(245, 244, 240, 0.4);
}
.hero-scroll-line {
  width:      32px;
  height:     1px;
  background: rgba(245, 244, 240, 0.25);
}


/* ────────────────────────────────────────────────────────────────
   7. HOME — section wrapper, category preview grid
──────────────────────────────────────────────────────────────── */
.home-section {
  padding: 120px var(--gutter);
}

.home-section-header {
  display:         flex;
  justify-content: space-between;
  align-items:     flex-end;
  margin-bottom:   64px;
}

/* 3-column category cards */
#home-category-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   2px;
}

.category-card {
  position:    relative;
  overflow:    hidden;
  aspect-ratio: 4/5;
  display:     block; /* anchor tag */
}

.category-card img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.category-card:hover img { transform: scale(1.04); }

.category-card-overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.78) 0%,
    rgba(10, 10, 10, 0.0) 55%
  );
  transition: background 0.4s var(--ease);
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.12) 55%
  );
}

.category-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
}

.category-card-label {
  font-size:      11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color:          rgba(245, 244, 240, 0.5);
  margin-bottom:  8px;
}

.category-card-title {
  font-family:  var(--font-display);
  font-size:    28px;
  font-weight:  300;
  line-height:  1.1;
  margin-bottom: 8px;
}

.category-card-desc {
  font-size:   13px;
  font-weight: 300;
  color:       rgba(245, 244, 240, 0.6);
  line-height: 1.6;
  transform:   translateY(6px);
  opacity:     0;
  transition:  transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.category-card:hover .category-card-desc {
  transform: translateY(0);
  opacity:   1;
}


/* ────────────────────────────────────────────────────────────────
   8. HOME — about preview strip
──────────────────────────────────────────────────────────────── */
.about-preview {
  padding:               120px var(--gutter);
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   80px;
  align-items:           center;
  border-top:            1px solid var(--gray-900);
}

.about-preview-image {
  aspect-ratio: 4/5;
  overflow:     hidden;
}

.about-preview-image img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.about-preview-image:hover img { transform: scale(1.03); }

.about-preview-text { max-width: 440px; }

.about-preview-quote {
  font-family:  var(--font-display);
  font-size:    clamp(22px, 2.8vw, 34px);
  font-weight:  300;
  font-style:   italic;
  line-height:  1.38;
  color:        var(--off-white);
  margin-bottom: 28px;
}

.about-preview-body {
  font-size:    14px;
  color:        var(--gray-300);
  line-height:  1.85;
  margin-bottom: 40px;
}


/* ────────────────────────────────────────────────────────────────
   9. PORTFOLIO PAGE
──────────────────────────────────────────────────────────────── */
#portfolio-main-grid {
  padding: 80px var(--gutter) 120px;
  display: grid;
  gap:     2px;
}

/* Two-column row for items 2 & 3 */
.portfolio-row-two {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   2px;
}

/* Shared card styles */
.portfolio-item {
  position: relative;
  overflow: hidden;
  display:  block;
}

.portfolio-item img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.portfolio-item:hover img { transform: scale(1.03); }

.portfolio-item-overlay {
  position:   absolute;
  inset:      0;
  background: rgba(10, 10, 10, 0);
  transition: background 0.4s;
}
.portfolio-item:hover .portfolio-item-overlay { background: rgba(10, 10, 10, 0.22); }

.portfolio-item-info {
  position:   absolute;
  bottom: 0; left: 0; right: 0;
  padding:    48px 40px 40px;
  background: linear-gradient(to top, rgba(10,10,10,0.82) 0%, transparent 100%);
}

.portfolio-item-num {
  font-size:      11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color:          rgba(245, 244, 240, 0.4);
  margin-bottom:  10px;
}

.portfolio-item-title {
  font-family:    var(--font-display);
  font-size:      clamp(28px, 3.5vw, 52px);
  font-weight:    300;
  line-height:    1.08;
  margin-bottom:  10px;
}

.portfolio-item-desc {
  font-size:   13px;
  color:       rgba(245, 244, 240, 0.65);
  max-width:   360px;
  line-height: 1.6;
  transform:   translateY(8px);
  opacity:     0;
  transition:  transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.portfolio-item:hover .portfolio-item-desc {
  transform: translateY(0);
  opacity:   1;
}


/* ────────────────────────────────────────────────────────────────
   10. CATEGORY PAGES (automotive-photos, events, portraits)
──────────────────────────────────────────────────────────────── */
#gallery-card-grid {
  padding:               80px var(--gutter) 120px;
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   2px;
}

/* Portraits — single full-width card */
#gallery-card-grid.single-col {
  grid-template-columns: 1fr;
}

.gallery-card {
  position:    relative;
  overflow:    hidden;
  display:     block;
  aspect-ratio: 3/2;
}

.gallery-card.tall {
  aspect-ratio: 16/7;
}

.gallery-card img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery-card:hover img { transform: scale(1.04); }

.gallery-card-overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(to top, rgba(10,10,10,0.72) 0%, transparent 55%);
}

.gallery-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
}

.gallery-card-title {
  font-family:  var(--font-display);
  font-size:    28px;
  font-weight:  300;
  line-height:  1.1;
  margin-bottom: 8px;
}

.gallery-card-desc {
  font-size:   13px;
  color:       rgba(245, 244, 240, 0.62);
  line-height: 1.6;
  transform:   translateY(6px);
  opacity:     0;
  transition:  transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.gallery-card:hover .gallery-card-desc {
  transform: translateY(0);
  opacity:   1;
}


/* ────────────────────────────────────────────────────────────────
   11. GALLERY PAGES (photo grids)
──────────────────────────────────────────────────────────────── */
#photo-grid {
  padding: 48px var(--gutter) 120px;
  columns: 3;
  column-gap: 2px;
}

.photo-item {
  break-inside: avoid;
  margin-bottom: 2px;
  overflow:  hidden;
  cursor:    pointer;
  position:  relative;
}

.photo-item img {
  width:      100%;
  display:    block;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}
.photo-item:hover img {
  transform: scale(1.025);
  filter:    brightness(0.82);
}


/* ────────────────────────────────────────────────────────────────
   12. LIGHTBOX
──────────────────────────────────────────────────────────────── */
#lightbox {
  display:         none;
  position:        fixed;
  inset:           0;
  z-index:         200;
  background:      rgba(0, 0, 0, 0.97);
  align-items:     center;
  justify-content: center;
  padding:         40px;
}
#lightbox.open { display: flex; }

#lightbox-img {
  max-width:  100%;
  max-height: 90vh;
  object-fit: contain;
}

#lightbox-close {
  position:   absolute;
  top: 24px; right: 32px;
  font-size:  28px;
  color:      var(--gray-500);
  cursor:     pointer;
  line-height: 1;
  transition: color 0.2s;
  user-select: none;
}
#lightbox-close:hover { color: var(--white); }

.lightbox-nav {
  position:   absolute;
  top:        50%;
  transform:  translateY(-50%);
  font-size:  24px;
  color:      var(--gray-500);
  cursor:     pointer;
  padding:    20px;
  transition: color 0.2s;
  user-select: none;
}
.lightbox-nav:hover { color: var(--white); }
#lb-prev { left:  8px; }
#lb-next { right: 8px; }

#lightbox-counter {
  position:         absolute;
  bottom:           24px;
  left:             50%;
  transform:        translateX(-50%);
  font-size:        12px;
  letter-spacing:   0.12em;
  color:            var(--gray-500);
}


/* ────────────────────────────────────────────────────────────────
   13. ABOUT PAGE
──────────────────────────────────────────────────────────────── */
.about-header-image {
  height:   70vh;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.about-header-image img {
  width:      100%;
  height:     100%;
  object-fit: cover;
}

.about-content {
  padding:               100px var(--gutter);
  display:               grid;
  grid-template-columns: 1fr 1.25fr;
  gap:                   120px;
  align-items:           start;
}

.about-sticky {
  position: sticky;
  top:      calc(var(--nav-h) + 40px);
}

.about-name {
  font-family:    var(--font-display);
  font-size:      clamp(40px, 5vw, 64px);
  font-weight:    300;
  letter-spacing: -0.02em;
  line-height:    1.0;
  margin-bottom:  20px;
}

.about-tagline {
  font-size:    14px;
  color:        var(--gray-500);
  line-height:  1.75;
  letter-spacing: 0.02em;
}

.about-divider {
  height:     1px;
  background: var(--gray-900);
  margin:     56px 0;
}

.about-stat-row {
  display: flex;
  gap:     60px;
}

.about-stat-num {
  font-family:    var(--font-display);
  font-size:      48px;
  font-weight:    300;
  letter-spacing: -0.02em;
  line-height:    1;
  margin-bottom:  6px;
}

.about-stat-label {
  font-size:      11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--gray-500);
}

.about-body p {
  font-size:    16px;
  font-weight:  300;
  color:        var(--gray-300);
  line-height:  1.88;
  margin-bottom: 28px;
}
.about-body p:last-child { margin-bottom: 0; }

.about-note {
  color:     var(--gray-500);
  font-size: 13px;
}


/* ────────────────────────────────────────────────────────────────
   14. CONTACT PAGE
──────────────────────────────────────────────────────────────── */
.contact-page {
  padding:               calc(var(--nav-h) + 100px) var(--gutter) 120px;
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   100px;
  min-height:            90vh;
  align-items:           start;
}

.contact-title {
  font-family:    var(--font-display);
  font-size:      clamp(52px, 6vw, 88px);
  font-weight:    300;
  letter-spacing: -0.025em;
  line-height:    1.0;
  margin-bottom:  36px;
}

.contact-intro {
  font-size:    15px;
  color:        var(--gray-300);
  line-height:  1.8;
  max-width:    360px;
  margin-bottom: 64px;
}

.contact-info-row {
  margin-bottom: 32px;
}

.contact-info-label {
  font-size:      11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color:          var(--gray-500);
  margin-bottom:  8px;
}

.contact-info-value {
  font-size: 15px;
  color:     var(--off-white);
}
.contact-info-value a { transition: opacity 0.2s; }
.contact-info-value a:hover { opacity: 0.55; }

/* Form */
.form-group { margin-bottom: 32px; }

.form-label {
  display:        block;
  font-size:      11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color:          var(--gray-500);
  margin-bottom:  12px;
}

.form-input,
.form-textarea {
  width:       100%;
  background:  transparent;
  border:      none;
  border-bottom: 1px solid var(--gray-700);
  color:       var(--off-white);
  font-family: var(--font-body);
  font-size:   15px;
  font-weight: 300;
  padding:     12px 0;
  outline:     none;
  transition:  border-color 0.2s;
  resize:      none;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--off-white); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-700); }
.form-textarea { min-height: 120px; }

.form-submit {
  display:        inline-flex;
  align-items:    center;
  gap:            16px;
  padding:        18px 40px;
  background:     transparent;
  border:         1px solid var(--gray-700);
  color:          var(--off-white);
  font-family:    var(--font-body);
  font-size:      12px;
  font-weight:    400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor:         pointer;
  transition:     background 0.3s, border-color 0.3s, color 0.3s;
}
.form-submit:hover {
  background:   var(--off-white);
  border-color: var(--off-white);
  color:        var(--black);
}

#form-success {
  display:        none;
  margin-top:     20px;
  font-size:      13px;
  color:          var(--gray-300);
  letter-spacing: 0.04em;
}


/* ────────────────────────────────────────────────────────────────
   15. PAGE TRANSITIONS / ANIMATIONS
──────────────────────────────────────────────────────────────── */
.page-fade-in {
  animation: pageFadeIn 0.55s var(--ease) both;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:   0.01ms !important;
    transition-duration:  0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* ────────────────────────────────────────────────────────────────
   16. RESPONSIVE
──────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --gutter: 36px; }

  /* Nav */
  .nav-links      { display: none; }
  .nav-hamburger  { display: flex; }

  /* Home grid → single column */
  #home-category-grid { grid-template-columns: 1fr; }

  /* About preview → stack */
  .about-preview {
    grid-template-columns: 1fr;
    padding: 80px var(--gutter);
    gap: 48px;
  }
  .about-preview-image { aspect-ratio: 4/3; }

  /* Gallery cards → single col */
  #gallery-card-grid { grid-template-columns: 1fr; }

  /* Photo grid → 2 cols */
  #photo-grid { columns: 2; }

  /* About content → stack */
  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-sticky { position: static; }

  /* Contact → stack */
  .contact-page {
    grid-template-columns: 1fr;
    gap: 60px;
    min-height: unset;
  }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }

  .hero-title { font-size: clamp(42px, 11vw, 64px); }

  .home-section          { padding: 80px var(--gutter); }
  .home-section-header   { flex-direction: column; align-items: flex-start; gap: 24px; }

  .portfolio-row-two { grid-template-columns: 1fr; }

  #photo-grid  { columns: 1; }

  .site-footer { padding: 32px var(--gutter); flex-direction: column; align-items: flex-start; }
}
