/* ═══════════════════════════════════════════════════════════
   SlideHawk Elementor Theme — theme.css
   Light. Lean. Fully Elementor-overridable.
   Version 1.0.0
═══════════════════════════════════════════════════════════ */

/* ── 1. CSS VARIABLES ─────────────────────────────────────
   These are set dynamically from Customizer (functions.php).
   Elementor Custom CSS can override any of these per-section.
──────────────────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --sh-gold:        #C9A84C;
  --sh-gold-light:  #E8C97A;
  --sh-gold-dim:    rgba(201, 168, 76, 0.12);
  --sh-gold-border: rgba(201, 168, 76, 0.25);
  --sh-dark:        #0A0A0F;
  --sh-dark2:       #14141C;
  --sh-card:        #16161E;
  --sh-card-hover:  #1C1C28;
  --sh-white:       #FDFCF9;
  --sh-off-white:   #F5F3EE;
  --sh-muted:       #7A7870;
  --sh-border:      rgba(201, 168, 76, 0.18);
  --sh-border-light: rgba(0, 0, 0, 0.08);

  /* Typography */
  --sh-font-display: 'Syne', Georgia, serif;
  --sh-font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --sh-section-pad: 100px;
  --sh-container:   1300px;
  --sh-gap:         2px;

  /* Radius */
  --sh-radius-sm: 2px;
  --sh-radius-md: 6px;
  --sh-radius-pill: 100px;

  /* Shadows */
  --sh-shadow-gold: 0 16px 48px rgba(201, 168, 76, 0.25);
  --sh-shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);

  /* Transitions */
  --sh-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 2. RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.slidehawk-body {
  font-family: var(--sh-font-body);
  background: #FFFFFF;
  color: var(--sh-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── 3. TYPOGRAPHY DEFAULTS ───────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--sh-font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--sh-dark);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { font-size: 1rem; color: #4A4844; line-height: 1.75; font-weight: 300; }

/* Gold accent in headings */
h1 em, h2 em, h3 em { font-style: normal; color: var(--sh-gold); }

/* ── 4. LAYOUT UTILITIES ──────────────────────────────────── */
.sh-container {
  max-width: var(--sh-container);
  margin: 0 auto;
  padding: 0 60px;
}
.sh-section { padding: var(--sh-section-pad) 0; }
.sh-section-dark { background: var(--sh-dark); }
.sh-section-card { background: var(--sh-card); }
.sh-section-offwhite { background: var(--sh-off-white); }
.sh-center { text-align: center; }
.sh-flex-center { display: flex; align-items: center; justify-content: center; }

/* Reveal animation — Elementor can also apply entrance animations */
.sh-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.sh-reveal.sh-in { opacity: 1; transform: none; }

/* ── 5. SECTION LABELS ────────────────────────────────────── */
.sh-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sh-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sh-gold);
  margin-bottom: 14px;
}
.sh-label::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--sh-gold);
  flex-shrink: 0;
}
.sh-label--center { justify-content: center; }
.sh-label--center::before,
.sh-label--center::after { display: none; }
.sh-label--light { color: var(--sh-gold-light); }

/* ── 6. BUTTONS ───────────────────────────────────────────── */
.sh-btn-primary,
.elementor-button.sh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sh-gold);
  color: var(--sh-dark);
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--sh-radius-sm);
  transition: background var(--sh-transition), transform var(--sh-transition), box-shadow var(--sh-transition);
  border: 2px solid var(--sh-gold);
  white-space: nowrap;
}
.sh-btn-primary:hover {
  background: var(--sh-gold-light);
  border-color: var(--sh-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--sh-shadow-gold);
}
.sh-btn-ghost,
.elementor-button.sh-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--sh-dark);
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--sh-radius-sm);
  border: 2px solid var(--sh-dark);
  transition: all var(--sh-transition);
  white-space: nowrap;
}
.sh-btn-ghost:hover {
  background: var(--sh-dark);
  color: var(--sh-white);
  transform: translateY(-2px);
}
.sh-btn-ghost--white {
  color: var(--sh-white);
  border-color: rgba(253,252,249,0.3);
}
.sh-btn-ghost--white:hover {
  background: var(--sh-gold);
  border-color: var(--sh-gold);
  color: var(--sh-dark);
}
.sh-btn-text {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sh-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--sh-transition);
}
.sh-btn-text:hover { gap: 10px; }

/* ── 7. BADGES / PILLS ────────────────────────────────────── */
.sh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--sh-radius-pill);
  border: 1px solid var(--sh-gold-border);
  background: var(--sh-gold-dim);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sh-gold);
}
.sh-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sh-gold);
  animation: sh-pulse 2s infinite;
}
.sh-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--sh-radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sh-pill--dark { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }

/* ── 8. HEADER ────────────────────────────────────────────── */
.sh-site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sh-border-light);
  transition: padding var(--sh-transition), box-shadow var(--sh-transition);
}
.sh-site-header.sh-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.sh-header-inner {
  max-width: var(--sh-container);
  margin: 0 auto;
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.sh-logo {
  font-family: var(--sh-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--sh-dark);
  flex-shrink: 0;
}
.sh-logo span { color: var(--sh-gold); }
.sh-logo img { height: 36px; width: auto; }
.sh-nav { margin-left: auto; }
.sh-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.sh-menu li a,
.sh-menu li > a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5A5856;
  transition: color var(--sh-transition);
  position: relative;
}
.sh-menu li a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--sh-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--sh-transition);
}
.sh-menu li a:hover,
.sh-menu li.current-menu-item > a { color: var(--sh-gold); }
.sh-menu li a:hover::after,
.sh-menu li.current-menu-item > a::after { transform: scaleX(1); }
.sh-header-cta {
  flex-shrink: 0;
  background: var(--sh-gold);
  color: var(--sh-dark);
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--sh-radius-sm);
  transition: background var(--sh-transition), transform var(--sh-transition);
}
.sh-header-cta:hover { background: var(--sh-gold-light); transform: translateY(-1px); }
.sh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.sh-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--sh-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.sh-hamburger.sh-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sh-hamburger.sh-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.sh-hamburger.sh-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.sh-mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 90vw);
  background: var(--sh-dark);
  z-index: 1100;
  padding: 80px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sh-mobile-drawer.sh-open { transform: translateX(0); }
.sh-drawer-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.2rem;
  color: var(--sh-muted);
  transition: color var(--sh-transition);
}
.sh-drawer-close:hover { color: var(--sh-white); }
.sh-mobile-menu { display: flex; flex-direction: column; gap: 6px; }
.sh-mobile-menu a {
  font-family: var(--sh-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(253,252,249,0.7);
  padding: 8px 0;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--sh-transition);
}
.sh-mobile-menu a:hover { color: var(--sh-gold); }
.sh-mobile-cta-btn { margin-top: 32px; }
.sh-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1099;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.sh-drawer-overlay.sh-open { opacity: 1; pointer-events: all; }

/* Page wrap (pushes content below fixed header) */
.sh-page-wrap { padding-top: 72px; }

/* ── 9. HERO ──────────────────────────────────────────────── */
.sh-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  background: var(--sh-dark);
}
.sh-hero-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(201,168,76,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 85% 85%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.sh-hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.sh-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}
.sh-hero-badge { margin-bottom: 28px; }
.sh-hero h1 {
  color: var(--sh-white);
  max-width: 940px;
  margin: 0 auto;
  animation: sh-fadeup 0.9s 0.1s both;
}
.sh-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(253,252,249,0.6);
  max-width: 600px;
  margin: 22px auto 0;
  font-weight: 300;
  line-height: 1.75;
  animation: sh-fadeup 0.9s 0.25s both;
}
.sh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
  animation: sh-fadeup 0.9s 0.4s both;
}
.sh-stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
  animation: sh-fadeup 0.9s 0.55s both;
  border-top: 1px solid var(--sh-border);
  padding-top: 40px;
}
.sh-stat-item {
  text-align: center;
  padding: 0 48px;
  position: relative;
}
.sh-stat-item + .sh-stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--sh-border);
}
.sh-stat-num {
  display: block;
  font-family: var(--sh-font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--sh-gold);
  line-height: 1;
}
.sh-stat-lbl {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sh-muted);
  margin-top: 6px;
}

/* ── 10. TICKER MARQUEE ───────────────────────────────────── */
.sh-marquee {
  overflow: hidden;
  border-top: 1px solid var(--sh-border);
  border-bottom: 1px solid var(--sh-border);
  padding: 16px 0;
  background: rgba(201,168,76,0.035);
}
.sh-marquee-track {
  display: flex;
  width: max-content;
  animation: sh-marquee 25s linear infinite;
}
.sh-marquee:hover .sh-marquee-track { animation-play-state: paused; }
.sh-marquee-item {
  font-family: var(--sh-font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sh-muted);
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.sh-marquee-item::after { content: '✦'; color: var(--sh-gold); font-size: 0.55rem; }

/* ── 11. LOGO STRIP ───────────────────────────────────────── */
.sh-logo-strip { padding: 56px 0; border-bottom: 1px solid var(--sh-border-light); }
.sh-logo-strip-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #AAAAAA;
  text-align: center;
  margin-bottom: 36px;
}
.sh-logo-strip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 56px;
}
.sh-logo-strip-item {
  font-family: var(--sh-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #D0CEC9;
  letter-spacing: -0.01em;
  transition: color var(--sh-transition);
}
.sh-logo-strip-item:hover { color: #888; }

/* ── 12. WHY CARDS ────────────────────────────────────────── */
.sh-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sh-gap);
  margin-top: 56px;
}
.sh-why-card {
  background: var(--sh-off-white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--sh-transition);
}
.sh-why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sh-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.sh-why-card:hover { background: #EEECEA; }
.sh-why-card:hover::after { transform: scaleX(1); }
.sh-why-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}
.sh-why-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--sh-dark); }
.sh-why-card p { font-size: 0.88rem; color: var(--sh-muted); line-height: 1.7; }

/* ── 13. PROCESS ──────────────────────────────────────────── */
.sh-process-wrap { background: var(--sh-dark); padding: var(--sh-section-pad) 0; }
.sh-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.sh-process-steps::before {
  content: '';
  position: absolute;
  top: 34px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sh-border), var(--sh-border), transparent);
}
.sh-step { text-align: center; padding: 0 24px; }
.sh-step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 1px solid var(--sh-border);
  background: var(--sh-dark);
  color: var(--sh-gold);
  font-family: var(--sh-font-display);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  position: relative; z-index: 1;
  transition: background var(--sh-transition), border-color var(--sh-transition);
}
.sh-step:hover .sh-step-num {
  background: var(--sh-gold-dim);
  border-color: var(--sh-gold);
}
.sh-step h3 { color: var(--sh-white); font-size: 0.95rem; margin-bottom: 10px; }
.sh-step p  { font-size: 0.83rem; color: var(--sh-muted); line-height: 1.65; }

/* ── 14. PORTFOLIO ────────────────────────────────────────── */
.sh-filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.sh-filter-btn {
  padding: 7px 18px;
  border-radius: var(--sh-radius-pill);
  border: 1px solid #D8D6D2;
  background: transparent;
  color: #888;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--sh-font-body);
  transition: all var(--sh-transition);
  cursor: pointer;
}
.sh-filter-btn:hover,
.sh-filter-btn.sh-active {
  background: var(--sh-gold-dim);
  border-color: var(--sh-gold);
  color: var(--sh-gold);
}
.sh-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sh-gap);
  margin-top: 36px;
}
.sh-port-card {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--sh-card);
  cursor: pointer;
}
.sh-port-card-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
}
.sh-deck-preview {
  width: 100%; height: 100%;
  border-radius: 6px;
  padding: 24px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: perspective(700px) rotateY(-4deg) rotateX(1.5deg);
  transition: transform 0.4s ease;
  overflow: hidden;
}
.sh-port-card:hover .sh-deck-preview {
  transform: perspective(700px) rotateY(0) rotateX(0) scale(1.04);
}
/* Deck color themes */
.sh-deck-1 { background: linear-gradient(135deg, #0F2027, #2C5364); color: #fff; }
.sh-deck-2 { background: linear-gradient(135deg, #1a0533, #3D1454); color: #fff; }
.sh-deck-3 { background: linear-gradient(135deg, #0d0d0d, #1c1c1c); border: 1px solid #2a2a2a; color: #fff; }
.sh-deck-4 { background: linear-gradient(135deg, #001F3F, #003d80); color: #fff; }
.sh-deck-5 { background: linear-gradient(135deg, #1B1B2F, #2E2E4A); color: #fff; }
.sh-deck-6 { background: linear-gradient(135deg, #0D1117, #21262D); border: 1px solid #30363D; color: #fff; }
.sh-deck-logo {
  font-family: var(--sh-font-display);
  font-weight: 800; font-size: 0.95rem;
}
.sh-deck-bar { height: 2px; width: 36px; margin: 7px 0; }
.sh-deck-headline { font-family: var(--sh-font-display); font-size: 1.1rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
.sh-deck-pills { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 7px; }
.sh-deck-pill {
  padding: 2px 9px; border-radius: 100px;
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid transparent;
}
.sh-deck-chart { display: flex; align-items: flex-end; gap: 4px; height: 44px; margin-top: 6px; }
.sh-deck-bar-item { flex: 1; border-radius: 2px; }
.sh-deck-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 6px; }
.sh-deck-metrics-3 { grid-template-columns: 1fr 1fr 1fr; }
.sh-deck-metric {
  padding: 8px; border-radius: 3px; border: 1px solid transparent;
  display: flex; flex-direction: column; align-items: center;
}
.sh-deck-metric-val { font-family: var(--sh-font-display); font-size: 0.9rem; font-weight: 800; }
.sh-deck-metric-lbl { font-size: 0.52rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.sh-deck-sparkline { height: 44px; margin-top: 6px; }
.sh-deck-sparkline svg { width: 100%; height: 100%; }
.sh-deck-progress { margin-top: 6px; display: flex; flex-direction: column; gap: 5px; }
.sh-deck-progress-row { height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.sh-deck-progress-fill { height: 100%; border-radius: 2px; }
/* Hover overlay */
.sh-port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.85));
  opacity: 0; transition: opacity 0.3s;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
}
.sh-port-card:hover .sh-port-overlay { opacity: 1; }
.sh-port-overlay-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.sh-port-overlay-name { font-size: 0.72rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.06em; }
.sh-port-overlay-raised { font-family: var(--sh-font-display); color: var(--sh-gold); font-size: 0.9rem; font-weight: 700; }

/* ── 15. SERVICES ─────────────────────────────────────────── */
.sh-services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 56px;
}
.sh-service-list { display: flex; flex-direction: column; gap: 3px; }
.sh-service-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--sh-transition);
}
.sh-service-item:hover,
.sh-service-item.sh-active {
  border-color: var(--sh-border-light);
  background: var(--sh-off-white);
}
.sh-service-num {
  font-family: var(--sh-font-display);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--sh-gold);
  letter-spacing: 0.1em;
  min-width: 26px;
  padding-top: 3px;
}
.sh-service-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--sh-dark); }
.sh-service-item p  { font-size: 0.83rem; color: var(--sh-muted); line-height: 1.65; }
.sh-service-price   { font-size: 0.75rem; color: var(--sh-gold); font-weight: 600; margin-top: 6px; }
.sh-service-panel {
  background: var(--sh-off-white);
  border: 1px solid var(--sh-border-light);
  padding: 44px;
  position: sticky;
  top: 96px;
}
.sh-service-panel h3 { font-size: 1.3rem; margin-bottom: 22px; }
.sh-feature-list { display: flex; flex-direction: column; gap: 11px; }
.sh-feature-list li {
  display: flex; align-items: center; gap: 11px;
  font-size: 0.87rem; color: #3A3836;
}
.sh-feature-list li::before {
  content: '✓';
  color: var(--sh-gold);
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.sh-panel-price { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--sh-border-light); }
.sh-price-from { font-size: 0.68rem; color: #999; text-transform: uppercase; letter-spacing: 0.1em; }
.sh-price-val {
  font-family: var(--sh-font-display);
  font-size: 2.2rem; font-weight: 800;
  color: var(--sh-gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ── 16. TESTIMONIALS ─────────────────────────────────────── */
.sh-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sh-gap);
  margin-top: 56px;
}
.sh-testi-card {
  background: var(--sh-off-white);
  padding: 36px;
  border-left: 3px solid transparent;
  transition: border-color var(--sh-transition), background var(--sh-transition);
}
.sh-testi-card:hover {
  border-left-color: var(--sh-gold);
  background: #EEECEA;
}
.sh-stars { color: var(--sh-gold); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 18px; }
.sh-testi-quote {
  font-size: 0.93rem;
  color: #3A3836;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 300;
}
.sh-testi-quote::before { content: '\201C'; }
.sh-testi-quote::after  { content: '\201D'; }
.sh-testi-footer { display: flex; align-items: center; gap: 12px; }
.sh-testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--sh-gold-dim);
  border: 1px solid var(--sh-gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sh-font-display); font-weight: 700;
  font-size: 0.95rem; color: var(--sh-gold);
  flex-shrink: 0;
}
.sh-testi-name { font-family: var(--sh-font-display); font-size: 0.88rem; font-weight: 700; color: var(--sh-dark); }
.sh-testi-role { font-size: 0.72rem; color: #999; margin-top: 2px; }
.sh-testi-raised {
  margin-left: auto;
  background: var(--sh-gold-dim);
  border: 1px solid var(--sh-gold-border);
  padding: 3px 10px; border-radius: var(--sh-radius-pill);
  font-size: 0.68rem; font-weight: 700;
  color: var(--sh-gold); white-space: nowrap;
  letter-spacing: 0.04em;
}

/* ── 17. ABOUT ────────────────────────────────────────────── */
.sh-about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.sh-about-visual { position: relative; }
.sh-about-visual-box {
  aspect-ratio: 4/5;
  background: var(--sh-off-white);
  border: 1px solid var(--sh-border-light);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  position: relative; overflow: hidden;
}
.sh-about-visual-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 65%, rgba(201,168,76,0.07), transparent 55%);
}
.sh-about-monogram {
  font-family: var(--sh-font-display);
  font-size: 6rem; font-weight: 800;
  color: var(--sh-gold); line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.7;
}
.sh-about-tagline {
  text-align: center;
  padding: 0 32px;
  font-size: 0.82rem;
  color: var(--sh-muted);
  font-style: italic;
  line-height: 1.65;
  position: relative; z-index: 1;
}
.sh-about-tagline cite { display: block; margin-top: 10px; font-style: normal; font-size: 0.7rem; color: var(--sh-gold); text-transform: uppercase; letter-spacing: 0.1em; }
.sh-stat-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--sh-border-light);
  box-shadow: var(--sh-shadow-card);
  padding: 14px 18px;
  border-radius: var(--sh-radius-md);
}
.sh-stat-badge.sh-tr { top: -16px; right: -16px; }
.sh-stat-badge.sh-bl { bottom: -16px; left: -16px; }
.sh-stat-badge-val {
  font-family: var(--sh-font-display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--sh-gold);
  line-height: 1;
}
.sh-stat-badge-lbl { font-size: 0.65rem; color: #999; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }
.sh-about-text h2 { margin-bottom: 22px; }
.sh-about-body { font-size: 0.97rem; color: #4A4844; line-height: 1.8; margin-bottom: 16px; }
.sh-about-list { margin: 20px 0; display: flex; flex-direction: column; gap: 11px; }
.sh-about-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.88rem; color: #3A3836; line-height: 1.65;
}
.sh-about-list li::before { content: '★'; color: var(--sh-gold); flex-shrink: 0; font-size: 0.8rem; margin-top: 3px; }

/* ── 18. TEAM ─────────────────────────────────────────────── */
.sh-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sh-gap);
  margin-top: 56px;
}
.sh-team-card {
  background: var(--sh-off-white);
  padding: 30px 24px;
  text-align: center;
  transition: background var(--sh-transition);
}
.sh-team-card:hover { background: #EEECEA; }
.sh-team-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--sh-gold);
  color: var(--sh-dark);
  font-family: var(--sh-font-display);
  font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.sh-team-name { font-family: var(--sh-font-display); font-size: 0.9rem; font-weight: 700; color: var(--sh-dark); margin-bottom: 4px; }
.sh-team-role { font-size: 0.72rem; color: #999; text-transform: uppercase; letter-spacing: 0.07em; }

/* ── 19. FAQ ──────────────────────────────────────────────── */
.sh-faq-list { margin-top: 56px; display: flex; flex-direction: column; gap: 2px; }
.sh-faq-item {
  border: 1px solid var(--sh-border-light);
  background: #fff;
  overflow: hidden;
}
.sh-faq-item:hover { border-color: var(--sh-gold-border); }
.sh-faq-btn {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--sh-font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--sh-dark);
  background: none; border: none; cursor: pointer;
  transition: color var(--sh-transition);
}
.sh-faq-btn:hover { color: var(--sh-gold); }
.sh-faq-icon {
  color: var(--sh-gold);
  font-size: 1.15rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-left: 16px;
}
.sh-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.88rem;
  color: var(--sh-muted);
  line-height: 1.75;
  padding: 0 28px;
}
.sh-faq-item.sh-open .sh-faq-body { max-height: 220px; padding: 0 28px 22px; }
.sh-faq-item.sh-open .sh-faq-icon { transform: rotate(45deg); }

/* ── 20. CTA SECTION ──────────────────────────────────────── */
.sh-cta-section {
  background: var(--sh-dark);
  padding: var(--sh-section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sh-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201,168,76,0.09), transparent 65%);
}
.sh-cta-section .sh-container { position: relative; }
.sh-cta-section h2 { color: var(--sh-white); font-size: clamp(2.2rem, 5vw, 4rem); }
.sh-cta-section .sh-section-sub {
  color: rgba(253,252,249,0.5);
  max-width: 560px;
  margin: 18px auto 0;
}
.sh-cta-actions {
  display: flex; flex-wrap: wrap;
  gap: 14px; justify-content: center;
  margin-top: 44px;
}
.sh-urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.07);
  border: 1px solid var(--sh-gold-border);
  padding: 8px 18px;
  border-radius: var(--sh-radius-pill);
  font-size: 0.75rem;
  color: var(--sh-gold);
  letter-spacing: 0.04em;
  margin-top: 18px;
}
.sh-dot-red { width: 6px; height: 6px; background: #e74c3c; border-radius: 50%; animation: sh-pulse 1.5s infinite; }
.sh-cta-stats-row {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--sh-border);
}
.sh-cta-stat-item {
  text-align: center;
  padding: 0 36px;
  position: relative;
}
.sh-cta-stat-item + .sh-cta-stat-item::before {
  content: '';
  position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 1px; background: var(--sh-border);
}
.sh-cta-stat-num { font-family: var(--sh-font-display); font-size: 1.4rem; font-weight: 800; color: var(--sh-gold); }
.sh-cta-stat-lbl { font-size: 0.68rem; color: var(--sh-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 5px; }

/* ── 21. FOOTER ───────────────────────────────────────────── */
.sh-site-footer {
  background: var(--sh-dark2);
  border-top: 1px solid var(--sh-border);
  padding: 72px 0 0;
}
.sh-footer-inner { max-width: var(--sh-container); margin: 0 auto; padding: 0 60px; }
.sh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.sh-footer-brand .sh-logo { color: var(--sh-white); display: inline-block; margin-bottom: 14px; }
.sh-footer-brand p { font-size: 0.85rem; color: var(--sh-muted); line-height: 1.75; max-width: 270px; }
.sh-footer-social { display: flex; gap: 12px; margin-top: 22px; }
.sh-footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--sh-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  color: var(--sh-muted);
  transition: all var(--sh-transition);
}
.sh-footer-social a:hover { border-color: var(--sh-gold); color: var(--sh-gold); }
.sh-footer-col h4 {
  font-family: var(--sh-font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sh-gold); margin-bottom: 18px;
}
.sh-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.sh-footer-col a { font-size: 0.83rem; color: var(--sh-muted); transition: color var(--sh-transition); }
.sh-footer-col a:hover { color: var(--sh-white); }
.sh-footer-bottom {
  border-top: 1px solid var(--sh-border);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--sh-muted);
}
.sh-footer-tagline span { color: var(--sh-gold); }

/* ── 22. FLOATING CTA ─────────────────────────────────────── */
.sh-floating-cta {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--sh-gold); color: var(--sh-dark);
  font-family: var(--sh-font-display); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 12px 22px; border-radius: var(--sh-radius-sm);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
  z-index: 90;
  display: flex; align-items: center; gap: 7px;
  transition: transform var(--sh-transition), box-shadow var(--sh-transition);
  animation: sh-fadeup 1s 1.8s both;
}
.sh-floating-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201,168,76,0.45); }
.sh-dot-pulse {
  width: 6px; height: 6px;
  background: var(--sh-dark); border-radius: 50%;
  animation: sh-pulse 2s infinite;
}

/* ── 23. ELEMENTOR OVERRIDES ──────────────────────────────── */
/* Let Elementor sections go full-width with zero interference */
.elementor-section.elementor-section-full_width .elementor-container { max-width: 100%; }
.elementor-section, .elementor-container { max-width: 100% !important; }
/* Make Elementor sections use our fonts by default */
.elementor-widget-heading .elementor-heading-title { font-family: var(--sh-font-display); }
.elementor-widget-text-editor p { font-family: var(--sh-font-body); }
/* Ensure Elementor buttons can use theme classes */
.elementor-button-wrapper .elementor-button { font-family: var(--sh-font-display); }
/* Remove default Elementor padding on canvas */
.elementor-page .sh-page-wrap { padding-top: 0; }

/* ── 24. ANIMATIONS ───────────────────────────────────────── */
@keyframes sh-fadeup  { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes sh-pulse   { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
@keyframes sh-marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── 25. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .sh-header-inner { padding: 0 30px; }
  .sh-container     { padding: 0 30px; }
  .sh-footer-inner  { padding: 0 30px; }
  .sh-nav, .sh-header-cta { display: none; }
  .sh-hamburger { display: flex; }
  .sh-why-grid       { grid-template-columns: 1fr 1fr; }
  .sh-process-steps  { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sh-process-steps::before { display: none; }
  .sh-portfolio-grid { grid-template-columns: 1fr 1fr; }
  .sh-services-layout { grid-template-columns: 1fr; gap: 40px; }
  .sh-service-panel  { position: static; }
  .sh-testi-grid     { grid-template-columns: 1fr 1fr; }
  .sh-about-layout   { grid-template-columns: 1fr; }
  .sh-team-grid      { grid-template-columns: 1fr 1fr; }
  .sh-footer-grid    { grid-template-columns: 1fr 1fr; }
  .sh-logos-row      { gap: 30px; }
  .sh-logo-strip-row { gap: 28px; }
}
@media (max-width: 640px) {
  :root { --sh-section-pad: 64px; }
  .sh-header-inner { padding: 0 20px; }
  .sh-container     { padding: 0 20px; }
  .sh-footer-inner  { padding: 0 20px; }
  .sh-hero          { padding: 60px 20px; }
  .sh-stats-row     { gap: 0; }
  .sh-stat-item     { padding: 0 20px; }
  .sh-why-grid, .sh-portfolio-grid, .sh-testi-grid { grid-template-columns: 1fr; }
  .sh-process-steps { grid-template-columns: 1fr; }
  .sh-footer-grid   { grid-template-columns: 1fr; gap: 36px; }
  .sh-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .sh-about-layout  { grid-template-columns: 1fr; gap: 40px; }
  .sh-stat-badge    { display: none; }
  .sh-floating-cta  { bottom: 16px; right: 16px; }
  .sh-cta-stats-row { gap: 0; }
  .sh-cta-stat-item { padding: 0 20px; }
}
