/* =========================================================
   Last Light Studio — Shared styles
   ========================================================= */

/* -----------  Tokens  ----------- */
:root {
  --bg:        #0C0B0A;
  --surface:   #161412;
  --border:    #2A2622;
  --text:      #EFEAE0;
  --muted:     #8A8378;
  --accent:    #E85D2C;
  --highlight: #C9B384;

  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans:  "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  "JetBrains Mono", "SFMono-Regular", "Menlo", monospace;

  --maxw: 1440px;
  --gut:  clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* -----------  Reset  ----------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, picture, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, textarea, select { font: inherit; color: inherit; background: transparent; border: 0; }
ul { margin: 0; padding: 0; list-style: none; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Film grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

/* -----------  Typography helpers  ----------- */
.serif { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }
.mono   { font-family: var(--mono); font-weight: 400; letter-spacing: 0.04em; }
.muted  { color: var(--muted); }
.accent { color: var(--accent); }
.high   { color: var(--highlight); }
.upper  { text-transform: uppercase; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}

p { margin: 0 0 1.1em 0; }

/* -----------  Layout primitives  ----------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}

.section { padding: clamp(72px, 10vw, 140px) 0; }
.section-tight { padding: clamp(48px, 7vw, 96px) 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 32px;
}

.divider {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 0;
}

/* -----------  Navigation  ----------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 11, 10, 0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.nav-logo .dot {
  color: var(--accent);
}

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

.nav-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 0;
  position: relative;
  transition: color 400ms var(--ease);
}

.nav-links a:hover { color: var(--highlight); }

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1px;
  background: var(--text);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px var(--gut) 24px;
    transform: translateY(-110%);
    transition: transform 500ms var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: inline-flex; }
}

/* -----------  Marquee  ----------- */
.marquee {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  padding: 14px 0;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-track span {
  padding: 0 28px;
  display: inline-block;
}

.marquee-track .dot {
  color: var(--accent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -----------  Vertical sidebar text  ----------- */
.sidetext {
  position: fixed;
  left: 14px;
  bottom: 50%;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: left bottom;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  pointer-events: none;
  z-index: 50;
}
.sidetext::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--border);
  vertical-align: middle;
  margin-right: 12px;
}

@media (max-width: 960px) { .sidetext { display: none; } }

/* -----------  Buttons / Links  ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 22px;
  background: var(--accent);
  color: #0C0B0A;
  transition: background 400ms var(--ease), transform 400ms var(--ease);
}

.btn:hover { background: #ff7544; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--highlight); color: var(--highlight); background: transparent; }

.link-mono {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  position: relative;
  transition: gap 400ms var(--ease);
}
.link-mono:hover { gap: 16px; }
.link-mono::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
  transition: opacity 400ms var(--ease);
}
.link-mono:hover::after { opacity: 1; }

/* -----------  Hero (homepage)  ----------- */
.hero {
  position: relative;
  height: calc(100vh - 68px - 42px);
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 30% 80%, rgba(12, 11, 10, 0.85), rgba(12, 11, 10, 0.2) 60%, transparent),
    linear-gradient(180deg, rgba(12, 11, 10, 0.45) 0%, rgba(12, 11, 10, 0.1) 30%, rgba(12, 11, 10, 0.65) 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 32px 0 28px;
}

.hero-meta {
  justify-self: end;
  text-align: right;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 2;
}

.hero-title {
  align-self: end;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  max-width: 14ch;
}

.hero-title .line { display: block; }
.hero-title .line:nth-child(2) { padding-left: 0.8em; }
.hero-title .line:nth-child(3) { padding-left: 0.2em; }

.hero-scroll {
  justify-self: end;
  align-self: end;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  animation: pulse 3.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: translateY(0); }
  50%      { opacity: 1;    transform: translateY(4px); }
}

/* -----------  Bento grid  ----------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.bento .tile { position: relative; overflow: hidden; }

.bento .tile-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.92);
  transition: filter 700ms var(--ease), transform 1200ms var(--ease);
}

.bento .tile:hover .tile-img {
  filter: brightness(1) saturate(1);
  transform: scale(1.015);
}

.bento .tile-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
  background: linear-gradient(0deg, rgba(12, 11, 10, 0.85), transparent);
  pointer-events: none;
}
.bento .tile:hover .tile-meta {
  opacity: 1;
  transform: translateY(0);
}

.bento .tile-meta .t-name { color: var(--text); }
.bento .tile-meta .t-client { color: var(--muted); }

/* tile sizes */
.t-2x2 { grid-column: span 4; aspect-ratio: 16 / 8; }
.t-1x2 { grid-column: span 2; aspect-ratio: 4 / 5; }
.t-1x1 { grid-column: span 2; aspect-ratio: 1 / 1; }
.t-2x1 { grid-column: span 4; aspect-ratio: 16 / 9; }
.t-3x1 { grid-column: span 6; aspect-ratio: 21 / 9; }
.t-port { grid-column: span 2; aspect-ratio: 3 / 4; }
.t-land { grid-column: span 4; aspect-ratio: 3 / 2; }
.t-land-2 { grid-column: span 3; aspect-ratio: 3 / 2; }
.t-sq { grid-column: span 2; aspect-ratio: 1 / 1; }
.t-third { grid-column: span 2; }
.t-twothird { grid-column: span 4; }

@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr 1fr; gap: 12px; }
  .t-2x2, .t-2x1, .t-3x1, .t-land, .t-twothird, .t-land-2 { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .t-1x2, .t-1x1, .t-port, .t-sq, .t-third { grid-column: span 1; aspect-ratio: 3 / 4; }
}

/* -----------  Pull quote section  ----------- */
.quote-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(96px, 14vw, 180px) 0;
}

.quote-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--gut);
}

.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 32px 0;
}

.pull-quote .em { color: var(--highlight); }

.quote-attrib {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* -----------  Contact-sheet (homepage Index)  ----------- */
.sheet {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sheet .cell { position: relative; }
.sheet .cell img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: brightness(0.82);
  transition: filter 600ms var(--ease);
}
.sheet .cell:hover img { filter: brightness(1); }
.sheet .cell .cap {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 760px) { .sheet { grid-template-columns: repeat(2, 1fr); } }

/* -----------  Recognition lists  ----------- */
.recog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 96px);
}
.recog h3 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 32px;
}
.recog ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.005em;
}
.recog ul li:first-child { border-top: 1px solid var(--border); }
@media (max-width: 760px) { .recog { grid-template-columns: 1fr; } }

/* -----------  Big editorial CTA  ----------- */
.editorial-cta {
  position: relative;
  height: clamp(420px, 70vh, 640px);
  overflow: hidden;
  isolation: isolate;
}
.editorial-cta-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1;
}
.editorial-cta::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12, 11, 10, 0.55) 0%, rgba(12, 11, 10, 0.85) 100%);
  z-index: 0;
}
.editorial-cta .inner {
  position: relative; z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(56px, 8vw, 96px);
}
.editorial-cta h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 6.6vw, 96px);
  line-height: 1.04;
  max-width: 16ch;
  margin-bottom: 32px;
}

/* -----------  Page header  ----------- */
.page-header {
  padding: clamp(72px, 10vw, 140px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--border);
}
.page-header .eyebrow { margin-bottom: 24px; }
.page-header h1 {
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.98;
  margin-bottom: 24px;
}
.page-header h1 .it { font-style: italic; color: var(--highlight); }
.page-header .lede {
  max-width: 56ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

/* -----------  Filter pills (work)  ----------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--border);
}
.pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 16px;
  color: var(--muted);
  border: 1px solid transparent;
  position: relative;
  transition: color 400ms var(--ease);
}
.pill:hover { color: var(--text); }
.pill.active {
  color: var(--text);
}
.pill.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 1px; background: var(--accent);
}
.view-toggle {
  display: inline-flex; gap: 4px; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.view-toggle button { padding: 8px 12px; }
.view-toggle button.active { color: var(--text); border: 1px solid var(--border); }

/* -----------  Project case study  ----------- */
.crumbs {
  position: sticky;
  top: 68px;
  z-index: 50;
  background: rgba(12, 11, 10, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.crumbs-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.crumbs-inner a:hover { color: var(--text); }

.case-hero {
  width: 100%;
  height: 80vh;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--border);
}
.meta-grid dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 20px;
  row-gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.meta-grid dt { color: var(--muted); }
.meta-grid dd { margin: 0; color: var(--text); }
@media (max-width: 760px) { .meta-grid { grid-template-columns: 1fr; } }

.intro {
  max-width: 720px;
  padding: clamp(64px, 8vw, 112px) 0;
}
.intro h2 {
  font-size: clamp(32px, 4.6vw, 56px);
  margin-bottom: 36px;
  line-height: 1.08;
}
.intro p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
}

.seq {
  display: grid;
  gap: 18px;
  padding-bottom: clamp(48px, 6vw, 96px);
}
.seq-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
.seq-row.two-up { grid-template-columns: 1fr 1fr; }
.seq-row.three-up { grid-template-columns: 1fr 1fr 1fr; }
.seq-row.land-port { grid-template-columns: 2fr 1fr; }
.seq img { width: 100%; height: 100%; object-fit: cover; }
.seq .full { aspect-ratio: 16/9; }
.seq .port { aspect-ratio: 3/4; }
.seq .sq { aspect-ratio: 1/1; max-width: 720px; margin: 0 auto; }
.seq .wide { aspect-ratio: 21/9; }
@media (max-width: 760px) {
  .seq-row.two-up, .seq-row.three-up, .seq-row.land-port { grid-template-columns: 1fr; }
}

.next-project {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: clamp(72px, 10vw, 140px) 0;
}
.next-project .inner { max-width: 880px; }
.next-project .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.next-project h2 {
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 12px;
}
.next-project .sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}

/* -----------  Studio (about) page  ----------- */
.founder {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(28px, 6vw, 96px);
  padding: clamp(64px, 8vw, 112px) 0;
  align-items: start;
}
.founder img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.founder .body p { font-size: 18px; line-height: 1.7; }
.founder .body p + p { margin-top: 1em; }
@media (max-width: 860px) { .founder { grid-template-columns: 1fr; } }

.strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding: clamp(48px, 6vw, 80px) 0 16px;
}
.strip img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.strip-cap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 760px) { .strip { grid-template-columns: 1fr; } }

.collab {
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid var(--border);
}
.collab h2 {
  font-size: clamp(28px, 4vw, 44px);
  max-width: 22ch;
  margin-bottom: 48px;
}
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.collab-grid .item {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.collab-grid .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.collab-grid .name {
  font-family: var(--serif);
  font-size: 24px;
}
@media (max-width: 760px) { .collab-grid { grid-template-columns: 1fr; } }

.press {
  padding: clamp(48px, 6vw, 80px) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 96px);
  border-top: 1px solid var(--border);
}
.press h3 { font-size: 28px; margin-bottom: 24px; }
.press ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text);
}
.press ul li:first-child { border-top: 1px solid var(--border); }
@media (max-width: 760px) { .press { grid-template-columns: 1fr; } }

.center-cta {
  text-align: center;
  padding: clamp(72px, 10vw, 140px) 0;
}
.center-cta h2 {
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 28px;
}

/* -----------  Services  ----------- */
.disc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 112px) 0;
  border-bottom: 1px solid var(--border);
}
.disc:nth-child(even) > .img { order: 2; }
.disc img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.disc .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.disc h3 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 24px;
}
.disc p {
  max-width: 48ch;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.disc dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 16px;
  row-gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.disc dt { color: var(--muted); }
.disc dd { margin: 0; }
@media (max-width: 860px) {
  .disc { grid-template-columns: 1fr; }
  .disc:nth-child(even) > .img { order: 0; }
}

.steps {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(72px, 10vw, 140px) 0;
}
.steps h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 56px;
  max-width: 22ch;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
.steps-grid .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.steps-grid .step h4 {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: var(--serif);
}
.steps-grid .step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}
@media (max-width: 760px) { .steps-grid { grid-template-columns: 1fr; } }

.no-list {
  padding: clamp(56px, 7vw, 96px) 0;
}
.no-list h2 {
  font-style: italic;
  font-size: clamp(32px, 4.4vw, 52px);
  margin-bottom: 32px;
}
.no-list ul li {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.no-list ul li:last-child { border-bottom: 1px solid var(--border); }

/* -----------  Journal  ----------- */
.feature {
  padding: clamp(48px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--border);
}
.feature .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  margin-top: 24px;
}
.feature h2 {
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 20px;
  max-width: 22ch;
}
.feature .excerpt {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 24px;
}
.feature img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px) clamp(24px, 4vw, 48px);
  padding: clamp(48px, 7vw, 96px) 0;
}
.journal-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.88); transition: filter 600ms var(--ease); }
.journal-card:hover img { filter: brightness(1); }
.journal-card .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 18px 0 10px;
}
.journal-card h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 12px;
}
.journal-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 48ch;
}
@media (max-width: 760px) { .journal-grid { grid-template-columns: 1fr; } }

.signup {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: clamp(72px, 10vw, 140px) 0;
  text-align: center;
}
.signup h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
}
.signup p {
  max-width: 56ch;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 16px;
}
.signup-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.signup-form input {
  flex: 1;
  border-bottom: 1px solid var(--border);
  padding: 14px 4px;
  font-size: 15px;
}
.signup-form input::placeholder { color: var(--muted); }
.signup-form input:focus { outline: none; border-bottom-color: var(--highlight); }
.signup-form button {
  background: var(--accent);
  color: #0C0B0A;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 22px;
  transition: background 400ms var(--ease);
}
.signup-form button:hover { background: #ff7544; }
.signup-fineprint {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 18px;
}
.signup-success {
  display: none;
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--highlight);
  font-size: 18px;
}
.signup.success .signup-form { display: none; }
.signup.success .signup-success { display: block; }
.signup.success .signup-fineprint { display: none; }

/* -----------  Contact  ----------- */
.contact-hero {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(56px, 7vw, 96px) 0;
  align-items: stretch;
}
.contact-hero img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.contact-hero .copy { padding: clamp(8px, 2vw, 24px) 0; align-self: center; }
.contact-hero h1 {
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98;
  margin: 12px 0 28px;
}
.contact-hero p {
  font-size: 17px;
  line-height: 1.65;
  max-width: 50ch;
  color: var(--muted);
}
@media (max-width: 860px) {
  .contact-hero { grid-template-columns: 1fr; }
  .contact-hero img { min-height: 360px; aspect-ratio: 5/4; }
}

.form {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0 clamp(72px, 9vw, 120px);
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; margin-bottom: 28px; }
.form .row.three { grid-template-columns: 1fr 1fr 1fr; }
.form .field { display: flex; flex-direction: column; }
.form .field.full { grid-column: 1 / -1; }
.form label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.form input,
.form select,
.form textarea {
  border-bottom: 1px solid var(--border);
  padding: 12px 2px;
  font-size: 16px;
  color: var(--text);
  transition: border-color 400ms var(--ease);
}
.form select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%238A8378' stroke-width='1.2' fill='none'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 28px; }
.form select option { background: var(--surface); color: var(--text); }
.form textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.form input:focus,
.form select:focus,
.form textarea:focus { outline: none; border-bottom-color: var(--highlight); }
.form .submit-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 12px; }
.form .submit-row .reassure {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 700px) {
  .form .row, .form .row.three { grid-template-columns: 1fr; }
}

.form-success {
  display: none;
  text-align: center;
  padding: clamp(72px, 10vw, 140px) 0;
}
.form-success h2 {
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 18px;
  color: var(--highlight);
}
.form-success p { color: var(--muted); max-width: 44ch; margin: 0 auto; }
.contact-page.sent .form { display: none; }
.contact-page.sent .form-success { display: block; }

.studio-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid var(--border);
}
.studio-cols h3 { font-size: 22px; margin-bottom: 14px; }
.studio-cols p { font-size: 15px; line-height: 1.7; color: var(--muted); }
.studio-cols .small {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
@media (max-width: 760px) { .studio-cols { grid-template-columns: 1fr; } }

.closing {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: clamp(20px, 2.6vw, 28px);
  padding: clamp(64px, 8vw, 112px) 0;
}

/* -----------  Footer  ----------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: clamp(64px, 8vw, 112px) 0 0;
  margin-top: clamp(56px, 7vw, 96px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.footer-mark {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1;
  margin-bottom: 16px;
}
.footer-tag {
  font-style: italic;
  font-family: var(--serif);
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}
.footer-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin: 0 0 18px;
}
.footer ul li { padding: 6px 0; }
.footer ul li a { font-family: var(--serif); font-size: 22px; transition: color 400ms var(--ease); }
.footer ul li a:hover { color: var(--highlight); }
.footer-form { display: flex; gap: 0; margin-bottom: 18px; }
.footer-form input {
  flex: 1; border-bottom: 1px solid var(--border); padding: 10px 4px; font-size: 14px;
}
.footer-form input::placeholder { color: var(--muted); }
.footer-form input:focus { outline: none; border-bottom-color: var(--highlight); }
.footer-form button {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--accent); color: #0C0B0A; padding: 10px 14px;
}
.footer-socials {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.footer-socials a { color: var(--muted); }
.footer-socials a:hover { color: var(--highlight); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-bottom .links { display: flex; gap: 18px; }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* -----------  Reveal-on-scroll  ----------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* -----------  Selection  ----------- */
::selection { background: var(--accent); color: #0C0B0A; }
