/* =========================================================
   Hollis Visual Arts — Design System
   Paper / Ink / Ochre • Fraunces + Inter
   ========================================================= */

:root {
  --paper: #f7f4ee;
  --paper-2: #ede8de;
  --ink: #141414;
  --ink-2: #2a2724;
  --muted: #6b6560;
  --rule: #d9d2c4;
  --ochre: #9a6b3d;
  --ochre-2: #7d552e;
  --white: #ffffff;

  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --gutter: clamp(20px, 4vw, 48px);
  --maxw: 1280px;
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

/* Typography */
h1, h2, h3, h4, .display {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 0;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1, .h1 { font-size: clamp(44px, 7vw, 96px); }
h2, .h2 { font-size: clamp(32px, 4.5vw, 60px); }
h3, .h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4, .h4 { font-size: clamp(18px, 1.6vw, 22px); font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1em; }
.lead { font-size: clamp(18px, 1.6vw, 22px); color: var(--ink-2); line-height: 1.45; }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--ochre);
  margin: 0 0 1em;
}
.muted { color: var(--muted); }
em.ital { font-style: italic; font-family: var(--serif); }

/* Layout */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(56px, 8vw, 112px) 0; }
.section--tight { padding: clamp(32px, 5vw, 64px) 0; }
.divider { height: 1px; background: var(--rule); margin: 0; border: 0; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
}
/* Editorial brand lockup */
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-mark {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(20,20,20,0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(20,20,20,0.42);
  background: rgba(20,20,20,0.025);
  flex-shrink: 0;
}
.brand-words {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1;
}
.brand-tagline {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ochre);
  line-height: 1;
}
@media (max-width: 820px) {
  .brand-name { font-size: 22px; }
  .brand-mark { width: 50px; height: 50px; font-size: 15px; }
}
@media (max-width: 720px) {
  .nav__inner { height: 84px; }
  .brand-mark { width: 46px; height: 46px; font-size: 14px; }
  .brand-name { font-size: 19px; }
  .brand-tagline { font-size: 9.5px; letter-spacing: 0.16em; }
}
@media (max-width: 480px) {
  .brand-tagline { display: none; }
  .brand-name { font-size: 17px; }
  .brand-mark { width: 42px; height: 42px; font-size: 13px; }
}

/* VIMEO LINK BLOCK */
.vimeo-cta {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--paper-2);
  border-left: 3px solid var(--ochre);
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.vimeo-cta__text {
  flex: 1 1 320px;
}
.vimeo-cta__text p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
}
.vimeo-cta__text strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 500;
}
.vimeo-folders {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.vimeo-folders a {
  display: block;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 3px;
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
  transition: border-color 200ms ease, transform 200ms ease;
}
.vimeo-folders a:hover {
  border-color: var(--ochre);
  transform: translateY(-2px);
}
.vimeo-folders a strong {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
}
@media (max-width: 820px) {
  .vimeo-folders { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .vimeo-folders { grid-template-columns: 1fr; }
}

/* FEATURED VIDEO WORK — primary proof layer */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.video-tile {
  position: relative;
  background: var(--ink);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 9/16;
  display: block;
  color: var(--paper);
  text-decoration: none;
  transition: transform 240ms ease;
}
.video-tile:hover { transform: translateY(-3px); }
.video-tile video,
.video-tile img.video-tile__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Vimeo iframe embed inside a tile — video is already 9:16, tile is 9:16, fill 1:1 */
.video-tile--embed { position: relative; }
.video-tile--embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border: 0;
}
.video-tile__link {
  position: absolute; inset: 0;
  z-index: 2;
  text-decoration: none;
  color: transparent;
}
.video-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0) 40%, rgba(20,20,20,0.85) 100%);
  pointer-events: none;
}
.video-tile__meta {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  color: var(--paper);
}
.video-tile__label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(247,244,238,0.85);
  background: rgba(154,107,61,0.85);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.video-tile__title {
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  line-height: 1.25;
  margin: 0 0 6px;
  color: var(--paper);
}
.video-tile__desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(247,244,238,0.82);
  margin: 0;
}
.video-tile__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,244,238,0.35);
  font-family: var(--serif); font-size: 14px; font-style: italic;
  text-align: center; padding: 20px;
}
@media (max-width: 960px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .video-grid { grid-template-columns: 1fr; gap: 20px; }
  .video-tile { aspect-ratio: 9/16; max-width: 420px; margin: 0 auto; width: 100%; }
}
.nav__menu { display: flex; gap: 28px; align-items: center; }
.nav__menu a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 6px 0;
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a.active { color: var(--ink); }
.nav__menu a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ochre);
}
.nav__cta {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 6px 0;
  background: none; border-radius: 0;
}
.nav__cta:hover { color: var(--ink); }
.nav__toggle { display: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  padding: 14px 22px; border-radius: var(--radius);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--ochre-2); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--link {
  padding: 0; background: none; color: var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0; font-weight: 500;
}
.btn--link:hover { color: var(--ochre-2); border-color: var(--ochre-2); }

/* Hero */
.hero {
  padding: clamp(56px, 9vw, 120px) 0 clamp(48px, 7vw, 96px);
  border-bottom: 1px solid var(--rule);
}
.hero__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero__copy h1 { margin-bottom: 0.25em; }
.hero__copy h1 em { font-style: italic; color: var(--ochre-2); }
.hero__meta {
  display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta span::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  background: var(--ochre); border-radius: 50%;
}
.hero__img {
  position: relative; aspect-ratio: 4/5;
  background: var(--ink-2) center/cover no-repeat;
  border-radius: 4px; overflow: hidden;
}
.hero__img img, .hero__img video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero__img--video::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,20,20,0.15) 100%);
  pointer-events: none;
}
.hero__cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

/* Marquee / trust row */
.trust {
  padding: 28px 0; border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
}
.trust__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.trust__label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--muted); font-weight: 600;
}
.trust__list {
  display: flex; gap: 36px; flex-wrap: wrap;
  font-family: var(--serif); font-size: 18px;
  color: var(--ink-2);
}

/* Services strip */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: 48px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 32px 28px;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-2px); border-color: var(--ochre); }
.svc-card__num {
  font-family: var(--serif); font-size: 14px; color: var(--ochre);
  letter-spacing: 0.05em;
}
.svc-card h3 { margin: 0 0 6px; font-size: 26px; }
.svc-card p { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.55; }
.svc-card__list {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px; color: var(--ink-2);
}
.svc-card__list li::before {
  content: "— "; color: var(--ochre); font-weight: 600;
}

/* Featured case */
.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px); align-items: center;
  margin-top: 48px;
}
.feature__img {
  aspect-ratio: 4/5; background: var(--ink-2) center/cover no-repeat;
  border-radius: 4px; overflow: hidden;
  position: relative;
}
.feature__img img, .feature__img video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Text-forward branded tile (no photo) */
.feature__tile {
  aspect-ratio: 4/5;
  background: var(--ink); color: var(--paper);
  border-radius: 4px; overflow: hidden; position: relative;
  display: flex; align-items: flex-end;
  padding: clamp(28px, 4vw, 48px);
}
.feature__tile::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(154,107,61,0.35), transparent 60%);
  pointer-events: none;
}
.feature__tile-inner { position: relative; z-index: 1; max-width: 100%; }
.feature__tile .eyebrow { color: var(--ochre); }
.feature__tile h3 {
  color: var(--paper); font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px); line-height: 1.1; margin: 0 0 12px;
}
.feature__tile p { color: rgba(247,244,238,0.72); margin: 0; font-size: 14px; }

/* Article / case study body */
.article {
  max-width: 760px; margin: 0 auto;
}
.article p {
  font-size: 18px; line-height: 1.75; color: var(--ink-2);
  margin-bottom: 1.2em;
}
.article h2 {
  font-size: clamp(26px, 3vw, 36px); margin: 48px 0 16px;
}
.article h3 {
  font-size: clamp(20px, 2vw, 26px); margin: 32px 0 12px;
}
.article ul {
  padding-left: 20px; margin-bottom: 1.2em;
}
.article ul li {
  padding: 6px 0; color: var(--ink-2); font-size: 17px; line-height: 1.6;
}
.article .callout {
  border-left: 3px solid var(--ochre);
  padding: 12px 24px; margin: 32px 0;
  background: var(--paper-2);
  font-size: 15px; color: var(--ink-2);
}
.article .callout strong { color: var(--ink); }

.case-meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 48px 0;
}
.case-meta div h4 {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 6px;
}
.case-meta div p { margin: 0; font-size: 15px; color: var(--ink); }
@media (max-width: 720px) {
  .case-meta { grid-template-columns: 1fr 1fr; }
}
.feature__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}
.stat__n {
  font-family: var(--serif); font-size: 36px; display: block; line-height: 1;
}
.stat__l { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); margin-top: 6px; }

/* Work grid */
.work-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  margin-top: 48px;
}
.work-tile {
  position: relative; overflow: hidden; border-radius: 4px;
  background: var(--ink); aspect-ratio: 4/5;
}
.work-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, opacity .3s ease;
}
.work-tile:hover img { transform: scale(1.03); }
.work-tile__meta {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  color: var(--paper);
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: 13px;
}
.work-tile__meta::before {
  content: ""; position: absolute; inset: -40px -16px -16px;
  background: linear-gradient(to top, rgba(20,20,20,0.85), transparent);
  z-index: -1;
}
.work-tile__meta h4 { margin: 0; font-size: 16px; font-weight: 600; }
.work-tile__meta span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.8; }
.w-4 { grid-column: span 4; }
.w-6 { grid-column: span 6; }
.w-8 { grid-column: span 8; }
.w-5 { grid-column: span 5; }
.w-7 { grid-column: span 7; }
.w-3 { grid-column: span 3; }
.w-9 { grid-column: span 9; }

/* Quote */
.quote {
  max-width: 900px; margin: 0 auto; text-align: center;
}
.quote p {
  font-family: var(--serif); font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25; letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.quote p::before { content: "\201C"; color: var(--ochre); margin-right: 0.15em; }
.quote p::after { content: "\201D"; color: var(--ochre); margin-left: 0.15em; }
.quote__author {
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted);
}

/* CTA block */
.cta-block {
  background: var(--ink); color: var(--paper);
  padding: clamp(48px, 6vw, 88px) clamp(32px, 5vw, 72px);
  border-radius: 4px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px;
  align-items: center;
}
.cta-block h2 { color: var(--paper); margin-bottom: 0; }
.cta-block h2 em { color: var(--ochre); font-style: italic; }
.cta-block p { color: rgba(247, 244, 238, 0.72); margin-top: 16px; }
.cta-block__side { display: flex; flex-direction: column; gap: 12px; }
.cta-block .btn--primary { background: var(--paper); color: var(--ink); }
.cta-block .btn--primary:hover { background: var(--ochre); color: var(--paper); }
.cta-block .btn--ghost { color: var(--paper); border-color: rgba(247,244,238,0.3); }
.cta-block .btn--ghost:hover { background: var(--paper); color: var(--ink); }

/* Pricing */
.tiers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: 48px;
}
.tier {
  background: var(--white); border: 1px solid var(--rule);
  padding: 36px 28px; border-radius: 4px;
  display: flex; flex-direction: column; gap: 12px;
}
.tier--featured {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
  transform: scale(1.02);
}
.tier--featured h3 { color: var(--paper); }
.tier--featured .tier__price { color: var(--paper); }
.tier--featured .tier__price span { color: rgba(247,244,238,0.6); }
.tier--featured li { color: rgba(247,244,238,0.85); border-color: rgba(247,244,238,0.15); }
.tier__badge {
  display: inline-block; font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 4px 10px;
  background: var(--ochre); color: var(--paper);
  align-self: flex-start; border-radius: 2px;
  margin-bottom: 4px;
}
.tier h3 { font-size: 28px; margin: 0; }
.tier__price {
  font-family: var(--serif); font-size: 44px; line-height: 1; margin: 8px 0 20px;
}
.tier__price span { font-size: 14px; font-family: var(--sans); color: var(--muted); margin-left: 4px; letter-spacing: 0.02em; }
.tier ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; }
.tier li {
  padding: 10px 0; border-bottom: 1px solid var(--rule);
  font-size: 14px; display: flex; align-items: flex-start; gap: 10px;
}
.tier li::before { content: "+"; color: var(--ochre); font-weight: 700; }
.tier .btn { margin-top: auto; justify-content: center; }
.tier--featured .btn--primary { background: var(--ochre); color: var(--paper); }
.tier--featured .btn--primary:hover { background: var(--paper); color: var(--ink); }

.pricing-footnote {
  margin-top: 32px; text-align: center;
  font-size: 13px; color: var(--muted);
}
.pricing-footnote em { color: var(--ochre); font-style: normal; }

.pilot-block {
  background: var(--paper-2); border: 1px solid var(--rule); border-radius: 4px;
  padding: clamp(28px, 4vw, 48px);
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 32px; align-items: center;
}
.pilot-block__right { display: flex; flex-direction: column; gap: 12px; text-align: right; }
.pilot-block__price {
  font-family: var(--serif); font-size: clamp(48px, 6vw, 72px); line-height: 1; color: var(--ink);
}
.pilot-block__price span {
  font-size: 16px; font-family: var(--sans); color: var(--muted); margin-left: 4px;
}
@media (max-width: 820px) {
  .pilot-block { grid-template-columns: 1fr; }
  .pilot-block__right { text-align: left; }
  .pilot-block__right .btn, .pilot-block__right .note { align-self: flex-start !important; }
}

/* FAQ */
.faq { max-width: 860px; margin: 48px auto 0; }
.faq details {
  border-bottom: 1px solid var(--rule); padding: 20px 0; cursor: pointer;
}
.faq summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 22px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--ochre); font-size: 26px; font-family: var(--sans); font-weight: 300;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { margin-bottom: 12px; }
.faq p { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.7; }

/* Book page */
.book-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.book-left h1 { margin-bottom: 16px; }
.book-left ol { padding-left: 20px; margin: 24px 0; }
.book-left ol li { padding: 8px 0; color: var(--ink-2); }
.calendly-ph {
  aspect-ratio: 4/5; background: var(--paper-2); border: 1px dashed var(--rule);
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 48px; border-radius: 4px; color: var(--muted); font-size: 14px;
  flex-direction: column; gap: 8px;
}
.calendly-ph strong { font-family: var(--serif); font-size: 20px; color: var(--ink); }

/* Footer */
.footer {
  background: var(--ink); color: var(--paper);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 48px;
}
.footer__brand { font-family: var(--serif); font-size: 28px; }
.footer__brand p { color: rgba(247, 244, 238, 0.6); font-family: var(--sans); font-size: 14px; margin-top: 12px; max-width: 360px; }
.footer h4 { color: var(--paper); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer a { color: rgba(247, 244, 238, 0.72); font-size: 14px; transition: color .15s ease; }
.footer a:hover { color: var(--ochre); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(247,244,238,0.12);
  font-size: 12px; color: rgba(247,244,238,0.5);
  flex-wrap: wrap; gap: 16px;
}

/* Placeholders with notes */
.note {
  display: inline-block; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ochre);
  border: 1px dashed var(--ochre); padding: 4px 8px;
  border-radius: 2px; margin-left: 8px;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__img { aspect-ratio: 3/4; max-height: 70vh; }
  .services-grid { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(6, 1fr); }
  .w-4, .w-5, .w-3 { grid-column: span 3; }
  .w-6, .w-7, .w-8, .w-9 { grid-column: span 6; }
  .tiers { grid-template-columns: 1fr; }
  .tier--featured { transform: none; }
  .cta-block { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__menu {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 20px 24px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    z-index: 40;
    box-shadow: 0 24px 48px -24px rgba(20,20,20,0.16);
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a {
    width: 100%;
    padding: 14px 0;
    font-size: 18px;
    font-family: var(--serif);
    border-bottom: 1px solid var(--rule);
  }
  .nav__menu a:last-child { border-bottom: 0; }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--rule);
    padding: 10px 14px;
    border-radius: 4px;
    transition: border-color .15s ease, background .15s ease;
  }
  .nav__toggle:hover,
  .nav__toggle.is-open { border-color: var(--ink); background: var(--paper-2); }
  .nav {
    position: relative;
  }
  body.nav-open { overflow: hidden; }
  .work-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .w-4, .w-5, .w-3, .w-6, .w-7, .w-8, .w-9 { grid-column: span 1; }
  .feature__stats { grid-template-columns: 1fr; gap: 4px; }
  .trust__row { justify-content: flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* PORTFOLIO GATEWAY (replaces trust row) */
.portfolio-gateway {
  padding: clamp(40px, 5vw, 56px) 0 clamp(24px, 3vw, 36px);
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
}
.portfolio-gateway__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.portfolio-gateway__copy { max-width: 620px; }
.portfolio-gateway__copy h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  margin: 6px 0 12px;
  line-height: 1.15;
}
.portfolio-gateway__copy .muted {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
.portfolio-gateway__clients {
  display: flex; align-items: center;
  gap: 20px 36px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 20px;
  border-top: 1px dashed var(--rule);
}
.portfolio-gateway__clients > span {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--muted);
  flex-shrink: 0;
}
.portfolio-gateway__clients ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--serif); font-size: 16px;
  color: var(--ink-2);
}
@media (max-width: 640px) {
  .portfolio-gateway__row { align-items: flex-start; }
  .portfolio-gateway__clients ul { gap: 6px 20px; font-size: 15px; }
}

/* Featured work — 9:16 portrait iframe variant for short-form vertical video */
.feature__img--wide {
  aspect-ratio: 9/16;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}
.feature__img iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 820px) {
  .feature__img--wide { max-width: 340px; }
}
