/* ═══════════════════════════════════════════════════════
   ScaleX Solutions — Main Stylesheet
   Brand: Navy #002F5B | Yellow #FDE428 | White
   ═══════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --navy:        #002F5B;
  --navy-deep:   #001E3C;
  --navy-mid:    #003A72;
  --navy-light:  #0A4A85;
  --navy-pale:   #E8EFF7;
  --navy-faint:  #F0F5FA;
  --yellow:      #FDE428;
  --yellow-mid:  #FADA10;
  --yellow-pale: #FFFBE0;
  --white:       #FFFFFF;
  --offwhite:    #FAFAF8;
  --light:       #F4F6F9;
  --muted:       #6B7A8D;
  --ink:         #1A2535;
  --border:      #D6DDE8;
  --border-soft: #E8ECF2;
  --font-serif:  'Libre Baskerville', serif;
  --font-sans:   'Lato', sans-serif;
  --font-label:  'Tenor Sans', sans-serif;
  --radius:      0px;
  --shadow:      0 4px 24px rgba(0,47,91,.08);
  --shadow-md:   0 12px 48px rgba(0,47,91,.12);
  --transition:  all 0.3s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--offwhite); color: var(--ink); font-family: var(--font-sans); font-weight: 300; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; color: var(--navy); }
.label-tag { font-family: var(--font-label); font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--navy-light); display: block; margin-bottom: 16px; }
.label-tag.yellow { color: var(--yellow); }
.label-tag.muted { color: var(--muted); }
.section-title { font-size: clamp(36px, 4.5vw, 58px); letter-spacing: -1px; }
.section-title em { font-style: italic; }

/* ── BUTTONS ── */
.btn-yellow { font-family: var(--font-label); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); background: var(--yellow); border: none; padding: 16px 40px; cursor: pointer; display: inline-block; transition: var(--transition); font-weight: 700; }
.btn-yellow:hover { background: var(--yellow-mid); color: var(--navy); }
.btn-navy { font-family: var(--font-label); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--white); background: var(--navy); border: none; padding: 16px 40px; cursor: pointer; display: inline-block; transition: var(--transition); font-weight: 700; }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); }
.btn-outline-white { font-family: var(--font-label); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.3); padding: 15px 39px; cursor: pointer; display: inline-block; transition: var(--transition); }
.btn-outline-white:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); color: var(--white); }
.btn-ghost { font-family: var(--font-label); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); background: transparent; border: 1px solid var(--border); padding: 15px 39px; cursor: pointer; display: inline-block; transition: var(--transition); }
.btn-ghost:hover { border-color: var(--navy); }

/* ── FLASH MESSAGES ── */
.flash { padding: 16px 24px; margin: 20px 0; font-size: 14px; border-left: 4px solid; }
.flash.success { background: #f0fdf4; border-color: #10b981; color: #065f46; }
.flash.error   { background: #fef2f2; border-color: #ef4444; color: #991b1b; }
.flash.info    { background: var(--navy-faint); border-color: var(--navy); color: var(--navy); }

/* ── TOPBAR ── */
.topbar { background: var(--navy-deep); padding: 9px 70px; display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 28px; align-items: center; }
.topbar-left a, .topbar-left span { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .3px; }
.topbar-left a:hover { color: var(--yellow); }
.topbar-left i { margin-right: 5px; font-size: 10px; }
.topbar-right { display: flex; gap: 16px; }
.topbar-right a { font-size: 13px; color: rgba(255,255,255,.4); transition: var(--transition); }
.topbar-right a:hover { color: var(--yellow); }

/* ── HEADER ── */
#main-header { position: sticky; top: 0; z-index: 900; background: rgba(255,255,255,.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); transition: var(--transition); }
#main-header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 70px; height: 82px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 40px; height: 40px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-mark-inner { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--yellow); letter-spacing: -1px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: .5px; }
.logo-sub { font-family: var(--font-label); font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

/* Desktop Nav */
#desktop-nav { display: flex; gap: 36px; align-items: center; }
#desktop-nav a { font-family: var(--font-label); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); position: relative; padding-bottom: 4px; }
#desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--yellow); transition: width .3s; }
#desktop-nav a:hover, #desktop-nav a.active { color: var(--navy); }
#desktop-nav a:hover::after, #desktop-nav a.active::after { width: 100%; }
.nav-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); min-width: 220px; padding: 8px 0; box-shadow: var(--shadow-md); z-index: 100; margin-top: 8px; }
.dropdown-menu a { display: block; padding: 10px 20px; font-size: 13px; color: var(--muted); letter-spacing: .3px; text-transform: none; }
.dropdown-menu a:hover { color: var(--navy); background: var(--navy-faint); padding-left: 28px; }
.dropdown-menu a::after { display: none; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.btn-book { font-family: var(--font-label); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); background: var(--yellow); border: none; padding: 13px 28px; cursor: pointer; font-weight: 700; transition: var(--transition); white-space: nowrap; }
.btn-book:hover { background: var(--yellow-mid); color: var(--navy); }

/* Mobile Nav */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); display: block; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 20px 0; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-label); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); padding: 14px 24px; border-bottom: 1px solid var(--border-soft); transition: var(--transition); }
.mobile-nav a:hover { color: var(--navy); background: var(--navy-faint); }
.btn-book-mobile { background: var(--yellow) !important; color: var(--navy) !important; text-align: center; font-weight: 700 !important; margin: 16px 24px 4px; border: none !important; }

/* ── TICKER ── */
.ticker { background: var(--yellow); padding: 13px 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 64px; animation: tickerAnim 30s linear infinite; white-space: nowrap; width: max-content; }
@keyframes tickerAnim { to { transform: translateX(-50%); } }
.tick-item { font-family: var(--font-label); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); display: flex; align-items: center; gap: 20px; flex-shrink: 0; font-weight: 700; }
.tick-dot { width: 5px; height: 5px; background: var(--navy); border-radius: 50%; }

/* ── CLIENT STRIP ── */
.clients-strip { padding: 52px 70px; background: var(--white); border-bottom: 1px solid var(--border); }
.clients-strip .label-tag { text-align: center; margin-bottom: 40px; }
.cs-row { display: flex; gap: 1px; background: var(--border); }
.cs-item { background: var(--white); flex: 1; padding: 22px 16px; display: flex; align-items: center; justify-content: center; transition: background .25s; cursor: default; }
.cs-item:hover { background: var(--navy-faint); }
.cs-name { font-family: var(--font-label); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--border); text-align: center; line-height: 1.5; transition: color .25s; }
.cs-item:hover .cs-name { color: var(--navy); }

/* ── HERO ── */
.hero { min-height: 92vh; display: grid; grid-template-columns: 55% 45%; overflow: hidden; }
.hero-l { background: var(--navy); padding: 100px 70px 80px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.hero-l::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle,rgba(253,228,40,.04) 1px,transparent 1px); background-size: 32px 32px; pointer-events: none; }
.hero-l::after { content: ''; position: absolute; bottom: -80px; right: -80px; width: 400px; height: 400px; border: 1px solid rgba(253,228,40,.08); border-radius: 50%; pointer-events: none; }
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; position: relative; z-index: 1; }
.hero-eyebrow-line { width: 40px; height: 2px; background: var(--yellow); }
.hero-eyebrow-text { font-family: var(--font-label); font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: rgba(253,228,40,.8); }
.hero-h1 { font-family: var(--font-serif); font-size: clamp(46px,5.5vw,80px); font-weight: 400; line-height: 1.05; color: var(--white); margin-bottom: 32px; letter-spacing: -1px; position: relative; z-index: 1; }
.hero-h1 em { font-style: italic; color: var(--yellow); }
.hero-sub { font-size: 16px; line-height: 1.9; color: rgba(255,255,255,.65); max-width: 460px; margin-bottom: 52px; position: relative; z-index: 1; }
.hero-btns { display: flex; gap: 16px; position: relative; z-index: 1; margin-bottom: 72px; flex-wrap: wrap; }
.hero-divider { width: 100%; height: 1px; background: rgba(255,255,255,.1); margin-bottom: 40px; position: relative; z-index: 1; }
.hero-metrics { display: flex; gap: 0; position: relative; z-index: 1; }
.hm { padding: 0 36px 0 0; border-right: 1px solid rgba(255,255,255,.1); }
.hm:first-child { padding-left: 0; }
.hm:last-child { border-right: none; padding-right: 0; }
.hm + .hm { padding-left: 36px; }
.hm-val { font-family: var(--font-serif); font-size: 40px; font-weight: 400; color: var(--white); letter-spacing: -1px; line-height: 1; }
.hm-val span { font-size: 20px; color: var(--yellow); }
.hm-label { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 6px; }

.hero-r { background: var(--white); display: flex; flex-direction: column; }
.hero-r-media { flex: 1; background: var(--navy-faint); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; min-height: 360px; }
.hero-r-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px,transparent 1px), linear-gradient(90deg,var(--border) 1px,transparent 1px); background-size: 48px 48px; opacity: .5; }
.hero-r-accent { position: absolute; top: 40px; right: 40px; width: 120px; height: 120px; border: 1px solid var(--navy-pale); border-radius: 50%; }
.hero-r-accent2 { position: absolute; top: 60px; right: 60px; width: 80px; height: 80px; background: var(--yellow); border-radius: 50%; opacity: .15; }
.hero-r-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; }
.quote-card { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--navy); padding: 28px 32px; }
.quote-text { font-family: var(--font-serif); font-size: 15px; font-style: italic; color: var(--ink); line-height: 1.7; margin-bottom: 16px; }
.quote-author { display: flex; align-items: center; gap: 12px; }
.quote-avatar { width: 36px; height: 36px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-label); font-size: 11px; color: var(--yellow); flex-shrink: 0; font-weight: 700; }
.quote-name { font-size: 12px; font-weight: 700; color: var(--navy); }
.quote-role { font-size: 11px; color: var(--muted); }
.hero-r-stats { display: grid; grid-template-columns: 1fr 1fr; }
.hrs { padding: 28px 32px; border-right: 1px solid var(--border); }
.hrs:nth-child(even) { border-right: none; }
.hrs:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
.hrs-val { font-family: var(--font-serif); font-size: 32px; font-weight: 400; color: var(--navy); letter-spacing: -1px; line-height: 1; }
.hrs-val span { font-size: 16px; color: var(--yellow-mid); }
.hrs-label { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ── SECTION SHARED ── */
.section { padding: 140px 70px; }
.section-sm { padding: 80px 70px; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; }
.section-header-desc { font-size: 15px; color: var(--muted); line-height: 1.85; max-width: 340px; }

/* ── SERVICES GRID ── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.svc-card { background: var(--white); padding: 48px 40px; cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { background: var(--navy-faint); }
.svc-num { font-family: var(--font-label); font-size: 10px; letter-spacing: 3px; color: var(--navy-light); margin-bottom: 24px; display: block; }
.svc-icon { width: 44px; height: 44px; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.svc-icon i { color: var(--yellow); font-size: 18px; }
.svc-title { font-family: var(--font-serif); font-size: 21px; font-weight: 400; color: var(--navy); margin-bottom: 14px; line-height: 1.25; }
.svc-body { font-size: 13px; color: var(--muted); line-height: 1.85; margin-bottom: 28px; }
.svc-link { font-family: var(--font-label); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--navy-light); transition: var(--transition); }
.svc-card:hover .svc-link { letter-spacing: 5px; color: var(--navy); }

/* ── WHY SECTION ── */
.why-section { background: var(--navy); padding: 140px 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.why-feats { display: flex; flex-direction: column; }
.why-feat { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.07); display: flex; gap: 20px; align-items: flex-start; }
.why-feat:first-child { border-top: 1px solid rgba(255,255,255,.07); }
.why-feat-icon { width: 38px; height: 38px; background: rgba(253,228,40,.1); border: 1px solid rgba(253,228,40,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--yellow); font-size: 14px; }
.why-feat-title { font-family: var(--font-serif); font-size: 18px; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.why-feat-body { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.75; }
.why-stats { display: flex; flex-direction: column; gap: 2px; }
.why-stat { background: var(--navy-deep); padding: 44px 48px; position: relative; overflow: hidden; border-left: 3px solid transparent; transition: border-color .3s; }
.why-stat:hover { border-left-color: var(--yellow); }
.why-stat-val { font-family: var(--font-serif); font-size: 64px; font-weight: 400; color: var(--yellow); line-height: 1; letter-spacing: -2px; }
.why-stat-val sup { font-size: 28px; vertical-align: super; }
.why-stat-label { font-family: var(--font-label); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: 10px; display: block; }
.why-stat-desc { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 8px; line-height: 1.6; }

/* ── PROCESS ── */
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--border); }
.proc-step { background: var(--white); padding: 48px 36px; position: relative; }
.proc-num { font-family: var(--font-serif); font-size: 72px; font-weight: 700; color: var(--navy-faint); line-height: 1; margin-bottom: -14px; display: block; letter-spacing: -3px; }
.proc-title { font-family: var(--font-serif); font-size: 21px; font-weight: 400; color: var(--navy); margin-bottom: 12px; }
.proc-body { font-size: 13px; color: var(--muted); line-height: 1.85; }
.proc-step::after { content: '→'; position: absolute; right: -14px; top: 50px; font-size: 18px; color: var(--border); z-index: 1; }
.proc-step:last-child::after { display: none; }

/* ── TESTIMONIALS ── */
.testi-featured { background: var(--navy); padding: 60px; margin-bottom: 2px; display: grid; grid-template-columns: 1fr 220px; gap: 60px; align-items: center; }
.tf-mark { font-family: var(--font-serif); font-size: 72px; color: var(--yellow); line-height: .7; opacity: .5; margin-bottom: 8px; }
.tf-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star { width: 12px; height: 12px; background: var(--yellow); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.tf-quote { font-family: var(--font-serif); font-size: 22px; font-style: italic; font-weight: 400; color: var(--white); line-height: 1.6; }
.tf-right { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.tf-avatar { width: 68px; height: 68px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--navy); }
.tf-name { font-size: 14px; font-weight: 700; color: var(--white); }
.tf-role { font-size: 12px; color: rgba(255,255,255,.5); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); }
.testi-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); margin-top: 2px; }
.tc { background: var(--white); padding: 44px 40px; transition: background .3s; }
.tc:hover { background: var(--navy-faint); }
.tc-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.tc-star { width: 11px; height: 11px; background: var(--yellow-mid); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.tc-quote { font-family: var(--font-serif); font-size: 16px; font-style: italic; color: var(--ink); line-height: 1.7; margin-bottom: 24px; }
.tc-line { width: 36px; height: 2px; background: var(--yellow); margin-bottom: 20px; }
.tc-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.tc-role { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ── CLIENTS FULL ── */
.cf-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--border); }
.cf-box { background: var(--white); padding: 36px 24px; display: flex; flex-direction: column; align-items: center; gap: 14px; transition: background .25s; cursor: default; }
.cf-box:hover { background: var(--navy-faint); }
.cf-init { width: 52px; height: 52px; background: var(--navy-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--navy); transition: all .25s; }
.cf-box:hover .cf-init { background: var(--navy); color: var(--yellow); }
.cf-label { font-family: var(--font-label); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); text-align: center; line-height: 1.4; transition: color .25s; }
.cf-box:hover .cf-label { color: var(--navy); }
.cf-box.highlight { background: var(--yellow); }
.cf-box.highlight .cf-init { background: rgba(0,47,91,.1); color: var(--navy); }
.cf-box.highlight .cf-label { color: var(--navy); font-weight: 700; }

/* ── CTA BAND ── */
.cta-band { padding: 140px 70px; background: var(--yellow); position: relative; overflow: hidden; text-align: center; }
.cta-band::before { content: 'ScaleX'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--font-serif); font-size: 200px; font-weight: 700; color: rgba(0,47,91,.05); white-space: nowrap; pointer-events: none; letter-spacing: -8px; }
.cta-band-inner { position: relative; }
.cta-band h2 { font-family: var(--font-serif); font-size: clamp(44px,5vw,68px); font-weight: 400; color: var(--navy); line-height: 1.1; margin-bottom: 20px; }
.cta-band h2 em { font-style: italic; }
.cta-band p { font-size: 16px; color: rgba(0,47,91,.65); margin-bottom: 52px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.85; }
.cta-note { margin-top: 28px; font-size: 12px; color: rgba(0,47,91,.5); }

/* ── FOOTER ── */
#main-footer { background: var(--navy-deep); padding: 100px 70px 48px; }
.footer-top { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 72px; padding-bottom: 72px; border-bottom: 1px solid rgba(255,255,255,.07); }
.f-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.f-logo-mark { width: 38px; height: 38px; background: var(--yellow); display: flex; align-items: center; justify-content: center; }
.f-logo-mark span { font-family: var(--font-serif); font-size: 16px; font-weight: 700; color: var(--navy); }
.f-logo-name { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--white); }
.f-about { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.9; max-width: 300px; margin-bottom: 28px; }
.f-contact-list { display: flex; flex-direction: column; gap: 10px; }
.f-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: rgba(255,255,255,.4); }
.f-contact-item i { color: var(--yellow); margin-top: 2px; flex-shrink: 0; }
.f-contact-item a { color: rgba(255,255,255,.4); }
.f-contact-item a:hover { color: var(--yellow); }
.f-col-title { font-family: var(--font-label); font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--yellow); margin-bottom: 24px; display: block; opacity: .8; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 13px; transition: var(--transition); }
.footer-col a:hover { color: var(--white); padding-left: 6px; }
.footer-col a i { margin-right: 6px; font-size: 11px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.f-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.f-legal { display: flex; gap: 24px; }
.f-legal a { font-size: 12px; color: rgba(255,255,255,.25); }
.f-legal a:hover { color: var(--yellow); }

/* ── BACK TO TOP ── */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; background: var(--navy); color: var(--yellow); border: none; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 14px; z-index: 800; transition: var(--transition); }
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--yellow); color: var(--navy); }

/* ── PAGE HERO BANNER ── */
.page-hero { background: var(--navy); padding: 100px 70px 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle,rgba(253,228,40,.04) 1px,transparent 1px); background-size: 32px 32px; }
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { color: var(--white); font-size: clamp(36px,4.5vw,60px); margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--yellow); }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.8; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 28px; }
.breadcrumb a { font-family: var(--font-label); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,.2); font-size: 12px; }

/* ── FORMS ── */
.form-wrap { background: var(--white); border-top: 3px solid var(--yellow); padding: 52px; }
.form-title { font-family: var(--font-serif); font-size: 28px; color: var(--navy); margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; }
.form-field.full { grid-column: span 2; }
.form-field label { display: block; font-family: var(--font-label); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--border); background: var(--offwhite); font-family: var(--font-sans); font-size: 14px; color: var(--ink); outline: none; transition: border-color .2s; font-weight: 300; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--navy); background: var(--white); }
.form-field textarea { height: 120px; resize: vertical; }
.form-submit { font-family: var(--font-label); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); background: var(--navy); border: none; padding: 17px 48px; cursor: pointer; transition: var(--transition); font-weight: 700; }
.form-submit:hover { background: var(--navy-mid); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); }
.blog-card { background: var(--white); transition: background .3s; overflow: hidden; }
.blog-card:hover { background: var(--navy-faint); }
.blog-card-img { height: 200px; background: var(--navy-pale); overflow: hidden; position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); display: flex; align-items: center; justify-content: center; }
.blog-card-img-placeholder span { font-family: var(--font-serif); font-size: 48px; color: rgba(253,228,40,.2); }
.blog-card-body { padding: 36px 32px; }
.blog-card-cat { font-family: var(--font-label); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow-mid); background: var(--navy); padding: 4px 10px; display: inline-block; margin-bottom: 16px; }
.blog-card-title { font-family: var(--font-serif); font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.blog-card-title a { color: var(--navy); }
.blog-card-title a:hover { color: var(--navy-light); }
.blog-card-excerpt { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--border-soft); }
.blog-card-date { font-size: 11px; color: var(--muted); }
.blog-card-link { font-family: var(--font-label); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); transition: letter-spacing .3s; }
.blog-card:hover .blog-card-link { letter-spacing: 4px; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); }
.contact-info { background: var(--navy); padding: 72px 60px; }
.contact-info-title { font-family: var(--font-serif); font-size: 36px; color: var(--white); margin-bottom: 20px; }
.contact-info-title em { color: var(--yellow); font-style: italic; }
.contact-info-desc { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.85; margin-bottom: 52px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-detail-icon { width: 40px; height: 40px; background: rgba(253,228,40,.1); border: 1px solid rgba(253,228,40,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon i { color: var(--yellow); font-size: 14px; }
.contact-detail-label { font-family: var(--font-label); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.contact-detail-value { font-size: 14px; color: var(--white); line-height: 1.6; }
.contact-detail-value a { color: var(--white); }
.contact-detail-value a:hover { color: var(--yellow); }
.contact-form-side { background: var(--white); padding: 72px 60px; }

/* ── BADGES ── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 3px; font-size: 11px; font-weight: 700; font-family: var(--font-label); letter-spacing: 1px; }

/* ── UTILITIES ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 70px; }
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-yellow { color: var(--yellow); }
.text-muted { color: var(--muted); }
.bg-navy { background: var(--navy); }
.bg-yellow { background: var(--yellow); }
.bg-light { background: var(--light); }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .topbar { padding: 9px 32px; }
  .header-inner { padding: 0 32px; }
  #desktop-nav { gap: 20px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-r { display: none; }
  .hero-l { padding: 100px 32px 60px; min-height: 80vh; }
  .section { padding: 80px 32px; }
  .section-sm { padding: 60px 32px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .why-section { grid-template-columns: 1fr; gap: 60px; padding: 80px 32px; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .testi-featured { grid-template-columns: 1fr; }
  .tf-right { flex-direction: row; text-align: left; justify-content: flex-start; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .cf-grid { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 32px 60px; }
  #main-footer { padding: 80px 32px 40px; }
  .clients-strip { padding: 40px 32px; }
  .cta-band { padding: 80px 32px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .header-inner { padding: 0 20px; height: 68px; }
  #desktop-nav, .btn-book { display: none; }
  .hamburger { display: flex; }
  .hero-l { padding: 80px 20px 60px; }
  .hero-h1 { font-size: 40px; }
  .section { padding: 60px 20px; }
  .section-header { flex-direction: column; gap: 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  .testi-grid, .testi-row2 { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .cf-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-metrics { flex-direction: column; gap: 20px; }
  .hm { padding: 0 !important; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 20px !important; }
  .hm:last-child { border-bottom: none; }
  .page-hero { padding: 80px 20px 60px; }
  .clients-strip { padding: 32px 20px; }
  .cs-row { flex-wrap: wrap; }
  .cs-item { flex: 0 0 calc(33.333% - 1px); }
}
