/* ============================================================
   THE ONA HUB — scattered "old web" stylesheet
   ------------------------------------------------------------
   The desktop layout is drawn on a fixed 1400 x 1560 "stage"
   (see .stage). script.js scales that stage to fit any screen
   width, so tile coordinates never collide. Below ~820px the
   media query at the bottom collapses everything into a stack.

   Sections:
     1. Reset & tokens
     2. Type & colour helpers
     3. Stage (fixed canvas that gets scaled)
     4. Masthead
     5. Scatter field + SCATTER POSITIONS  <-- edit tiles here
     6. Placeholder image blocks
     7. Right rail (TODAY / SOON / NOW / FRIENDS)
     8. Footer bar (full width, never scaled)
     9. Responsive stack (<= 820px)
   ============================================================ */

/* ---------- 1. RESET & TOKENS ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper:  #fbf7ee;   /* warm playful paper */
  --ink:    #111111;
  --blue:   #2438f0;
  --pink:   #ff2d8f;
  --orange: #ff6a13;
  --purple: #7b2ff7;
  --green:  #12b886;
  --red:    #ff2e2e;
  --yellow: #ffd21e;
  --soft-bg:#c4d0ef;   /* light "SOON"/friends card */
  --display: "Arial Black", "Arial Bold", Helvetica, Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.35;
  overflow-x: hidden;
}
a { color: inherit; }
/* Real photography. Tiles are 4:3, rail cards 16:10 — the box is fixed by
   aspect-ratio so nothing reflows while the file loads, and object-fit crops
   any export that doesn't match the ratio exactly. */
/* height:auto is required — the width/height attributes on each <img> would
   otherwise pin the box to the file's full pixel height and beat aspect-ratio */
img.tile-img { display: block; width: 100%; height: auto; aspect-ratio: 4/3;   object-fit: cover; border: 1px solid rgba(0,0,0,.15); }
img.card-img { display: block; width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover; margin-bottom: 6px; }

/* ---------- 2. TYPE & COLOUR HELPERS ---------- */
.label {
  font-family: var(--display);
  font-weight: 900;
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: 0.14em;
  white-space: nowrap;   /* labels stay on one line and may overflow the tile, like the reference */
  margin-bottom: 12px;
  text-transform: none;
}
.desc { font-size: 14px; max-width: 270px; margin-top: 12px; }

.c-blue{color:var(--blue)} .c-pink{color:var(--pink)} .c-orange{color:var(--orange)}
.c-purple{color:var(--purple)} .c-green{color:var(--green)} .c-red{color:var(--red)}
.c-black,.c-ink{color:var(--ink)}

/* ---------- 3. STAGE (fixed canvas, scaled by JS) ---------- */
.stage-wrap { position: relative; overflow: hidden; }
.stage {
  position: relative;
  width: 1400px;
  height: 1250px;   /* grew from 1180 to fit the logo above the rail */
  transform-origin: top left;
}

/* ---------- 3b. LOGO MARK ----------
   Sits in the top-left corner above the rail. The rail is pushed down
   by exactly this block's height + gap (see .rail top), and .stage
   height grew to match — keep STAGE_H in script.js in sync.        */
/* 35px wide x 46px tall — the height matches .menu-btn (54x46) so the
   mark and the hamburger read as a pair across the top on mobile */
.logo { position: absolute; top: 24px; left: 20px; width: 35px; }
.logo img { display: block; width: 100%; height: auto; }

/* ---------- 4. MASTHEAD ---------- */
/* rail sits on the LEFT (x 20–320); masthead + scatter live to its right */
.masthead { position: absolute; top: 22px; left: 360px; width: 1010px; }
.title {
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.9;
  font-size: 88px;
  letter-spacing: 0.08em;   /* controlled spacing instead of literal spaces */
  white-space: nowrap;      /* keep "THE ONA HUB" on one row on laptops/desktop */
  text-transform: uppercase;
}
.title-accent { color: var(--pink); }
.tagline {
  font-family: var(--display);
  font-weight: 900;
  /* 27px is the largest that keeps the tagline on one line inside the
     1010px masthead — at 30px "LENS-BASED MEDIA PRACTICE & RESEARCH"
     needs 1087px and wraps, leaving RESEARCH stranded on its own row */
  font-size: 27px;
  margin-top: 10px;
  text-transform: uppercase;
}

/* ---------- 5. SCATTER FIELD ---------- */
.scatter { position: absolute; inset: 0; }
.tile { position: absolute; width: 270px; }
.label { transition: transform .12s ease; }
.tile:hover .label { transform: translate(-3px, -3px); }

/* tiles + rail cards link out to the section pages */
.label a { color: inherit; text-decoration: none; }
.ph-link { display: block; text-decoration: none; }
.desc-more {
  display: inline-block; margin-top: 10px;
  font-family: var(--display); font-weight: 900;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  border-bottom: 2px solid var(--ink); padding-bottom: 2px;
}
.desc-more:hover { color: var(--pink); border-bottom-color: var(--pink); }
.card-title a { color: inherit; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 2px; }

/* --- SCATTER POSITIONS (coords on the 1400x1180 canvas) ---
   6 tiles, all right of the left rail (x >= 360).            */
.tile--projects  { left: 380px;  top: 330px;  transform: rotate(-1deg); }
.tile--programme { left: 780px;  top: 300px;  transform: rotate(1.5deg); }
.tile--archive   { left: 1110px; top: 380px;  transform: rotate(-1.5deg); }
.tile--about     { left: 400px;  top: 790px;  transform: rotate(1deg); }
.tile--contact   { left: 790px;  top: 810px;  transform: rotate(-1deg); }
.tile--support   { left: 1120px; top: 780px;  transform: rotate(1.5deg); }

/* ---------- 6. PLACEHOLDER IMAGE BLOCKS ----------
   Every slot on the homepage now carries a real photograph, so nothing
   below is in use. Kept for adding a new tile before its art exists:
     <div class="ph ph-a"><span>image</span></div>
   Swap it for a <picture> once the file lands in images/.            */
.ph {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(0,0,0,.15);
  display: grid;
  place-items: center;
}
.ph span {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.ph-a { background: linear-gradient(135deg,#2438f0,#7b2ff7); }
.ph-b { background: linear-gradient(135deg,#ff2d8f,#ff6a13); }
.ph-c { background: linear-gradient(135deg,#ff6a13,#ffd21e); }
.ph-d { background: linear-gradient(135deg,#7b2ff7,#2438f0); }
.ph-e { background: linear-gradient(135deg,#12b886,#2438f0); }
.ph-f { background: linear-gradient(135deg,#111,#444); }
.ph-g { background: linear-gradient(135deg,#ff2e2e,#ff2d8f); }

/* ---------- 7. LEFT RAIL ---------- */
.rail {
  position: absolute;
  top: 90px;         /* clears the logo mark above it */
  left: 20px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card { padding: 14px; }
.card--dark    { background: #0c0c0c; color: #fff; }
.card--soft    { background: var(--soft-bg); color: var(--ink); }
/* the "BECOME AN ONA" art is now a supplied image, so this card uses the
   same 14px padding as the rest of the rail instead of the old inset type */
.card--friends { background: var(--soft-bg); text-align: center; padding: 14px; }

.card-kicker {
  font-family: var(--display); font-weight: 900;
  letter-spacing: .28em; font-size: 30px; color: #fff; margin-bottom: 10px;
}
.card--soft .card-kicker { color: var(--purple); }
.card-title { font-weight: 700; font-size: 13px; letter-spacing: .05em; margin: 8px 0 4px; text-transform: none; }
.card-body  { font-size: 12.5px; }

/* "Watch conversation →" style link inside a dark card */
.card-link {
  display: inline-block; margin-top: 10px;
  font-family: var(--display); font-weight: 900;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--yellow); text-decoration: none;
  border-bottom: 2px solid var(--yellow); padding-bottom: 2px;
}
.card-link:hover { color: #fff; border-bottom-color: #fff; }

/* Newsletter subscribe row inside the ONA NOTES card */
.card-sub { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.card-sub input {
  flex: 1; min-width: 0; background: none; border: none;
  border-bottom: 2px dotted rgba(255,255,255,.6);
  color: #fff; font-family: var(--body); font-size: 14px; padding: 3px 0;
}
.card-sub input::placeholder { color: rgba(255,255,255,.5); }
.card-sub input:focus { outline: none; border-bottom-color: var(--yellow); }
.card-sub button {
  font-family: var(--display); font-weight: 900;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  background: var(--yellow); color: #0c0c0c; border: none;
  padding: 6px 12px; cursor: pointer;
}
.card-sub button:hover { background: var(--pink); color: #fff; }
.ph-card { aspect-ratio: 16/10; margin-bottom: 6px; background: linear-gradient(135deg,#ff6a13,#ff2d8f); }
.ph-soft { background: linear-gradient(135deg,#7b2ff7,#12b886); }

/* ---------- 8. FOOTER BAR ---------- */
.footer { display: flex; align-items: stretch; border-top: 1px solid rgba(0,0,0,.15); }
.footer-left {
  background: #0c0c0c; color: #fff; flex: 1 1 40%; min-width: 0;
  padding: 22px 24px; display: flex; flex-direction: column; gap: 6px; justify-content: center;
}
.footer-right {
  background: #4a4a4a; color: #eee; flex: 1 1 60%; min-width: 0;
  padding: 22px 24px; font-size: 13px;
  display: flex; flex-direction: column; gap: 4px; justify-content: center;
}
.footer-right a { text-decoration: underline; }
.ftag { font-weight: 700; letter-spacing: .2em; margin-right: 8px; }

.fform { margin: 0; }
.fbig {
  font-family: var(--display); font-weight: 900;
  font-size: 34px; display: flex; align-items: baseline; gap: 14px;
  flex-wrap: wrap;
}
.fbig input {
  flex: 1; min-width: 0; background: none; border: none;
  border-bottom: 2px dotted rgba(255,255,255,.6);
  color: #fff; font-family: var(--body); font-size: 18px; padding: 2px 0;
}
.fbig input::placeholder { color: rgba(255,255,255,.5); }
.fbig input:focus { outline: none; border-bottom-color: var(--yellow); }

/* ---------- 8b. MOBILE MENU (hidden on desktop) ---------- */
.menu-btn { display: none; }
.nav-overlay { display: none; }

/* ============================================================
   9. RESPONSIVE STACK (<= 820px)
   Mobile becomes a clean centred stack (like the reference):
   masthead, then each section (centred label + full-width image
   + description), then the FRIENDS/TODAY cards. A hamburger at
   top-right opens a full-screen nav overlay.
   ============================================================ */
@media (max-width: 820px) {
  .stage-wrap { overflow: visible; }
  .stage {
    position: static;
    width: 100%; max-width: 100%; height: auto;
    transform: none !important;
    padding: 16px 0 10px;   /* the logo now occupies this row, opposite
                               the hamburger, so no clearance needed */
  }

  /* back into normal flow so it leads the stack instead of pinning
     itself to .stage-wrap and landing on top of the masthead. Same
     35px as desktop, and top:16px puts it level with .menu-btn. */
  .logo { position: static; width: 35px; margin: 0 20px 18px; }

  .masthead {
    position: static; inset: auto;
    width: 100%; padding: 0 20px; margin-bottom: 34px;
  }
  .title { font-size: clamp(30px, 9vw, 84px); letter-spacing: 0.04em; white-space: normal; }
  .tagline { font-size: clamp(14px, 4.2vw, 30px); }

  .scatter {
    position: static; inset: auto;
    width: 100%; padding: 0 20px;
    display: flex; flex-direction: column; align-items: center; gap: 46px;
  }
  .tile {
    position: static; inset: auto;
    width: 100%; max-width: 460px;
    transform: none !important;
    text-align: center;
  }
  .label { white-space: normal; }        /* allow wrap on narrow screens */
  .desc { max-width: none; text-align: left; margin-top: 12px; }

  /* rail cards stack below the sections, still centred */
  .rail {
    position: static; inset: auto;
    width: 100%; max-width: 460px;
    margin: 52px auto 0; padding: 0 20px;
  }

  .footer { flex-direction: column; }
  .fbig { font-size: 28px; }

  /* ---- hamburger button ---- */
  .menu-btn {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    position: fixed; top: 16px; right: 16px; z-index: 30;
    width: 54px; height: 46px; padding: 0 11px;
    background: #0c0c0c; border: none; cursor: pointer;
  }
  .menu-btn span { display: block; height: 3px; background: #fff; border-radius: 2px; }
  .menu-btn[aria-expanded="true"] { background: var(--pink); }

  /* ---- full-screen nav overlay ---- */
  .nav-overlay {
    display: flex; flex-direction: column; gap: 8px;
    position: fixed; inset: 0; z-index: 25;
    background: var(--paper);
    padding: 90px 24px 40px;
    transform: translateY(-100%);
    transition: transform .28s ease;
    overflow-y: auto;
  }
  .nav-overlay.is-open { transform: translateY(0); }
  .nav-overlay a {
    font-family: var(--display); font-weight: 900;
    font-size: clamp(30px, 9vw, 52px);
    letter-spacing: .06em; text-decoration: none; text-transform: none;
  }
  .nav-overlay a:nth-child(1){color:var(--blue)}   .nav-overlay a:nth-child(2){color:var(--orange)}
  .nav-overlay a:nth-child(3){color:var(--purple)} .nav-overlay a:nth-child(4){color:var(--green)}
  .nav-overlay a:nth-child(5){color:var(--ink)}    .nav-overlay a:nth-child(6){color:var(--blue)}
}

/* ============================================================
   10. INTERIOR PAGES (projects / programme / about / contact /
   archive / support). NOT scattered — a clean, readable page
   that reuses the palette + display type. Shared by all six
   section pages; edit once here.
   ============================================================ */
.interior { max-width: 1040px; margin: 0 auto; padding: 22px 24px 0; }

/* top bar: wordmark home link + section nav */
.int-head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 10px 24px; padding: 6px 0 16px; border-bottom: 3px solid var(--ink);
}
.int-home {
  font-family: var(--display); font-weight: 900;
  font-size: 24px; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
}
.int-nav { display: flex; flex-wrap: wrap; gap: 4px 18px; }
.int-nav a {
  font-family: var(--display); font-weight: 900;
  font-size: 13px; letter-spacing: .12em; text-transform: none;
  text-decoration: none; color: var(--ink); opacity: .5; padding: 2px 0;
}
.int-nav a:hover { opacity: 1; }
.int-nav a[aria-current="page"] { opacity: 1; border-bottom: 3px solid currentColor; }

/* hero */
.int-hero { padding: 48px 0 30px; }
.int-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(46px, 9vw, 104px); line-height: .9;
  letter-spacing: .04em; text-transform: none;
}
.int-lede { font-size: clamp(16px, 2.4vw, 21px); max-width: 640px; margin-top: 16px; }

/* sub-item grid */
.int-list {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  padding-bottom: 56px;
}
.int-item {
  position: relative; border: 1px solid rgba(0,0,0,.16);
  padding: 20px 20px 22px; background: rgba(255,255,255,.5);
  display: flex; flex-direction: column; gap: 8px;
}
.int-item .num {
  font-family: var(--display); font-weight: 900;
  font-size: 14px; letter-spacing: .2em;
}
.int-item h2 {
  font-family: var(--display); font-weight: 900;
  font-size: 24px; line-height: 1; letter-spacing: .02em; text-transform: none;
}
.int-item p { font-size: 14px; }
/* cards that sit under a sub-heading use h3, so the page keeps one
   heading order — style it to match the h2 above */
.int-item h3 {
  font-family: var(--display); font-weight: 900;
  font-size: 21px; line-height: 1; letter-spacing: .02em; text-transform: none;
}
.int-item .item-sub { font-size: 12.5px; font-weight: 700; opacity: .7; }
.int-soon {
  margin-top: 6px; align-self: flex-start;
  font-family: var(--display); font-weight: 900;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  background: var(--ink); color: var(--paper); padding: 4px 9px;
}
/* link out of a card — "Support this project", "Fund the work" */
.int-item .item-cta {
  margin-top: 4px; align-self: flex-start;
  font-family: var(--display); font-weight: 900;
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  border-bottom: 2px solid var(--ink); padding-bottom: 2px;
}
.int-item .item-cta:hover { color: var(--pink); border-bottom-color: var(--pink); }

/* figure at the top of a card — the 1080x810 (4:3) exports from
   figure-brief.md. Bled out to the card's edges so the image reads as
   the card's face rather than a picture parked inside a box. height:auto
   is load-bearing: without it the width/height attributes pin the box to
   the file's full pixel height and beat aspect-ratio. */
img.item-fig {
  display: block; width: calc(100% + 40px); margin: -20px -20px 6px;
  height: auto; aspect-ratio: 4/3; object-fit: cover;
  border-bottom: 1px solid rgba(0,0,0,.16);
}

/* ---------- 10b. FUNDING BLOCKS (fund.html) ----------
   One group per project, each offering the same three routes:
   Paystack and Stripe. Hard edges to match the rest.               */
.fund-group { border-top: 3px solid var(--ink); padding: 30px 0 42px; }
.fund-group:last-of-type { padding-bottom: 56px; }
.fund-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(24px, 4.4vw, 38px); line-height: .98;
  letter-spacing: .03em; text-transform: none;
}
.fund-sub { font-size: 14.5px; max-width: 620px; margin-top: 8px; }

.fund-options {
  display: grid; gap: 14px; margin-top: 20px;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
}
/* standing alone on a single-work page rather than nested in a
   .fund-group, so it needs its own clearance before the footer */
section.fund-options { padding-bottom: 56px; }
.fund-option {
  border: 1px solid rgba(0,0,0,.18);
  background: rgba(255,255,255,.5);
  padding: 18px 18px 20px;
  display: flex; flex-direction: column; gap: 9px;
}
.fund-method {
  font-family: var(--display); font-weight: 900;
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
}
.fund-option h3 {
  font-family: var(--display); font-weight: 900;
  font-size: 18px; line-height: 1; letter-spacing: .02em; text-transform: none;
}
.fund-option p { font-size: 13.5px; }

/* the pay button — solid block, mirrors .card-sub button on the homepage */
.fund-btn {
  margin-top: auto; align-self: flex-start;
  font-family: var(--display); font-weight: 900;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  padding: 10px 15px; text-decoration: none; border: none; cursor: pointer;
}
.fund-btn:hover { background: var(--pink); color: #fff; }

/* sub-heading inside an interior page */
.int-subhead {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(19px, 3.4vw, 26px); letter-spacing: .04em; text-transform: none;
  border-bottom: 3px solid var(--ink); padding-bottom: 8px;
  margin-bottom: 18px;
}

/* figure under an interior hero — same 4:3 export, full column width */
img.int-fig {
  display: block; width: 100%; max-width: 660px; height: auto;
  aspect-ratio: 4/3; object-fit: cover; margin-bottom: 34px;
  border: 1px solid rgba(0,0,0,.15);
}

/* ---------- 10d. PROJECT DETAIL PAGES ----------
   One page per project: title, subtitle, credits line, then prose.   */
.proj-meta {
  font-size: 13px; letter-spacing: .04em; opacity: .72;
  max-width: 660px; margin-top: 10px;
}
.proj-themes {
  font-size: 13px; letter-spacing: .04em; font-weight: 700;
  max-width: 660px; margin-top: 6px;
}
/* short list of named strands (the residency types) */
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin-bottom: 8px; }
.pill-list li {
  font-size: 13.5px; font-weight: 700;
  border: 1px solid rgba(0,0,0,.28); padding: 7px 13px;
}

/* standalone call to action, outside a card */
.int-cta {
  display: inline-block; margin-right: 14px;
  font-family: var(--display); font-weight: 900;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  border-bottom: 3px solid var(--ink); padding-bottom: 3px;
}
.int-cta:hover { color: var(--pink); border-bottom-color: var(--pink); }
.int-ctas { display: flex; flex-wrap: wrap; gap: 18px; padding-bottom: 56px; }

/* running prose on an interior page (the manifesto), held to a
   readable measure rather than the full 1040px container */
.int-prose { display: flex; flex-direction: column; gap: 16px; max-width: 660px; padding-bottom: 56px; }
.int-prose p { font-size: clamp(15px, 1.9vw, 17px); }
.int-prose h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(18px, 3vw, 23px); letter-spacing: .03em; text-transform: none;
  margin-top: 14px;
}
.int-prose blockquote {
  border-left: 6px solid var(--purple); padding-left: 16px;
  font-size: clamp(17px, 2.4vw, 21px); font-weight: 700;
}

/* ---------- 10c. CONVERSATION FORM ---------- */
.int-form {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 620px; padding-bottom: 20px;
}
.int-form label { display: flex; flex-direction: column; gap: 6px; }
.int-form .flabel {
  font-family: var(--display); font-weight: 900;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
}
.int-form input,
.int-form textarea {
  font-family: var(--body); font-size: 16px; color: var(--ink);
  background: none; border: 2px solid var(--ink); padding: 10px 12px;
  width: 100%;
}
.int-form textarea { min-height: 150px; resize: vertical; }
.int-form input:focus,
.int-form textarea:focus { outline: 3px solid var(--pink); outline-offset: 1px; }
.int-form button {
  align-self: flex-start;
  font-family: var(--display); font-weight: 900;
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  border: none; padding: 12px 20px; cursor: pointer;
}
.int-form button:hover { background: var(--pink); color: #fff; }

/* archive category chips */
.int-chips { display: flex; flex-wrap: wrap; gap: 12px; padding-bottom: 22px; }
.int-chips a {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(18px, 3.4vw, 30px); letter-spacing: .06em; text-transform: none;
  text-decoration: none; color: var(--ink);
  border: 2px solid var(--ink); padding: 9px 16px;
  transition: transform .12s ease, background .12s ease, color .12s ease;
}
.int-chips a:hover { background: var(--ink); color: var(--paper); transform: translate(-2px,-2px); }

/* contact block */
.int-contact { padding-bottom: 56px; display: grid; gap: 12px; max-width: 620px; }
.int-contact .row { display: flex; gap: 12px; flex-wrap: wrap; align-items: baseline; }
.int-contact .ftag { font-family: var(--display); font-weight: 900; letter-spacing: .16em; text-transform: uppercase; font-size: 13px; min-width: 130px; }
.int-contact a { font-weight: 700; }

.int-note { font-size: 13px; opacity: .7; padding-bottom: 40px; }

/* footer */
.int-foot {
  border-top: 3px solid var(--ink); padding: 22px 0 44px;
  display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: baseline; justify-content: space-between;
}
.int-foot a {
  font-family: var(--display); font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none; color: var(--ink);
}
.int-foot a:hover { color: var(--pink); }
.int-foot p { font-size: 13px; opacity: .7; }

@media (max-width: 560px) {
  .int-list { grid-template-columns: 1fr; }
  .int-head { gap: 6px 16px; }
}
