/*
Theme Name:  ODGRAIN
Theme URI:   https://odgrain.com
Author:      ODGRAIN Visual Production House
Description: Custom WordPress theme for ODGRAIN. One Frame cinematic design with dark/light mode, bottom dock navigation, lead generation, Elementor Free compatible.
Version:     3.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     GNU General Public License v2
Text Domain: odgrain
Tags:        custom-background, custom-logo, full-width-template, blog
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --red:        #D63B22;
  --red-dark:   #b02e18;
  --green-wa:   #25D366;
  --ease:       cubic-bezier(.16,1,.3,1);
  --ease-in:    cubic-bezier(.7,0,.3,1);
  --font-d:     'Barlow Condensed', sans-serif;
  --font-b:     'Montserrat', sans-serif;
}

/* Dark mode (default) */
[data-theme="dark"] {
  --bg:         #0C0B0B;
  --bg2:        #111010;
  --bg3:        #181616;
  --text:       #F2EDE6;
  --textmid:    rgba(242,237,230,.72);
  --textlow:    rgba(242,237,230,.45);
  --border:     rgba(242,237,230,.07);
  --bordermid:  rgba(242,237,230,.13);
}

/* Light mode */
[data-theme="light"] {
  --bg:         #F2EDE6;
  --bg2:        #EAE4D8;
  --bg3:        #E2DDD0;
  --text:       #0C0B0B;
  --textmid:    rgba(12,11,11,.72);
  --textlow:    rgba(12,11,11,.45);
  --border:     rgba(12,11,11,.08);
  --bordermid:  rgba(12,11,11,.18);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background .35s var(--ease), color .35s var(--ease);
  /* Space for bottom dock */
  padding-bottom: 80px;
}

/* Red recording border — full cinematic treatment on home + project pages only */
body::before {
  content: '' !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 9998 !important;
  border: 2px solid #D63B22 !important;
  pointer-events: none !important;
  display: block !important;
}
/* Full pulse — homepage and single project pages */
body.og-cinematic-full::before {
  animation: rec-border-pulse 2.8s ease-in-out infinite !important;
}
/* Calm, static, thinner — Services, Pricing, Contact and all other pages */
body.og-cinematic-quiet::before {
  border-width: 1px !important;
  opacity: .35 !important;
  animation: none !important;
}
[data-theme="light"] body.og-cinematic-full::before  { opacity: .65 !important; }
[data-theme="light"] body.og-cinematic-quiet::before  { opacity: .25 !important; }
@keyframes rec-border-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

/* No padding-bottom on landing pages */
body.page-template-page-landing { padding-bottom: 0; }

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--red); color: #F2EDE6; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(214,59,34,.4); border-radius: 2px; }

/* ============================================================
   GRAIN OVERLAY
   ============================================================ */
.grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  opacity: .038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' 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;
}
[data-theme="light"] .grain { opacity: .02; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
/* Reveal animations — slow & visible, only fires on scroll */
/* Industry standard — text appears instantly, no ghost states */
.reveal, .reveal-left, .reveal-scale { opacity: 1; transform: none; }
.reveal.vis, .reveal-left.vis, .reveal-scale.vis { opacity: 1; transform: none; }
/* Headers slide in — separate from content */
/* Section headings — instant, no animation */
.sec-title, .sec-label { opacity: 1; transform: none; }
.sec-title.vis, .sec-label.vis { opacity: 1; transform: none; }

/* Stagger delays */
.stagger > *:nth-child(1)  { transition-delay: .03s; }
.stagger > *:nth-child(2)  { transition-delay: .07s; }
.stagger > *:nth-child(3)  { transition-delay: .11s; }
.stagger > *:nth-child(4)  { transition-delay: .15s; }
.stagger > *:nth-child(5)  { transition-delay: .19s; }
.stagger > *:nth-child(6)  { transition-delay: .23s; }

/* Hover lift on cards */
.service-card, .blog-card, .testi-card { transition: background .2s, transform .3s var(--ease), box-shadow .3s var(--ease); }
.service-card:hover, .blog-card:hover, .testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.22); }
/* Stat number on hover */
.stat-num { display: inline-block; transition: transform .3s var(--ease), color .3s; }
.stat-item:hover .stat-num { transform: scale(1.1); color: var(--red); }

/* ============================================================
   CURSOR
   ============================================================ */
#og-cursor { position: fixed; pointer-events: none; z-index: 9000; top: 0; left: 0; }
#og-cursor-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--red); position: absolute; transform: translate(-50%,-50%); }
#og-cursor-ring { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(214,59,34,.3); position: absolute; transform: translate(-50%,-50%); transition: width .3s var(--ease), height .3s var(--ease), border-color .3s; }
body.cur-hover #og-cursor-ring { width: 52px; height: 52px; border-color: rgba(214,59,34,.6); }
@media (hover: none) { #og-cursor { display: none; } body { cursor: auto; } }

/* ============================================================
   PROGRESS BAR
   ============================================================ */
#og-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 800; background: var(--border); }
#og-progress-bar { height: 100%; background: var(--red); width: 0%; transition: width .15s linear; }

/* ============================================================
   TOP BAR — Logo centred
   ============================================================ */
.site-top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 72px; display: flex; align-items: center; justify-content: center;
  background: #0C0B0B !important;
  border-bottom: 1px solid rgba(242,237,230,.1);
  transition: height .4s;
}
.site-top-bar.scrolled {
  background: #0C0B0B !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 56px;
}
.site-top-bar.hidden-bar {
  opacity: 0; pointer-events: none; transform: translateY(-100%);
}
/* WP admin bar pushes fixed header down */
.admin-bar .site-top-bar { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-top-bar { top: 46px; } }

/* Mobile logo — controlled by JS initTopBar */
.site-logo {
  font-family: var(--font-d);
  font-size: 26px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text);
  transition: transform .4s, opacity .4s;
  display: flex; align-items: center;
  height: 100%;
  overflow: visible;
}
.site-logo-img {
  height: 68px !important;
  max-height: 68px !important;
  width: auto !important;
  display: block !important;
  flex-shrink: 0 !important;
  transition: height .4s cubic-bezier(.22,1,.36,1);
}
.site-top-bar.scrolled .site-logo-img {
  height: 44px !important;
  max-height: 44px !important;
}
.site-logo b { color: var(--red); }
.site-logo img { width: auto; display: block; transition: height .4s; }

/* Single logo — white version, always visible on black header */
/* Remove legacy dual-logo rules */
.logo-day, .logo-night { display: none; }

/* ============================================================
   BOTTOM DOCK NAVIGATION
   ============================================================ */
.dock {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 600;
  display: flex; align-items: center; gap: 0;
  /* iOS glass — see-through, barely-there */
  background: rgba(255,255,255,.06);
  border: 0.5px solid rgba(255,255,255,.18);
  border-radius: 50px;
  padding: 6px 10px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 2px 20px rgba(0,0,0,.12), 0 1px 0 rgba(255,255,255,.1) inset;
  transition: padding .4s cubic-bezier(.22,1,.36,1), background .35s, border-color .35s,
              transform .4s cubic-bezier(.22,1,.36,1), opacity .3s ease;
  white-space: nowrap;
}
/* Full hide on scroll down — slides down and fades out */
.dock.dock-hidden {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.dock.dock-compact { padding: 5px 4px; }
[data-theme="light"] .dock {
  background: rgba(255,255,255,.28);
  border-color: rgba(0,0,0,.07);
  box-shadow: 0 2px 16px rgba(0,0,0,.08), 0 1px 0 rgba(255,255,255,.9) inset;
}
.dock-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  padding: 8px 0; width: 68px; min-width: 68px;
  border-radius: 0;
  color: var(--textlow); border: none; background: none !important; font-family: var(--font-b);
  cursor: pointer; transition: color .2s, padding .4s cubic-bezier(.22,1,.36,1), width .4s;
  text-decoration: none; outline: none; -webkit-tap-highlight-color: transparent;
}
.dock-item:hover { color: var(--text); }
.dock-item:focus-visible { outline: none; }
.dock-item.active {
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 40px;
  width: 68px;
}
/* Compact state — shrink from sides */
.dock-compact .dock-item { width: 52px; min-width: 52px; padding: 6px 0; }
.dock-compact .dock-item.active { width: 52px; }
.dock-icon { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; }
.dock-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.dock-label { font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.dock-compact .dock-label { font-size: 8px; }
.dock-divider { width: 1px; height: 32px; background: var(--border); margin: 0 4px; flex-shrink: 0; }
.dock-toggle {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  padding: 8px 0; width: 58px; min-width: 58px;
  border-radius: 0;
  color: var(--textlow); background: none !important; border: none; font-family: var(--font-b);
  cursor: pointer; transition: color .2s, width .4s, padding .4s; -webkit-tap-highlight-color: transparent;
  position: relative;
}
.dock-toggle:hover { background: none !important; color: var(--text); }
.dock-compact .dock-toggle { width: 46px; min-width: 46px; }

/* Permanent subtle glow on the toggle icon */
.dock-toggle-icon {
  width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.dock-toggle-icon::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(242,237,230,.2);
  pointer-events: none;
}

/* Pulse ring — 3 iterations then stops. Shown only before user has toggled. */
.dock-toggle.og-pulse-hint::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 40px;
  border: 1.5px solid rgba(242,237,230,.5);
  animation: tog-pulse 1.6s ease-out 3;
  pointer-events: none;
}
@keyframes tog-pulse {
  0%   { transform: scale(1);    opacity: .7; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

.dock-toggle-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
/* Label always full white on red dock */
.dock-toggle-label { font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red) !important; }

/* Toggle icon - red glow */
.dock-toggle-icon { position: relative; }
.dock-toggle-icon svg { stroke: var(--red) !important; filter: drop-shadow(0 0 4px rgba(214,59,34,.6)); }
.dock-toggle:hover .dock-toggle-icon svg { filter: drop-shadow(0 0 8px rgba(214,59,34,.9)); }

/* Mobile dock */
@media (max-width: 600px) {
  .dock {
    left: 12px; right: 12px; transform: none;
    bottom: 12px; justify-content: space-around;
    border-radius: 16px;
  }
  .dock-item, .dock-toggle { padding: 8px 6px; flex: 1; }
  .dock-label, .dock-toggle-label { font-size: 8px; }
}

/* Hide dock on landing pages */
.page-template-page-landing .dock { display: none; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 490;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-d);
  font-size: 38px; font-weight: 900; text-transform: uppercase;
  color: var(--text); transition: color .2s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .mob-cta {
  font-family: var(--font-b);
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  background: var(--red); color: #F2EDE6;
  padding: 13px 28px; margin-top: 8px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 52px; }
.section { padding: 88px 52px; position: relative; }
.section-dark  { background: var(--bg); }
.section-mid   { background: var(--bg2); }
.section-alt   { background: var(--bg3); }
.sec-label {
  font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px; display: block;
}
.sec-title {
  font-family: var(--font-d);
  font-size: clamp(36px,5.5vw,60px); font-weight: 900; text-transform: uppercase;
  line-height: .9; color: var(--text);
}
.sec-title b { color: var(--red); }
.lnk {
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); border-bottom: 1px solid rgba(214,59,34,.4); padding-bottom: 3px;
  display: inline-block; transition: color .2s, border-color .2s; opacity: 1;
}
.lnk:hover { border-color: var(--red); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px 52px 72px;
  padding-top: calc(72px + 48px); /* taller header + breathing room */
  overflow: hidden; background: #0C0B0B;
}
.hero-media { position: absolute; inset: 0; z-index: 0; background: #0C0B0B; overflow: hidden; }
.hero-media video,
.hero-media img.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .38;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,11,11,.95) 0%, rgba(12,11,11,.4) 50%, rgba(12,11,11,.6) 100%);
}
.hero-glow {
  position: absolute; top: -10%; right: -5%;
  width: 55%; height: 60%; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(214,59,34,.12) 0%, transparent 65%);
  z-index: 1; pointer-events: none;
}
.perfs {
  position: absolute; left: 0; top: 0; bottom: 0; width: 24px;
  border-right: 1px solid rgba(242,237,230,.04);
  display: flex; flex-direction: column; justify-content: space-around;
  align-items: center; padding: 20px 0; z-index: 3; pointer-events: none;
}
.perfs.right { left: auto; right: 0; border-right: none; border-left: 1px solid rgba(242,237,230,.04); }
.perf-hole { width: 12px; height: 9px; background: rgba(242,237,230,.06); border-radius: 1px; }
.rec-ind {
  position: absolute; top: 74px; right: 52px; z-index: 4;
  display: flex; align-items: center; gap: 7px;
}
.rec-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.1;} }
.rec-text { font-family: var(--font-d); font-size: 9px; font-weight: 700; letter-spacing: .22em; color: rgba(242,237,230,.3); text-transform: uppercase; }
.frame-meta {
  position: absolute; top: 74px; left: 36px; z-index: 4;
  font-family: var(--font-d); font-size: 9px; font-weight: 700;
  letter-spacing: .2em; color: rgba(242,237,230,.14); text-transform: uppercase; line-height: 1.7;
}
.hero-body { position: relative; z-index: 4; }

/* Proof strip */
.proof-strip { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; flex-wrap: wrap; }
.proof-label { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(242,237,230,.55); white-space: nowrap; }
.proof-pubs  { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.proof-pub   { font-family: var(--font-d); font-size: 15px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(242,237,230,.55); white-space: nowrap; }
.proof-pdot  { width: 3px; height: 3px; border-radius: 50%; background: rgba(242,237,230,.3); }
.proof-stats { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.proof-stat  { font-family: var(--font-d); font-size: 15px; font-weight: 700; color: rgba(242,237,230,.6); }
.proof-stat b { color: rgba(242,237,230,.9); }
.proof-sep   { color: rgba(242,237,230,.2); font-size: 11px; }

.hero-pills   { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.hero-pill {
  font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid rgba(242,237,230,.14); color: rgba(242,237,230,.38); padding: 6px 14px;
  transition: border-color .3s, color .3s;
}
.hero-pill.active { border-color: rgba(214,59,34,.55); color: var(--red); }

.hero-headline {
  font-family: var(--font-d);
  font-size: clamp(52px,10vw,108px); font-weight: 900;
  text-transform: uppercase; line-height: .88; letter-spacing: -.03em; color: #F2EDE6;
  overflow: hidden;
}
.hero-headline .line {
  display: block; transform: translateY(110%);
  animation: slideup .7s var(--ease) forwards;
}
.hero-headline .line:nth-child(1) { animation-delay: .15s; }
.hero-headline .line:nth-child(2) { animation-delay: .28s; }
.hero-headline .line:nth-child(3) { animation-delay: .41s; }
@keyframes slideup { to { transform: translateY(0); } }
.hero-headline em { font-style: italic; font-weight: 300; color: rgba(242,237,230,.16); }

.hero-subline {
  font-size: 14px; font-weight: 300; color: rgba(242,237,230,.72);
  max-width: 44ch; line-height: 1.7; margin-top: 18px;
  opacity: 0; animation: fadein .8s ease .6s forwards;
}
.hero-buttons {
  display: flex; align-items: center; gap: 12px; margin-top: 26px; flex-wrap: wrap;
  opacity: 0; animation: fadein .8s ease .75s forwards;
}
@keyframes fadein { to { opacity: 1; } }

.btn-primary {
  background: #F2EDE6; color: #0C0B0B;
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 13px 26px; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; transition: background .2s;
}
.btn-primary:hover { background: #fff; }
.btn-secondary {
  background: transparent; border: 1px solid rgba(242,237,230,.2); color: rgba(242,237,230,.6);
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 12px 22px; display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: rgba(242,237,230,.5); color: #F2EDE6; }
.btn-wa-text {
  font-size: 10px; font-weight: 500; letter-spacing: .08em;
  color: var(--green-wa); display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(37,211,102,.25); padding-bottom: 1px; transition: border-color .2s;
}
.btn-wa-text:hover { border-color: rgba(37,211,102,.6); }
.btn-red {
  background: var(--red); color: #F2EDE6;
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 13px 26px; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; transition: background .2s;
}
.btn-red:hover { background: var(--red-dark); }

.hero-scroll-cue {
  position: absolute; bottom: 84px; right: 52px; z-index: 4;
  display: flex; align-items: center; gap: 9px;
  opacity: 0; animation: fadein .8s ease 1s forwards;
}
.hs-line {
  width: 40px; height: 1px; background: rgba(242,237,230,.15);
  position: relative; overflow: hidden;
}
.hs-line::after {
  content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 40%; background: var(--red);
  animation: scanline 2s ease-in-out infinite;
}
@keyframes scanline { 0%{transform:translateX(0);width:40%;} 50%{width:65%;} 100%{transform:translateX(220%);width:40%;} }
.hs-text { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(242,237,230,.2); }

/* ============================================================
   TICKER
   ============================================================ */
.ticker { overflow: hidden; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 30s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker-item { font-family: var(--font-d); font-size: 14px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--textlow); padding: 0 22px; white-space: nowrap; }
.ticker-sep   { color: rgba(214,59,34,.45); padding: 0 4px; font-size: 14px; }
.ticker-offer { color: var(--text); opacity: .75; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.og-badge { width: 96px; height: 96px; position: relative; margin-bottom: 24px; }
.og-badge svg { position: absolute; inset: 0; animation: badge-spin 12s linear infinite; }
.og-badge svg text { fill: rgba(242,237,230,.55); transition: fill .35s; }
[data-theme="light"] .og-badge svg text { fill: rgba(12,11,11,.45); }
@keyframes badge-spin { to { transform: rotate(360deg); } }
.og-badge-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--font-d); font-size: 22px; font-weight: 900; color: var(--text); }
.og-badge-dot  { position: absolute; bottom: 9px; right: 12px; width: 9px; height: 9px; border-radius: 50%; background: var(--red); }

.about-title { font-family: var(--font-d); font-size: clamp(44px,7vw,76px); font-weight: 900; text-transform: uppercase; line-height: .9; color: var(--text); margin-bottom: 18px; }
.about-title em { font-style: italic; font-weight: 300; color: var(--textlow); }
.about-badge-tag { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; border: 1px solid var(--bordermid); margin-top: 4px; }
.abt-dot  { width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
.abt-text { font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--textlow); }
.about-quote { font-size: 17px; font-weight: 300; line-height: 1.5; color: var(--text); margin-bottom: 20px; padding-left: 18px; border-left: 2px solid var(--red); }
.about-body  { font-size: 13px; color: var(--textmid); line-height: 1.82; margin-bottom: 14px; }

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */
.portfolio-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.portfolio-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 16px; border: 1px solid var(--text); color: var(--text);
  cursor: pointer; background: none; transition: all .2s; opacity: .6;
}
.filter-btn:hover { opacity: 1; border-color: var(--red); color: var(--red); }
.filter-btn.active { border-color: var(--red); color: var(--red); background: rgba(214,59,34,.08); opacity: 1; }

/* Portfolio grid — 4 equal columns on desktop */
/* ── OPTION A: Asymmetric masonry grid ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}
/* Row 1: portrait (5) + wide landscape (7) */
.portfolio-grid .port-item:nth-child(1) { grid-column: span 5; }
.portfolio-grid .port-item:nth-child(2) { grid-column: span 7; }
/* Row 2: three squares */
.portfolio-grid .port-item:nth-child(3) { grid-column: span 4; }
.portfolio-grid .port-item:nth-child(4) { grid-column: span 4; }
.portfolio-grid .port-item:nth-child(5) { grid-column: span 4; }
/* Row 3: wide (7) + portrait (5) mirrored */
.portfolio-grid .port-item:nth-child(6) { grid-column: span 7; }
.portfolio-grid .port-item:nth-child(7) { grid-column: span 5; }
.portfolio-grid .port-item:nth-child(8)  { grid-column: span 4; }
.portfolio-grid .port-item:nth-child(9)  { grid-column: span 4; }
.portfolio-grid .port-item:nth-child(10) { grid-column: span 4; }

/* Aspect ratios */
.portfolio-grid .port-item:nth-child(1) { aspect-ratio: 4/5; }
.portfolio-grid .port-item:nth-child(2) { aspect-ratio: 16/9; }
.portfolio-grid .port-item:nth-child(3) { aspect-ratio: 1/1; }
.portfolio-grid .port-item:nth-child(4) { aspect-ratio: 1/1; }
.portfolio-grid .port-item:nth-child(3) .port-item-img,
.portfolio-grid .port-item:nth-child(3) .port-item-bg,
.portfolio-grid .port-item:nth-child(4) .port-item-img,
.portfolio-grid .port-item:nth-child(4) .port-item-bg,
.portfolio-grid .port-item:nth-child(5) { aspect-ratio: 1/1; }
.portfolio-grid .port-item:nth-child(6) { aspect-ratio: 16/9; }
.portfolio-grid .port-item:nth-child(7) { aspect-ratio: 4/5; }

/* Full archive — same pattern repeating */
.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}
.portfolio-full-grid .port-item:nth-child(12n+1)  { grid-column: span 5; }
.portfolio-full-grid .port-item:nth-child(12n+2)  { grid-column: span 7; }
.portfolio-full-grid .port-item:nth-child(12n+3)  { grid-column: span 4; }
.portfolio-full-grid .port-item:nth-child(12n+4)  { grid-column: span 4; }
.portfolio-full-grid .port-item:nth-child(12n+5)  { grid-column: span 4; }
.portfolio-full-grid .port-item:nth-child(12n+6)  { grid-column: span 7; }
.portfolio-full-grid .port-item:nth-child(12n+7)  { grid-column: span 5; }
.portfolio-full-grid .port-item:nth-child(12n+8)  { grid-column: span 4; }
.portfolio-full-grid .port-item:nth-child(12n+9)  { grid-column: span 4; }
.portfolio-full-grid .port-item:nth-child(12n+10) { grid-column: span 4; }
.portfolio-full-grid .port-item:nth-child(12n+11) { grid-column: span 5; }
.portfolio-full-grid .port-item:nth-child(12n+12) { grid-column: span 7; }

/* Portrait aspect for narrow columns */
.portfolio-full-grid .port-item:nth-child(12n+1) .port-item-img,
.portfolio-full-grid .port-item:nth-child(12n+1) .port-item-bg,
.portfolio-full-grid .port-item:nth-child(12n+7) .port-item-img,
.portfolio-full-grid .port-item:nth-child(12n+7) .port-item-bg,
.portfolio-full-grid .port-item:nth-child(12n+1) { aspect-ratio: 4/5; }
.portfolio-full-grid .port-item:nth-child(12n+2) { aspect-ratio: 16/9; }
.portfolio-full-grid .port-item:nth-child(12n+3),
.portfolio-full-grid .port-item:nth-child(12n+4),
.portfolio-full-grid .port-item:nth-child(12n+5),
.portfolio-full-grid .port-item:nth-child(12n+8),
.portfolio-full-grid .port-item:nth-child(12n+9),
.portfolio-full-grid .port-item:nth-child(12n+10) { aspect-ratio: 1/1; }
.portfolio-full-grid .port-item:nth-child(12n+6) { aspect-ratio: 16/9; }
.portfolio-full-grid .port-item:nth-child(12n+7) { aspect-ratio: 4/5; }
.portfolio-full-grid .port-item:nth-child(12n+11) { aspect-ratio: 4/5; }
/* Wide landscape for wide columns */
.portfolio-full-grid .port-item:nth-child(12n+2) .port-item-img,
.portfolio-full-grid .port-item:nth-child(12n+2) .port-item-bg,
.portfolio-full-grid .port-item:nth-child(12n+6) .port-item-img,
.portfolio-full-grid .port-item:nth-child(12n+6) .port-item-bg,
.portfolio-full-grid .port-item:nth-child(12n+12) { aspect-ratio: 16/9; }

/* Responsive */
@media (max-width: 900px) {
  .portfolio-grid, .portfolio-full-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid .port-item,
  .portfolio-full-grid .port-item { grid-column: span 1 !important; }
  .portfolio-grid .port-item,
  .portfolio-grid .port-item,
  .portfolio-full-grid .port-item { aspect-ratio: 4/3 !important; }
}
@media (max-width: 540px) {
  .portfolio-grid, .portfolio-full-grid { grid-template-columns: 1fr; }
  .portfolio-grid .port-item,
  .portfolio-grid .port-item,
  .portfolio-full-grid .port-item { aspect-ratio: 16/9 !important; }
}

/* Portfolio full page */
/* port-item base */

.port-item { position: relative; overflow: hidden; cursor: pointer; background: var(--bg3); aspect-ratio: 16/9; }
/* Block link overlays — must sit above ALL card children */
.port-item-link,
.service-card-link,
.price-teaser-link,
.blog-card-link {
  position: absolute; inset: 0; z-index: 10; display: block;
}
.port-item > a.port-item-link {
  position: absolute; inset: 0; z-index: 10; display: block; text-indent: -9999px;
}
.port-item-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s var(--ease), filter .4s; filter: grayscale(60%) brightness(.85); }

.port-item:hover .port-item-img,
.port-item:hover .port-item-bg { transform: scale(1.04); }
.port-item-bg { position: absolute; inset: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--bg3); transition: transform .55s var(--ease); }
.port-ph { display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: .1; color: var(--text); }
.port-ph span { font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.port-item-code { position: absolute; top: 10px; left: 12px; font-family: var(--font-d); font-size: 8px; font-weight: 700; letter-spacing: .2em; color: rgba(242,237,230,.15); text-transform: uppercase; z-index: 2; pointer-events: none; }
.port-item-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(12,11,11,.85) 0%, rgba(12,11,11,.2) 50%, transparent 100%);
  padding: 14px; display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 1; transition: background .3s;
}
.port-item:hover .port-item-overlay {
  background: linear-gradient(to top, rgba(12,11,11,.95) 0%, rgba(12,11,11,.4) 55%, transparent 100%);
}
/* Greyscale tint on all portfolio images — lifts to colour on hover */
/* port-item-img: filled absolutely in .port-item — see above */
.port-item:hover .port-item-img { filter: grayscale(0%) brightness(1); transform: scale(1.04); }
.port-item-cat   { font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.port-item-title { font-family: var(--font-d); font-size: clamp(13px,1.8vw,20px); font-weight: 900; text-transform: uppercase; color: #F2EDE6; line-height: 1.05; }

/* ============================================================
   INSTAGRAM FEED
   ============================================================ */
.insta-header  { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.insta-follow  { display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--textlow); border-bottom: 1px solid var(--bordermid); padding-bottom: 2px; transition: color .2s; }
.insta-follow:hover { color: var(--text); }
.insta-grid    { display: grid; grid-template-columns: repeat(6,1fr); gap: 3px; }
.insta-tile    { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; background: var(--bg3); }
.insta-tile-bg { width: 100%; height: 100%; transition: transform .45s var(--ease); }
.insta-tile:hover .insta-tile-bg { transform: scale(1.06); }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.insta-tile:hover img { transform: scale(1.06); }
.insta-tile-ov { position: absolute; inset: 0; background: rgba(12,11,11,.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.insta-tile:hover .insta-tile-ov { opacity: 1; }
.insta-plugin-note { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.insta-plugin-badge { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; background: rgba(214,59,34,.1); border: 1px solid rgba(214,59,34,.25); color: var(--red); padding: 3px 10px; }
.insta-plugin-text  { font-size: 11px; color: var(--textlow); font-style: italic; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; gap: 20px; flex-wrap: wrap; }
.services-hint   { font-size: 13px; color: var(--textmid); line-height: 1.75; max-width: 30ch; text-align: right; }
.services-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }

.service-card {
  background: var(--bg3); padding: 36px 32px;
  position: relative; overflow: hidden; cursor: pointer; transition: background .2s;
}
.service-card-link { position: absolute; inset: 0; z-index: 10; display: block; }
.service-card:hover { background: var(--bg2); }
.service-card-bg { position: absolute; right: -6px; bottom: -14px; font-family: var(--font-d); font-size: 96px; font-weight: 900; color: var(--border); line-height: 1; pointer-events: none; }
.service-num  { font-family: var(--font-d); font-size: 9px; font-weight: 700; letter-spacing: .2em; color: var(--red); margin-bottom: 12px; }
.service-name { font-family: var(--font-d); font-size: clamp(20px,2.8vw,28px); font-weight: 800; text-transform: uppercase; color: var(--text); line-height: 1; margin-bottom: 10px; }
.service-desc { font-size: 12px; color: var(--textmid); line-height: 1.7; max-width: 34ch; margin-bottom: 14px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.service-tag  { font-size: 8px; letter-spacing: .08em; text-transform: uppercase; border: 1px solid var(--bordermid); color: var(--textlow); padding: 3px 8px; }
.service-arr  { display: none; } /* removed arrow */
.service-agency { grid-column: span 2; background: var(--bg2); border-top: 1px solid var(--border); }
.service-agency-badge { background: var(--red); color: #F2EDE6; font-size: 8px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 3px 10px; display: inline-block; margin-bottom: 12px; }

/* ============================================================
   STATS
   ============================================================ */
.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); background: var(--border); gap: 1px; }
.stat-item   { background: var(--bg2); padding: 36px 28px; text-align: center; }
.stat-number { font-family: var(--font-d); font-size: clamp(44px,6vw,62px); font-weight: 900; line-height: 1; color: var(--text); margin-bottom: 6px; }
.stat-number b { color: var(--red); }
.stat-label  { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--textlow); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
/* Carousel version */
.testi-carousel { position: relative; overflow: hidden; }
.testi-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.testi-track .testi-card {
  flex: 0 0 33.333%;
  min-width: 33.333%;
  box-sizing: border-box;
  border-right: 1px solid var(--border);
}
.testi-track .testi-card:last-child { border-right: none; }
.testi-dots { display: flex; justify-content: center; gap: 6px; margin-top: 20px; }
.testi-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bordermid); cursor: pointer; transition: background .2s, transform .2s; border: none; padding: 0; }
.testi-dot.active { background: var(--red); transform: scale(1.3); }
@media (max-width: 768px) {
  .testi-track .testi-card { flex: 0 0 100%; min-width: 100%; }
}
.testi-card { background: var(--bg); padding: 32px 28px; position: relative; cursor: pointer; transition: background .2s; }
.testi-card:hover { background: var(--bg2); }
.testi-card-link { position: absolute; inset: 0; z-index: 10; display: block; }
.testi-quote { font-family: var(--font-d); font-size: 48px; font-weight: 900; color: var(--red); line-height: .8; display: block; margin-bottom: 12px; }
.testi-text  { font-size: 13px; font-weight: 300; line-height: 1.78; color: var(--textmid); margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; color: var(--textlow); flex-shrink: 0; overflow: hidden; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 12px; font-weight: 600; color: var(--text); }
.testi-company { font-size: 10px; color: var(--textlow); margin-top: 1px; }
.testi-role { font-size: 10px; color: var(--textlow); margin-top: 1px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; gap: 16px;
  font-family: var(--font-d); font-size: clamp(16px,2vw,21px); font-weight: 800;
  text-transform: uppercase; color: var(--text); line-height: 1.1;
  background: none; border: none; width: 100%; text-align: left; transition: color .2s;
}
.faq-trigger:hover { color: var(--red); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--bordermid); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--textlow); transition: transform .3s, background .2s, border-color .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red); border-color: var(--red); color: #fff; }
.faq-answer {
  font-size: 13px; color: var(--textmid); line-height: 1.8;
  padding: 0 40px 0 0; max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease), padding .25s;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }

/* ============================================================
   HOMEPAGE PRICING TEASERS
   ============================================================ */
.pricing-teasers { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--border); }
.price-teaser {
  background: var(--bg3); padding: 28px 22px;
  display: flex; flex-direction: column; cursor: pointer;
  transition: background .2s, transform .25s; position: relative; overflow: hidden;
}
.price-teaser-link { position: absolute; inset: 0; z-index: 10; display: block; }
.price-teaser:hover { background: var(--bg2); transform: translateY(-4px); }
.price-teaser.featured {
  background: var(--bg2);
  border-top: 2px solid var(--red);
  padding-top: 36px;
}
.price-teaser.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 90px;
  background: radial-gradient(ellipse at 50% 0%, rgba(214,59,34,.10) 0%, transparent 75%);
  pointer-events: none;
}
.pt-bg  { position: absolute; right: -4px; bottom: -12px; font-family: var(--font-d); font-size: 72px; font-weight: 900; color: var(--border); line-height: 1; pointer-events: none; }
.pt-cat { font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.pt-name { font-family: var(--font-d); font-size: clamp(15px,1.6vw,20px); font-weight: 800; text-transform: uppercase; color: var(--text); line-height: 1; margin-bottom: 12px; }
.pt-from { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--textlow); margin-bottom: 4px; }
.pt-price { font-family: var(--font-d); font-size: clamp(28px,3.5vw,44px); font-weight: 900; color: var(--text); line-height: 1; display: flex; align-items: flex-start; gap: 1px; }
.pt-currency { font-size: clamp(15px,2vw,22px); font-weight: 700; color: var(--textmid); margin-top: 5px; }
.pt-price b { color: var(--red); }
.pt-was  { font-size: 11px; color: var(--textlow); text-decoration: line-through; margin-bottom: 6px; margin-top: 4px; }
.pt-save { font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green-wa); background: rgba(37,211,102,.08); border: 1px solid rgba(37,211,102,.15); padding: 3px 8px; display: inline-block; margin-bottom: 14px; }
.pt-note { font-size: 11px; color: var(--textlow); line-height: 1.5; margin-bottom: 16px; flex: 1; }
.pt-cta  { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--red); border-bottom: 1px solid rgba(214,59,34,.3); padding-bottom: 2px; display: inline-block; transition: color .2s, border-color .2s; margin-top: 8px; }
.pt-cta:hover { border-color: var(--red); }

/* ============================================================
   FULL PRICING PAGE
   ============================================================ */
.pricing-page-hero { background: var(--bg); padding: 100px 52px 56px; border-bottom: 1px solid var(--border); }
.pricing-page-title { font-family: var(--font-d); font-size: clamp(44px,8vw,88px); font-weight: 900; text-transform: uppercase; line-height: .88; color: var(--text); }
.pricing-page-title b { color: var(--red); }
.pricing-page-sub { font-size: 14px; color: var(--textmid); line-height: 1.7; max-width: 52ch; margin-top: 16px; }
.pricing-note-bar { background: rgba(214,59,34,.07); border: 1px solid rgba(214,59,34,.2); padding: 14px 20px; margin-bottom: 48px; display: flex; align-items: flex-start; gap: 12px; }
.pnb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 5px; }
.pnb-txt { font-size: 12px; color: var(--textmid); line-height: 1.6; }
.pnb-txt b { color: var(--text); }

.pkg-category { margin-bottom: 56px; }
.pkg-category-title { font-family: var(--font-d); font-size: clamp(28px,4vw,44px); font-weight: 900; text-transform: uppercase; color: var(--text); margin-bottom: 4px; line-height: 1; }
.pkg-category-title b { color: var(--red); }
.pkg-category-sub { font-size: 12px; color: var(--textlow); margin-bottom: 28px; font-style: italic; }
.pkg-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.pkg-grid-4 { grid-template-columns: repeat(4,1fr); }

.pkg-card { background: var(--bg3); padding: 28px 24px; position: relative; overflow: hidden; transition: background .2s; cursor: pointer; }
.pkg-card:hover { background: var(--bg2); }
.pkg-card.featured { background: var(--bg2); border: 1px solid rgba(214,59,34,.4); }
.pkg-feat-label { background: var(--red); color: #F2EDE6; font-size: 8px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 3px 8px; display: inline-block; margin-bottom: 12px; }
.pkg-name { font-family: var(--font-d); font-size: clamp(18px,2vw,24px); font-weight: 800; text-transform: uppercase; color: var(--text); line-height: 1; margin-bottom: 10px; }
.pkg-amt-row { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 2px; }
.pkg-amount { font-family: var(--font-d); font-size: clamp(36px,4.5vw,52px); font-weight: 900; line-height: 1; color: var(--text); }
.pkg-was    { font-size: 13px; color: var(--textlow); text-decoration: line-through; padding-bottom: 6px; }
.pkg-per    { font-size: 11px; color: var(--textlow); margin-bottom: 2px; }
.pkg-save   { font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green-wa); margin-bottom: 14px; display: block; }
.pkg-rule   { height: 1px; background: var(--border); margin-bottom: 14px; }
.pkg-desc   { font-size: 12px; color: var(--textmid); line-height: 1.6; margin-bottom: 14px; }
.pkg-features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.pkg-feature { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; color: var(--textmid); }
.pkg-feature::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 5px; }
.pkg-1person { font-size: 10px; color: var(--textlow); font-style: italic; padding: 8px 12px; background: var(--bg); border-left: 2px solid var(--bordermid); margin-bottom: 14px; line-height: 1.5; }
.pkg-1person b { color: var(--textmid); font-style: normal; }
.pkg-btn { display: block; width: 100%; text-align: center; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 12px; transition: all .2s; cursor: pointer; }
.pkg-btn-outline { border: 1px solid var(--bordermid); color: var(--textlow); background: none; }
.pkg-btn-outline:hover { border-color: var(--text); color: var(--text); }
.pkg-btn-red { background: var(--red); color: #F2EDE6; border: none; }
.pkg-btn-red:hover { background: var(--red-dark); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-headline { font-family: var(--font-d); font-size: clamp(40px,7vw,80px); font-weight: 900; text-transform: uppercase; line-height: .9; color: var(--text); margin-bottom: 8px; }
.contact-headline b { color: var(--red); }
.contact-sub { font-size: 13px; color: var(--textmid); font-style: italic; margin-bottom: 40px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-options { display: flex; flex-direction: column; }
.contact-opt {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: padding-left .18s; color: inherit;
}
.contact-opt:first-child { border-top: 1px solid var(--border); }
.contact-opt:hover { padding-left: 9px; }
.contact-opt-left { display: flex; align-items: center; gap: 13px; }
.contact-opt-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.coi-cal  { background: var(--bg3); }
.coi-wa   { background: rgba(37,211,102,.08); }
.coi-mail { background: rgba(214,59,34,.06); }
.contact-opt-name { font-family: var(--font-d); font-size: clamp(16px,2vw,22px); font-weight: 800; text-transform: uppercase; color: var(--text); }
.contact-opt-sub  { font-size: 10px; color: var(--textlow); margin-top: 2px; }
.contact-opt-arr  { font-size: 14px; color: var(--border); }

/* 2-step form */
.enquiry-form { display: flex; flex-direction: column; }
.form-step.hidden { display: none !important; }
.form-step-header { font-family: var(--font-d); font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--textmid); margin-bottom: 20px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; margin-bottom: 7px; font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--textlow); }
.form-field .req { color: var(--red); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--bordermid); color: var(--text);
  font-family: var(--font-b); font-size: 13px;
  padding: 8px 0 10px; outline: none; resize: none;
  transition: border-color .2s; -webkit-appearance: none; appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: rgba(214,59,34,.6); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--border); }
.form-field select option { background: var(--bg2); color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-feedback { padding: 10px 14px; font-size: 11px; margin-bottom: 12px; display: none; }
.form-feedback.success { background: rgba(37,211,102,.08); border: 1px solid rgba(37,211,102,.2); color: #1a6b3c; }
.form-feedback.error   { background: rgba(214,59,34,.08); border: 1px solid rgba(214,59,34,.2); color: var(--red); }
.form-submit {
  width: 100%; background: var(--red); color: #F2EDE6;
  font-family: var(--font-b); font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 14px; border: none; cursor: pointer; margin-top: 10px;
  transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--red-dark); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-skip-btn { width: 100%; background: none; border: none; font-size: 10px; color: var(--textlow); cursor: pointer; margin-top: 8px; text-decoration: underline; }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.wa-float {
  position: fixed; bottom: 96px; right: 24px; z-index: 480;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-wa); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .25s var(--ease), opacity .3s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float.wa-hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
.wa-float-ring { display: none; }
@keyframes wa-pulse { 0%,100%{transform:scale(1);opacity:.6;} 50%{transform:scale(1.15);opacity:0;} }

.scroll-top-btn {
  position: fixed; bottom: 96px; left: 24px; z-index: 480;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: #F2EDE6;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; border: none; cursor: pointer;
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s, transform .3s, background .2s;
}
.scroll-top-btn.show { opacity: 1; transform: none; }
.scroll-top-btn:hover { background: var(--red-dark); }

/* Side CTA removed */


/* ============================================================
   EXIT POPUP
   ============================================================ */
.exit-popup-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,.7); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.exit-popup-overlay.show { opacity: 1; pointer-events: all; }
.exit-popup {
  background: var(--bg2); max-width: 540px; width: 90%;
  position: relative; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
  transform: scale(.96) translateY(12px); transition: transform .3s var(--ease);
}
.exit-popup-overlay.show .exit-popup { transform: none; }
.exit-popup-img { background: var(--bg3); min-height: 280px; position: relative; overflow: hidden; }
.exit-popup-img img { width: 100%; height: 100%; object-fit: cover; }
.exit-popup-body { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
.exit-popup-label { font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.exit-popup-title { font-family: var(--font-d); font-size: clamp(20px,2.8vw,30px); font-weight: 900; text-transform: uppercase; line-height: .95; color: var(--text); margin-bottom: 10px; }
.exit-popup-text  { font-size: 12px; color: var(--textmid); line-height: 1.65; margin-bottom: 20px; }
.exit-popup-cta   { background: var(--red); color: #F2EDE6; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 12px 20px; display: block; text-align: center; transition: background .2s; }
.exit-popup-cta:hover { background: var(--red-dark); color: #F2EDE6; }
.exit-popup-dismiss { font-size: 10px; color: var(--textlow); text-align: center; margin-top: 10px; cursor: pointer; background: none; border: none; display: block; width: 100%; }
.exit-popup-close { position: absolute; top: 10px; right: 12px; background: rgba(0,0,0,.4); border: none; color: rgba(255,255,255,.7); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; transition: background .2s; z-index: 2; }
.exit-popup-close:hover { background: rgba(0,0,0,.7); color: #fff; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.blog-card { background: var(--bg); overflow: hidden; cursor: pointer; transition: background .2s; position: relative; }
.blog-card:hover { background: var(--bg2); }
.blog-card-link { position: absolute; inset: 0; z-index: 10; }
.blog-card-body { position: relative; z-index: 2; }
.blog-card:hover { background: var(--bg2); }
.blog-card-thumb { aspect-ratio: 16/9; overflow: hidden; position: relative; background: var(--bg3); }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); display: block; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-card-body   { padding: 22px; }
.blog-card-cat    { font-size: 8px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.blog-card-title  { font-family: var(--font-d); font-size: clamp(18px,2.2vw,24px); font-weight: 800; text-transform: uppercase; color: var(--text); line-height: 1.05; margin-bottom: 8px; }
.blog-card-excerpt { font-size: 12px; color: var(--textmid); line-height: 1.65; margin-bottom: 14px; }
.blog-card-meta   { display: flex; align-items: center; gap: 10px; font-size: 10px; color: var(--textlow); flex-wrap: wrap; }
.blog-meta-sep    { color: var(--border); }
.blog-read-more   { font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--textlow); border-bottom: 1px solid var(--bordermid); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.blog-card:hover .blog-read-more { color: var(--red); border-color: var(--red); }

/* Blog list page */
.blog-page-hero { padding: 100px 52px 56px; background: var(--bg); border-bottom: 1px solid var(--border); }
.blog-page-eyebrow { font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; }
.blog-page-title { font-family: var(--font-d); font-size: clamp(44px,8vw,88px); font-weight: 900; text-transform: uppercase; line-height: .88; color: var(--text); }
.blog-page-title b { color: var(--red); }
.blog-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); }
.blog-full-grid .blog-card:first-child { grid-column: span 2; }
.blog-full-grid .blog-card:first-child .blog-card-thumb { aspect-ratio: 21/9; }
.blog-full-grid .blog-card:first-child .blog-card-title { font-size: clamp(24px,3.5vw,40px); }
.blog-load-more { text-align: center; padding: 40px 0; }
.load-more-btn { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--bordermid); color: var(--textlow); padding: 12px 28px; cursor: pointer; background: none; transition: all .2s; }
.load-more-btn:hover { border-color: var(--red); color: var(--red); }

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-hero {
  min-height: 56vh; position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 100px 52px 48px; overflow: hidden; background: var(--bg);
}
.post-hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--bg3); }
.post-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.post-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(12,11,11,.92) 0%, rgba(12,11,11,.3) 60%, transparent 100%); }
.post-hero-body { position: relative; z-index: 2; max-width: 820px; }
.post-category { font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.post-title { font-family: var(--font-d); font-size: clamp(40px,7vw,76px); font-weight: 900; text-transform: uppercase; line-height: .9; color: #F2EDE6; margin-bottom: 16px; }
.post-meta-bar { display: flex; align-items: center; gap: 14px; font-size: 11px; color: rgba(242,237,230,.38); flex-wrap: wrap; }
.post-meta-sep { color: rgba(242,237,230,.15); }

.post-content-wrap { max-width: 780px; margin: 0 auto; padding: 60px 52px 88px; }
.post-content-wrap p { font-size: 15px; line-height: 1.85; color: var(--textmid); margin-bottom: 22px; }
.post-content-wrap h2 { font-family: var(--font-d); font-size: clamp(28px,4vw,40px); font-weight: 800; text-transform: uppercase; color: var(--text); margin: 40px 0 16px; line-height: 1; }
.post-content-wrap h3 { font-family: var(--font-d); font-size: clamp(22px,3vw,30px); font-weight: 800; text-transform: uppercase; color: var(--text); margin: 32px 0 12px; }
.post-content-wrap blockquote { border-left: 2px solid var(--red); padding-left: 20px; margin: 28px 0; font-size: 16px; font-weight: 300; color: var(--text); font-style: italic; line-height: 1.6; }
.post-content-wrap img { width: 100%; margin: 28px 0; display: block; border-radius: 0; }
.post-content-wrap a { color: var(--text); border-bottom: 1px solid var(--bordermid); transition: border-color .2s, color .2s; }
.post-content-wrap a:hover { color: var(--red); border-color: var(--red); }
.post-content-wrap ul, .post-content-wrap ol { padding-left: 20px; margin-bottom: 20px; }
.post-content-wrap ul li, .post-content-wrap ol li { font-size: 15px; line-height: 1.75; color: var(--textmid); margin-bottom: 8px; }
.post-content-wrap ul li { list-style: disc; }
.post-content-wrap ol li { list-style: decimal; }
.post-share { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; margin: 32px 0; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.post-share-label { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--textlow); }
.post-share-btn { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 7px 14px; border: 1px solid var(--bordermid); color: var(--textlow); background: none; cursor: pointer; transition: all .2s; }
.post-share-btn:hover { border-color: var(--text); color: var(--text); }

.related-posts-section { background: var(--bg2); padding: 56px 52px; border-top: 1px solid var(--border); }
.related-posts-title { font-family: var(--font-d); font-size: clamp(28px,4vw,44px); font-weight: 900; text-transform: uppercase; color: var(--text); margin-bottom: 32px; }
.related-posts-title b { color: var(--red); }

/* ============================================================
   SINGLE PORTFOLIO
   ============================================================ */
.port-nav { background: var(--bg2); border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; }
.port-nav-item { padding: 28px 32px; display: flex; flex-direction: column; gap: 6px; transition: background .2s; }
.port-nav-item:hover { background: var(--bg3); }
.port-nav-item:first-child { border-right: 1px solid var(--border); }
.port-nav-dir { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--textlow); }
.port-nav-title { font-family: var(--font-d); font-size: clamp(16px,2vw,22px); font-weight: 800; text-transform: uppercase; color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0C0B0B; border-top: 1px solid rgba(242,237,230,.08); padding: 52px 52px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(242,237,230,.08); margin-bottom: 20px; }
.footer-logo { font-family: var(--font-d); font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; color: #F2EDE6; margin-bottom: 8px; }
.footer-logo b { color: var(--red); }
.footer-logo img { height: 32px; width: auto; margin-bottom: 8px; }
.footer-tagline { font-size: 11px; color: rgba(242,237,230,.45); line-height: 1.65; max-width: 22ch; margin-bottom: 14px; }
.footer-email   { font-size: 11px; color: rgba(242,237,230,.55); border-bottom: 1px solid rgba(242,237,230,.2); display: inline-block; padding-bottom: 1px; transition: color .2s; }
.footer-email:hover { color: #F2EDE6; }
.footer-col-title { font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(242,237,230,.4); margin-bottom: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 12px; color: rgba(242,237,230,.45); transition: color .2s; }
.footer-links a:hover { color: #F2EDE6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 10px; color: rgba(242,237,230,.3); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(242,237,230,.4); transition: color .2s; }
.footer-socials a:hover { color: #F2EDE6; }

/* ============================================================
   COOKIE NOTICE — above dock, no overlap
   ============================================================ */
.cookie-notice {
  position: fixed; bottom: 80px; left: 16px; right: 16px; z-index: 550;
  background: var(--bg2); border: 1px solid var(--border);
  padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  transform: translateY(0); transition: transform .35s var(--ease), opacity .35s;
}
.cookie-notice.hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }
.cookie-text { font-size: 12px; color: var(--textmid); line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-text a { color: var(--text); border-bottom: 1px solid var(--bordermid); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-accept { background: var(--red); color: #F2EDE6; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 8px 18px; border: none; cursor: pointer; transition: background .2s; }
.cookie-accept:hover { background: var(--red-dark); }
.cookie-decline { background: none; border: 1px solid var(--bordermid); color: var(--textlow); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 7px 14px; cursor: pointer; transition: all .2s; }
.cookie-decline:hover { border-color: var(--text); color: var(--text); }

/* ============================================================
   LANDING PAGE TEMPLATE
   ============================================================ */
.landing-page body { padding-bottom: 0; }
.lp-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 60px; display: flex; align-items: center; justify-content: center;
  background: var(--bg); border-bottom: 1px solid var(--border);
}
.lp-logo { font-family: var(--font-d); font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--text); }
.lp-logo b { color: var(--red); }

.lp-hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 52px 60px; background: #0C0B0B; overflow: hidden;
  text-align: center;
}
.lp-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(12,11,11,.96) 0%, rgba(12,11,11,.55) 100%); }
.lp-hero-glow { position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 80%; height: 60%; border-radius: 50%; background: radial-gradient(ellipse, rgba(214,59,34,.15) 0%, transparent 65%); z-index: 0; }
.lp-hero-body { position: relative; z-index: 2; max-width: 760px; width: 100%; }
.lp-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(214,59,34,.8); margin-bottom: 16px; }
.lp-headline { font-family: var(--font-d); font-size: clamp(48px,8vw,88px); font-weight: 900; text-transform: uppercase; line-height: .88; letter-spacing: -.03em; color: #F2EDE6; margin-bottom: 20px; }
.lp-headline b { color: var(--red); }
.lp-subline { font-size: 16px; font-weight: 300; color: rgba(242,237,230,.65); line-height: 1.7; max-width: 52ch; margin: 0 auto 36px; }
.lp-form-box { background: var(--bg2); border: 1px solid var(--border); padding: 32px; max-width: 480px; margin: 0 auto; }
.lp-form-title { font-family: var(--font-d); font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--text); margin-bottom: 22px; }
.lp-trust-row { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.lp-trust-item { font-size: 11px; color: rgba(242,237,230,.4); display: flex; align-items: center; gap: 6px; }
.lp-trust-item::before { content: '✓'; color: var(--green-wa); }

.lp-proof { padding: 48px 52px; background: var(--bg2); border-top: 1px solid var(--border); }
.lp-proof-inner { max-width: 900px; margin: 0 auto; }
.lp-proof-title { font-family: var(--font-d); font-size: clamp(24px,3.5vw,36px); font-weight: 900; text-transform: uppercase; color: var(--text); text-align: center; margin-bottom: 32px; }
.lp-proof-title b { color: var(--red); }
.lp-bullets { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.lp-bullet { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 24px; background: var(--bg3); }
.lp-bullet-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(214,59,34,.1); border: 1px solid rgba(214,59,34,.25); display: flex; align-items: center; justify-content: center; }
.lp-bullet-icon svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 1.5; }
.lp-bullet-title { font-family: var(--font-d); font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--text); }
.lp-bullet-text { font-size: 12px; color: var(--textmid); line-height: 1.65; }

.lp-testi { padding: 48px 52px; background: var(--bg); border-top: 1px solid var(--border); }
.lp-testi-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }

.lp-cta-section { padding: 56px 52px; background: var(--bg2); border-top: 1px solid var(--border); text-align: center; }
.lp-cta-title { font-family: var(--font-d); font-size: clamp(36px,5vw,56px); font-weight: 900; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.lp-cta-title b { color: var(--red); }
.lp-cta-sub { font-size: 14px; color: var(--textmid); margin-bottom: 28px; }
.lp-cta-btn { display: inline-block; background: var(--red); color: #F2EDE6; font-family: var(--font-b); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 16px 36px; transition: background .2s; }
.lp-cta-btn:hover { background: var(--red-dark); color: #F2EDE6; }

.lp-footer { padding: 24px 52px; background: var(--bg); border-top: 1px solid var(--border); text-align: center; }
.lp-footer-text { font-size: 11px; color: var(--textlow); }
.lp-footer-text a { color: var(--textlow); border-bottom: 1px solid var(--border); }

/* ============================================================
   ELEMENTOR COMPATIBILITY
   ============================================================ */
.site-main { padding-top: 60px; }
.page-template-page-landing .site-main { padding-top: 60px; }
.elementor-section { margin: 0 !important; }
.elementor-column-gap-default > .elementor-column > .elementor-column-wrap { padding: 0 !important; }

/* ============================================================
   RESPONSIVE — MOBILE FIRST ADJUSTMENTS
   ============================================================ */

/* 1100px — Large tablet */
@media (max-width: 1100px) {
  .container { padding: 0 36px; }
  .section    { padding: 80px 36px; }
  .portfolio-grid .port-item:nth-child(1) { grid-column: span 6; }
  .portfolio-grid .port-item:nth-child(2) { grid-column: span 6; }
  .portfolio-grid .port-item:nth-child(3) { grid-column: span 4; }
  .portfolio-grid .port-item:nth-child(4) { grid-column: span 4; }
  .portfolio-grid .port-item:nth-child(5) { grid-column: span 4; }
  .insta-grid { grid-template-columns: repeat(3,1fr); }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .pricing-teasers { grid-template-columns: repeat(3,1fr); }
  .pkg-grid-4 { grid-template-columns: repeat(2,1fr); }
  .faq-layout { gap: 48px; }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* 900px — Tablet */
@media (max-width: 900px) {
  .container { padding: 0 28px; }
  .section    { padding: 64px 28px; }
  .hero-section { padding: 70px 28px 60px; }
  .hero-scroll-cue { display: none; }

  /* Grids → single column */
  .about-grid,
  .services-grid,
  .testi-grid,
  .contact-grid,
  .footer-grid,
  .blog-full-grid,
  .faq-layout { grid-template-columns: 1fr; }

  .service-agency { grid-column: span 1 !important; }
  .blog-full-grid .blog-card:first-child { grid-column: span 1; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid .port-item { grid-column: span 1 !important; }

  .stats-strip   { grid-template-columns: repeat(2,1fr); }
  .blog-grid     { grid-template-columns: 1fr; }
  .insta-grid    { grid-template-columns: repeat(3,1fr); }
  .pricing-teasers { grid-template-columns: repeat(2,1fr); }
  .pkg-grid, .pkg-grid-4 { grid-template-columns: 1fr; }

  /* Popups — properly sized for mobile, never taller than the viewport */
  .exit-popup {
    grid-template-columns: 1fr;
    max-height: 88vh;
    overflow-y: auto;
    width: 92%;
  }
  .exit-popup-img { display: block; min-height: 120px; max-height: 140px; }
  .exit-popup-body { padding: 20px 20px 16px; }
  .exit-popup-title { font-size: clamp(17px,5.5vw,22px); margin-bottom: 6px; }
  .exit-popup-text  { font-size: 11px; margin-bottom: 14px; }
  .exit-popup-cta   { padding: 11px 16px; font-size: 9px; }

  /* Services hint left-align */
  .services-hint { text-align: left; }

  /* Blog */
  .blog-page-hero { padding: 80px 28px 48px; }

  /* Post */
  .post-hero { padding: 80px 28px 40px; }
  .post-content-wrap { padding: 40px 28px 64px; }
  .related-posts-section { padding: 48px 28px; }

  /* Pricing */
  .pricing-page-hero { padding: 80px 28px 48px; }

  /* Landing */
  .lp-hero { padding: 80px 28px 52px; }
  .lp-proof, .lp-testi, .lp-cta-section { padding: 40px 28px; }
  .lp-bullets { grid-template-columns: 1fr; }
  .lp-testi-inner { grid-template-columns: 1fr; }
  .lp-footer { padding: 20px 28px; }

  /* Footer */
  .site-footer { padding: 48px 28px 24px; }

  /* Floating elements */
  .wa-float { bottom: 96px; right: 16px; }
  .scroll-top-btn { bottom: 96px; left: 16px; }
}

/* 600px — Mobile */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section    { padding: 52px 20px; }
  .hero-section { padding: 68px 20px 56px; }

  .hero-headline { font-size: clamp(44px,13vw,68px); }
  .proof-strip   { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-buttons  { flex-direction: column; align-items: flex-start; }

  .stats-strip   { grid-template-columns: 1fr 1fr; }
  .insta-grid    { grid-template-columns: repeat(2,1fr); }
  .pricing-teasers { grid-template-columns: 1fr 1fr; }
  .form-row      { grid-template-columns: 1fr; }

  /* Port items all full width on mobile */
  .portfolio-grid { grid-template-columns: 1fr; }
  /* overlay always visible — handled in base CSS */

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 40px 20px 20px; }

  /* Blog */
  .blog-page-hero { padding: 72px 20px 40px; }
  .blog-full-grid .blog-card:first-child .blog-card-thumb { aspect-ratio: 16/9; }

  /* Post */
  .post-hero { padding: 72px 20px 32px; }
  .post-content-wrap { padding: 32px 20px 52px; }
  .related-posts-section { padding: 40px 20px; }

  /* Landing */
  .lp-hero { padding: 70px 20px 48px; }
  .lp-form-box { padding: 24px 20px; }
  .lp-trust-row { gap: 12px; }

  /* Dock full width */
  .dock { left: 8px; right: 8px; border-radius: 14px; }

  /* Cookie notice */
  .cookie-notice { left: 8px; right: 8px; bottom: 84px; }

  /* Sticky CTA */
  /* side-cta handled in its own rule */
}

/* 400px — Small mobile */
@media (max-width: 400px) {
  .dock-label, .dock-toggle-label { display: none; }
  .dock-item, .dock-toggle { padding: 10px 8px; }
  .pricing-teasers { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   SHOWREEL LIGHTBOX MODAL
   ============================================================ */
#showreel-modal {
  display: none; position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
#showreel-modal.open { display: flex; }
#showreel-modal video,
#showreel-modal iframe { display: block; }
#showreel-modal-inner {
  position: relative; width: 90vw; max-width: 1100px;
  background: #000;
}
#showreel-modal-inner .modal-video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
}
#showreel-modal-inner .modal-video-wrap iframe,
#showreel-modal-inner .modal-video-wrap video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}
#showreel-close {
  position: absolute; top: -40px; right: 0;
  background: none; border: none; color: rgba(242,237,230,.7);
  font-size: 28px; cursor: pointer; line-height: 1; padding: 4px 8px;
  transition: color .2s;
}
#showreel-close:hover { color: #F2EDE6; }

/* ============================================================
   CINEMATIC INTRO SPLASH
   ============================================================ */
#og-intro {
  position: fixed; inset: 0; z-index: 9999;
  background: #0C0B0B;
  display: flex; align-items: center; justify-content: center;
  pointer-events: all;
  transition: opacity .6s ease, visibility .6s ease;
  overflow: hidden;
}
#og-intro.og-intro-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.og-intro-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' 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; opacity: .06; pointer-events: none;
}

/* Timecode top-left */
.og-intro-timecode {
  position: absolute; top: 24px; left: 36px;
  font-family: 'Courier New', monospace; font-size: 11px; font-weight: 400;
  letter-spacing: .18em; color: rgba(242,237,230,.35);
  opacity: 0; transition: opacity .3s;
}
.og-intro-timecode.vis { opacity: 1; }

/* REC indicator top-right */
.og-intro-rec {
  position: absolute; top: 24px; right: 36px;
  display: flex; align-items: center; gap: 6px;
  opacity: 0; transition: opacity .3s;
}
.og-intro-rec.vis { opacity: 1; }
.og-intro-recdot {
  width: 7px; height: 7px; border-radius: 50%; background: #D63B22;
  animation: og-rec-blink 1s ease-in-out infinite;
}
@keyframes og-rec-blink { 0%,100%{opacity:1;} 50%{opacity:.1;} }
.og-intro-rectxt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .22em;
  color: rgba(242,237,230,.35); text-transform: uppercase;
}

/* Film perforations */
.og-intro-perfs {
  position: absolute; top: 0; bottom: 0; width: 24px;
  display: flex; flex-direction: column; justify-content: space-around;
  align-items: center; padding: 20px 0;
}
.og-intro-perfs-l { left: 0; border-right: 1px solid rgba(242,237,230,.04); }
.og-intro-perfs-r { right: 0; border-left: 1px solid rgba(242,237,230,.04); }
.og-intro-perf { width: 12px; height: 9px; background: rgba(242,237,230,.05); border-radius: 1px; }

/* Centre content */
#og-intro-inner {
  text-align: center;
  opacity: 0; transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
  width: 90%;
  max-width: 900px;
}
#og-intro-inner.vis { opacity: 1; transform: none; }

#og-intro-logo {
  width: clamp(280px, 55vw, 700px);
  height: auto;
  max-height: 50vh;
  display: block;
  margin: 0 auto;
}
#og-intro-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(80px, 18vw, 200px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.03em;
  color: #F2EDE6; line-height: .9;
}
#og-intro-logo-text span { color: #D63B22; }
.og-intro-dot { color: #D63B22; }
#og-intro-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 2vw, 16px); font-weight: 300;
  letter-spacing: .32em; text-transform: uppercase;
  color: rgba(242,237,230,.35); margin-top: 16px;
}

/* ============================================================
   JOURNAL CATEGORY FILTERS
   ============================================================ */
.journal-filters {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.journal-filter-btn {
  font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border: 1px solid var(--bordermid); color: var(--textmid);
  background: none; cursor: pointer; text-decoration: none;
  transition: all .2s; border-radius: 40px;
}
.journal-filter-btn:hover { border-color: var(--red); color: var(--red); }
.journal-filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.journal-filter-count {
  font-size: 9px; opacity: .6; margin-left: 3px;
}

/* ============================================================
   SERVICE PAGES
   ============================================================ */
.service-page-hero {
  background: #0C0B0B;
  padding: 80px 0 0;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.service-page-hero .container { padding-bottom: 52px; }

@media (max-width: 768px) {
  .service-page-hero { padding: 70px 0 0; min-height: 45vh; }
}

/* ============================================================
   THEME COLOUR CONSISTENCY — ensure key elements switch modes
   ============================================================ */
/* Stat numbers, pkg amounts, testimonial names etc all use var(--text) */
.stat-num, .testi-name, .faq-q, .post-headline { color: var(--text); }
.testi-role, .post-meta, .blog-card-meta, .post-date { color: var(--textmid); }

/* Force section backgrounds to transition */
.section, .section-dark, .section-mid, .section-alt,
.blog-card, .testi-card, .pkg-card, .service-card,
.faq-item, .footer-inner {
  transition: background .35s, color .35s, border-color .35s;
}

/* ============================================================
   PROJECT GALLERY + LIGHTBOX
   ============================================================ */
.og-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.og-gallery-item {
  display: block; aspect-ratio: 1/1; overflow: hidden;
  background: var(--bg3); padding: 0; border: none; cursor: pointer;
  position: relative;
}
.og-gallery-item img {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  object-position: center center; /* overridden inline by focal point */
  transition: transform .45s ease, filter .3s;
  filter: brightness(.95);
}
.og-gallery-item:hover img { transform: scale(1.03); filter: brightness(1); }
.og-gallery-hidden { display: none !important; }
.og-gallery-hidden.og-gallery-visible { display: block !important; }

/* Lightbox */
#og-gallery-lb {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.96); align-items: center; justify-content: center;
  flex-direction: column;
}
#og-gallery-lb.open { display: flex; }
#og-lb-img-wrap {
  max-width: 90vw; max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
}
#og-lb-img {
  max-width: 90vw; max-height: 82vh;
  object-fit: contain; display: block;
  transition: opacity .2s;
}
#og-lb-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: rgba(242,237,230,.7);
  font-size: 30px; cursor: pointer; line-height: 1; z-index: 2;
  transition: color .2s;
}
#og-lb-close:hover { color: #F2EDE6; }
#og-lb-prev, #og-lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(242,237,230,.1); border: 1px solid rgba(242,237,230,.15);
  color: #F2EDE6; font-size: 28px; cursor: pointer; line-height: 1;
  padding: 12px 16px; transition: background .2s; z-index: 2;
}
#og-lb-prev { left: 20px; }
#og-lb-next { right: 20px; }
#og-lb-prev:hover, #og-lb-next:hover { background: rgba(242,237,230,.2); }
#og-lb-counter {
  position: absolute; bottom: 20px;
  font-size: 11px; color: rgba(242,237,230,.4);
  letter-spacing: .1em; font-family: var(--font-d);
}

/* ============================================================
   CINEMATIC MICRO-ANIMATIONS
   ============================================================ */
/* Hero headline — typing cursor line after the last word */
.hero-headline::after {
  content: '|';
  color: var(--red);
  animation: cursor-blink .9s step-end infinite;
  margin-left: 3px;
  font-weight: 300;
}
@keyframes cursor-blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Pricing cards — red glow on featured on hover */
.price-teaser.featured:hover::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(214,59,34,.18) 0%, transparent 75%);
}

/* Port-item — scale title on hover */
.port-item:hover .port-item-title { letter-spacing: .06em; }
.port-item-title { transition: letter-spacing .4s var(--ease); }

/* Section transition line — red underline that grows */
.sec-label::before {
  content: '';
  display: block; width: 24px; height: 2px;
  background: var(--red); margin-bottom: 10px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.reveal.vis .sec-label::before,
.sec-label { }
.sec-label::before { transform: scaleX(1); }

/* Buttons — subtle scale press */
.btn-primary:active, .btn-secondary:active, .side-cta-btn:active { transform: scale(.97); }

/* Footer links — underline slide */
.footer-links a { position: relative; }
.footer-links a::after { content:''; position:absolute; bottom:-1px; left:0; width:0; height:1px; background:var(--red); transition:width .3s var(--ease); }
.footer-links a:hover::after { width:100%; }

/* ============================================================
   MOVEMENT & ANIMATION SYSTEM
   ============================================================ */

/* Headings slide in from left */
.sec-title,
.about-title,
.hero-headline { overflow: hidden; }
.sec-title .word,
.about-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.sec-title.vis .word,
.about-title.vis .word { opacity: 1; transform: none; }
.sec-title .word:nth-child(2) { transition-delay: .08s; }
.sec-title .word:nth-child(3) { transition-delay: .16s; }
.about-title .word:nth-child(2) { transition-delay: .1s; }
.about-title .word:nth-child(3) { transition-delay: .2s; }

/* Services fade in staggered */
.services-grid.stagger > .service-card:nth-child(1) { transition-delay: .05s; }
.services-grid.stagger > .service-card:nth-child(2) { transition-delay: .12s; }
.services-grid.stagger > .service-card:nth-child(3) { transition-delay: .19s; }
.services-grid.stagger > .service-card:nth-child(4) { transition-delay: .26s; }
.services-grid.stagger > .service-card:nth-child(5) { transition-delay: .33s; }

/* FAQ items stagger in */
/* faq-item — see scroll animation section below */
.faq-item:nth-child(1) { transition-delay: .04s; }
.faq-item:nth-child(2) { transition-delay: .1s; }
.faq-item:nth-child(3) { transition-delay: .16s; }
.faq-item:nth-child(4) { transition-delay: .22s; }
.faq-item:nth-child(5) { transition-delay: .28s; }
.faq-item:nth-child(6) { transition-delay: .34s; }

/* Pricing teasers appear one after another */
.pricing-teasers.stagger > .price-teaser:nth-child(1) { transition-delay: .06s; }
.pricing-teasers.stagger > .price-teaser:nth-child(2) { transition-delay: .14s; }
.pricing-teasers.stagger > .price-teaser:nth-child(3) { transition-delay: .22s; }
.pricing-teasers.stagger > .price-teaser:nth-child(4) { transition-delay: .30s; }
.pricing-teasers.stagger > .price-teaser:nth-child(5) { transition-delay: .38s; }

/* "READY" shake animation on CTA headings */
@keyframes og-shake {
  0%,100% { transform: none; }
  15%      { transform: rotate(-2deg) translateX(-3px); }
  30%      { transform: rotate(2deg)  translateX(3px); }
  45%      { transform: rotate(-1.5deg) translateX(-2px); }
  60%      { transform: rotate(1.5deg)  translateX(2px); }
  75%      { transform: rotate(-1deg)  translateX(-1px); }
}
.og-shake {
  display: inline-block;
  animation: og-shake 2.5s ease-in-out infinite;
  animation-delay: 1.2s;
  transform-origin: center bottom;
}



/* ============================================================
   SCROLL-TRIGGERED ANIMATIONS — every section
   All invisible by default, revealed on scroll
   ============================================================ */
.stat-item      { opacity: 0; transform: translateY(14px); transition: opacity .35s ease, transform .35s ease; }
.stat-item.vis  { opacity: 1; transform: none; }

.testi-card     { opacity: 0; transform: translateY(12px); transition: opacity .35s ease, transform .35s ease; }
.testi-card.vis { opacity: 1; transform: none; }

.service-card     { opacity: 0; transform: translateY(14px); transition: background .2s, transform .35s ease, opacity .35s ease, box-shadow .3s; }
.service-card.vis { opacity: 1; transform: none; }
.service-card.vis:hover { transform: translateY(-4px); }

.price-teaser     { opacity: 0; transform: translateY(12px); transition: background .2s, transform .35s ease, opacity .35s ease; }
.price-teaser.vis { opacity: 1; transform: none; }
.price-teaser.vis:hover { transform: translateY(-4px); }

.blog-card     { opacity: 0; transform: translateY(12px); transition: background .2s, transform .35s ease, opacity .35s ease, box-shadow .3s; }
.blog-card.vis { opacity: 1; transform: none; }
.blog-card.vis:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.22); }

.port-item     { opacity: 0; transition: opacity .3s ease; }
.port-item.vis { opacity: 1; }

.faq-item     { opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease; }
.faq-item.vis { opacity: 1; transform: none; }

/* ============================================================
   DOCK SCROLL BEHAVIOUR — shrinks when scrolling up
   ============================================================ */
.dock { transition: padding .4s cubic-bezier(.22,1,.36,1), background .35s; }
.dock.dock-compact {
  padding: 4px 6px;
}
.dock.dock-compact .dock-item {
  padding: 5px 0;
  gap: 2px;
}
.dock.dock-compact .dock-label,
.dock.dock-compact .dock-toggle-label { font-size: 7px; opacity: .7; }
.dock.dock-compact .dock-icon svg,
.dock.dock-compact .dock-toggle-icon svg { width: 15px; height: 15px; }
.dock-item { transition: padding .4s cubic-bezier(.22,1,.36,1), color .2s; }

/* ============================================================
   POLAROID WALL
   ============================================================ */
.pol-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 12px 0;
}

/* Single polaroid card */
.pol-card {
  padding: 8px 8px 0 8px;
  cursor: pointer;
  position: relative;
  transform: rotate(var(--rot, -2deg));
  opacity: 1 !important;
  transition:
    transform .5s cubic-bezier(.22,1,.36,1),
    box-shadow .5s cubic-bezier(.22,1,.36,1);
  z-index: 1;
  /* Background matches caption for seamless photo frame */
  background: #ffffff;
}
[data-theme="dark"] .pol-card { background: #1c1a18; }
/* Box shadow only — no black border */
.pol-card { box-shadow: 0 4px 18px rgba(0,0,0,.18), 0 1px 0 rgba(0,0,0,.06); }
[data-theme="dark"] .pol-card { box-shadow: 0 6px 24px rgba(0,0,0,.5), 0 1px 0 rgba(255,255,255,.04) inset; }
.pol-card:hover {
  transform: rotate(0deg) scale(1.06) translateY(-8px) !important;
  z-index: 10;
  box-shadow:
    0 24px 56px rgba(0,0,0,.7),
    0 0 0 1px rgba(214,59,34,.25);
}
.pol-card-link {
  position: absolute; inset: 0; z-index: 20; display: block;
}

/* Hidden when filtered */
.pol-card.pol-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(.9) rotate(var(--rot, -2deg));
}

/* Red tape strip at top */
.pol-tape {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 17px;
  background: rgba(214,59,34,.28);
  border: 1px solid rgba(214,59,34,.22);
  z-index: 5;
}
.pol-tape::after {
  content: ''; position: absolute; inset: 3px;
  background: rgba(214,59,34,.12);
}

/* Photo area */
.pol-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
}
.pol-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: filter .5s, transform .5s cubic-bezier(.22,1,.36,1);
  filter: grayscale(40%) brightness(.85);
}
.pol-card:hover .pol-photo-img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.04);
}
.pol-photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(242,237,230,.15);
}

/* Film overlays */
.pol-scanlines {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,0,0,.12) 3px, rgba(0,0,0,.12) 4px
  );
}
.pol-grain-overlay {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: .28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 110px;
}
.pol-vignette {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,.55) 100%);
}
.pol-frame-num {
  position: absolute; top: 5px; right: 7px; z-index: 5;
  font-family: 'Courier New', monospace; font-size: 6px;
  color: rgba(255,255,255,.25); letter-spacing: .06em; pointer-events: none;
}
.pol-rec-dot {
  position: absolute; top: 7px; left: 7px; z-index: 5;
  width: 5px; height: 5px; border-radius: 50%;
  background: #D63B22;
  box-shadow: 0 0 5px rgba(214,59,34,.8);
  animation: pol-rec-blink 1.6s ease-in-out infinite;
}
@keyframes pol-rec-blink { 0%,100%{opacity:1} 50%{opacity:.15} }

/* Caption — WHITE in day mode, DARK in night mode */
.pol-caption {
  background: #ffffff;       /* day: pure white paper — contrasts against off-white page */
  padding: 8px 7px 10px;
  margin-top: 0;
  display: flex; flex-direction: column; gap: 2px;
  min-height: 58px;
  transition: background .35s;
}
[data-theme="dark"] .pol-caption {
  background: #1a1816;       /* night: dark warm paper */
}
.pol-cat {
  font-size: 7px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: #D63B22;
  display: block; margin-bottom: 1px;
}
.pol-brand {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .03em; line-height: 1.2;
  color: #0C0B0B;            /* day: near-black */
  transition: color .35s;
}
[data-theme="dark"] .pol-brand { color: #F2EDE6; } /* night: off-white */
.pol-desc {
  font-size: 9px; line-height: 1.4; margin-top: 1px;
  color: rgba(12,11,11,.5);  /* day: muted dark */
  transition: color .35s;
}
[data-theme="dark"] .pol-desc { color: rgba(242,237,230,.4); } /* night: muted light */

/* Responsive */
@media (max-width: 1100px) { .pol-wall { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px)  { .pol-wall { grid-template-columns: repeat(2,1fr); gap: 20px; } }
@media (max-width: 480px)  { .pol-wall { grid-template-columns: 1fr; gap: 28px; } }

/* ============================================================
   TAG FILTER ROW
   ============================================================ */
.portfolio-tag-filters {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap; margin-top: 8px; margin-bottom: 24px;
}
.tag-filter-label {
  font-size: 9px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--textlow);
  margin-right: 4px; white-space: nowrap;
}
/* Tag buttons slightly different style — smaller, pill shape */
.tag-btn {
  padding: 4px 12px !important;
  border-radius: 20px !important;
  font-size: 8px !important;
}
.tag-btn.active {
  background: rgba(214,59,34,.1) !important;
  border-color: var(--red) !important;
  color: var(--red) !important;
}

/* ============================================================
   MOBILE OPTIMISATION — full site audit
   Target: 375px–768px
   ============================================================ */

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-d) !important;
  text-transform: uppercase;
}

/* ── Base mobile ── */
@media (max-width: 768px) {

  /* Container padding tighter on mobile */
  .container { padding: 0 18px; }

  /* ── Single portfolio page ── */
  /* Hero: tighten gap */
  .showcase-single-hero { min-height: 44vh !important; padding: 64px 0 0 !important; }
  .showcase-single-hero .container { padding-bottom: 28px !important; }
  .showcase-single-hero h1 { font-size: clamp(32px,9vw,52px) !important; margin-bottom: 10px !important; }

  /* Two-column content → single column */
  .showcase-single-hero + * + section .container > div[style*="grid-template-columns"],
  section .container > div[style*="grid-template-columns:1.55fr"],
  section .container > div[style*="grid-template-columns:1fr 1fr"],
  section .container > div[style*="grid-template-columns: 1fr 1fr"],
  section .container > div[style*="grid-template-columns:2fr"],
  [style*="display:grid"][style*="grid-template-columns"],
  [style*="display: grid"][style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  /* Sidebar sticky → normal flow on mobile */
  [style*="position:sticky"],
  [style*="position: sticky"] { position: relative !important; top: auto !important; }

  /* Body text comfortable reading size */
  [style*="font-size:17px"],
  [style*="font-size: 17px"],
  [style*="font-size:16px"],
  [style*="font-size: 16px"] { font-size: 15px !important; }

  [style*="font-size:15px"],
  [style*="font-size: 15px"] { font-size: 14px !important; }

  /* Line length — never too wide */
  [style*="max-width:52ch"],
  [style*="max-width: 52ch"],
  [style*="max-width:60ch"],
  [style*="max-width: 60ch"] { max-width: 100% !important; }

  /* Section padding */
  .section { padding: 40px 0; }

  /* ── Service pages ── */
  .service-page-hero { padding: 64px 0 0 !important; min-height: 44vh !important; }
  .service-page-hero h1 { font-size: clamp(34px,9vw,56px) !important; }
  .service-page-hero p  { font-size: 14px !important; max-width: 100% !important; }

  /* Good to know box — full width */
  [style*="background:var(--bg3)"][style*="padding:28px"] { padding: 20px !important; }

  /* ── Polaroid wall ── */
  .pol-wall { grid-template-columns: repeat(2,1fr) !important; gap: 28px 16px !important; }

  /* ── Portfolio filters ── */
  .portfolio-filters, .portfolio-tag-filters { gap: 6px; }
  .filter-btn { padding: 5px 10px !important; font-size: 8px !important; }

  /* ── Stats strip ── */
  .stats-strip { grid-template-columns: repeat(2,1fr) !important; gap: 16px !important; }

  /* ── Blog grid → single col ── */
  .blog-grid { grid-template-columns: 1fr !important; }

  /* ── Pricing teasers → scroll or 1 col ── */
  .pricing-teasers { grid-template-columns: 1fr 1fr !important; }

  /* ── Dock ── */
  .dock-item { width: 52px !important; min-width: 52px !important; }
  .dock-toggle { width: 46px !important; min-width: 46px !important; }
  .dock-label, .dock-toggle-label { font-size: 8px !important; }

  /* ── Gallery ── */
  .og-gallery { grid-template-columns: repeat(2,1fr) !important; }

  /* ── Section headings ── */
  .sec-title { font-size: clamp(28px,8vw,44px) !important; }

  /* ── CTA section ── */
  .section[style*="text-align:center"] h2,
  .section h2[style*="clamp(34px"] { font-size: clamp(28px,8vw,44px) !important; }

  /* ── Video embed padding ── */
  [style*="padding:0 40px"] { padding: 0 !important; }

  /* ── flex rows → column on mobile ── */
  [style*="display:flex"][style*="gap:14px"][style*="flex-wrap:wrap"],
  [style*="display:flex"][style*="gap:10px"][style*="flex-wrap:wrap"] {
    flex-direction: column !important;
    gap: 10px !important;
  }

  /* Buttons full width on mobile */
  .btn-primary, .btn-secondary {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* ── Related projects ── */
  .blog-grid.stagger { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .pol-wall { grid-template-columns: 1fr !important; gap: 28px !important; }
  .pricing-teasers { grid-template-columns: 1fr !important; }
  .og-gallery { grid-template-columns: 1fr 1fr !important; }
  .stats-strip { grid-template-columns: 1fr 1fr !important; }
}

/* ── Global h1–h6: always Barlow Condensed ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-d) !important;
}
/* Article / blog post content headings */
.post-content-wrap h1,
.post-content-wrap h2,
.post-content-wrap h3,
.post-content-wrap h4,
.post-content-wrap h5,
.post-content-wrap h6,
.entry-content h1,
.entry-content h2,
.entry-content h3 {
  font-family: var(--font-d) !important;
  text-transform: uppercase;
  font-weight: 800;
}
/* Single portfolio inline h1 */
.showcase-single-hero h1 {
  font-family: var(--font-d) !important;
  font-weight: 900;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER — updated layout
   ============================================================ */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
  padding: 52px 0 32px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Trust logos strip */
.footer-trust { margin-top: 20px; }
.footer-trust-label {
  font-size: 9px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--textlow); margin-bottom: 10px;
}
.footer-trust-logos {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.footer-trust-logos img {
  height: 22px; width: auto; opacity: .45;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}
.footer-trust-logos a:hover img,
.footer-trust-logos img:hover { opacity: .85; }

/* Nav col — no heading, links slightly larger */
.footer-col-nav .footer-links a { font-size: 13px; }

/* ============================================================
   TESTIMONIAL INTRO + DYNAMIC CARD ADDITIONS
   ============================================================ */
.testi-intro {
  font-size: 13px; color: var(--textmid); max-width: 56ch;
  line-height: 1.6; margin-bottom: 32px;
}
.testi-cat {
  display: inline-block; font-size: 8px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.testi-cta {
  display: inline-block; margin-top: 14px; font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--red);
  border-bottom: 1px solid rgba(214,59,34,.3); padding-bottom: 2px;
  transition: border-color .2s;
}
.testi-card:hover .testi-cta { border-color: var(--red); }

/* ============================================================
   REAL RESULTS ROTATOR
   ============================================================ */
.results-rotator {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.results-rotator-inner {
  display: flex; align-items: center; gap: 20px; flex-wrap: nowrap;
}
.results-rotator-label {
  font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); white-space: nowrap; flex-shrink: 0;
}
.results-rotator-track {
  position: relative; flex: 1; min-height: 20px; overflow: hidden;
}
.results-rotator-item {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
  text-decoration: none;
}
.results-rotator-item.active {
  opacity: 1; transform: none; pointer-events: auto;
}
.results-rotator-text {
  font-size: 13px; color: var(--text); line-height: 1.4;
}
.results-rotator-project {
  font-size: 11px; color: var(--red); font-weight: 600; white-space: nowrap;
}
.results-rotator-item:hover .results-rotator-text { text-decoration: underline; }

@media (max-width: 768px) {
  .results-rotator-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .results-rotator-track { width: 100%; }
}

/* ============================================================
   PACKAGE FINDER QUIZ — lead magnet
   ============================================================ */
.quiz-header { text-align: center; max-width: 560px; margin: 0 auto 32px; }
.quiz-header .sec-title { justify-content: center; }
.quiz-intro { font-size: 13px; color: var(--textmid); margin-top: 10px; line-height: 1.6; }

.quiz-box {
  max-width: 560px; margin: 0 auto;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  min-height: 280px;
}

/* Progress dots */
.quiz-progress { display: flex; justify-content: center; gap: 8px; margin-bottom: 28px; }
.quiz-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); transition: background .3s, transform .3s;
}
.quiz-dot.active { background: var(--red); transform: scale(1.3); }
.quiz-dot.done   { background: var(--red); opacity: .5; }

/* Steps */
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: quizFadeIn .3s ease; }
.quiz-q {
  font-family: var(--font-d); font-size: clamp(18px,3vw,22px); font-weight: 800;
  text-transform: uppercase; text-align: center; color: var(--text);
  margin-bottom: 24px; line-height: 1.2;
}
.quiz-options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.quiz-opt {
  padding: 14px 12px; background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); font-size: 12px; font-weight: 600; cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  text-align: center;
}
.quiz-opt:hover { border-color: var(--red); background: rgba(214,59,34,.06); }
.quiz-opt:active { transform: scale(.97); }
.quiz-back {
  display: block; margin: 18px auto 0; background: none; border: none;
  color: var(--textlow); font-size: 11px; cursor: pointer; transition: color .2s;
}
.quiz-back:hover { color: var(--red); }

@keyframes quizFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Result */
.quiz-result { display: none; text-align: center; }
.quiz-result.active { display: block; animation: quizFadeIn .4s ease; }
.quiz-result-label {
  font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: 10px;
}
.quiz-result-pkg {
  font-family: var(--font-d); font-size: clamp(22px,4vw,30px); font-weight: 900;
  text-transform: uppercase; color: var(--text); line-height: 1.1;
}
.quiz-result-price {
  font-family: var(--font-d); font-size: 18px; font-weight: 700; color: var(--red);
  margin-top: 4px;
}
.quiz-result-desc {
  font-size: 13px; color: var(--textmid); margin: 12px auto 0; max-width: 40ch; line-height: 1.6;
}
.quiz-result-urgency {
  font-size: 11px; color: var(--textlow); margin-top: 14px; line-height: 1.5;
  border-top: 1px solid var(--border); padding-top: 14px; max-width: 42ch; margin-left: auto; margin-right: auto;
}
.quiz-result-cta { margin-top: 20px; display: inline-flex; }
.quiz-restart {
  display: block; margin: 20px auto 0; background: none; border: none;
  color: var(--textlow); font-size: 11px; cursor: pointer; transition: color .2s;
}
.quiz-restart:hover { color: var(--red); }

@media (max-width: 540px) {
  .quiz-box { padding: 28px 20px; }
  .quiz-options { grid-template-columns: 1fr; }
}
