/* ==========================================================
   Craftpine — cool palette, design-led, mixed light/dark
   ========================================================== */

:root {
  --paper:   #f5f6f7;       /* off-white */
  --paper-2: #eceef1;       /* light grey */
  --paper-3: #dde1e6;       /* slate-tinted grey */
  --ink:     #14171c;       /* near-black */
  --ink-2:   #20242b;
  --muted:   #6b7280;
  --line:    rgba(20, 23, 28, 0.10);
  --accent:  #5b7fa6;       /* slate blue */
  --accent-2:#7d9fc1;
  --navy:    #0e1218;
  --navy-2:  #070a0f;

  --serif: "Instrument Serif", "Times New Roman", Times, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --radius:  20px;
  --r-sm:    12px;
  --gutter:  clamp(20px, 4vw, 64px);
  --container-max: 1320px;

  --glass-bg-light:  rgba(245, 246, 247, 0.55);
  --glass-bd-light:  rgba(255, 255, 255, 0.6);
  --glass-bg-dark:   rgba(14, 18, 24, 0.55);
  --glass-bd-dark:   rgba(255, 255, 255, 0.14);
  --glass-shadow:    0 30px 60px -20px rgba(8, 12, 20, 0.30), 0 8px 24px -10px rgba(8, 12, 20, 0.20);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.mono { font-family: var(--mono); font-weight: 400; letter-spacing: 0.02em; font-size: 0.86em; }
.alt { color: var(--accent); }
.muted { color: var(--muted); }

/* ----------------------------------------------------------
   Glass surfaces
   ---------------------------------------------------------- */
.glass {
  background: var(--glass-bg-light);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid var(--glass-bd-light);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}
.cinematic .glass,
.contact .glass {
  background: var(--glass-bg-dark);
  border-color: var(--glass-bd-dark);
  color: var(--paper);
}

/* ----------------------------------------------------------
   Nav
   ---------------------------------------------------------- */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 10px 18px 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.brand .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(91, 127, 166, 0.20);
}
.nav-links { display: flex; gap: 22px; }
.nav-links a { opacity: 0.78; transition: opacity .2s ease; }
.nav-links a:hover { opacity: 1; }

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary {
  background: var(--ink);
  color: var(--paper);
}
.btn.primary:hover { background: var(--accent); }
.btn.ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.large { padding: 18px 28px; font-size: 16px; }

.cinematic .btn.ghost,
.contact .btn.ghost {
  border-color: rgba(255,255,255,0.45);
  color: var(--paper);
}
.cinematic .btn.ghost:hover,
.contact .btn.ghost:hover { background: var(--paper); color: var(--ink); }

/* ----------------------------------------------------------
   Typography
   ---------------------------------------------------------- */
.kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.kicker.dark { color: rgba(255,255,255,0.65); }

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

/* Display sizes — Instrument Serif (upright only) */
.display-xl,
.display-l {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;            /* enforce no italic */
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.display-xl {
  font-size: clamp(56px, 8.5vw, 116px);
  line-height: 0.98;
}
.display-l {
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.04;
}
.display-xl .alt,
.display-l .alt { color: var(--accent); }

.lede,
.cine-lede,
.contact-lede {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  font-weight: 400;
  max-width: 56ch;
  color: var(--ink-2);
  margin: 0 0 32px;
}
.cine-lede { color: rgba(245, 246, 247, 0.85); }
.contact-lede { color: rgba(245, 246, 247, 0.85); }

.section-head {
  margin: 0 auto 56px;
  max-width: 880px;
}
.section-head .display-l { margin-bottom: 16px; }
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
}

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px var(--gutter) 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.55) brightness(0.62);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 70% at 15% 30%, rgba(7, 10, 15, 0.55), rgba(7, 10, 15, 0) 70%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.45) 0%, rgba(7, 10, 15, 0.78) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  width: 100%;
  color: var(--paper);
}
.hero .display-xl { color: var(--paper); }
.hero .display-xl .alt { color: #a9c1de; }
.hero .lede { color: rgba(245, 246, 247, 0.88); }
.hero .eyebrow { color: rgba(245, 246, 247, 0.65); }
.hero .btn.ghost { border-color: rgba(255,255,255,0.55); color: var(--paper); }
.hero .btn.ghost:hover { background: var(--paper); color: var(--ink); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-credit {
  position: absolute;
  bottom: 28px; right: var(--gutter);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 246, 247, 0.55);
  z-index: 2;
}

/* ----------------------------------------------------------
   Manifesto
   ---------------------------------------------------------- */
.manifesto {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--paper);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.manifesto-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--glass-shadow);
}
.manifesto-img img { width: 100%; height: 100%; object-fit: cover; }
.manifesto-img .img-meta {
  position: absolute;
  bottom: 18px; left: 18px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
}
.manifesto-card { padding: 8px 8px 8px 0; }
.manifesto-text {
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.rule {
  height: 1px;
  background: var(--line);
  margin: 36px 0 24px;
}
.manifesto-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.manifesto-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}
.mono-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ----------------------------------------------------------
   Cinematic sections
   ---------------------------------------------------------- */
.cinematic {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.cine-bg { position: absolute; inset: 0; z-index: 0; }
.cine-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}
.cine-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.62) 0%, rgba(7, 10, 15, 0.78) 100%),
    radial-gradient(60% 50% at 80% 20%, rgba(91, 127, 166, 0.18), transparent 60%);
}
.cinematic.dusk .cine-bg::after {
  background:
    linear-gradient(180deg, rgba(5, 8, 12, 0.7) 0%, rgba(5, 8, 12, 0.85) 100%),
    radial-gradient(60% 50% at 20% 80%, rgba(125, 159, 193, 0.18), transparent 60%);
}
.cine-inner { position: relative; z-index: 2; }
.container.cine-inner.narrow { max-width: 940px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.cine-list { padding: clamp(28px, 3vw, 44px); }
.bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.bullets li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.bullets li:last-child { border-bottom: none; padding-bottom: 0; }
.bullets li .mono {
  color: var(--accent-2);
  font-size: 13px;
  padding-top: 4px;
}
.bullets li strong {
  display: block;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--paper);
}
.bullets li p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245, 246, 247, 0.7);
}

/* Steps */
.steps { display: flex; flex-direction: column; }
.steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.steps li:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
.step-no {
  color: var(--accent-2);
  font-size: 14px;
  letter-spacing: 0.04em;
  padding-top: 6px;
}
.steps h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.steps p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 246, 247, 0.72);
  max-width: 60ch;
}

/* ----------------------------------------------------------
   Gallery
   ---------------------------------------------------------- */
.gallery {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--paper-2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.g-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  grid-column: span 2;
  grid-row: span 2;
  box-shadow: var(--glass-shadow);
  background: var(--ink);
}
.g-item.tall { grid-row: span 3; }
.g-item.wide { grid-column: span 4; grid-row: span 2; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
  filter: saturate(0.9);
}
.g-item:hover img { transform: scale(1.04); }
.mini {
  position: absolute;
  left: 18px; bottom: 18px; right: 18px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  max-width: 380px;
  background: rgba(245, 246, 247, 0.78);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.6);
}
.mini .kicker { margin-bottom: 4px; }
.mini p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
}

/* ----------------------------------------------------------
   Contact
   ---------------------------------------------------------- */
.contact {
  position: relative;
  padding: clamp(120px, 14vw, 180px) 0;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 90vh;
}
.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8); }
.contact-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 12, 0.6) 0%, rgba(5, 8, 12, 0.8) 100%);
}
.contact .container { position: relative; z-index: 2; }
.contact-card {
  max-width: 760px;
  padding: clamp(36px, 5vw, 64px);
}
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 246, 247, 0.55);
  margin: 24px 0 0;
}

/* ----------------------------------------------------------
   Journal teaser
   ---------------------------------------------------------- */
.journal-teaser {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--paper);
}
.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.journal-card {
  display: block;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.journal-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--glass-shadow);
}
.journal-date {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.journal-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.journal-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 18px;
}
.read-more {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.all-articles {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.all-articles:hover { color: var(--accent); border-color: var(--accent); }

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.footer {
  padding: 64px 0 36px;
  background: var(--ink);
  color: var(--paper);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  align-items: start;
}
.footer .brand { color: var(--paper); margin-bottom: 14px; }
.footer-tag {
  font-size: 14px;
  color: rgba(245, 246, 247, 0.55);
  margin: 0;
  max-width: 32ch;
  line-height: 1.55;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  font-size: 14px;
}
.footer-nav > div { display: flex; flex-direction: column; gap: 8px; }
.footer-nav .mono-label { color: rgba(245, 246, 247, 0.4); margin-bottom: 6px; }
.footer-nav a, .footer-nav span { color: rgba(245, 246, 247, 0.78); }
.footer-nav a:hover { color: var(--accent-2); }

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 12px;
  color: rgba(245, 246, 247, 0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.socials {
  display: flex;
  gap: 14px;
}
.socials a {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: rgba(245, 246, 247, 0.7);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.socials a:hover {
  color: var(--paper);
  border-color: var(--accent);
  background: rgba(91, 127, 166, 0.18);
}

/* ----------------------------------------------------------
   Blog index + article pages
   ---------------------------------------------------------- */
.blog-hero {
  padding: 160px var(--gutter) 60px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.blog-hero .container { max-width: 980px; }
.blog-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
}
.blog-hero h1 .alt { color: var(--accent); }
.blog-hero p {
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0;
  line-height: 1.55;
}
.blog-list {
  padding: 80px 0 120px;
  background: var(--paper);
}
.blog-list .container { max-width: 980px; }
.blog-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: opacity .2s ease;
}
.blog-item:last-child { border-bottom: 1px solid var(--line); }
.blog-item:hover { opacity: 0.65; }
.blog-item:hover h2 { color: var(--accent); }
.blog-item .blog-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 8px;
}
.blog-item h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.blog-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 64ch;
}

/* Article */
.article {
  padding: 140px var(--gutter) 100px;
  background: var(--paper);
}
.article-inner {
  max-width: 720px;
  margin: 0 auto;
}
.article-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.article h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.article-lede {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.4;
  color: var(--ink-2);
  margin: 0 0 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.article-body { font-size: 17px; line-height: 1.75; color: var(--ink-2); }
.article-body p { margin: 0 0 24px; }
.article-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 56px 0 20px;
  color: var(--ink);
}
.article-body h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
  color: var(--ink);
}
.article-body a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.article-body a:hover { color: var(--ink); border-color: var(--ink); }
.article-body ul, .article-body ol {
  list-style: revert;
  padding-left: 22px;
  margin: 0 0 24px;
}
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  margin: 36px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  background: var(--paper-2);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
}
.article-body blockquote p:last-child { margin: 0; }
.article-figure {
  margin: 40px -40px;
  border-radius: var(--radius);
  overflow: hidden;
}
.article-figure img { width: 100%; height: auto; display: block; }
.article-figure figcaption {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 12px;
  text-align: left;
}

.article-cta {
  margin-top: 72px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}
.article-cta h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.article-cta p { margin: 0 0 18px; color: var(--muted); font-size: 15px; }

.article-footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.article-footer a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media (max-width: 980px) {
  .nav { gap: 18px; padding: 8px 14px 8px 18px; }
  .nav-links { gap: 14px; font-size: 13px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .g-item, .g-item.tall, .g-item.wide { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero { padding: 120px var(--gutter) 60px; min-height: auto; }
  .display-xl { font-size: 52px; }
  .display-l { font-size: 38px; }
  .manifesto-meta { grid-template-columns: 1fr; gap: 14px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-item, .g-item.tall, .g-item.wide { grid-column: span 1; grid-row: span 1; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* Reduced motion / fallbacks */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .glass, .mini { background: rgba(245, 246, 247, 0.94); }
  .cinematic .glass, .contact .glass { background: rgba(14, 18, 24, 0.88); }
}
