/* ============================================================
   ENABLED COPYWRITING — STYLESHEET
   Fonts: HeadingNow 48 Heavy (display) + Playfair Display / Cormorant Garamond (serif) + PP Neue Montreal (body)
   ============================================================ */

@font-face {
  font-family: 'HeadingNow';
  src: url('../fonts/HeadingNowTrial-48Heavy.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}
/* Playfair Display + Cormorant Garamond loaded via Google Fonts in HTML */
@font-face {
  font-family: 'PPNeueMontreal';
  src: url('../fonts/PPNeueMontreal-Book.otf') format('opentype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'PPNeueMontreal';
  src: url('../fonts/PPNeueMontreal-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'PPNeueMontreal';
  src: url('../fonts/PPNeueMontreal-Medium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'PPNeueMontreal';
  src: url('../fonts/ppneuemontreal-bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --bg:       #CDC4B0;
  --charcoal: #181818;
  --red:      #B21E23;
  --cream:    #EAE5E1;
  --pink:     #f76df0;
  --green:    #21423c;
  --blue:     #6894f5;
  --orange:   #e85d26;
  --acid:     #b8e62e;
  --border:   rgba(24,24,24,0.1);

  --font-display: 'HeadingNow', sans-serif;
  --font-serif:   'Playfair Display', 'Georgia', serif;
  --font-serif-light: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'PPNeueMontreal', sans-serif;

  --nav-h:  64px;
  --pad:    clamp(24px, 5vw, 80px);
  --pad-v:  clamp(80px, 11vw, 140px);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Grain overlay ──────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── Cursor ─────────────────────────────────────────────── */
.cursor,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
.cursor {
  width: 10px; height: 10px;
  background: var(--red);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--charcoal);
  transition: transform 0s, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
.cursor.hover { width: 16px; height: 16px; }
.cursor-ring.hover { width: 64px; height: 64px; border-color: var(--red); }

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  z-index: 200;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(205,196,176,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.nav-logo .wordmark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.nav-logo .sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.6;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links .btn-nav {
  padding: 0.5em 1.4em;
  border: 1.5px solid var(--charcoal);
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-links .btn-nav::after { display: none; }
.nav-links .btn-nav:hover {
  background: var(--charcoal);
  color: var(--cream);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: calc(var(--nav-h) + 5vh) var(--pad) 4vh;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.hero-eyebrow span { display: block; animation: slideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(88px, 17vw, 220px);
  line-height: 0.87;
  letter-spacing: -0.01em;
  overflow: hidden;
}
.hero-title .line { overflow: hidden; display: block; }
.hero-title .line span {
  display: block;
  animation: slideUp 0.85s cubic-bezier(0.16,1,0.3,1) both;
  color: var(--charcoal);
}
.hero-title .line:nth-child(1) span { animation-delay: 0.15s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.25s; }
.hero-sub {
  margin-top: 2.25rem;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  line-height: 1.6;
  max-width: 460px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}
.hero-footer-loc {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
}
.hero-footer-scroll {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.3;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.hero-footer-scroll::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: currentColor;
}

/* ─── Hero editorial element ─────────────────────────────── */
.hero-editorial {
  position: absolute;
  right: clamp(3rem, 8vw, 10rem);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}
.hero-orb {
  width: clamp(180px, 22vw, 320px);
  height: auto;
  border-radius: 50%;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.8s forwards;
  filter: contrast(1.05);
}
.hero-artefact {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-serif-light);
  font-style: italic;
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  color: var(--charcoal);
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 2em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.btn:active { transform: scale(0.97); }
.btn-dark {
  background: var(--red);
  color: var(--cream);
  border: 1.5px solid var(--red);
}
.btn-dark:hover { background: var(--charcoal); border-color: var(--charcoal); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }
.btn-light {
  background: var(--cream);
  color: var(--charcoal);
  border: 1.5px solid var(--cream);
}
.btn-light:hover { background: transparent; color: var(--cream); }

/* ─── Marquee ────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--charcoal);
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  color: var(--cream);
  padding: 0 2rem;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.marquee-item .dot { margin: 0 0.4em; }
.marquee-item .dot { color: var(--red); }

/* ─── Section label ──────────────────────────────────────── */
.section-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 1.5rem;
}
.section-tag.light { opacity: 0.35; color: var(--cream); }

/* ─── Statement ──────────────────────────────────────────── */
.statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
  padding: var(--pad-v) var(--pad);
}
.statement-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 90px);
  line-height: 0.9;
  letter-spacing: -0.01em;
}
.statement-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red);
}
.statement-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.statement-body p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  opacity: 0.72;
}

/* ─── Bad Sentence ───────────────────────────────────────── */
.bad-sentence {
  padding: var(--pad-v) var(--pad);
  background: var(--cream);
}
.bad-sentence-quote {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.bad-sentence-mark {
  font-family: var(--font-serif);
  font-size: clamp(80px, 12vw, 140px);
  line-height: 0.7;
  color: var(--red);
  display: block;
  margin-bottom: 0.5rem;
  user-select: none;
}
.bad-sentence-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  max-width: 920px;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.bad-sentence-attr {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: -0.01em;
  color: var(--red);
}
.bad-sentence-story {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  padding-top: clamp(2.5rem, 4vw, 4rem);
  border-top: 1px solid var(--border);
}
.bad-sentence-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.bad-sentence-col p {
  font-size: clamp(0.875rem, 1.15vw, 0.975rem);
  line-height: 1.8;
  opacity: 0.65;
  margin-bottom: 0.9rem;
}
.bad-sentence-col p:last-child { margin-bottom: 0; }
.bad-sentence-turn {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem) !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  color: var(--charcoal) !important;
  margin-bottom: 0.75rem !important;
}

/* ─── Services ───────────────────────────────────────────── */
.services {
  background: var(--charcoal);
  padding: var(--pad-v) var(--pad);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}
.services-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 110px);
  color: var(--red);
  line-height: 0.88;
  letter-spacing: -0.01em;
}
.services-list { border-top: 1px solid rgba(255,255,255,0.08); }
.service-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
}
.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.6rem) 0;
  transition: padding-left 0.3s ease;
}
.service-item:hover .service-header { padding-left: 0.75rem; }
.service-item:hover .service-name { color: var(--red); }
.service-name {
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--cream);
  transition: color 0.25s ease;
  letter-spacing: -0.01em;
}
.service-item:hover .service-name::before {
  content: '—';
  color: var(--red);
  margin-right: 0.5em;
  font-weight: 300;
}
.service-toggle {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.3;
  transition: opacity 0.25s ease, transform 0.3s ease;
}
.service-item:hover .service-toggle { opacity: 1; color: var(--red); }
.service-item.open .service-toggle { transform: rotate(45deg); }
.service-desc {
  overflow: hidden;
  height: 0;
  transition: height 0.35s ease;
}
.service-tagline {
  font-family: var(--font-serif-light);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.15rem) !important;
  color: var(--red) !important;
  opacity: 0.85 !important;
  margin-bottom: 0.5rem;
}
.service-desc p {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.55;
  max-width: 640px;
  padding-bottom: clamp(1rem, 2vw, 1.6rem);
}

/* ─── Clients ────────────────────────────────────────────── */
.clients {
  padding: var(--pad-v) var(--pad);
  border-top: 1px solid var(--border);
}
.clients-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 90px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  color: var(--red);
}
.clients-names {
  font-size: clamp(1.15rem, 2.2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.65;
  opacity: 0.6;
  max-width: 960px;
}

/* ─── Blog Carousel ─────────────────────────────────────── */
.blog-carousel {
  padding: var(--pad-v) var(--pad);
  background: var(--cream);
  overflow: hidden;
}
.blog-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.blog-carousel-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 130px);
  line-height: 0.88;
  color: var(--red);
  letter-spacing: -0.02em;
}
.blog-carousel-sub {
  font-family: var(--font-serif-light);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--charcoal);
  margin-top: 0.75rem;
}
.blog-carousel-nav {
  display: flex;
  gap: 0.75rem;
}
.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.carousel-arrow:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.blog-carousel-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 1rem;
}
.blog-carousel-track::-webkit-scrollbar { display: none; }
.blog-card {
  flex: 0 0 clamp(260px, 25vw, 320px);
  text-decoration: none;
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
}
.blog-card-thumb {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--bg);
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-thumb img {
  transform: scale(1.04);
}
.blog-card-color {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-color {
  transform: scale(1.04);
}
.blog-card-color span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--cream);
  text-align: center;
  line-height: 1.1;
}
.blog-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 0.4rem;
}
.blog-card-title {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 500;
  line-height: 1.4;
}
.blog-card:hover .blog-card-title {
  color: var(--red);
}
.blog-carousel-link {
  display: inline-block;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.25s ease;
}
.blog-carousel-link:hover { opacity: 1; }

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--red);
  padding: var(--pad-v) var(--pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  overflow: hidden;
  position: relative;
}
.cta-banner::before {
  content: 'GO!';
  position: absolute;
  right: -0.05em;
  bottom: -0.15em;
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 300px);
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 150px);
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: -0.02em;
  position: relative;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(60px, 8vw, 100px) var(--pad) 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 4rem;
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0.45;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 1.25rem;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.875rem;
  line-height: 2;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  opacity: 0.3;
  text-transform: uppercase;
}

/* ─── Journal page ───────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + var(--pad-v)) var(--pad) var(--pad-v);
  border-bottom: 1px solid var(--border);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 180px);
  line-height: 0.87;
  letter-spacing: -0.01em;
}
.page-hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  opacity: 0.55;
  max-width: 480px;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(360px, 100%), 1fr));
  gap: 1px;
  background: var(--border);
  padding: 0;
}
.post-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease;
  overflow: hidden;
}
.post-card:hover { background: var(--cream); }

/* Thumbnail — image or colour block */
.post-thumb {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-thumb-color {
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.5rem;
}
.post-thumb-label {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.9;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.01em;
  word-break: break-word;
  hyphens: auto;
}

/* Card content */
.post-content {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.post-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.post-card:nth-child(3n+2) .post-tag { color: var(--red); }
.post-card:nth-child(3n)   .post-tag { color: var(--red); }
.post-title {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.post-excerpt {
  font-size: 0.875rem;
  line-height: 1.65;
  opacity: 0.6;
  flex: 1;
}
.post-meta {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.35;
}
.post-arrow {
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: var(--red);
}
.post-card:hover .post-arrow { opacity: 1; transform: translateX(0); }

/* ─── Contact page ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - var(--nav-h));
  margin-top: var(--nav-h);
}
.contact-image {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.contact-info {
  padding: var(--pad-v) var(--pad);
  background: var(--charcoal);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 110px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact-detail a,
.contact-detail p {
  font-size: 0.9rem;
  opacity: 0.55;
  transition: opacity 0.2s ease;
  line-height: 1.8;
}
.contact-detail a:hover { opacity: 1; }
.contact-social {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
}
.contact-social a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}
.contact-social a:hover { opacity: 1; }
.contact-form {
  padding: var(--pad-v) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
  line-height: 1;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9em 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--charcoal);
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: none; min-height: 120px; }
.form-submit { margin-top: 2.5rem; }

/* ─── About section ──────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 85vh;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 5rem);
}
.about-photo img {
  width: clamp(280px, 85%, 420px);
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(0.15) drop-shadow(4px 8px 24px rgba(0,0,0,0.15));
  transform: rotate(2deg);
  transition: transform 0.6s ease;
}
.about:hover .about-photo img { transform: rotate(0.5deg) scale(1.02); }
.about-photo-label {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  right: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.4;
}
.about-content {
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.88;
  letter-spacing: -0.01em;
}
.about-title .role {
  display: block;
  font-family: var(--font-serif-light);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-body p {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.75;
  opacity: 0.72;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.stat-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--red);
}
.stat-item:nth-child(2) .stat-num { color: var(--red); }
.stat-item:nth-child(3) .stat-num { color: var(--red); }
.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-top: 0.3rem;
}

/* ─── Freebie banner ─────────────────────────────────────── */
/* ─── Promo Banner (floating) ────────────────────────────── */
.promo-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 340px;
  background: var(--charcoal);
  color: var(--cream);
  padding: 2rem 2rem 1.75rem;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  z-index: 900;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
}
.promo-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.promo-banner.dismissed {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.promo-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s ease;
  line-height: 1;
}
.promo-close:hover { opacity: 1; }
.promo-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.promo-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.promo-sub {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.55;
  margin-bottom: 1.25rem;
}
.promo-cta {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  padding: 0.7em 1.5em;
  border: 1.5px solid var(--red);
  background: var(--red);
  border-radius: 50px;
  transition: background 0.25s ease, color 0.25s ease;
}
.promo-cta:hover {
  background: transparent;
  color: var(--cream);
}
@media (max-width: 600px) {
  .promo-banner {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    width: auto;
  }
}

/* ─── Portfolio teaser (homepage) ───────────────────────── */
.port-teaser {
  background: var(--charcoal);
  padding: var(--pad-v) var(--pad);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  border-top: 2px solid var(--red);
}
.port-teaser-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.4;
  margin-bottom: 1rem;
}
.port-teaser-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.port-teaser-sub {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  line-height: 1.65;
}
.btn-cream {
  background: var(--cream);
  color: var(--charcoal);
  border: 1.5px solid var(--cream);
  flex-shrink: 0;
}
.btn-cream:hover { background: transparent; color: var(--cream); }

/* ─── Portfolio page ─────────────────────────────────────── */
.gate-screen {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: var(--pad);
  background: var(--charcoal);
}
.gate-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 120px);
  color: var(--cream);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-align: center;
}
.gate-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  max-width: 320px;
  line-height: 1.6;
}
.gate-form {
  display: flex;
  gap: 0;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.gate-form:focus-within { border-color: var(--red); }
.gate-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 0.85em 1.5em;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--cream);
  letter-spacing: 0.1em;
  width: 220px;
}
.gate-input::placeholder { color: rgba(255,255,255,0.25); letter-spacing: 0.1em; }
.gate-btn {
  background: var(--red);
  border: none;
  padding: 0.85em 1.5em;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  cursor: pointer;
  transition: background 0.2s ease;
}
.gate-btn:hover { background: #a31915; }
.gate-error {
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gate-error.show { opacity: 1; }
.portfolio-content { display: none; }
.portfolio-content.unlocked { display: block; }

/* Portfolio page hero */
.port-hero {
  padding: calc(var(--nav-h) + var(--pad-v)) var(--pad) var(--pad-v);
  background: var(--charcoal);
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.port-hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.port-hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 180px);
  line-height: 0.87;
  letter-spacing: -0.01em;
}
.port-hero-sub {
  margin-top: 2rem;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  opacity: 0.5;
  max-width: 520px;
  line-height: 1.65;
}
.port-disclaimer {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--red);
  font-size: 0.8rem;
  opacity: 0.5;
  line-height: 1.6;
  max-width: 520px;
}

/* Case studies */
.port-section {
  padding: var(--pad-v) var(--pad);
  border-bottom: 1px solid var(--border);
}
.port-section-label {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 100px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.case-study {
  padding: clamp(2rem, 4vw, 4rem) 0;
  border-top: 1px solid var(--border);
}
.case-study:first-of-type { border-top: none; }
.case-header { margin-bottom: 2.5rem; }
.case-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: block;
}
.case-title {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.case-client {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
}
.case-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 2.5rem;
}
.case-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 0.75rem;
}
.case-col p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.72;
}
.case-col .case-highlight {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.1;
  color: var(--red);
  letter-spacing: -0.01em;
  margin-top: 0.75rem;
}
.case-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
}
.case-img {
  aspect-ratio: 4/3;
  background: var(--charcoal);
  overflow: hidden;
  border-radius: 2px;
}
.case-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.case-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
/* Full-width case study spreads (Canva page exports) */
.case-spread {
  margin-top: 2rem;
}
.case-spread img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
  border: 1px solid rgba(24,24,24,0.06);
}
.case-spread + .case-spread {
  margin-top: 0.75rem;
}
.case-spread-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
.case-spread-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
  border: 1px solid rgba(24,24,24,0.06);
}
@media (max-width: 600px) {
  .case-spread-grid { grid-template-columns: 1fr; }
}

/* Article entries */
.article-entry {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.article-entry:first-of-type { border-top: none; }
.article-meta {}
.article-pub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.article-title {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.article-type {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.35;
}
.article-excerpt {
  font-size: 0.925rem;
  line-height: 1.75;
  opacity: 0.65;
}
.article-excerpt strong { opacity: 1; font-weight: 600; color: var(--charcoal); }

/* ─── Digital artefacts ─────────────────────────────────── */
.artefact {
  display: inline-block;
  font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  opacity: 0.3;
  user-select: none;
  white-space: nowrap;
}
.artefact--light {
  color: var(--cream);
  opacity: 0.2;
}

/* ─── Services subline ──────────────────────────────────── */
.services-sub {
  font-family: var(--font-serif-light);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--cream);
  opacity: 0.35;
  margin-top: 0.75rem;
}

/* ─── Reveal animation ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Keyframes ──────────────────────────────────────────── */
@keyframes slideUp {
  from { transform: translateY(105%); }
  to   { transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .statement { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-image { min-height: 50vw; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-editorial { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-photo { padding: 2rem; }
  .about-photo img { width: clamp(220px, 60%, 320px); }
  .blog-carousel-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
@media (max-width: 600px) {
  .nav-links .btn-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-footer { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .bad-sentence-story { grid-template-columns: 1fr; }
  .port-teaser { grid-template-columns: 1fr; text-align: center; }
  .port-teaser .btn { margin: 0 auto; }
}
