/* =====================================================
   THIRD EYE LOCATIONS — concept-field
   Inspired by stand4productions.com
   Fonts: Bebas Neue (display) + DM Sans (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ─── VARIABLES ──────────────────────────────────────── */
:root {
  --orange:    #e05c18;
  --orange-dk: #c94f12;
  --black:     #0d0d0d;
  --dark:      #1a1a1a;
  --charcoal:  #282828;
  --cream:     #f4f0e8;
  --off-white: #f9f8f5;
  --white:     #ffffff;
  --ink:       #111111;
  --muted:     #5c5c5c;
  --rule:      rgba(15,15,15,0.10);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --header-h: 120px;
  --max-w:    1200px;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 52px);
}

/* ─── SHARED: SECTION TAG ────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.09em;
  padding: 13px 30px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--orange-dk); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.44);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.09em;
  padding: 13px 30px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}

/* ─── HEADER ─────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  padding: 0 clamp(20px, 4vw, 52px);
  isolation: isolate;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 12px;
}

.header-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  border-top: 1px solid rgba(255,255,255,0.20);
  padding: 9px 0 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-logo { display: flex; align-items: center; }
.header-logo-img {
  height: 42px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
}
.header-nav a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--white); }
.header-nav .header-cta {
  background: var(--black);
  color: var(--white);
  padding: 8px 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
.header-nav .header-cta:hover { background: var(--charcoal); }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  padding-bottom: clamp(24px, 4vh, 56px);
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  background: var(--dark);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: opacity 1.2s ease;
}
.hero-video--fade {
  opacity: 0;
}
.hero-yt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-yt--fade {
  opacity: 1;
}
#hero-yt-wrap iframe {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.84) 0%,
    rgba(8,8,8,0.34) 48%,
    rgba(8,8,8,0.14) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 52px);
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.92;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.hero-sub {
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  color: rgba(255,255,255,0.66);
  max-width: 460px;
  line-height: 1.68;
  margin-bottom: 2.2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: clamp(20px, 4vh, 40px);
  right: clamp(20px, 4vw, 52px);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: 2;
}

/* ─── FLOATING EYE WATERMARK ─────────────────────────── */
.eye-watermark {
  position: absolute;
  right: clamp(-40px, -2vw, 20px);
  top: 50%;
  transform: translateY(-52%);
  width: clamp(260px, 44vw, 600px);
  height: clamp(260px, 44vw, 600px);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.eye-watermark-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.10;
}

/* ─── SCOPE STRIP ───────────────────────────────────── */
.scope-strip {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.scope-cell {
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.scope-cell:last-child { border-right: none; }
.scope-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.scope-cell p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
@media (max-width: 860px) {
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
  .scope-cell:nth-child(2) { border-right: none; }
  .scope-cell:nth-child(1),
  .scope-cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 480px) {
  .scope-grid { grid-template-columns: 1fr; }
  .scope-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .scope-cell:last-child { border-bottom: none; }
}

/* ─── SERVICES MOSAIC ────────────────────────────────── */
.services {
  background: var(--black);
}
.services-header {
  padding-top: clamp(2.8rem, 5.5vw, 4.5rem);
  padding-bottom: 1.8rem;
}
.services-header .section-tag {
  color: rgba(255,255,255,0.38);
}

.services-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 340px);
}

/* Photo cells */
.mosaic-photo {
  position: relative;
  overflow: hidden;
}
.mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.mosaic-photo:hover .mosaic-img { transform: scale(1.05); }

/* Text cells */
.mosaic-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.4rem, 2.2vw, 2rem);
  position: relative;
  overflow: hidden;
}
.mosaic-text--dark {
  background: var(--charcoal);
  color: var(--white);
}
.mosaic-text--cream {
  background: var(--cream);
  color: var(--black);
}

.mosaic-num {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  opacity: 0.13;
}
.mosaic-text--dark .mosaic-num  { color: var(--white); }
.mosaic-text--cream .mosaic-num { color: var(--black); }

.mosaic-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  text-transform: uppercase;
  line-height: 0.94;
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}
.mosaic-text p {
  font-size: 0.8rem;
  line-height: 1.68;
  opacity: 0.68;
  margin-bottom: 1.1rem;
}
.mosaic-tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  padding-top: 0.8rem;
  border-top: 1px solid;
}
.mosaic-text--dark .mosaic-tag  { border-color: rgba(255,255,255,0.10); }
.mosaic-text--cream .mosaic-tag { border-color: rgba(0,0,0,0.10); }

/* ─── INTERNATIONAL FIXING SECTION ──────────────────── */
.fixing-section {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.fixing-inner {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.fixing-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  position: sticky;
  top: 72px;
}
.fixing-left .section-tag { color: var(--orange); margin-bottom: 0; }
.fixing-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.fixing-lead {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.72;
  margin-bottom: 1rem;
}
.fixing-body {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.fixing-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2.5rem;
  margin-bottom: 2.2rem;
}
.fix-item {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.55;
}
.fix-item::before {
  content: '/';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.fixing-stats {
  display: flex;
  gap: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.fixing-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 900px) {
  .fixing-inner { grid-template-columns: 1fr; }
  .fixing-left { position: static; gap: 1.5rem; }
  .fixing-checklist { grid-template-columns: 1fr; }
}

/* ─── DATABASE ───────────────────────────────────────── */
.database {
  background: var(--off-white);
  padding-top: clamp(2.8rem, 5.5vw, 4.5rem);
}
.database-head {
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}
.database-head .section-tag {
  margin-bottom: 1rem;
}
.database-intro {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.72;
}

.types-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 250px;
}
.type-cell {
  position: relative;
  overflow: hidden;
}
.type-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.70);
  transition: filter 0.35s ease, transform 0.45s ease;
}
.type-cell:hover .type-img {
  filter: brightness(0.88);
  transform: scale(1.06);
}
.type-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 14px 14px;
  background: linear-gradient(transparent, rgba(8,8,8,0.62));
}
.type-overlay span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

/* ─── PORTFOLIO ──────────────────────────────────────── */
.portfolio {
  background: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.portfolio-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.portfolio-head .section-tag {
  margin-bottom: 0.9rem;
}
.portfolio-intro {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.72;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.port-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.port-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.48s ease;
}
.port-item:hover .port-img { transform: scale(1.06); }
.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.9rem;
  transition: background 0.28s ease;
}
.port-item:hover .port-overlay { background: rgba(8,8,8,0.50); }
.port-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.port-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  margin-top: 2px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.28s 0.04s ease, transform 0.28s 0.04s ease;
}
.port-item:hover .port-title,
.port-item:hover .port-sub { opacity: 1; transform: translateY(0); }

/* ─── GARRETT ────────────────────────────────────────── */
.garrett {
  background: var(--dark);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.garrett-inner {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: clamp(2.5rem, 5.5vw, 5.5rem);
  align-items: center;
}
.garrett-photo {
  width: 210px;
  height: 270px;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}
.garrett-text .section-tag {
  color: var(--orange);
  margin-bottom: 1rem;
}
.garrett-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  text-transform: uppercase;
  line-height: 0.91;
  color: var(--white);
  margin-bottom: 1.4rem;
  letter-spacing: 0.01em;
}
.garrett-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.78;
  max-width: 500px;
}

/* ─── PRODUCTIONS ────────────────────────────────────── */
.productions {
  background: var(--off-white);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.productions-head {
  margin-bottom: 0.8rem;
}
.productions-intro {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.72;
  margin-bottom: 2.6rem;
}
.productions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prod-card {
  background: var(--white);
  overflow: hidden;
}
.prod-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.48s ease;
}
.prod-card:hover .prod-img { transform: scale(1.04); }
.prod-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.prod-body { padding: 1.5rem; }
.prod-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.0;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.prod-body p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 1rem;
}
.prod-body blockquote {
  font-style: italic;
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.72;
  border-left: 2.5px solid var(--orange);
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.prod-body blockquote cite {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-top: 0.5rem;
}
.prod-meta {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.9rem;
  border-top: 1px solid var(--rule);
}

/* ─── CONTACT ────────────────────────────────────────── */
.contact {
  background: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: start;
}
.contact-left .section-tag {
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  line-height: 0.91;
  margin-bottom: 1.3rem;
  letter-spacing: 0.01em;
}
.contact-left > p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 2rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.contact-links a,
.contact-links span {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}
.contact-links a:hover { color: var(--orange); }

/* Form styles */
.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--off-white);
  border: 1.5px solid transparent;
  padding: 11px 13px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea {
  height: 108px;
  resize: vertical;
}
.btn-submit {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: none;
  padding: 14px 30px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--orange-dk); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 1.8rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.82);
}
.footer-brand span { color: var(--orange); }
.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.07em;
}
.footer-link {
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--orange);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 300px);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .productions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .productions-grid .prod-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .header-nav a:not(.header-cta) { display: none; }
  .hero-title { font-size: clamp(3rem, 13vw, 5rem); }
  .services-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 260px);
  }
  .types-row { grid-template-columns: repeat(3, 1fr); height: 310px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .garrett-inner { grid-template-columns: 1fr; gap: 2rem; }
  .garrett-photo { width: 150px; height: 190px; }
  .productions-grid { grid-template-columns: 1fr; }
  .productions-grid .prod-card:last-child { grid-column: span 1; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { flex-direction: column; gap: 0.7rem; text-align: center; }
}

@media (max-width: 480px) {
  .services-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .mosaic-photo { height: 240px; }
  .mosaic-text { min-height: 220px; }
  .types-row { grid-template-columns: repeat(2, 1fr); height: 380px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── CASE STUDY PAGES ───────────────────────────────── */

/* Hero */
.cs-hero {
  position: relative;
  height: 72vh;
  min-height: 500px;
  margin-top: var(--header-h);
}
.cs-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cs-hero--video {
  overflow: hidden;
  height: 80vh;
}
.cs-hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--dark);
  pointer-events: none;
}
.cs-hero-yt-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Cover scale: always fills the container regardless of aspect ratio */
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: none;
}
.cs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.18) 60%, rgba(8,8,8,0.0) 100%);
}
.cs-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(2rem,5vw,4rem) clamp(20px,4vw,52px);
  max-width: 1200px;
  margin: 0 auto;
}
.cs-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.7rem;
}
.cs-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 0.75rem;
}
.cs-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem,7vw,7.5rem);
  line-height: 0.88;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.cs-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.65;
}

/* Page wrapper */
.cs-page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,52px);
}
.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s;
}
.cs-back:hover { color: var(--orange); }

/* Two-column body */
.cs-two-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(3rem,6vw,6rem);
  padding-top: clamp(3rem,5vw,4.5rem);
  padding-bottom: clamp(3rem,5vw,4.5rem);
  align-items: start;
}
.cs-sidebar {
  background: var(--off-white);
  padding: 1.8rem;
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.cs-sidebar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.3rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--orange);
}
.cs-detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--rule);
}
.cs-detail-row:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.cs-detail-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.cs-detail-value {
  font-size: 0.82rem;
  color: var(--ink);
  line-height: 1.4;
}

/* Content body */
.cs-content-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem,3vw,2.2rem);
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 1rem;
  margin-top: 2.8rem;
  color: var(--ink);
}
.cs-content-body h2:first-child { margin-top: 0; }
.cs-content-body p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.cs-content-body strong {
  color: var(--ink);
  font-weight: 600;
}
.cs-pull-quote {
  border-left: 3px solid var(--orange);
  padding: 1.2rem 1.6rem;
  margin: 2.5rem 0;
  background: var(--off-white);
}
.cs-pull-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 0.4rem;
}
.cs-pull-quote cite {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  font-style: normal;
}
.cs-deliverables {
  list-style: none;
  margin: 1rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.5rem;
}
.cs-deliverables li {
  font-size: 0.83rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.4;
}
.cs-deliverables li::before {
  content: '/';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* FAQ */
.cs-faq {
  background: var(--off-white);
  padding: clamp(3rem,6vw,5rem) 0;
}
.cs-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  margin-top: 2rem;
}
.cs-faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.cs-faq-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.72;
}

/* CTA band */
.cs-cta-band {
  background: var(--dark);
  padding: clamp(3rem,6vw,5rem) 0;
}
.cs-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,52px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cs-cta-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,4vw,3rem);
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cs-cta-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.52);
  max-width: 400px;
  line-height: 1.65;
}

/* Related band */
.cs-related {
  background: var(--white);
  padding: clamp(2.5rem,5vw,4rem) 0;
}
.cs-related-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,52px);
}
.cs-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 1.8rem;
}

/* cs-link on prod cards */
.prod-body .cs-link {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0.75rem;
  transition: opacity 0.2s;
}
.prod-body .cs-link:hover { opacity: 0.7; }

/* Case study responsive */
@media (max-width: 900px) {
  .cs-two-col { grid-template-columns: 1fr; }
  .cs-sidebar { position: static; }
  .cs-deliverables { grid-template-columns: 1fr; }
  .cs-cta-inner { flex-direction: column; align-items: flex-start; }
  .cs-related-grid { grid-template-columns: 1fr; }
  .cs-faq-grid { grid-template-columns: 1fr; }
}

/* WhatsApp floating button */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover {
  transform: scale(1.10);
  box-shadow: 0 6px 28px rgba(37,211,102,0.60);
}
.whatsapp-btn svg {
  display: block;
}

/* Case study video embed */
.cs-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 2rem 0 2.5rem;
  background: var(--dark);
}
.cs-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =====================
   CLIENTS SECTION
   ===================== */
.clients {
  background: var(--charcoal);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.clients-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.clients-head .section-tag {
  color: var(--orange);
  margin-bottom: 1rem;
}
.clients-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.clients-intro {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-left: 1px solid rgba(255,255,255,0.07);
}
.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 1.5vw, 1.5rem);
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
  height: 100px;
}
.client-item:hover {
  background: rgba(255,255,255,0.04);
}
a.client-item {
  text-decoration: none;
}
.client-item--linked {
  position: relative;
  cursor: pointer;
}
.client-item--linked::after {
  content: '↗';
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.0);
  transition: color 0.2s;
}
.client-item--linked:hover::after {
  color: var(--orange);
}
.client-item--linked:hover {
  background: rgba(255,255,255,0.07);
}
.client-logo {
  display: block;
  max-height: 44px;
  max-width: 80%;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.42);
  transition: filter 0.25s;
}
.client-item:hover .client-logo {
  filter: brightness(0) invert(1) opacity(0.85);
}
.client-wordmark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s;
  text-align: center;
  line-height: 1;
}
.client-item:hover .client-wordmark {
  color: rgba(255,255,255,0.85);
}

@media (max-width: 900px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 600px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .client-logo {
    max-height: 32px;
  }
  .client-wordmark {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }
}

/* ─── ENDORSEMENTS ───────────────────────────────────── */
.endorsements {
  background: var(--off-white);
  padding: clamp(72px, 9vw, 110px) 0;
}
.endorsements > .container > .section-tag {
  display: block;
  margin-bottom: 52px;
}
.endorse-feature {
  max-width: 860px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--rule);
}
.endorse-feature-quote {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 26px;
}
.endorse-feature-credit {
  display: flex;
  align-items: center;
  gap: 10px;
}
.endorse-feature-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.endorse-feature-sep {
  color: var(--muted);
  font-size: 0.85rem;
}
.endorse-feature-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.endorse-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.endorse-item {
  padding-right: 48px;
  padding-bottom: 36px;
  border-right: 1px solid var(--rule);
}
.endorse-item:nth-child(even) {
  padding-left: 48px;
  padding-right: 0;
  border-right: none;
}
.endorse-item:nth-child(n+3) {
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}
.endorse-item p {
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: 22px;
}
.endorse-credit {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.endorse-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.09em;
  color: var(--orange);
}
.endorse-role {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 860px) {
  .endorse-row {
    grid-template-columns: 1fr;
  }
  .endorse-item,
  .endorse-item:nth-child(even),
  .endorse-item:nth-child(n+3) {
    padding: 36px 0 0;
    border-right: none;
    border-top: 1px solid var(--rule);
  }
  .endorse-item:first-child {
    border-top: none;
    padding-top: 0;
  }
}
