:root {
  --bg:       #080c12;
  --bg2:      #0d1320;
  --bg3:      #111924;
  --surface:  #141d2e;
  --border:   rgba(255,255,255,0.06);
  --orange:   #e8520a;
  --orange2:  #f5832a;
  --gold:     #c8933a;
  --cream:    #e8e0d0;
  --muted:    rgba(232,224,208,0.65);
  --gray:     rgba(232,224,208,0.35);
  --white:    #ffffff;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}

/* ─── CURSOR ─── */
#cur {
  position: fixed; width:12px; height:12px;
  border-radius: 50%; background: var(--orange);
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.15s, width 0.25s, height 0.25s, background 0.25s;
  mix-blend-mode: screen;
}
#cur.expand { width:40px; height:40px; background: rgba(232,82,10,0.25); }
#cur2 {
  position: fixed; width:32px; height:32px;
  border-radius: 50%; border:1px solid rgba(232,82,10,0.35);
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: left 0.12s ease, top 0.12s ease;
}

/* ─── GRAIN OVERLAY ─── */
body::after {
  content:''; position:fixed; inset:0; pointer-events:none; z-index:1000;
  opacity:0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ─── NAV ─── */
nav {
  position: fixed; inset:0 0 auto 0; z-index:600;
  display:flex; align-items:center; justify-content:space-between;
  height: 70px;
  padding: 0 4rem;
  background: linear-gradient(to bottom, rgba(8,12,18,0.95), transparent);
  backdrop-filter: blur(0px);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 0.2em;
  color: var(--cream); text-decoration:none;
  display:flex; align-items:center; gap:0.6rem;
}

.nav-links { display:flex; gap:2.8rem; list-style:none; }
.nav-links a {
  font-size: 0.7rem; font-weight:500; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--muted); text-decoration:none;
  transition:color 0.25s;
}
.nav-links a:hover { color:var(--cream); }

/* ─── HERO ─── */
#hero {
  height:100vh; min-height:700px;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding: 0 4rem 5rem;
  position:relative; overflow:hidden;
}

#hero-bg {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center 30%;
  filter: grayscale(60%) contrast(1.05) brightness(0.72);
  transform: scale(1.03);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.10) translateX(-10px); }
}

/* Gradient overlays — lighter so the photo breathes */
#hero::before {
  content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(to bottom,
      rgba(8,12,18,0.4)  0%,
      rgba(8,12,18,0.05) 25%,
      rgba(8,12,18,0.05) 55%,
      rgba(8,12,18,0.75) 80%,
      rgba(8,12,18,0.95) 100%
    );
}

/* Orange tint layer */
#hero::after {
  content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  background: radial-gradient(ellipse at 70% 60%, rgba(232,82,10,0.06), transparent 65%);
}

.hero-content { position:relative; z-index:2; }

.hero-pre {
  font-family:'Barlow', sans-serif; font-size:0.68rem;
  font-weight:500; letter-spacing:0.3em; text-transform:uppercase;
  color:var(--orange); margin-bottom:1.6rem;
  display:flex; align-items:center; gap:1rem;
  animation: fadeUp 1s ease both;
}
.hero-pre::before { content:''; width:32px; height:1px; background:var(--orange); display:block; }

.hero-title {
  font-family:'Montserrat', sans-serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight:800; line-height:0.92;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: fadeUp 1s 0.1s ease both;
}
.hero-title .t-bold { font-weight:700; }
.hero-title .t-italic { font-style:normal; color:var(--orange); }
.hero-title .t-outline {
  color: var(--cream);
  -webkit-text-stroke: 0;
}

.hero-bottom {
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-top:2.5rem;
  animation: fadeUp 1s 0.25s ease both;
}
.hero-tagline {
  font-family:'Montserrat', sans-serif;
  font-style:italic; font-size:1.2rem;
  color:var(--muted); max-width:400px; line-height:1.5;
}
.hero-actions { display:flex; gap:1.5rem; align-items:center; }

.btn-main {
  display:inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--orange);
  color: var(--white);
  font-family:'Barlow', sans-serif;
  font-size:0.72rem; font-weight:600;
  letter-spacing:0.15em; text-transform:uppercase;
  text-decoration:none; border:none; cursor:none;
  position:relative; overflow:hidden;
  transition: transform 0.2s;
}
.btn-main::before {
  content:''; position:absolute; inset:0;
  background: var(--orange2);
  transform: scaleX(0); transform-origin:left;
  transition: transform 0.35s cubic-bezier(0.77,0,0.18,1);
}
.btn-main:hover::before { transform:scaleX(1); }
.btn-main:hover { transform:translateY(-2px); }
.btn-main span { position:relative; z-index:1; }

.btn-ghost {
  font-size:0.72rem; font-weight:500;
  letter-spacing:0.15em; text-transform:uppercase;
  color:var(--muted); text-decoration:none;
  border-bottom:1px solid var(--gray);
  padding-bottom:3px;
  transition:color 0.25s, border-color 0.25s;
}
.btn-ghost:hover { color:var(--cream); border-color:var(--cream); }

/* Scroll line */
.hero-scroll {
  position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:0.6rem;
  z-index:2; padding-bottom:1.5rem;
  animation: fadeUp 1s 0.8s ease both;
}
.hero-scroll span {
  font-size:0.58rem; letter-spacing:0.3em; text-transform:uppercase; color:var(--gray);
}
.scroll-bar {
  width:1px; height:50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.3;transform:scaleY(0.5)}
}

/* Year badge */
.hero-year {
  position:absolute; right:4rem; top:50%;
  transform:translateY(-50%);
  z-index:2; text-align:right;
  animation: fadeUp 1s 0.5s ease both;
}
.hero-year-num {
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(5rem,12vw,10rem);
  line-height:1; letter-spacing:-0.02em;
  color:transparent;
  -webkit-text-stroke:1px rgba(232,82,10,0.18);
}
.hero-year-label {
  font-size:0.6rem; letter-spacing:0.25em; text-transform:uppercase;
  color:rgba(232,82,10,0.3); margin-top:-0.5rem;
}

@keyframes fadeUp {
  from{opacity:0;transform:translateY(32px)}
  to{opacity:1;transform:translateY(0)}
}

/* ─── VIDEO STRIP ─── */
.video-strip {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.video-strip video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.7) saturate(0.85);
}
.video-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,12,18,0.35) 0%,
    rgba(8,12,18,0.05) 25%,
    rgba(8,12,18,0.05) 75%,
    rgba(8,12,18,0.35) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.strip-services {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0 2rem;
  overflow: hidden;
}
.strip-svc {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.45rem, 0.8vw, 0.75rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232,224,208,0.92);
  padding: 0 clamp(0.4rem, 0.8vw, 1.2rem);
  white-space: nowrap;
  flex-shrink: 1;
  transition: color 0.25s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.strip-svc:hover { color: var(--orange); }
.strip-sep {
  color: var(--orange);
  font-size: 0.4rem;
  opacity: 0.8;
  flex-shrink: 0;
  text-shadow: 0 0 8px rgba(232,82,10,0.5);
}

@media (max-width: 768px) {
  .video-strip { height: 360px; }
  .strip-svc { font-size: clamp(0.38rem, 1.2vw, 0.6rem); padding: 0 0.5rem; }
  .strip-sep { font-size: 0.3rem; }
}
@media (max-width: 480px) {
  .video-strip { height: 240px; }
  .strip-services { flex-wrap: wrap; row-gap: 0.4rem; }
  .strip-svc { font-size: 0.45rem; padding: 0 0.4rem; }
}

/* ─── SECTION COMMONS ─── */
.section-label {
  font-size:0.62rem; font-weight:500; letter-spacing:0.3em;
  text-transform:uppercase; color:var(--orange);
  display:flex; align-items:center; gap:0.8rem; margin-bottom:1.6rem;
}
.section-label::before { content:''; width:24px; height:1px; background:var(--orange); display:block; }

/* ─── ABOUT ─── */
#about {
  display:grid; grid-template-columns:1fr 1fr;
  min-height:85vh;
}
.about-left {
  background:var(--bg2);
  padding:7rem 5rem;
  display:flex; flex-direction:column; justify-content:center;
  border-right:1px solid var(--border);
}
.about-heading {
  font-family:'Montserrat', sans-serif;
  font-size:clamp(2rem, 4vw, 3.2rem);
  font-weight:800; line-height:1.05;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom:2.2rem;
}
.about-heading em { font-style:normal; color:var(--orange); font-weight:800; }
.about-body {
  font-size:0.98rem; line-height:1.85; color:var(--muted);
  max-width:440px; margin-bottom:1.2rem;
}
.about-detail {
  margin-top:2rem; display:flex; gap:3rem;
}
.ad-item-num {
  font-family:'Bebas Neue', sans-serif;
  font-size:2.8rem; line-height:1; color:var(--orange);
}
.ad-item-label {
  font-size:0.68rem; letter-spacing:0.15em;
  text-transform:uppercase; color:var(--gray); margin-top:0.3rem;
}

.about-right {
  background: var(--bg);
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
  min-height: 500px;
}

/* Radial glow behind fish */
.about-right::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse at center, rgba(232,82,10,0.08) 0%, transparent 68%);
  pointer-events:none;
}

/* Subtle grid lines */
.about-right::after {
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(232,82,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,82,10,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events:none;
}

.about-fish-wrap {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 3rem;
  /* Must NOT have isolation:isolate or will break blend mode */
  background: transparent;
}

.about-fish-img {
  width: min(420px, 85%);
  display: block;
  animation: fishGlow 4s ease-in-out infinite alternate;
}

@keyframes fishGlow {
  from {
    filter:
      drop-shadow(0 0 30px rgba(232,82,10,0.4))
      drop-shadow(0 0 60px rgba(232,82,10,0.15));
    transform: translateY(0px);
  }
  to {
    filter:
      drop-shadow(0 0 55px rgba(232,82,10,0.7))
      drop-shadow(0 0 100px rgba(232,82,10,0.3));
    transform: translateY(-8px);
  }
}

/* ─── STATS ─── */
#stats {
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.stat-cell {
  padding:3.5rem 3rem;
  border-right:1px solid var(--border);
  position:relative;
  transition:background 0.3s;
}
.stat-cell:last-child { border-right:none; }
.stat-cell:hover { background:var(--surface); }
.stat-n {
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(3rem,5vw,5.5rem);
  line-height:1; letter-spacing:-0.02em;
  color:var(--cream);
}
.stat-cell.accent .stat-n { color:var(--orange); }
.stat-lbl {
  font-size:0.68rem; letter-spacing:0.15em; text-transform:uppercase;
  color:var(--gray); margin-top:0.6rem; line-height:1.5;
}
.stat-funny {
  font-family:'Montserrat', sans-serif;
  font-style:italic; font-size:0.78rem;
  color:rgba(232,82,10,0.45); margin-top:0.4rem;
}

/* ─── SERVICES ─── */
#services { padding:8rem 4rem; max-width:1500px; margin:0 auto; }
.services-header {
  display:grid; grid-template-columns:1fr 1fr;
  gap:4rem; margin-bottom:5rem;
  padding-bottom:3rem;
  border-bottom:1px solid var(--border);
}
.services-title {
  font-family:'Montserrat', sans-serif;
  font-size:clamp(2.2rem,5vw,4rem);
  font-weight:800; line-height:1; letter-spacing:0.05em;
  text-transform: uppercase;
}
.services-title em { font-style:normal; color:var(--orange); }
.services-desc {
  font-size:0.95rem; line-height:1.8; color:var(--muted);
  display:flex; align-items:center;
}

.svc-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.svc-row {
  background: var(--bg);
  padding: 2.8rem 2.5rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  cursor: none;
  text-decoration: none; color: inherit;
  min-height: 220px;
}
.svc-row::before { display:none; }
.svc-row:hover { background: var(--bg3); }

/* Orange top border reveal on hover */
.svc-row::after {
  content:'';
  position: absolute; top:0; left:0; right:0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.77,0,0.18,1);
}
.svc-row:hover::after { transform: scaleX(1); }

.svc-row > * { position: relative; z-index: 1; }

.svc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em;
  color: rgba(232,82,10,0.3);
  margin-bottom: 1.2rem;
  transition: color 0.25s;
}
.svc-row:hover .svc-num { color: var(--orange); }

.svc-icon {
  font-size: 1.5rem;
  color: var(--orange);
  opacity: 0.4;
  margin-bottom: 1rem;
  transition: opacity 0.25s, transform 0.3s;
  display: block;
}
.svc-row:hover .svc-icon { opacity: 1; transform: scale(1.1); }

.svc-name {
  font-family:'Montserrat', sans-serif;
  font-size:1.1rem; font-weight:800;
  line-height:1.1; letter-spacing:0.05em;
  text-transform: uppercase;
  margin-bottom:0.9rem;
  flex-grow: 1;
}
.svc-desc-text {
  font-size: 0.82rem; color: var(--muted); line-height: 1.65;
}
.svc-arrow {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0; transition: opacity 0.25s, transform 0.25s;
  transform: translateY(6px);
}
.svc-row:hover .svc-arrow { opacity: 1; transform: translateY(0); }

/* Webbikettu badge */
.webbikettu-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 0.8rem;
  padding: 0.35rem 0.75rem 0.35rem 0.5rem;
  border: 1px solid rgba(232,82,10,0.25);
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
  cursor: none; align-self: flex-start;
}
.webbikettu-badge:hover { border-color: var(--orange); background: rgba(232,82,10,0.08); }
.webbikettu-badge img { height: 22px; object-fit: contain; mix-blend-mode: lighten; }

/* ─── VIDEOS ─── */
#videos {
  background:var(--bg2);
  padding:8rem 4rem;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.videos-inner { max-width:1500px; margin:0 auto; }

.videos-header {
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:4rem;
}
.videos-title {
  font-family:'Montserrat', sans-serif;
  font-size:clamp(2rem,5vw,3.5rem);
  font-weight:800; letter-spacing:0.05em; line-height:1;
  text-transform: uppercase;
}
.videos-title em { font-style:normal; color:var(--orange); }
.videos-sub {
  font-size:0.82rem; color:var(--muted); max-width:300px;
  text-align:right; line-height:1.6;
}

.video-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5px;
  background:var(--border);
}

.video-card {
  background:var(--bg);
  position:relative; overflow:hidden;
  aspect-ratio:16/9;
  cursor:none;
}
.video-card:hover .vc-overlay { opacity:1; }
.video-card:hover .vc-thumb { transform:scale(1.04); }

.vc-thumb {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 0.5s ease;
  display:block;
}

/* Placeholder thumbnail when no real image */
.vc-placeholder {
  width:100%; height:100%;
  background: linear-gradient(135deg, var(--bg3) 0%, var(--surface) 100%);
  display:flex; align-items:center; justify-content:center;
  transition:transform 0.5s ease;
  position:relative;
}
.vc-placeholder::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 30% 40%, rgba(232,82,10,0.08), transparent 60%);
}
.vc-placeholder-icon {
  color:rgba(232,82,10,0.2);
  font-size:2.5rem;
}

.vc-overlay {
  position:absolute; inset:0;
  background:rgba(8,12,18,0.7);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:1rem;
  opacity:0; transition:opacity 0.3s ease;
}
.vc-play {
  width:56px; height:56px; border-radius:50%;
  border:1.5px solid var(--orange);
  display:flex; align-items:center; justify-content:center;
  transition:background 0.25s, transform 0.25s;
}
.vc-play svg { fill:var(--orange); width:20px; height:20px; margin-left:3px; }
.video-card:hover .vc-play { background:var(--orange); transform:scale(1.1); }
.video-card:hover .vc-play svg { fill:var(--white); }

.vc-title {
  font-family:'Barlow', sans-serif;
  font-size:0.78rem; font-weight:500;
  letter-spacing:0.1em; text-transform:uppercase;
  color:var(--cream); text-align:center;
  padding:0 1.5rem;
}
.vc-client {
  font-size:0.65rem; letter-spacing:0.15em;
  text-transform:uppercase; color:var(--orange);
}

.vc-meta {
  position:absolute; bottom:0; left:0; right:0;
  padding:1.2rem 1.5rem 1rem;
  background:linear-gradient(to top, rgba(8,12,18,0.9), transparent);
  z-index:2;
}
.vc-meta-title {
  font-size:0.82rem; font-weight:500; color:var(--cream);
  letter-spacing:0.02em; margin-bottom:0.2rem;
}
.vc-meta-sub {
  font-size:0.65rem; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--orange);
}

/* Video modal */
#modal {
  position:fixed; inset:0; z-index:800;
  background:rgba(8,12,18,0.95);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none;
  transition:opacity 0.3s;
  backdrop-filter:blur(8px);
}
#modal.open { opacity:1; pointer-events:all; }
.modal-inner {
  width:min(900px, 90vw);
  position:relative;
}
.modal-close {
  position:absolute; top:-3rem; right:0;
  font-size:0.7rem; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--muted);
  cursor:none; border:none; background:none;
  transition:color 0.2s;
}
.modal-close:hover { color:var(--orange); }
.modal-video {
  width:100%; aspect-ratio:16/9;
  background:var(--bg3);
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--border);
}
.modal-placeholder {
  display:flex; flex-direction:column; align-items:center; gap:1rem;
  color:var(--muted); font-size:0.85rem; text-align:center;
}
.modal-placeholder-icon { font-size:3rem; color:var(--orange); opacity:0.4; }

/* ─── CLIENTS ─── */
#clients {
  padding:7rem 4rem;
  max-width:1500px; margin:0 auto;
}
.clients-header {
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:4rem; padding-bottom:2rem;
  border-bottom:1px solid var(--border);
}
.clients-title {
  font-family:'Montserrat', sans-serif;
  font-size:clamp(2rem,4vw,3rem);
  font-weight:800; letter-spacing:0.05em; text-transform:uppercase;
}
.clients-title em { font-style:normal; color:var(--orange); }
.clients-count {
  font-size:0.7rem; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--gray);
}

/* Logo grid */
.logo-grid {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:0;
  border:1px solid var(--border);
}
.logo-cell {
  aspect-ratio:2/1;
  border-right:1px solid var(--border);
  border-bottom:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  padding:1.5rem;
  position:relative; overflow:hidden;
  transition:background 0.25s;
  cursor:none;
}
.logo-cell:hover { background:var(--surface); }
.logo-cell:nth-child(6n) { border-right:none; }
.logo-cell img {
  max-width:85%; max-height:48px;
  object-fit:contain;
  opacity:0.6;
  transition:opacity 0.3s, transform 0.3s;
}
.logo-cell:hover img { opacity:1; transform:scale(1.05); }

/* Logo placeholder (text-based fallback) */
.logo-placeholder {
  font-family:'Bebas Neue', sans-serif;
  font-size:1rem; letter-spacing:0.12em;
  color:rgba(232,224,208,0.18);
  text-align:center; line-height:1.2;
  transition:color 0.3s;
}
.logo-cell:hover .logo-placeholder { color:rgba(232,224,208,0.45); }

/* ─── TESTIMONIALS ─── */
#testimonials {
  background:var(--bg2);
  padding:8rem 4rem;
  border-top:1px solid var(--border);
}
.testi-inner { max-width:1500px; margin:0 auto; }

.testi-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.5px; background:var(--border);
  margin-top:3rem;
}
.testi-card {
  background:var(--bg);
  padding:3rem 2.8rem;
  position:relative;
  transition:background 0.3s;
}
.testi-card:hover { background:var(--bg3); }
.tq {
  font-family:'Montserrat', sans-serif;
  font-size:4rem; line-height:0.7;
  color:var(--orange); opacity:0.25;
  margin-bottom:1.2rem;
}
.testi-text {
  font-family:'Barlow', sans-serif;
  font-style:italic; font-size:1rem;
  line-height:1.7; color:var(--muted);
  margin-bottom:2rem;
}
.testi-line {
  width:24px; height:1px; background:var(--orange);
  margin-bottom:1rem;
}
.testi-who { font-size:0.78rem; font-weight:600; letter-spacing:0.05em; color:var(--cream); }
.testi-co { font-size:0.65rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--orange); margin-top:0.25rem; }

/* ─── CONTACT ─── */
#contact {
  display:grid; grid-template-columns:1fr 1fr;
  min-height:70vh;
  border-top:1px solid var(--border);
}
.contact-left {
  padding:7rem 5rem;
  display:flex; flex-direction:column; justify-content:center;
  border-right:1px solid var(--border);
}
.contact-title {
  font-family:'Montserrat', sans-serif;
  font-size:clamp(2rem,5vw,3.5rem);
  font-weight:800; line-height:1.05;
  letter-spacing:0.05em; text-transform:uppercase; margin-bottom:2.5rem;
}
.contact-title em { font-style:normal; color:var(--orange); display:block; }

.contact-info { display:flex; flex-direction:column; gap:1rem; margin-bottom:3rem; }
.ci-row {
  display:flex; align-items:baseline; gap:1rem;
  font-size:0.88rem; color:var(--muted);
}
.ci-label {
  font-size:0.6rem; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--orange);
  min-width:70px;
}

.contact-right {
  padding:0;
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  position:relative; overflow:hidden;
  background:var(--bg);
  min-height:500px;
}

.map-frame {
  width:100%; height:100%; min-height:500px;
  border:none;
  filter: grayscale(1) invert(0.88) contrast(0.9) brightness(0.75) sepia(0.15);
  transition: filter 0.4s ease;
}
.contact-right:hover .map-frame {
  filter: grayscale(0.6) invert(0) contrast(1) brightness(0.85) sepia(0.1);
}

/* ─── FOOTER ─── */
footer {
  background:var(--bg);
  padding:2.5rem 4rem;
  display:flex; justify-content:space-between; align-items:center;
  border-top:1px solid var(--border);
}
.footer-logo {
  font-family:'Bebas Neue', sans-serif;
  font-size:1.6rem; letter-spacing:0.18em; color:var(--cream);
}
.footer-logo span { color:var(--orange); }
.footer-center {
  font-family:'Montserrat', sans-serif;
  font-style:italic; font-size:0.9rem; color:var(--gray);
}
.footer-right {
  font-size:0.6rem; letter-spacing:0.15em;
  text-transform:uppercase; color:var(--gray); text-align:right;
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* ── Tablet landscape (≤1100px) ── */
@media (max-width: 1100px) {
  nav { padding: 1.2rem 2rem; }
  #hero { padding: 0 2rem 4rem; }
  .hero-year { right: 2rem; }

  #about { grid-template-columns: 1fr; min-height: auto; }
  .about-right { min-height: 380px; }
  .about-left { padding: 5rem 2rem; }

  #stats { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-right: 1px solid var(--border); }

  #services { padding: 5rem 2rem; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-list { grid-template-columns: repeat(2,1fr); }

  #videos { padding: 5rem 2rem; }
  .video-grid { grid-template-columns: repeat(2,1fr); }

  #clients { padding: 5rem 2rem; }
  .logo-grid { grid-template-columns: repeat(4,1fr); }
  .logo-cell:nth-child(4n) { border-right: none; }

  #testimonials { padding: 5rem 2rem; }
  .testi-grid { grid-template-columns: 1fr; gap: 1.5px; }

  #contact { grid-template-columns: 1fr; }
  .contact-left { padding: 5rem 2rem; border-right: none; border-bottom: 1px solid var(--border); }
  .contact-right { min-height: 400px; }

  footer { padding: 2rem; flex-direction: column; gap: 0.8rem; text-align: center; }
  .footer-right { text-align: center; }
}

/* ── Tablet portrait (≤768px) ── */
@media (max-width: 768px) {
  /* Nav — hide links, show hamburger concept */
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }

  /* Hero */
  #hero { padding: 0 1.5rem 3rem; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .hero-year { display: none; }
  .hero-scroll { display: none; }

  /* About */
  .about-left { padding: 4rem 1.5rem; }
  .about-detail { gap: 1.5rem; flex-wrap: wrap; }

  /* Stats */
  #stats { grid-template-columns: repeat(2,1fr); padding: 0; }
  .stat-cell { padding: 2rem 1.5rem; }
  .stat-cell:nth-child(3) { border-right: none; }
  .stat-cell:nth-child(2) { border-right: 1px solid var(--border); }

  /* Services */
  #services { padding: 4rem 1.5rem; }
  .svc-list { grid-template-columns: 1fr; }
  .svc-row { min-height: auto; padding: 2rem 1.5rem; }

  /* Videos */
  #videos { padding: 4rem 1.5rem; }
  .videos-header { flex-direction: column; gap: 1rem; }
  .videos-sub { text-align: left; max-width: 100%; }
  .video-grid { grid-template-columns: 1fr; }

  /* Clients */
  #clients { padding: 4rem 1.5rem; }
  .clients-header { flex-direction: column; gap: 0.8rem; align-items: flex-start; }
  .logo-grid { grid-template-columns: repeat(3,1fr); }
  .logo-cell:nth-child(3n) { border-right: none; }
  .logo-cell:nth-child(4n) { border-right: 1px solid var(--border); }

  /* Testimonials */
  #testimonials { padding: 4rem 1.5rem; }

  /* Contact */
  .contact-left { padding: 4rem 1.5rem; }
  .contact-right { min-height: 320px; }

  /* Ticker replaced by video strip */

  /* Modal */
  .modal-inner { width: 95vw; }
  .modal-close { top: -2.5rem; }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
  nav { padding: 1rem; }
  .nav-logo img { height: 28px; }

  #hero { padding: 0 1rem 2.5rem; }
  .hero-pre { font-size: 0.55rem; }
  .hero-title { font-size: clamp(2rem, 12vw, 3rem); letter-spacing: 0.02em; }
  .hero-tagline { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .btn-main { width: 100%; text-align: center; }

  .about-left { padding: 3rem 1rem; }
  .about-heading { font-size: 1.8rem; }
  .about-detail { gap: 1.2rem; }
  .ad-item-num { font-size: 2rem; }

  #stats { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 1.5rem 1rem; }
  .stat-n { font-size: 2.5rem; }

  #services { padding: 3rem 1rem; }
  .services-title { font-size: 1.8rem; }
  .svc-row { padding: 1.8rem 1rem; }

  #videos { padding: 3rem 1rem; }
  .videos-title { font-size: 1.8rem; }

  #clients { padding: 3rem 1rem; }
  .logo-grid { grid-template-columns: repeat(2,1fr); }
  .logo-cell:nth-child(2n) { border-right: none; }
  .logo-cell:nth-child(3n) { border-right: 1px solid var(--border); }

  #testimonials { padding: 3rem 1rem; }
  .testimonials-title { font-size: 1.8rem; }
  .testi-card { padding: 2rem 1.5rem; }

  .contact-left { padding: 3rem 1rem; }
  .contact-title { font-size: 2rem; }

  footer { padding: 1.5rem 1rem; }
  .footer-center { display: none; }
}

.reveal {
  opacity:0; transform:translateY(28px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }