/* ============================================
   SJR CREATIVE
   Editorial / moody / vintage motorsport
   ============================================ */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ---- TOKENS ---- */
:root {
  /* Palette — clean + bold: crisp white, true black, tomato red, deep blue */
  --paper:    #FFFFFF;   /* pure white background */
  --paper-2:  #F4F4F1;   /* very light neutral for cards / soft sections */
  --ink:      #0A0A0A;   /* near-black for type and borders */
  --ink-2:    #1A1A1A;
  --ox:       #E5322B;   /* primary accent — tomato red (trailer body) */
  --ox-dark:  #B72219;   /* deeper red for hover */
  --red:      #E5322B;   /* alias for legacy uses */
  --blue:     #1B3FA8;   /* secondary accent — deep saturated blue (A-frame door) */
  --blue-dark:#11297A;
  --deep:     #0A0A0A;   /* darkest surface (footer) */
  --fog:      rgba(10, 10, 10, 0.62);
  --hair:     rgba(10, 10, 10, 0.10);
  --hair-2:   rgba(10, 10, 10, 0.20);

  /* Type system — Fraunces serif as the lead voice (Giaza alternative) */
  --display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --serif:   'Fraunces', 'Times New Roman', Georgia, serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --stencil: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 44px);
  --radius: 2px;
}

/* ---- BASE ---- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* (Film grain removed for a cleaner, bolder look.) */

/* ---- TYPE ---- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.96;
  text-transform: none;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
h1 { font-size: clamp(3.6rem, 11vw, 10.5rem); font-weight: 800; letter-spacing: -0.035em; line-height: 0.92; }
h2 { font-size: clamp(2.4rem, 6vw, 5.5rem); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
p  { max-width: 62ch; }

/* Emphasis moments inside headlines — Fraunces italic in red.
   With Fraunces as the lead voice, italic + red still creates a sharp accent moment. */
h1 em, h2 em, h3 em, h4 em,
.hero__headline em, .poster__title em,
.cta h2 em, .contact-hero h1 em,
.about__copy h2 em, .work__copy h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ox);
  text-transform: none;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 1em;
}

.kicker {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
}
.kicker--plain::before { display: none; }

.italic { font-style: italic; }
.serif  { font-family: var(--serif); }
.ox { color: var(--ox); }
.smallcaps {
  font-variant-caps: all-small-caps;
  letter-spacing: 0.08em;
}

/* ---- LAYOUT ---- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hair-2);
  margin-bottom: 56px;
}
.section-head .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ox);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--hair);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.nav__left, .nav__right {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav__right { justify-content: flex-end; }
.nav__left a, .nav__right a { position: relative; padding: 4px 0; }
.nav__left a:hover, .nav__right a:hover { color: var(--ox); }

/* Lightbox logo — inspired by your café signage boards */
.lightbox {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--stencil);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  box-shadow: 3px 3px 0 var(--ox);
  transition: transform .2s ease, box-shadow .2s ease;
}
.lightbox:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ox); }
.lightbox__letter {
  width: 32px; height: 34px;
  display: grid; place-items: center;
  background: var(--paper);
  color: var(--ox);
  border-right: 2px solid var(--ink);
  font-family: var(--stencil);
  font-size: 1.25rem;
}
.lightbox__letter:last-child { border-right: 0; }
.lightbox--amber .lightbox__letter { background: var(--blue); color: var(--paper); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 48px 0 64px;
  position: relative;
  border-bottom: 1px solid var(--hair-2);
}
.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fog);
  padding-bottom: 22px;
  margin-bottom: 36px;
  border-bottom: 1px dashed var(--hair-2);
}
.hero__meta span { display: inline-flex; gap: 8px; align-items: center; }
.hero__meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ox); }

.hero__headline {
  font-family: var(--display);
  font-size: clamp(3.6rem, 11.5vw, 11rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: none;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-top: 48px;
}
.hero__intro {
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.25vw, 1.15rem);
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink-2);
  max-width: 54ch;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  transition: all .2s ease;
  background: transparent;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn--filled { background: var(--ink); color: var(--paper); }
.btn--filled:hover { background: var(--ox); border-color: var(--ox); }
.btn--ox { background: var(--ox); border-color: var(--ox); color: var(--paper); }
.btn--ox:hover { background: var(--ox-dark); border-color: var(--ox-dark); }
.btn .arr { display: inline-block; transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* hero side card — clean callout */
.hero__card {
  position: relative;
  padding: 28px 26px;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  box-shadow: 8px 8px 0 var(--ox);
  transform: none;
}
.hero__card .tag {
  font-family: var(--stencil);
  color: var(--ox);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero__card h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.85rem;
  margin-top: 12px;
  line-height: 1.05;
  text-transform: none;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__card p {
  margin-top: 12px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.hero__card .rule {
  height: 1px; background: rgba(255,255,255,0.22); margin: 16px 0 12px;
}
.hero__card .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__card .stats strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--paper);
  letter-spacing: 0;
  line-height: 1;
}
.hero__card::before {
  content: "№ 01";
  position: absolute;
  top: -14px; right: 18px;
  background: var(--paper);
  color: var(--ink);
  padding: 3px 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  border: 1px solid var(--ink);
}

/* Marquee stripe — race / signage energy */
.marquee {
  background: var(--red);
  color: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  gap: 52px;
  white-space: nowrap;
  animation: slide 28s linear infinite;
  font-family: var(--stencil);
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  align-items: center;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 52px; }
.marquee__track .star {
  display: inline-block;
  width: 14px; height: 14px;
  background: currentColor;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
@keyframes slide {
  to { transform: translateX(-50%); }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--hair-2);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair-2);
  border-left: 1px solid var(--hair-2);
}
.service {
  padding: 36px 32px 36px;
  border-right: 1px solid var(--hair-2);
  border-bottom: 1px solid var(--hair-2);
  position: relative;
  transition: background .25s ease, color .25s ease;
}
.service:hover { background: var(--ink); color: var(--paper); }
.service:hover .service__num { color: var(--ox); }
.service:hover .service__arrow { color: var(--ox); transform: translate(4px, -4px); }

.service__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ox);
  letter-spacing: 0;
}
.service__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  margin-top: 0;
  line-height: 1.02;
  text-transform: none;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.service__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ox);
  text-transform: none;
  font-size: 0.96em;
}
.service__body {
  margin-top: 18px;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 42ch;
  color: inherit;
}
.service__tags {
  margin-top: 22px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fog);
}
.service:hover .service__tags { color: rgba(255,255,255,0.6); }
.service__tags span::after { content: "·"; margin-left: 8px; }
.service__tags span:last-child::after { content: ""; }
.service__arrow {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--fog);
  transition: transform .25s ease, color .25s ease;
}

/* ============================================
   SELECTED WORK
   ============================================ */
.work {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--hair-2);
}
.work__item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--hair);
}
.work__item:last-child { border-bottom: 0; }

/* Fallback poster (only used for cases without a real image). */
.work__poster {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--ink) 0%, var(--deep) 100%);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--paper);
  padding: 28px;
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ox);
  transition: transform .3s ease, box-shadow .3s ease;
}
.work__item:hover .work__poster {
  transform: translate(-3px, -3px);
  box-shadow: 14px 14px 0 var(--ox);
}

/* Real-image variant of the case poster — keeps the same silhouette/shadow
   treatment but displays an actual screenshot or photo. */
.work__media {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ox);
  transition: transform .3s ease, box-shadow .3s ease;
  margin: 0;
}
.work__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.work__item:hover .work__media {
  transform: translate(-3px, -3px);
  box-shadow: 14px 14px 0 var(--ox);
}
.work__item:hover .work__media img {
  transform: scale(1.03);
}
.work__media .poster__corner {
  z-index: 2;
}
.work__poster--orange { background: linear-gradient(135deg, var(--ox) 0%, var(--ox-dark) 100%); }
.work__poster--red    { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); }

/* halftone-esque overlay */
.work__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,0.08) 0, transparent 40%),
    radial-gradient(circle at 80% 85%, rgba(0,0,0,0.2) 0, transparent 50%);
  pointer-events: none;
}

.poster__inner {
  position: relative;
  z-index: 2;
}
.poster__label {
  font-family: var(--stencil);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
}
.poster__title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 0.94;
  margin: 12px 0 6px;
  letter-spacing: -0.03em;
  text-transform: none;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.poster__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--paper);
  text-transform: none;
  font-size: 1em;
}
.poster__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(245, 242, 234, 0.9);
  margin-top: 10px;
}
.poster__stripes {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 22px;
  background:
    repeating-linear-gradient(90deg,
      var(--paper) 0 22px,
      var(--ox) 22px 44px,
      var(--paper) 44px 66px,
      var(--ink) 66px 88px);
  opacity: 0.95;
}
.poster__corner {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--paper);
  color: var(--ink);
  padding: 4px 10px;
  font-family: var(--stencil);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  border: 1.5px solid var(--ink);
}

.work__copy .kicker { margin-bottom: 16px; }
.work__copy h3 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: none;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.work__copy h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ox);
  text-transform: none;
  font-size: 0.96em;
}
.work__copy p { margin-top: 18px; }
.work__meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--hair-2);
}
.work__meta .label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog);
}
.work__meta .value {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.work__coming {
  margin-top: 40px;
  padding: 32px;
  border: 1.5px dashed var(--hair-2);
  text-align: center;
}
.work__coming h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--ox);
  text-transform: none;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.work__coming p { margin: 10px auto 0; }

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--hair-2);
}
/* Top row of the About section: small landscape portrait + big headline.
   Photo is ~28% of the content width on desktop, headline takes the rest. */
.about__top {
  display: grid;
  grid-template-columns: minmax(220px, 28%) 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.about__portrait {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: 10px 10px 0 var(--ox);
  transition: transform .3s ease, box-shadow .3s ease;
  margin: 0;
}
.about__portrait:hover {
  transform: translate(-3px, -3px);
  box-shadow: 14px 14px 0 var(--ox);
}
.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__headline .kicker { margin-bottom: 18px; }
.about__headline h2 {
  margin-top: 0;
}

/* Body copy sits beneath the top row, constrained to a comfortable measure. */
.about__copy {
  max-width: 68ch;
}
.about__copy p + p { margin-top: 18px; }
.about__copy .byline {
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--fog);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 110px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(229,50,43,0.08) 0%, transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--hair-2);
  position: relative;
}
.cta h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 0.94;
  font-weight: 800;
  max-width: 14ch;
  margin: 0 auto;
  letter-spacing: -0.035em;
  text-transform: none;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.cta h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ox);
  text-transform: none;
  font-size: 0.96em;
}
.cta p {
  max-width: 46ch;
  margin: 24px auto 36px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink-2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.footer a { color: var(--paper); transition: color .2s ease; }
.footer a:hover { color: var(--ox); }
.footer ul li { padding: 6px 0; }
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 16px;
  max-width: 32ch;
  color: rgba(255,255,255,0.7);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.available {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.available .led {
  width: 8px; height: 8px; border-radius: 50%;
  background: #65C466;
  box-shadow: 0 0 0 2px rgba(101,196,102,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 2px rgba(101,196,102,0.25); }
  50%     { box-shadow: 0 0 0 6px rgba(101,196,102,0.05); }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--hair-2);
}
.contact-hero h1 {
  font-family: var(--display);
  font-size: clamp(3.4rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 12ch;
  text-transform: none;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.contact-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ox);
  text-transform: none;
  font-size: 1em;
}
.contact-hero p {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  max-width: 50ch;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  padding: 72px 0 100px;
  border-bottom: 1px solid var(--hair-2);
}

.form {
  display: grid;
  gap: 22px;
}
.form__field {
  display: grid;
  gap: 8px;
}
.form__field label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.form__field label .opt {
  color: var(--fog);
  font-weight: 500;
  margin-left: 6px;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
}
.form__field input,
.form__field select,
.form__field textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--ink);
  padding: 12px 2px;
  font-size: 1rem;
  font-family: var(--sans);
  font-weight: 400;
  border-radius: 0;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--ox);
}
.form__field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--sans);
  line-height: 1.55;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1.2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: all .15s ease;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:hover { background: var(--ink); color: var(--paper); }
.chip:has(input:checked) {
  background: var(--ox);
  border-color: var(--ox);
  color: var(--paper);
}

.form__submit {
  margin-top: 6px;
  justify-self: start;
}

.contact-side {
  position: sticky;
  top: 104px;
  align-self: start;
}
.contact-card {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 28px;
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ox);
  position: relative;
}
.contact-card::before {
  content: "EST. 2022";
  position: absolute;
  top: -14px; left: 20px;
  background: var(--paper);
  color: var(--ink);
  padding: 3px 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  border: 1px solid var(--ink);
}
.contact-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.04;
  text-transform: none;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.contact-card h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--paper);
  text-transform: none;
  font-size: 0.96em;
}
.contact-card p {
  margin-top: 14px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
}
.contact-card .rule {
  height: 1px; background: rgba(255,255,255,0.15);
  margin: 24px 0;
}
.contact-list { display: grid; gap: 14px; }
.contact-list .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.contact-list .value {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;
  margin-top: 2px;
}
.contact-list a { color: var(--paper); border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 1px; }
.contact-list a:hover { color: var(--ox); border-color: var(--ox); }

.thank-you {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px var(--gutter);
}
.thank-you h1 {
  font-family: var(--display);
  font-size: clamp(3.4rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: none;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.thank-you h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ox);
  text-transform: none;
  font-size: 1em;
}
.thank-you p {
  margin: 20px auto 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  max-width: 48ch;
}

/* ============================================
   MOBILE NAV — BURGER + DRAWER
   ============================================ */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 20px;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  display: block;
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--hair);
}
.nav__mobile a:last-child { border-bottom: 0; margin-top: 8px; }
.nav__mobile a:hover { color: var(--ox); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .services__grid { grid-template-columns: 1fr; }
  .work__item { grid-template-columns: 1fr; gap: 32px; }
  .about__top { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .about__portrait { max-width: 360px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; padding: 48px 0 72px; }
  .contact-side { position: static; }
  .form__row { grid-template-columns: 1fr; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__left { display: none; }
  .nav__burger { display: flex; }
  .nav__right { justify-content: flex-end; }
  .nav__email { display: none; }
  .work__meta { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 32px 0 48px; }
  .hero__headline { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .hero__meta { font-size: 0.65rem; gap: 10px; padding-bottom: 16px; margin-bottom: 24px; }
  .hero__card { transform: none; }
  .hero__card h4 { font-size: 1.5rem; }
  .hero__intro { font-size: 0.95rem; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { padding: 12px 18px; font-size: 0.72rem; width: 100%; justify-content: center; }
  h2 { font-size: clamp(2rem, 7vw, 3.2rem); }
  .work__meta { grid-template-columns: 1fr; }
  .work__copy h3 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .marquee__track { font-size: 1.15rem; gap: 32px; }
  .marquee__track span { gap: 32px; }
  .services { padding: 64px 0 48px; }
  .services .section-head { margin-bottom: 36px; }
  .service { padding: 28px 22px; }
  .service__title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .work { padding: 64px 0 48px; }
  .work .section-head { margin-bottom: 36px; }
  .work__media { box-shadow: 6px 6px 0 var(--ox); }
  .about { padding: 64px 0 48px; }
  .about .section-head { margin-bottom: 36px; }
  .about__portrait { max-width: 280px; box-shadow: 6px 6px 0 var(--ox); }
  .about__headline h2 { font-size: clamp(1.9rem, 7vw, 3rem); }
  .about__copy { font-size: 0.95rem; }
  .cta { padding: 72px 0; }
  .cta h2 { font-size: clamp(2.2rem, 8vw, 4rem); }
  .cta p { font-size: 1.05rem; }
  .footer { padding: 48px 0 24px; }
  .footer__grid { gap: 28px; padding-bottom: 28px; }
  .footer__bottom { font-size: 0.65rem; }
  .section-head { padding-bottom: 20px; margin-bottom: 36px; }
  .contact-hero h1 { font-size: clamp(2.6rem, 9vw, 4.5rem); }
  .nav__right a { font-size: 0.72rem; letter-spacing: 0.12em; }
  .btn { padding: 12px 18px; font-size: 0.74rem; }
  .btn--ox { width: 100%; justify-content: center; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  * { transition: none !important; }
}
