/* ============================================================
   OZAURA — DESIGN TOKENS
   Brand palette as supplied by the client: navy / teal / yellow / orange / terracotta.
   Extended with tints & shades for practical UI use.
   ============================================================ */
:root{
  --navy:        #2B4D59;
  --teal:        #39998E;
  --yellow:      #FFDC7C;
  --orange:      #FFAA67;
  --terracotta:  #DA674A;

  --navy-950:    #0A1720;
  --navy-900:    #0E202C;
  --navy-800:    #163140;
  --navy-700:    var(--navy);
  --navy-600:    #3C6577;

  --gold-500:    var(--orange);
  --gold-600:    var(--terracotta);
  --gold-300:    var(--yellow);

  --teal-500:    var(--teal);
  --teal-600:    #2C766D;
  --teal-100:    #E4F3F1;

  --white:       #FFFFFF;
  --bg:          #FFFFFF;
  --bg-alt:      #F5F8F9;
  --bg-alt-2:    #EEF3F4;
  --ink:         #16232B;
  --ink-muted:   #5A6C75;
  --ink-faint:   #8A9AA2;
  --border:      #E3E9EB;
  --border-dark: rgba(255,255,255,.14);

  --on-dark-ink:   #F4F7F8;
  --on-dark-muted: #A9BCC4;

  --shadow-sm: 0 2px 8px rgba(15,32,42,.06);
  --shadow-md: 0 10px 30px rgba(15,32,42,.09);
  --shadow-lg: 0 20px 60px rgba(15,32,42,.16);

  --radius-lg: 20px;
  --radius:    14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --header-h: 84px;
  --header-h-scrolled: 68px;

  --ease: cubic-bezier(.22,1,.36,1);
  --dur-fast: .22s;
  --dur: .45s;
  --dur-slow: .8s;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body{
  margin:0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
button{ font-family: inherit; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
input, textarea, select{ font-family: inherit; font-size: 1rem; }
svg{ display:block; }

.screen-reader-text{
  border:0; clip:rect(1px,1px,1px,1px); clip-path: inset(50%); height:1px; margin:-1px;
  overflow:hidden; padding:0; position:absolute !important; width:1px; word-wrap:normal !important;
}
.skip-link{
  position:absolute; top:-48px; left:12px; z-index:1000;
  background:var(--navy-950); color:#fff; padding:.75rem 1.25rem;
  border-radius:var(--radius-sm); transition: top var(--dur-fast) var(--ease);
  font-weight:600; font-size:.9rem;
}
.skip-link:focus{ top:12px; }

:focus-visible{ outline: 2.5px solid var(--teal-500); outline-offset: 3px; border-radius:4px; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:.5em;
  font-size:.8rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color: var(--gold-600);
}
.eyebrow.on-dark{ color: var(--gold-300); }
.section{ padding: 96px 0; }
.section-tight{ padding: 64px 0; }
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
h1{ font-size: clamp(2.3rem, 1.55rem + 3.5vw, 3.6rem); line-height:1.08; font-weight:800; letter-spacing:-.02em; color: var(--navy-950); }
h2{ font-size: clamp(1.7rem, 1.35rem + 1.6vw, 2.35rem); line-height:1.15; font-weight:800; letter-spacing:-.015em; color: var(--navy-950); }
h3{ font-size: 1.2rem; font-weight:700; color: var(--navy-950); }
p{ color: var(--ink-muted); line-height:1.65; }
.lede{ font-size: 1.15rem; line-height:1.6; color: var(--ink-muted); }
.on-dark h1, .on-dark h2, .on-dark h3{ color: var(--on-dark-ink); }
.on-dark p{ color: var(--on-dark-muted); }
.text-gold{ color: var(--gold-600); }
mark.accent{ background:none; color: var(--gold-600); }
.on-dark mark.accent{ color: var(--gold-300); }

.grid{ display:grid; gap:24px; }
.grid-2{ grid-template-columns: repeat(2,1fr); }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  position:relative; display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  padding: .95rem 1.6rem; border-radius: var(--radius-pill);
  font-weight:700; font-size:.95rem; white-space:nowrap;
  border:1.5px solid transparent; cursor:pointer;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.btn svg{ width:16px; height:16px; transition: transform var(--dur-fast) var(--ease); }
.btn:hover svg{ transform: translateX(3px); }
.btn-sm{ padding:.65rem 1.25rem; font-size:.85rem; }
.btn-primary{
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-950); box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-primary[disabled]{ opacity:.7; cursor:not-allowed; }
.btn-outline{ border-color: rgba(22,35,43,.22); color: var(--ink); background:transparent; }
.btn-outline:hover{ border-color: var(--navy-950); background: rgba(22,35,43,.04); }
.on-dark .btn-outline{ border-color: rgba(255,255,255,.4); color:#fff; }
.on-dark .btn-outline:hover{ border-color:#fff; background: rgba(255,255,255,.08); }
.btn-link{ display:inline-flex; align-items:center; gap:.4em; color: var(--teal-600); font-weight:700; font-size:.92rem; }
.btn-link svg{ width:15px; height:15px; transition: transform var(--dur-fast) var(--ease); }
.btn-link:hover svg{ transform: translateX(3px); }
.on-dark .btn-link{ color: var(--gold-300); }

.btn-primary.nav-cta{ border-color: rgba(255,255,255,.7); }
.mobile-menu .btn-primary.nav-cta{ border-color: rgba(255,255,255,.7); }

.magnetic{ will-change: transform; }
.btn-primary .spinner{
  width:16px; height:16px; border-radius:50%; border:2px solid rgba(22,35,43,.3); border-top-color: var(--navy-950);
  display:inline-block; animation: spin .7s linear infinite;
}
@media (prefers-reduced-motion: reduce){ .btn-primary .spinner{ animation:none; } }
@keyframes spin{ to{ transform: rotate(360deg); } }

/* ============================================================
   CURSOR GLOW (subtle, desktop only, off under reduced-motion)
   ============================================================ */
.cursor-glow{
  position:fixed; top:0; left:0; width:520px; height:520px; border-radius:50%;
  pointer-events:none; z-index:2; opacity:0;
  background: radial-gradient(circle, rgba(255,170,103,.16), rgba(57,153,142,.10) 45%, transparent 70%);
  transform: translate(-50%,-50%);
  transition: opacity .4s ease;
  mix-blend-mode: multiply;
}
.cursor-glow.active{ opacity:1; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index:100;
  height: var(--header-h);
  display:flex; align-items:center;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(0px);
  transition: height var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
}
.site-header.scrolled{
  height: var(--header-h-scrolled);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(22,35,43,.07), 0 8px 24px rgba(22,35,43,.05);
}
.header-inner{
  width:100%; max-width: var(--container); margin:0 auto; padding: 0 24px;
  display:flex; align-items:center; justify-content:space-between; gap: 24px;
}
.logo{ display:flex; align-items:center; gap:.6rem; flex-shrink:0; }
.logo img{ height:34px; width:auto; }
.logo-text{ font-weight:800; font-size:1.2rem; letter-spacing:.02em; color: var(--navy-950); }
.site-footer .logo-text{ color:#fff; }
.main-nav ul{ display:flex; align-items:center; gap: 2.1rem; }
.main-nav a{
  font-size:.95rem; font-weight:600; color: var(--ink); padding: 6px 2px; position:relative;
}
.main-nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px; background: var(--teal-500);
  transition: right var(--dur-fast) var(--ease);
}
.main-nav a:hover::after{ right:0; }
.main-nav a.is-active{ color: var(--teal-600); }
.main-nav a.is-active::after{ right:0; }
.header-actions{ display:flex; align-items:center; gap:1rem; }

.menu-toggle{
  display:none; width:44px; height:44px; border-radius:50%; border:1.5px solid var(--border);
  background:#fff; align-items:center; justify-content:center; flex-direction:column; gap:5px; cursor:pointer;
}
.menu-toggle span{ display:block; width:18px; height:2px; background: var(--navy-950); transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position: fixed; inset:0; z-index:99; background: var(--navy-950);
  display:flex; flex-direction:column; justify-content:center; padding: 32px;
  transform: translateY(-100%); transition: transform var(--dur-slow) var(--ease);
  visibility:hidden;
}
.mobile-menu.open{ transform: translateY(0); visibility:visible; }
.mobile-menu ul{ display:flex; flex-direction:column; gap:.5rem; }
.mobile-menu a{ font-size: 2.1rem; font-weight:800; color:#fff; padding:.4rem 0; display:inline-block; }
.mobile-menu a.is-active{ color: var(--gold-300); }
.mobile-menu .mm-foot{ margin-top:2.5rem; display:flex; flex-direction:column; gap:1rem; }
.mobile-menu .mm-foot p{ color: var(--on-dark-muted); font-size:.95rem; }

/* ============================================================
   HERO (Home) + DARK PAGE-HEAD BAND (Services / Our Work / Contact / single templates)
   ============================================================ */
.hero{
  position:relative; overflow:hidden;
  padding: calc(var(--header-h) + 72px) 0 88px;
  background: radial-gradient(120% 140% at 82% 8%, #163a52 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  isolation:isolate;
}
.hero-canvas{ position:absolute; inset:0; width:100%; height:100%; z-index:0; opacity:.85; }
.hero-arc{
  position:absolute; top:-90px; left:-90px; width:260px; height:260px; border-radius:50%;
  border: 2px solid rgba(255,221,124,.35); z-index:1; pointer-events:none;
}
.hero .container{ position:relative; z-index:2; }
.hero-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:48px; align-items:center; }
.hero-copy h1{ margin-bottom:18px; opacity:0; }
.hero-copy h1.lines-ready{ opacity:1; }
.hero-copy h1 .reveal-line{ display:block; overflow:hidden; }
.hero-copy h1 .reveal-line-inner{ display:inline-block; transform: translateY(115%); opacity:0; animation: heroLineUp .85s cubic-bezier(.22,1,.36,1) forwards; animation-delay:.1s; }
.hero-copy h1 .reveal-line:nth-child(2) .reveal-line-inner{ animation-delay:.28s; }
@keyframes heroLineUp{ to{ transform:translateY(0); opacity:1; } }
.hero-copy h1 mark.accent{
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500), var(--gold-300));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  animation: heroShimmer 3.2s ease-in-out .9s infinite;
}
@keyframes heroShimmer{ 0%,100%{ background-position:0% center; } 50%{ background-position:100% center; } }
.hero-copy .lede{ max-width: 46ch; margin-bottom: 30px; }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:34px; }
.hero-tags{ display:flex; gap:22px; flex-wrap:wrap; }
.hero-tag{ display:flex; align-items:center; gap:.55em; font-size:.88rem; font-weight:600; color: var(--on-dark-muted); cursor:pointer; transition: color var(--dur-fast) var(--ease); border-radius: var(--radius-pill); }
.hero-tag:hover{ color:#fff; }
.hero-tag:hover .tag-dot{ background: rgba(255,170,103,.22); border-color: rgba(255,170,103,.5); }
.hero-tag .tag-dot{
  width:26px; height:26px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); flex-shrink:0;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.hero-tag svg{ width:13px; height:13px; color: var(--gold-300); }
.hero-visual{ position:relative; display:flex; align-items:center; justify-content:center; min-height:340px; }
.hero-mark{ width:78%; height:auto; opacity:.9; filter: drop-shadow(0 30px 60px rgba(0,0,0,.35)); animation: floatMark 7s ease-in-out infinite; }

@keyframes floatMark{ 0%,100%{ transform:translateY(0px);} 50%{ transform:translateY(-14px);} }

.page-head{
  position:relative; overflow:hidden;
  padding: calc(var(--header-h) + 56px) 0 64px;
  background: radial-gradient(120% 160% at 88% 0%, #163a52 0%, var(--navy-900) 42%, var(--navy-950) 100%);
}
.page-head .container{ position:relative; z-index:2; max-width: 720px; }
.page-head .hero-arc{ top:-70px; right:-70px; left:auto; width:200px; height:200px; }

/* ============================================================
   CARDS: service / value / portfolio
   ============================================================ */
.card{
  position:relative; overflow:hidden;
  background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  transform-style: preserve-3d; will-change: transform;
}
.card::before{
  content:""; position:absolute; top:0; left:0; right:0; height:4px;
  background: linear-gradient(90deg, var(--teal-500), var(--gold-500), var(--terracotta));
  transform: scaleX(0); transform-origin:left; transition: transform .5s var(--ease);
}
.card:hover::before{ transform: scaleX(1); }
.card::after{
  content:""; position:absolute; width:200px; height:200px; border-radius:50%;
  background: radial-gradient(circle, rgba(255,170,103,.14), transparent 70%);
  top:-70px; right:-70px; opacity:0; transition: opacity .5s var(--ease);
  pointer-events:none;
}
.card:hover::after{ opacity:1; }
.card:hover{ box-shadow: var(--shadow-md); border-color: rgba(43,77,89,.16); }
.card > *{ position:relative; z-index:1; }
.card-icon{
  width:52px; height:52px; border-radius: 14px; display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px; flex-shrink:0; position:relative; z-index:1;
  box-shadow: 0 8px 20px -8px rgba(22,49,64,.4); transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card-icon svg{ width:24px; height:24px; }
.card-icon.badge-navy{ background: linear-gradient(140deg, var(--navy-700), var(--navy-900)); color:#fff; }
.card-icon.badge-gold{ background: linear-gradient(140deg, var(--gold-500), var(--gold-600)); color: var(--navy-950); }
.card-icon.badge-teal{ background: linear-gradient(140deg, var(--teal-500), var(--teal-600)); color:#fff; }
.card-icon.badge-terracotta{ background: linear-gradient(140deg, var(--terracotta), #B8523A); color:#fff; }
.card:hover .card-icon{ transform: scale(1.08) rotate(-4deg); box-shadow: 0 12px 26px -6px rgba(218,103,74,.45); }
.card h3{ margin-bottom: 10px; }
.card p{ margin-bottom: 16px; font-size:.95rem; }

.services-grid{ grid-template-columns: repeat(4, 1fr); }
.values-grid{ grid-template-columns: repeat(4, 1fr); }
.svc-full-grid{ grid-template-columns: repeat(3, 1fr); }

.value-card{ text-align:left; }
.value-card .card-icon{ width:46px; height:46px; border-radius:12px; }
.value-card .card-icon svg{ width:21px; height:21px; }

/* Brand-colour showcase background (Home "What We Do") */
.section-showcase{ position:relative; overflow:hidden; }
.section-showcase::before, .section-showcase::after{
  content:""; position:absolute; border-radius:50%; filter:blur(70px); opacity:.30; pointer-events:none; z-index:0;
}
.section-showcase::before{ width:440px; height:440px; background: var(--teal-500); top:-180px; left:-160px; }
.section-showcase::after{ width:380px; height:380px; background: var(--gold-500); bottom:-160px; right:-120px; }
.section-showcase .container{ position:relative; z-index:1; }
@media (prefers-reduced-motion: no-preference){
  .section-showcase::before{ animation: floatBlobA 16s ease-in-out infinite; }
  .section-showcase::after{ animation: floatBlobB 18s ease-in-out infinite; }
}
@keyframes floatBlobA{ 0%,100%{transform:translate(0,0);} 50%{transform:translate(36px,22px);} }
@keyframes floatBlobB{ 0%,100%{transform:translate(0,0);} 50%{transform:translate(-28px,-18px);} }

/* ============================================================
   MEDIA BOXES: placeholder (no image yet) and filled (real image)
   ============================================================ */
.media-box{
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  display:flex; align-items:center; justify-content:center; text-align:center;
  border: 1.5px dashed rgba(43,77,89,.3);
  background: linear-gradient(150deg, var(--bg-alt), var(--teal-100));
  color: var(--navy-700);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.media-box .mb-inner{ padding: 20px; }
.media-box .mb-icon{
  width:52px; height:52px; margin:0 auto 12px; border-radius:50%;
  background: rgba(255,255,255,.7); display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-sm);
}
.media-box .mb-icon svg{ width:22px; height:22px; color: var(--teal-600); }
.media-box .mb-label{ font-weight:700; font-size:.92rem; color: var(--navy-800); }
.media-box .mb-sub{ font-size:.78rem; color: var(--ink-faint); margin-top:2px; }
.media-box .mb-sub a{ color: var(--teal-600); font-weight:600; }

.media-box.tone-a{ background: linear-gradient(155deg, #EAF2F1, #FDEFE1); }
.media-box.tone-b{ background: linear-gradient(155deg, #E9F2F4, #FCE9E3); }
.media-box.tone-c{ background: linear-gradient(155deg, #EFF1F6, #FDF3DD); }
.media-box.tone-d{ background: linear-gradient(155deg, #E7F1F0, #F4EAE6); }
.media-box.tone-e{ background: linear-gradient(155deg, #EEF0F5, #FBEADD); }

.media-box-filled{ position:relative; border-radius: var(--radius-lg); overflow:hidden; }
.media-box-filled img, .media-box-filled iframe{ width:100%; height:100%; object-fit:cover; display:block; border:0; }

.video-box{ aspect-ratio: 16/9; }
.video-box .mb-icon{ width:64px; height:64px; }
.video-box .mb-icon svg{ width:24px; height:24px; margin-left:2px; }

.team-photo-box{ aspect-ratio: 4/3; }
.portfolio-thumb{ aspect-ratio: 16/10; }

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats-row{ display:flex; gap:16px; margin-top:36px; flex-wrap:wrap; }
.stat{ display:flex; align-items:center; gap:14px; padding: 14px 22px 14px 14px; background:#fff; border:1px solid var(--border); border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.stat-icon{ width:40px; height:40px; border-radius:50%; background: var(--teal-100); color: var(--teal-600); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.stat-icon svg{ width:18px; height:18px; }
.stat-num{ font-size:1.35rem; font-weight:800; color: var(--navy-950); line-height:1; }
.stat-label{ font-size:.8rem; color: var(--ink-muted); font-weight:600; }

/* ============================================================
   TIMELINE (Our Journey)
   ============================================================ */
.timeline{ display:grid; grid-template-columns: repeat(4,1fr); gap:0; margin-top:44px; position:relative; }
.timeline::before{ content:""; position:absolute; top:11px; left:6%; right:6%; height:2px; background: rgba(255,255,255,.16); }
.timeline-item{ position:relative; padding-top: 40px; padding-right: 20px; }
.timeline-item::before{
  content:""; position:absolute; top:0; left:0; width:24px; height:24px; border-radius:50%;
  background: var(--navy-950); border:2.5px solid var(--gold-300);
}
.timeline-year{ font-weight:800; font-size:1.15rem; color: var(--gold-300); margin-bottom:8px; }
.timeline-item p{ font-size:.92rem; }

/* ============================================================
   TESTIMONIAL CAROUSEL
   ============================================================ */
.testimonial-wrap{ display:grid; grid-template-columns: .8fr 1.2fr; gap:40px; align-items:center; }
.testimonial-card{
  position:relative; background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 34px 28px; box-shadow: var(--shadow-md);
}
.quote-mark{ width:34px; height:34px; color: var(--teal-100); margin-bottom:12px; }
.quote-mark svg{ width:100%; height:100%; }
.t-slide{ display:none; }
.t-slide.is-active{ display:block; }
.t-text{ font-size:1.05rem; color: var(--ink); line-height:1.6; margin-bottom:20px; }
.t-person{ display:flex; align-items:center; gap:14px; }
.t-avatar{ width:46px; height:46px; border-radius:50%; background: linear-gradient(140deg, var(--teal-500), var(--navy-700)); flex-shrink:0; display:flex;align-items:center;justify-content:center; color:#fff; font-weight:800; }
.t-avatar-photo{ background:none; padding:0; overflow:hidden; }
.t-avatar-photo img{ width:100%; height:100%; object-fit:cover; }
.t-name{ font-weight:700; font-size:.95rem; color: var(--navy-950); }
.t-role{ font-size:.82rem; color: var(--ink-faint); }
.t-stars{ display:flex; gap:2px; margin-left:auto; }
.t-stars svg{ width:14px; height:14px; color: var(--gold-500); }
.t-controls{ display:flex; gap:10px; margin-top:20px; }
.t-arrow{
  width:42px; height:42px; border-radius:50%; border:1.5px solid var(--border); background:#fff;
  display:flex; align-items:center; justify-content:center; cursor:pointer; color: var(--navy-950);
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.t-arrow:hover{ background: var(--bg-alt); border-color: var(--navy-700); }
.t-arrow svg{ width:16px; height:16px; }

/* ============================================================
   CTA BANDS
   ============================================================ */
.cta-band{
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg); padding: 44px 48px;
  display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-band::before{
  content:""; position:absolute; inset:0; background: radial-gradient(60% 120% at 90% 10%, rgba(255,221,124,.14), transparent 60%);
}
.cta-band-icon{
  width:52px; height:52px; border-radius:50%; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; color: var(--gold-300); position:relative; z-index:1;
}
.cta-band-icon svg{ width:22px; height:22px; }
.cta-band-text{ flex:1; min-width:240px; position:relative; z-index:1; }
.cta-band-text h3{ color:#fff; font-size:1.3rem; margin-bottom:6px; }
.cta-band-text p{ color: var(--on-dark-muted); font-size:.95rem; }
.cta-band-actions{ display:flex; gap:14px; flex-wrap:wrap; position:relative; z-index:1; }
.cta-band.light{ background: var(--bg-alt); }
.cta-band.light::before{ display:none; }
.cta-band.light .cta-band-text h3{ color: var(--navy-950); }
.cta-band.light .cta-band-text p{ color: var(--ink-muted); }
.cta-band.light .cta-band-icon{ background: var(--teal-100); border-color: transparent; color: var(--teal-600); }

/* ============================================================
   PORTFOLIO FILTERS + CASE CARDS
   ============================================================ */
.filter-row{ display:flex; gap:10px; flex-wrap:wrap; margin: 8px 0 40px; }
.filter-btn{
  padding: .55rem 1.15rem; border-radius: var(--radius-pill); border:1.5px solid var(--border);
  background:#fff; font-weight:600; font-size:.88rem; color: var(--ink-muted); cursor:pointer;
  transition: all var(--dur-fast) var(--ease);
}
.filter-btn:hover{ border-color: var(--navy-700); color: var(--navy-950); }
.filter-btn[aria-pressed="true"]{
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: var(--navy-950); border-color: transparent;
}
.work-grid{ grid-template-columns: repeat(3, 1fr); }
.work-card{ background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); overflow:hidden; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.work-card:hover{ box-shadow: var(--shadow-md); }
.work-card-body{ padding: 22px 24px 24px; }
.work-tag{ font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color: var(--teal-600); margin-bottom:6px; display:block; }
.work-card h3{ margin-bottom:8px; }
.work-card p{ font-size:.9rem; margin-bottom:14px; }
.work-card.is-hidden{ display:none; }

.case-detail{ margin-bottom:12px; }
.case-label{ display:block; font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color: var(--teal-600); margin-bottom:3px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{ display:grid; grid-template-columns: .8fr 1.2fr; gap:56px; align-items:flex-start; }
.contact-list{ display:flex; flex-direction:column; gap:22px; margin-top:8px; }
.contact-item{ display:flex; gap:16px; align-items:flex-start; }
.contact-item .ci-icon{
  width:44px; height:44px; border-radius:12px; background: var(--teal-100); color: var(--teal-600);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-item .ci-icon svg{ width:19px; height:19px; }
.contact-item h4{ font-size:.82rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color: var(--ink-faint); margin-bottom:3px; }
.contact-item p{ color: var(--navy-950); font-weight:600; font-size:.98rem; }
.contact-item p a{ color: inherit; }
.contact-item p a:hover{ color: var(--teal-600); }

.contact-form-card{
  background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-md);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:.85rem; font-weight:700; color: var(--navy-950); margin-bottom:7px; }
.field input, .field select, .field textarea{
  width:100%; padding: .8rem 1rem; border:1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-alt); color: var(--ink); transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--teal-500); background:#fff; outline:none; }
.field textarea{ resize:vertical; min-height:120px; }
.field-error{ display:block; font-size:.8rem; color: var(--terracotta); margin-top:6px; min-height:1em; }
.field.has-error input, .field.has-error textarea, .field.has-error select{ border-color: var(--terracotta); background: #FFF5F2; }
.form-status{ margin-top:14px; font-size:.9rem; font-weight:600; color: var(--teal-600); display:none; align-items:center; gap:8px; }
.form-status.show{ display:flex; }
.form-status svg{ width:18px; height:18px; }
.form-status.is-error{ color: var(--terracotta); }
.form-status.is-error svg{ color: var(--terracotta); }
.form-fallback{ font-size:.85rem; color: var(--ink-faint); margin-top:10px; display:none; }
.form-fallback.show{ display:block; }
.form-fallback a{ color: var(--teal-600); font-weight:600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background: var(--navy-950); padding: 64px 0 28px; }
.footer-top{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; padding-bottom:40px; margin-bottom:28px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand{ max-width:320px; }
.footer-brand p{ margin-top:12px; color: var(--on-dark-muted); font-size:.92rem; }
.footer-nav{ display:flex; gap:56px; flex-wrap:wrap; }
.footer-col h5{ color:#fff; font-size:.82rem; font-weight:700; text-transform:uppercase; letter-spacing:.07em; margin-bottom:16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ color: var(--on-dark-muted); font-size:.92rem; transition: color var(--dur-fast) var(--ease); }
.footer-col a:hover{ color: var(--gold-300); }
.footer-widget p{ color: var(--on-dark-muted); font-size:.92rem; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap; }
.footer-bottom p{ color: var(--on-dark-muted); font-size:.85rem; }
.footer-legal{ display:flex; gap:22px; }
.footer-legal a{ color: var(--on-dark-muted); font-size:.85rem; }
.footer-legal a:hover{ color:#fff; }
.social-row{ display:flex; gap:10px; margin-top:18px; }
.social-row a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,220,124,.35);
  background: rgba(255,220,124,.07); color: var(--gold-300);
  display:flex; align-items:center; justify-content:center;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.social-row a:hover{ background: rgba(255,220,124,.18); border-color: rgba(255,220,124,.65); color:#fff; }
.social-row svg{ width:16px; height:16px; }

.acknowledgement{
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}
.acknowledgement p{
  color: var(--on-dark-muted);
  font-size: .82rem;
  line-height: 1.6;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
[data-reveal]{ opacity:0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible{ opacity:1; transform:none; }
[data-reveal-group] > *{ transition-delay: calc(var(--i, 0) * 90ms); }

/* ============================================================
   COMMENTS (rarely used on this site, but styled so they don't look broken
   if a plugin or admin enables them on a page)
   ============================================================ */
.comment-list{ list-style:none; margin:0; padding:0; }
.comment-respond input, .comment-respond textarea{
  width:100%; padding:.8rem 1rem; border:1.5px solid var(--border); border-radius: var(--radius-sm); margin-bottom:14px;
}
.comment-respond .form-submit input[type="submit"]{
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: var(--navy-950);
  border:none; border-radius: var(--radius-pill); padding:.85rem 1.6rem; font-weight:700; cursor:pointer;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px){
  .services-grid, .values-grid{ grid-template-columns: repeat(2,1fr); }
  .work-grid{ grid-template-columns: repeat(2,1fr); }
  .svc-full-grid{ grid-template-columns: repeat(2,1fr); }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ min-height:220px; order:-1; }
  .hero-mark{ width:46%; }
  .testimonial-wrap{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .main-nav{ display:none; }
  .header-actions .btn-primary{ display:none; }
  .menu-toggle{ display:flex; }
}
@media (max-width: 760px){
  .section{ padding: 64px 0; }
  .services-grid, .values-grid, .work-grid, .svc-full-grid{ grid-template-columns: 1fr; }
  .stats-row{ flex-direction:column; align-items:flex-start; }
  .stat{ width:100%; }
  .timeline{ grid-template-columns: 1fr; gap:28px; }
  .timeline::before{ display:none; }
  .timeline-item{ padding-left:34px; padding-top:0; }
  .timeline-item::before{ top:2px; }
  .form-row{ grid-template-columns:1fr; }
  .cta-band{ flex-direction:column; align-items:flex-start; text-align:left; }
  .cta-band-actions{ width:100%; }
  .cta-band-actions .btn{ flex:1; }
  .footer-top{ flex-direction:column; gap:32px; }
  .footer-nav{ gap:32px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .hero-ctas .btn{ flex:1; justify-content:center; }
  .hero{ padding-bottom:56px; }
}
@media (max-width:480px){
  .hero-tags{ flex-direction:column; gap:12px; }
  .footer-nav{ gap:24px 32px; }
}

/* ============================================================
   MOTION / INPUT PREFERENCES
   ============================================================ */
@media (pointer: coarse){
  .cursor-glow{ display:none; }
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count:1 !important; transition-duration: .001ms !important; scroll-behavior:auto !important; }
  [data-reveal]{ opacity:1; transform:none; }
  .hero-mark{ animation:none; }
  .cursor-glow{ display:none; }
}
