/* =========================================================
   Red 4 Digital — Global stylesheet (Light theme)
   Palette: Black / White / B91E24 / Warm Gold / Silver
   Type:    Space Grotesk (display) + Inter (body)
   ========================================================= */

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

:root {
  /* Brand */
  --red:        #B91E24;
  --red-bright: #D72B33;
  --red-deep:   #8C161B;
  --red-soft:   #FBEEEF;       /* very pale red wash */
  --gold:       #9A7B4E;       /* warm brass — readable on white */
  --gold-soft:  #C5A572;       /* lighter accent for chips/borders */
  --silver:     #8B8F95;

  /* Neutrals */
  --black:      #0A0A0A;
  --ink:        #141414;
  --ink-2:      #1F1F1F;
  --white:      #FFFFFF;
  --grey-50:    #FAFAFA;
  --grey-100:   #F4F4F5;
  --grey-200:   #E5E5E7;
  --grey-300:   #D4D4D8;
  --grey-400:   #A1A1AA;
  --grey-500:   #71717A;
  --grey-700:   #3F3F46;

  /* Aliases */
  --bg:         var(--white);
  --surface:    var(--grey-50);
  --surface-2:  var(--grey-100);
  --border:     rgba(10,10,10,0.08);
  --border-2:   rgba(10,10,10,0.16);
  --text:       var(--black);
  --text-muted: rgba(10,10,10,0.65);
  --text-dim:   rgba(10,10,10,0.45);

  /* Footer (kept dark for contrast bookend) */
  --footer-bg:  #0A0A0A;
  --footer-text: rgba(255,255,255,0.78);
  --footer-text-dim: rgba(255,255,255,0.5);
  --footer-border: rgba(255,255,255,0.10);

  /* Layout */
  --max:        1280px;
  --gutter:     clamp(20px, 4vw, 48px);
  --section-y:  clamp(80px, 11vw, 160px);
  --radius:     16px;
  --radius-sm:  10px;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(10,10,10,0.04);
  --shadow:     0 1px 3px rgba(10,10,10,0.05), 0 8px 24px rgba(10,10,10,0.04);
  --shadow-lg:  0 4px 8px rgba(10,10,10,0.06), 0 20px 50px rgba(10,10,10,0.08);

  /* Motion */
  --ease:       cubic-bezier(.2, .7, .2, 1);
  --t-fast:     180ms;
  --t-med:      320ms;
  --t-slow:     600ms;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--black);
}
h1 { font-size: clamp(40px, 7vw, 84px); font-weight: 700; letter-spacing: -0.04em; }
h2 { font-size: clamp(30px, 4.4vw, 54px); letter-spacing: -0.032em; }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
h4 { font-size: clamp(18px, 1.4vw, 21px); }
p  { margin: 0 0 1em; color: var(--text-muted); }
p.lead { font-size: clamp(18px, 1.6vw, 22px); color: var(--ink-2); line-height: 1.55; max-width: 62ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.accent       { color: var(--red); }
.accent-gold  { color: var(--gold); }
.outline-text {
  -webkit-text-stroke: 1px var(--text-muted);
  color: transparent;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
section { padding-top: var(--section-y); padding-bottom: var(--section-y); position: relative; }
section.tight { padding-top: clamp(60px, 8vw, 110px); padding-bottom: clamp(60px, 8vw, 110px); }
.section-band { background: var(--surface); }
.divider { height: 1px; width: 100%; background: var(--border); }
.row { display: flex; flex-wrap: wrap; gap: 24px; }
.grid { display: grid; gap: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500; font-size: 15px;
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; transition: transform var(--t-fast) var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(185,30,36,0.20), 0 8px 24px rgba(185,30,36,0.16);
}
.btn-primary:hover { background: var(--red-bright); box-shadow: 0 2px 4px rgba(185,30,36,0.22), 0 12px 32px rgba(185,30,36,0.22); }
.btn-ghost {
  background: var(--white);
  color: var(--black);
  border-color: var(--border-2);
}
.btn-ghost:hover { border-color: var(--black); background: var(--white); }
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--ink); }
.btn-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold); color: var(--white); }

/* ---------- Nav (always dark, white logo) ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              padding var(--t-med) var(--ease);
}
.nav.scrolled {
  background: rgba(10,10,10,0.94);
  border-bottom-color: rgba(255,255,255,0.10);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: inline-flex; align-items: center;
  height: 80px;
  transition: height var(--t-med) var(--ease);
}
.nav-brand img { height: 100%; width: auto; display: block; }
.nav.scrolled .nav-brand { height: 64px; }
@media (max-width: 880px) {
  .nav-brand { height: 60px; }
  .nav.scrolled .nav-brand { height: 52px; }
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  transition: color var(--t-fast) var(--ease);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ""; position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: -8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
}
.nav-cta { margin-left: 14px; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 10px;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(150px, 16vw, 210px);
  padding-bottom: clamp(80px, 10vw, 140px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(185,30,36,0.10), transparent 60%),
    var(--white);
}
.hero::after {
  /* faint grid */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,10,10,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 1100px; }
.hero h1 .stroke {
  -webkit-text-stroke: 1.5px var(--black);
  color: transparent;
}
.hero h1 .four {
  display: inline-block;
  color: var(--red);
  position: relative;
}
.hero-sub {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--text-muted);
  max-width: 60ch;
  margin-top: 28px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 44px; }
.hero-meta {
  margin-top: 80px;
  display: flex; flex-wrap: wrap; gap: 40px 60px;
  align-items: flex-end;
}
.hero-meta .stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-meta .stat .label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- Background "4" motif ---------- */
.motif-4 {
  position: absolute;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(260px, 50vw, 720px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(185,30,36,0.16);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  right: -8vw; bottom: -10vw;
}

/* ---------- Section heading ---------- */
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head p { font-size: 18px; }

/* ---------- Service cards ---------- */
.service-grid {
  display: grid; gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.service-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .service-grid.cols-2, .service-grid.cols-4 { grid-template-columns: 1fr; }
}
.service {
  background: var(--white);
  padding: 40px 36px 44px;
  position: relative;
  transition: background var(--t-med) var(--ease);
}
.service:hover { background: var(--surface); }
.service .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.service h3 {
  margin: 18px 0 14px;
  font-size: clamp(22px, 1.8vw, 26px);
}
.service p { font-size: 15px; color: var(--text-muted); }
.service .icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border-2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 22px;
  background: var(--white);
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.service:hover .icon { border-color: var(--red); color: var(--red); background: var(--red-soft); }
.service .arrow {
  position: absolute; right: 32px; top: 36px;
  color: var(--text-dim);
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.service:hover .arrow { color: var(--black); transform: translate(4px, -4px); }

/* ---------- Work / Case study cards ---------- */
.work-grid { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.case {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  background:
    radial-gradient(ellipse at top right, rgba(185,30,36,0.05), transparent 50%),
    var(--white);
  overflow: hidden;
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  box-shadow: var(--shadow-sm);
}
.case:hover { border-color: var(--border-2); transform: translateY(-3px); box-shadow: var(--shadow); }
.case .tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  padding: 5px 10px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  margin-bottom: 24px;
}
.case h3 { font-size: clamp(24px, 2.4vw, 32px); margin-bottom: 14px; }
.case p { color: var(--text-muted); margin-bottom: 20px; }
.case .link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px;
  color: var(--black);
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 4px;
}
.case .link:hover { border-bottom-color: var(--red); color: var(--red); }
.case .meta { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.case .meta div { font-size: 13px; color: var(--text-dim); }
.case .meta strong { display: block; color: var(--black); font-size: 14px; font-weight: 500; margin-top: 2px; }

/* ---------- Feature row (alternating) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: clamp(80px, 10vw, 140px);
}
.feature:last-child { margin-bottom: 0; }
.feature.reverse > div:first-child { order: 2; }
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse > div:first-child { order: 0; }
}
.feature h3 { font-size: clamp(28px, 3vw, 40px); }
.feature .visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(185,30,36,0.10), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(154,123,78,0.10), transparent 60%),
    var(--surface);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature .visual svg.deco { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.95; }

/* ---------- Stats band ---------- */
.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  background: var(--surface);
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px; }
.stats-grid .stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stats-grid .stat .num .accent { color: var(--red); }
.stats-grid .stat .label {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- About / Eddie Colman block ---------- */
.story {
  border-left: 3px solid var(--red);
  padding: 12px 0 12px 32px;
  margin: 36px 0;
  background: linear-gradient(90deg, var(--red-soft), transparent 70%);
  border-radius: 0 8px 8px 0;
}
.story p { color: var(--ink-2); font-size: 17px; line-height: 1.65; }
.story .by { display: block; margin-top: 14px; font-size: 13px; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; }

/* ---------- Form ---------- */
.form {
  display: grid;
  gap: 18px;
  max-width: 640px;
}
.form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form .row-2 { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  color: var(--black);
  font: inherit;
  padding: 14px 16px;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(185,30,36,0.10);
}
.form-note { font-size: 13px; color: var(--text-dim); }

/* ---------- Footer (dark for contrast) ---------- */
.footer {
  padding: 80px 0 40px;
  background: var(--footer-bg);
  color: var(--footer-text);
  position: relative;
}
.footer h5, .footer ul, .footer p, .footer a, .footer .legal { color: inherit; }
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) {
  .footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer .footer-grid { grid-template-columns: 1fr; }
}
.footer h5 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--footer-text); font-size: 15px; transition: color var(--t-fast) var(--ease); }
.footer ul a:hover { color: var(--white); }
.footer p { font-size: 14px; color: var(--footer-text); }
.footer .brand .footer-logo {
  height: 80px; width: auto;
}
.footer .brand p { margin-top: 18px; max-width: 36ch; }
.footer .legal {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--footer-border);
  display: flex; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--footer-text-dim);
}

/* ---------- Page header ---------- */
.page-head {
  padding-top: clamp(150px, 14vw, 200px);
  padding-bottom: clamp(50px, 6vw, 90px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(185,30,36,0.10), transparent 60%),
    var(--white);
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(40px, 6vw, 72px); max-width: 18ch; }
.page-head p { font-size: clamp(17px, 1.4vw, 20px); color: var(--text-muted); max-width: 62ch; }

/* ---------- Blog ---------- */
.blog-empty {
  border: 1px dashed var(--border-2);
  border-radius: var(--radius);
  padding: 60px;
  text-align: center;
  background: var(--surface);
}
.blog-empty .icon { font-size: 36px; color: var(--gold); margin-bottom: 18px; }

/* ---------- Tag list ---------- */
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.tag-list span {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--border-2);
  padding: 6px 12px; border-radius: 999px;
  color: var(--ink-2);
  background: var(--white);
}

/* ---------- Studio / gallery ---------- */
.art-section { padding-top: clamp(60px, 7vw, 100px); padding-bottom: clamp(60px, 7vw, 100px); }
.art-section .head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.art-section .head h2 { margin: 0; font-size: clamp(28px, 3.2vw, 44px); }
.art-section .head .buy {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid var(--gold); padding-bottom: 4px;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.art-section .head .buy:hover { color: var(--red); border-color: var(--red); }

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.art-tile {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  display: block;
}
.art-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-2); }
.art-tile img,
.art-tile .ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.art-tile .ph {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: clamp(20px, 2.2vw, 30px);
  text-align: center;
  padding: 24px;
  letter-spacing: -0.015em;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0,0,0,0.3);
}
/* Themed placeholder backgrounds — distinct per category */
.art-tile.t-golf      .ph { background: linear-gradient(135deg, #2F5D34 0%, #87A86E 60%, #DCE8C7 100%); }
.art-tile.t-football  .ph { background: linear-gradient(135deg, #4A1518 0%, #B91E24 55%, #E86670 100%); }
.art-tile.t-motor     .ph { background: linear-gradient(135deg, #0F1620 0%, #2C3F58 50%, #6B7A95 100%); }
.art-tile.t-tennis    .ph { background: linear-gradient(135deg, #25286B 0%, #4F45A7 55%, #C04AAE 100%); }
.art-tile.t-arch      .ph { background: linear-gradient(135deg, #2A2520 0%, #6B5A45 55%, #C5A572 100%); }
.art-tile .ph::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(255,255,255,0.18), transparent 55%),
    radial-gradient(ellipse at bottom, rgba(0,0,0,0.25), transparent 55%);
  pointer-events: none;
}
.art-tile .ph span { position: relative; z-index: 1; max-width: 16ch; }
.art-tile .ph .icon {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 28px; height: 28px;
  opacity: 0.75;
}
.art-tile .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.78) 100%);
  color: var(--white);
  z-index: 2;
}
.art-tile .caption .ttl { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px; line-height: 1.2; }
.art-tile .caption .sub { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; letter-spacing: 0.02em; }
.art-tile .badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(255,255,255,0.92); color: var(--black);
  padding: 4px 8px; border-radius: 999px;
  font-weight: 500;
}
.art-tile.wide { aspect-ratio: 4/3; }

/* Featured artwork strip on home */
.art-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .art-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .art-strip { grid-template-columns: 1fr 1fr; gap: 12px; } }
.art-strip .art-tile { aspect-ratio: 1/1; }
.art-strip .art-tile .ph { font-size: clamp(14px, 1.6vw, 20px); }

/* ---------- Mobile menu ---------- */
@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 0;
    top: 92px;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 30px var(--gutter);
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform var(--t-med) var(--ease);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 22px; padding: 14px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); color: var(--white); }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 18px 0 0; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* =========================================================
   SINGLE-PAGE LAYOUT — alternating dark/light sections
   Red 4 Digital home + sub-page heroes
   ========================================================= */

/* Sections become full bands with their own background */
.band {
  padding-top: clamp(28px, 3.5vw, 44px);
  padding-bottom: clamp(56px, 8vw, 104px);
  position: relative;
  overflow: hidden;
}
.band--dark {
  background: var(--black);
  color: var(--white);
}
.band--dark h1, .band--dark h2, .band--dark h3, .band--dark h4, .band--dark h5 { color: var(--white); }
.band--dark p { color: rgba(255,255,255,0.70); }
.band--dark p.lead { color: rgba(255,255,255,0.88); }
.band--dark .eyebrow { color: var(--gold-soft); }
.band--dark .eyebrow::before { background: linear-gradient(90deg, var(--red), var(--gold-soft)); }
.band--dark .accent { color: var(--red-bright); }

.band--light {
  background: var(--white);
  color: var(--black);
}
.band--alt { background: var(--grey-50); }

/* Hero (the dark top of the page) */
.band--hero {
  padding-top: clamp(150px, 16vw, 220px);
  padding-bottom: clamp(80px, 10vw, 120px);
  background:
    linear-gradient(105deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.74) 50%, rgba(10,10,10,0.55) 100%),
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(185,30,36,0.22), transparent 60%),
    url('../img/backdrops/hero.jpg') center / cover no-repeat,
    var(--black);
}
.band--hero::after {
  /* subtle vignette to keep edges grounded over the image */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 40%, transparent 55%, rgba(10,10,10,0.55) 100%);
  z-index: 0; pointer-events: none;
}
.band--hero > .container { position: relative; z-index: 1; }

/* Section backdrops (dark overlay keeps text + tiles readable) */
#services.band--dark {
  background:
    linear-gradient(rgba(10,10,10,0.45), rgba(10,10,10,0.52)),
    url('../img/backdrops/services.jpg') center / cover no-repeat,
    var(--black);
}
#why-red-4.band--dark {
  background:
    linear-gradient(105deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.72) 55%, rgba(10,10,10,0.55) 100%),
    url('../img/backdrops/why.jpg') center / cover no-repeat,
    var(--black);
}
#services.band--dark > .container,
#why-red-4.band--dark > .container { position: relative; z-index: 1; }

/* Per-page hero backdrops (sub-pages) */
.band--hero.hero-web,
.band--hero.hero-art,
.band--hero.hero-gifts,
.band--hero.hero-ecom,
.band--hero.hero-software,
.band--hero.hero-seo,
.band--hero.hero-sports,
.band--hero.hero-locations,
.band--hero.hero-bespoke {
  background-color: var(--black);
}
.band--hero.hero-web      { background: linear-gradient(105deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.74) 50%, rgba(10,10,10,0.55) 100%), radial-gradient(ellipse 70% 55% at 50% 0%, rgba(185,30,36,0.20), transparent 60%), url('../img/backdrops/svc-web.jpg') center / cover no-repeat, var(--black); }
.band--hero.hero-art      { background: linear-gradient(105deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.76) 50%, rgba(10,10,10,0.58) 100%), radial-gradient(ellipse 70% 55% at 50% 0%, rgba(185,30,36,0.20), transparent 60%), url('../img/backdrops/svc-art.jpg') center / cover no-repeat, var(--black); }
.band--hero.hero-gifts    { background: linear-gradient(105deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.74) 50%, rgba(10,10,10,0.55) 100%), radial-gradient(ellipse 70% 55% at 50% 0%, rgba(185,30,36,0.20), transparent 60%), url('../img/backdrops/svc-gifts.jpg') center / cover no-repeat, var(--black); }
.band--hero.hero-ecom     { background: linear-gradient(105deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.74) 50%, rgba(10,10,10,0.55) 100%), radial-gradient(ellipse 70% 55% at 50% 0%, rgba(185,30,36,0.20), transparent 60%), url('../img/backdrops/svc-ecommerce.jpg') center / cover no-repeat, var(--black); }
.band--hero.hero-software { background: linear-gradient(105deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.74) 50%, rgba(10,10,10,0.55) 100%), radial-gradient(ellipse 70% 55% at 50% 0%, rgba(185,30,36,0.20), transparent 60%), url('../img/backdrops/svc-software.jpg') center / cover no-repeat, var(--black); }
.band--hero.hero-seo      { background: linear-gradient(105deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.74) 50%, rgba(10,10,10,0.55) 100%), radial-gradient(ellipse 70% 55% at 50% 0%, rgba(185,30,36,0.20), transparent 60%), url('../img/backdrops/svc-seo.jpg') center / cover no-repeat, var(--black); }
.band--hero.hero-sports   { background: linear-gradient(105deg, rgba(10,10,10,0.90) 0%, rgba(10,10,10,0.74) 50%, rgba(10,10,10,0.58) 100%), radial-gradient(ellipse 70% 55% at 50% 0%, rgba(185,30,36,0.18), transparent 60%), url('../img/backdrops/studio-sports.jpg') center / cover no-repeat, var(--black); }
.band--hero.hero-locations{ background: linear-gradient(105deg, rgba(10,10,10,0.90) 0%, rgba(10,10,10,0.74) 50%, rgba(10,10,10,0.58) 100%), radial-gradient(ellipse 70% 55% at 50% 0%, rgba(185,30,36,0.18), transparent 60%), url('../img/backdrops/studio-locations.jpg') center / cover no-repeat, var(--black); }
.band--hero.hero-bespoke  { background: linear-gradient(105deg, rgba(10,10,10,0.90) 0%, rgba(10,10,10,0.74) 50%, rgba(10,10,10,0.58) 100%), radial-gradient(ellipse 70% 55% at 50% 0%, rgba(185,30,36,0.18), transparent 60%), url('../img/backdrops/studio-bespoke.jpg') center / cover no-repeat, var(--black); }
.band--hero h1 {
  font-size: clamp(40px, 6.5vw, 78px);
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 20ch;
  color: var(--white);
}
.band--hero h1 .accent { color: var(--red-bright); }
.band--hero .lead { font-size: clamp(18px, 1.7vw, 22px); max-width: 60ch; margin: 22px 0 36px; color: rgba(255,255,255,0.82); }

/* Section heading utility */
.band-head { max-width: 760px; margin-bottom: 56px; }
.band-head h2 { font-size: clamp(32px, 4.6vw, 56px); letter-spacing: -0.03em; }
.band-head p { font-size: clamp(17px, 1.4vw, 19px); margin-top: 14px; }
.band-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* TILE GRID — Sincordia-style boxes */
.tile-grid {
  display: grid;
  gap: 22px;
}
.tile-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.tile-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) {
  .tile-grid.cols-3, .tile-grid.cols-2 { grid-template-columns: 1fr; }
}

.tile {
  position: relative;
  padding: 38px 32px 36px;
  border-radius: 18px;
  border: 1px solid;
  transition: transform var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              background var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
}
.tile:hover { transform: translateY(-4px); }

/* Dark-section tile — white panel standing out over visible backdrop */
.band--dark .tile {
  background: rgba(255,255,255,0.85);
  border-color: rgba(154,123,78,0.30);   /* subtle gold border */
  color: var(--ink);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.band--dark .tile:hover {
  background: rgba(255,255,255,0.95);
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(185,30,36,0.22);
}
.band--dark .tile h3 { color: var(--black); }
.band--dark .tile p { color: var(--grey-700); }
.band--dark .tile .num { color: var(--gold); }
.band--dark .tile .tile-arrow { color: var(--red); }
.band--dark .tile .tile-icon { color: var(--red); }

/* Light-section tile */
.band--light .tile, .band--alt .tile {
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 1px 3px rgba(10,10,10,0.04);
}
.band--light .tile:hover, .band--alt .tile:hover {
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(10,10,10,0.10);
}

/* Tile internals */
.tile .tile-icon {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  color: var(--red);
}
.tile .tile-icon svg { width: 44px; height: 44px; }
.band--dark .tile .tile-icon { color: var(--red); }
.tile h3 {
  font-size: clamp(20px, 1.7vw, 24px);
  margin: 0 0 12px;
  line-height: 1.2;
  text-align: center;
}
.tile p { font-size: 15px; margin: 0 0 18px; flex-grow: 1; }
.tile .tile-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; letter-spacing: 0.05em;
  color: var(--red); font-weight: 500;
  transition: gap var(--t-fast) var(--ease);
}
.tile .tile-arrow svg { width: 14px; height: 14px; transition: transform var(--t-fast) var(--ease); }
.tile:hover .tile-arrow svg { transform: translateX(4px); }
.band--dark .tile .tile-arrow { color: var(--red-bright); }

/* Tile with image at top */
.tile.tile-image {
  padding: 0;
  display: block;
}
.tile.tile-image .tile-img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--grey-100);
}
.tile.tile-image .tile-body { padding: 28px 28px 32px; }
.tile.tile-image .tile-body h3 { margin-bottom: 10px; }

/* Studio tile (with thumbnail) */
.tile.studio-card {
  padding: 0;
  display: block;
}
.tile.studio-card .thumb {
  aspect-ratio: 4/3;
  background: var(--grey-100);
  position: relative;
  overflow: hidden;
}
.tile.studio-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.tile.studio-card:hover .thumb img { transform: scale(1.04); }
.tile.studio-card .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.10) 100%);
}
.tile.studio-card .body { padding: 26px 28px 30px; }
.tile.studio-card .body h3 { margin: 0 0 8px; }
.tile.studio-card .body p { margin: 0 0 14px; }

/* WHY RED 4 — two-column with photo */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }
.why-grid h2 { font-size: clamp(34px, 4.8vw, 56px); margin: 8px 0 22px; }
.why-grid .eddie {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  background: rgba(13,13,13,0.55);   /* slightly transparent gap */
  border: 2px solid var(--gold);
  padding: 14px;            /* gap between gold frame and image */
}
.why-grid .eddie img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* CONTACT — footer combined with enquire form reveal */
.band--contact {
  background: var(--black);
  color: var(--white);
  padding: clamp(28px, 3.5vw, 44px) 0 40px;
}
.band--contact .contact-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
@media (max-width: 880px) { .band--contact .contact-hero { grid-template-columns: 1fr; gap: 30px; } }
.band--contact h2 { color: var(--white); font-size: clamp(34px, 4.8vw, 56px); margin: 0 0 16px; }
.band--contact .lead { color: rgba(255,255,255,0.82); max-width: 60ch; }
.band--contact .info-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 880px) { .band--contact .info-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .band--contact .info-grid { grid-template-columns: 1fr; } }
.band--contact .info-grid h5 {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 14px; font-weight: 500;
}
.band--contact .info-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.band--contact .info-grid a { color: rgba(255,255,255,0.78); font-size: 15px; }
.band--contact .info-grid a:hover { color: var(--white); }
.band--contact .info-grid p, .band--contact .info-grid li { color: rgba(255,255,255,0.78); font-size: 15px; }
.band--contact .legal {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.50);
}

/* Form reveal panel */
.form-panel {
  margin-top: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 36px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 600ms var(--ease), opacity 400ms var(--ease), padding 400ms var(--ease), margin 400ms var(--ease);
}
.form-panel.open {
  max-height: 1200px;
  opacity: 1;
  padding: 36px;
  margin-top: 28px;
}
.form-panel .field input,
.form-panel .field select,
.form-panel .field textarea {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.form-panel .field input:focus,
.form-panel .field select:focus,
.form-panel .field textarea:focus {
  background: rgba(255,255,255,0.06);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(185,30,36,0.15);
}
.form-panel .field label { color: rgba(255,255,255,0.78); }
.form-panel .field input::placeholder,
.form-panel .field textarea::placeholder { color: rgba(255,255,255,0.32); }
.form-panel .form-note { color: rgba(255,255,255,0.45); }

/* Work cards with screenshot */
.work-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.work-card .shot {
  aspect-ratio: 16/10;
  background: var(--grey-100);
  overflow: hidden;
  position: relative;
}
.work-card .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.work-card:hover .shot img { transform: scale(1.02); }
.work-card .body { padding: 28px 30px 32px; }
.work-card .body h3 { margin: 0 0 10px; font-size: clamp(22px, 2vw, 28px); }
.work-card .body p { margin: 0 0 14px; }
.work-card .body .ext {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 0.05em; color: var(--red); font-weight: 500;
}
.work-card .body .ext svg { width: 14px; height: 14px; }

/* /* Hero service tiles — slightly different (numbered, large) */
.hero-tiles { margin-top: 60px; }
.hero-tiles .tile { padding: 36px 32px; }
.hero-tiles .tile .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft); margin: 0 0 14px; font-weight: 500;
}
.hero-tiles .tile h3 { font-size: clamp(22px, 1.8vw, 26px); }
.hero-tiles .tile p { margin-bottom: 22px; }

/* Stats row under hero */
.hero-stats {
  margin-top: 60px;
  display: flex; flex-wrap: wrap; gap: 36px 56px;
}
.hero-stats .stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.025em; line-height: 1;
}
.hero-stats .stat .num .a { color: var(--red-bright); }
.hero-stats .stat .label {
  display: block; margin-top: 8px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

/* Hover: solid red invert for content boxes (image cards keep their photo) */
.tile:not(.studio-card):not(.work-card):not(.tile-image):hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 16px 44px rgba(185,30,36,0.34);
}
.tile:not(.studio-card):not(.work-card):not(.tile-image):hover h3,
.tile:not(.studio-card):not(.work-card):not(.tile-image):hover p,
.tile:not(.studio-card):not(.work-card):not(.tile-image):hover .num,
.tile:not(.studio-card):not(.work-card):not(.tile-image):hover .tile-arrow {
  color: var(--white);
}
.tile:not(.studio-card):not(.work-card):not(.tile-image):hover .tile-icon {
  color: var(--white);
}

/* Square edges on all boxes / cards / inputs / framed images */
.tile, .tile-icon, .art-tile, .art-tile .badge,
.work-card, .work-card .shot, .studio-card, .studio-card .thumb,
.form-panel, .why-grid .eddie, .why-grid .eddie .badge,
.case, .case .tag, .service-grid, .feature .visual,
.blog-empty, .stats-band,
.field input, .field select, .field textarea,
.tag-list span {
  border-radius: 0 !important;
}

/* Hidden / shown helper */
.hidden { display: none; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }
.mt-6 { margin-top: 36px; }
.mt-8 { margin-top: 48px; }
.muted { color: var(--text-muted); }
.dim   { color: var(--text-dim); }
