/* ═══════════════════════════════════════════════════════════
   Superior Group — Custom Theme Styles
   Dark premium theme with gold accents
   ═══════════════════════════════════════════════════════════ */

/* ═══ CSS Variables ═══ */
:root {
  --sg-bg: #0f0f0f;
  --sg-bg-light: #141414;
  --sg-bg-lighter: #1a1a1a;
  --sg-bg-card: #171717;
  --sg-bg-footer: #0a0a0a;
  --sg-gold: #c9a84c;
  --sg-gold-light: #f0d78c;
  --sg-white: #ffffff;
  --sg-border: rgba(255,255,255,0.04);
  --sg-border-light: rgba(255,255,255,0.08);
  --sg-text-primary: rgba(255,255,255,1);
  --sg-text-secondary: rgba(255,255,255,0.40);
  --sg-text-muted: rgba(255,255,255,0.25);
  --sg-text-faint: rgba(255,255,255,0.15);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

/* ═══ Reset & Base ═══ */
.sg-theme,
.sg-theme *,
.sg-theme *::before,
.sg-theme *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.sg-theme {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--sg-bg);
  color: var(--sg-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.sg-theme html { scroll-behavior: smooth; }

.sg-theme a { color: inherit; text-decoration: none; }
.sg-theme img { max-width: 100%; height: auto; display: block; }
.sg-theme button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══ OVERRIDE: Hide parent theme / plugin header elements ═══ */
.sg-theme #masthead,
.sg-theme .site-header,
.sg-theme #mob-menu-header-holder,
.sg-theme .mob-menu-header-holder,
.sg-theme #mobmenuleft,
.sg-theme #mobmenuright,
.sg-theme .mob-menu-left-panel,
.sg-theme .mob-menu-right-panel,
.sg-theme #top-bar,
.sg-theme .topbar-widget,
.sg-theme #mobmenu,
.sg-theme .mob-main-menu,
.sg-theme .mob_menu_header,
.sg-theme .menu-mobile-menu-container,
.sg-theme #mega-menu-wrap-primary,
.sg-theme .megamenu,
.sg-theme .smart-slider-wrapper,
.sg-theme #n2-ss-2 {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  z-index: -9999 !important;
}

/* Also suppress any WP admin bar gap */
.sg-theme #wpadminbar ~ .sg-wrapper { margin-top: 0; }

/* ═══ Typography ═══ */
.sg-font-display { font-family: var(--font-display); }
.sg-font-sans { font-family: var(--font-sans); }

.sg-tracking-wide { letter-spacing: 0.15em; }
.sg-tracking-wider { letter-spacing: 0.25em; }
.sg-tracking-widest { letter-spacing: 0.3em; }
.sg-uppercase { text-transform: uppercase; }
.sg-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(201,168,76,0.6);
}

/* ═══ Text Gradients ═══ */
.sg-text-gradient-gold {
  background: linear-gradient(135deg, #c9a84c 0%, #f0d78c 40%, #c9a84c 80%, #f0d78c 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sg-shimmer-gold 4s ease-in-out infinite;
}

@keyframes sg-shimmer-gold {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ═══ Layout ═══ */
.sg-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .sg-container { padding: 0 32px; }
}

.sg-grid { display: grid; }
.sg-flex { display: flex; }
.sg-hidden { display: none; }
.sg-block { display: block; }
.sg-relative { position: relative; }
.sg-absolute { position: absolute; }
.sg-fixed { position: fixed; }
.sg-inset-0 { inset: 0; }

/* ═══ Scroll Progress Bar ═══ */
.sg-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sg-gold), var(--sg-gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
  width: 0;
}

/* ═══ Navigation ═══ */
.sg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.7s ease;
}
.sg-header--scrolled {
  background: rgba(0,0,0,0.80);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.sg-header__inner {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: space-between;
}
.sg-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sg-header__logo-box {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.5s;
}
.sg-header__logo:hover .sg-header__logo-box {
  border-color: rgba(201,168,76,0.4);
}
.sg-header__logo-text {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: white;
  transition: color 0.5s;
}
.sg-header__logo:hover .sg-header__logo-text {
  color: var(--sg-gold);
}
.sg-header__brand {
  display: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
}
@media (min-width: 640px) {
  .sg-header__brand { display: block; }
}

.sg-nav { display: none; align-items: center; gap: 4px; }
@media (min-width: 768px) { .sg-nav { display: flex; } }

.sg-nav__link {
  position: relative;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.sg-nav__link:hover { color: rgba(255,255,255,0.8); }
.sg-nav__link--active { color: white; }
.sg-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sg-gold), transparent);
  width: 0;
  opacity: 0;
  transition: all 0.5s;
}
.sg-nav__link--active::after { width: 100%; opacity: 1; }
.sg-nav__link:hover::after { width: 100%; opacity: 0.3; }

/* Mobile hamburger */
.sg-hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  gap: 6px;
}
@media (min-width: 768px) { .sg-hamburger { display: none; } }

.sg-hamburger__line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: all 0.5s;
}
.sg-hamburger--open .sg-hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}
.sg-hamburger--open .sg-hamburger__line:nth-child(2) {
  opacity: 0; transform: scale(0);
}
.sg-hamburger--open .sg-hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile menu */
.sg-mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.7s ease-in-out;
}
.sg-mobile-menu--open {
  max-height: 400px;
  opacity: 1;
}
.sg-mobile-menu__inner {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(40px);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 32px 24px;
}
.sg-mobile-menu__link {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: all 0.3s;
}
.sg-mobile-menu__link:hover,
.sg-mobile-menu__link--active {
  color: white;
  transform: translateX(8px);
}
.sg-mobile-menu__link--active::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--sg-gold);
  border-radius: 50%;
  margin-right: 12px;
}

/* ═══ Hero Section ═══ */
.sg-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.sg-hero__video-wrap {
  position: absolute;
  inset: 0;
}
.sg-hero__video {
  width: 100%;
  height: 120%;
  object-fit: cover;
}
.sg-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.85) 100%);
}
.sg-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sg-hero__particles canvas {
  width: 100%;
  height: 100%;
}
.sg-hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 24px;
  text-align: center;
}
.sg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.sg-hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--sg-gold);
  border-radius: 50%;
  animation: sg-pulse 2s ease-in-out infinite;
}
@keyframes sg-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.sg-hero__title {
  margin-top: 32px;
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 10vw, 4rem);
}
@media (min-width: 769px) {
  .sg-hero__title { font-size: clamp(4rem, 8vw, 7rem); }
}

.sg-hero__subtitle {
  margin-top: 32px;
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  max-width: 640px;
  font-weight: 300;
  line-height: 1.7;
}
@media (min-width: 640px) {
  .sg-hero__subtitle { font-size: 20px; }
}

.sg-hero__cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
@media (min-width: 640px) {
  .sg-hero__cta { flex-direction: row; }
}

.sg-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.2);
  z-index: 10;
}
.sg-hero__scroll-text {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.sg-hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
  position: relative;
  overflow: hidden;
}
.sg-hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--sg-gold), transparent);
  animation: sg-scroll-bounce 2s ease-in-out infinite;
}
@keyframes sg-scroll-bounce {
  0%, 100% { transform: translateY(-100%); }
  50% { transform: translateY(0); }
}

.sg-hero__bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(to top, var(--sg-bg), transparent);
  z-index: 5;
}

/* ═══ Buttons ═══ */
.sg-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.5s;
}
.sg-btn--primary {
  background: white !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}
.sg-btn--primary svg { stroke: #000000 !important; }
.sg-btn--primary:hover {
  background: var(--sg-gold) !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  box-shadow: 0 0 30px rgba(201,168,76,0.2);
}
.sg-btn--outline {
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-weight: 500;
}
.sg-btn--outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.25);
}
.sg-btn--ghost {
  color: rgba(255,255,255,0.5);
  padding: 0;
  font-weight: 500;
}
.sg-btn--ghost:hover { color: var(--sg-gold); }

.sg-btn__icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}
.sg-btn:hover .sg-btn__icon { transform: translateX(4px); }

/* ═══ Stats Bar ═══ */
.sg-stats {
  position: relative;
  border-top: 1px solid var(--sg-border);
  border-bottom: 1px solid var(--sg-border);
  background: var(--sg-bg-light);
}
.sg-stats__glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sg-stats__glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  width: 384px;
  height: 384px;
  background: rgba(201,168,76,0.02);
  border-radius: 50%;
  filter: blur(48px);
}
.sg-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
@media (min-width: 1024px) {
  .sg-stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.sg-stat {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid var(--sg-border);
}
@media (min-width: 1024px) {
  .sg-stat { padding: 64px 40px; }
}
.sg-stat:last-child { border-right: none; }
.sg-stat__value {
  font-size: 30px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}
@media (min-width: 1024px) {
  .sg-stat__value { font-size: 48px; }
}
.sg-stat__label {
  margin-top: 12px;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═══ Marquee (Logo Ticker) ═══ */
.sg-marquee {
  padding: 64px 0;
  border-bottom: 1px solid var(--sg-border);
  overflow: hidden;
  position: relative;
}
.sg-marquee__track {
  display: flex;
  animation: sg-marquee 30s linear infinite;
}
.sg-marquee__track:hover { animation-play-state: paused; }
@keyframes sg-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.sg-marquee__item {
  flex-shrink: 0;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}
.sg-marquee__logo {
  max-height: 32px;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.2;
  transition: opacity 0.5s;
}
.sg-marquee__logo:hover { opacity: 0.5; }
.sg-marquee__text {
  color: rgba(255,255,255,0.15);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.5s;
}
.sg-marquee__text:hover { color: rgba(255,255,255,0.35); }
.sg-marquee__fade-left,
.sg-marquee__fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 128px;
  z-index: 10;
}
.sg-marquee__fade-left {
  left: 0;
  background: linear-gradient(to right, var(--sg-bg), transparent);
}
.sg-marquee__fade-right {
  right: 0;
  background: linear-gradient(to left, var(--sg-bg), transparent);
}

/* ═══ Section Base ═══ */
.sg-section {
  padding: 112px 0;
  position: relative;
}
@media (min-width: 1024px) {
  .sg-section { padding: 144px 0; }
}
.sg-section--bordered { border-top: 1px solid var(--sg-border); }
.sg-section--alt { background: var(--sg-bg-light); }

.sg-section__header { margin-bottom: 80px; }
.sg-section__line {
  margin-top: 20px;
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--sg-gold), transparent);
}
.sg-section__title {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  font-size: 30px;
}
@media (min-width: 1024px) {
  .sg-section__title { font-size: 48px; }
}
.sg-section__title--xl { font-size: 36px; }
@media (min-width: 640px) {
  .sg-section__title--xl { font-size: 48px; }
}
@media (min-width: 1024px) {
  .sg-section__title--xl { font-size: 72px; }
}

/* ═══ Portfolio Grid ═══ */
.sg-portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .sg-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .sg-portfolio-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ═══ Cards ═══ */
.sg-card {
  position: relative;
  border: 1px solid var(--sg-border);
  background: var(--sg-bg-card);
  padding: 32px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sg-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 80px rgba(201,168,76,0.05);
}
.sg-card__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(201,168,76,0.03), transparent);
}
.sg-card:hover .sg-card__glow { opacity: 1; }

.sg-card__category {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}
.sg-card__logo-wrap {
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}
.sg-card__logo {
  max-height: 56px;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.5;
  transition: all 0.5s;
}
.sg-card:hover .sg-card__logo {
  opacity: 1;
  transform: scale(1.05);
}
.sg-card__name {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.2;
  transition: color 0.5s;
}
.sg-card:hover .sg-card__name { color: white; }

.sg-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  transition: color 0.5s;
  flex: 1;
}
.sg-card:hover .sg-card__desc { color: rgba(255,255,255,0.5); }

.sg-card__arrow {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.15);
  transition: color 0.5s;
}
.sg-card:hover .sg-card__arrow { color: rgba(201,168,76,0.6); }
.sg-card__arrow-line {
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: width 0.5s;
}
.sg-card:hover .sg-card__arrow-line { width: 40px; }

/* ═══ Brand Detail Card ═══ */
.sg-brand-card {
  border: 1px solid var(--sg-border);
  background: var(--sg-bg-card);
  transition: all 0.5s;
  overflow: hidden;
}
.sg-brand-card:hover {
  background: var(--sg-bg-lighter);
  border-color: rgba(201,168,76,0.15);
}
.sg-brand-card__inner { padding: 32px; }
@media (min-width: 1024px) {
  .sg-brand-card__inner { padding: 48px; }
}
.sg-brand-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}
.sg-brand-card__icon-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sg-brand-card__icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.5s;
}
.sg-brand-card:hover .sg-brand-card__icon {
  border-color: rgba(201,168,76,0.2);
}
.sg-brand-card__icon svg {
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.3);
  transition: color 0.5s;
}
.sg-brand-card:hover .sg-brand-card__icon svg {
  color: rgba(201,168,76,0.6);
}
.sg-brand-card__meta-text {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.25);
}
.sg-brand-card__meta-sub {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.15);
}
.sg-brand-card__ext-link {
  padding: 8px;
  color: rgba(255,255,255,0.15);
  transition: color 0.3s;
}
.sg-brand-card__ext-link:hover { color: rgba(201,168,76,0.6); }

.sg-brand-card__name-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}
.sg-brand-card__logo {
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.5s;
}
.sg-brand-card:hover .sg-brand-card__logo { opacity: 0.9; }
.sg-brand-card__name {
  font-size: 24px;
  font-weight: 700;
  color: white;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
@media (min-width: 1024px) {
  .sg-brand-card__name { font-size: 30px; }
}
.sg-brand-card__tagline {
  font-size: 14px;
  font-weight: 500;
}

.sg-brand-card__body {
  margin-top: 24px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 800px;
}
.sg-brand-card__body p + p {
  margin-top: 16px;
  color: rgba(255,255,255,0.25);
}

.sg-brand-card__highlights {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sg-brand-card__highlight {
  padding: 8px 16px;
  border: 1px solid var(--sg-border);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
  background: var(--sg-bg);
  transition: all 0.5s;
}
.sg-brand-card:hover .sg-brand-card__highlight {
  border-color: var(--sg-border-light);
  color: rgba(255,255,255,0.4);
}
.sg-brand-card__bottom {
  height: 1px;
  background: linear-gradient(to right, transparent, transparent, transparent);
  transition: background 0.7s;
}
.sg-brand-card:hover .sg-brand-card__bottom {
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
}

/* ═══ About Teaser ═══ */
.sg-about-teaser {
  display: grid;
  gap: 64px;
}
@media (min-width: 1024px) {
  .sg-about-teaser {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
  }
}
.sg-about-teaser__text {
  color: rgba(255,255,255,0.4);
  font-size: 18px;
  line-height: 1.7;
}
.sg-about-teaser__text p + p { margin-top: 24px; }

/* ═══ Story Section ═══ */
.sg-story {
  display: grid;
  gap: 64px;
}
@media (min-width: 1024px) {
  .sg-story {
    grid-template-columns: 2fr 3fr;
    gap: 96px;
  }
}
.sg-story__body {
  color: rgba(255,255,255,0.4);
  font-size: 18px;
  line-height: 1.7;
}
.sg-story__body p + p { margin-top: 24px; }

/* ═══ Timeline ═══ */
.sg-timeline { position: relative; }
.sg-timeline__line {
  display: none;
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.2), rgba(201,168,76,0.1), transparent);
}
@media (min-width: 1024px) {
  .sg-timeline__line { display: block; }
}
.sg-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--sg-border);
}
@media (min-width: 1024px) {
  .sg-timeline__item {
    grid-template-columns: 120px 1fr;
    gap: 64px;
  }
}
.sg-timeline__year {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-display);
}
@media (min-width: 1024px) {
  .sg-timeline__year { font-size: 30px; }
}
.sg-timeline__dot {
  display: none;
  position: absolute;
  right: -23px;
  top: 52px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201,168,76,0.3);
  border: 1px solid rgba(201,168,76,0.5);
}
@media (min-width: 1024px) {
  .sg-timeline__dot { display: block; }
}
.sg-timeline__title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  font-family: var(--font-display);
}
@media (min-width: 1024px) {
  .sg-timeline__title { font-size: 24px; }
}
.sg-timeline__desc {
  margin-top: 16px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 640px;
}

/* ═══ Values Grid ═══ */
.sg-values-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .sg-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .sg-values-grid { grid-template-columns: repeat(3, 1fr); }
}
.sg-value-card {
  border: 1px solid var(--sg-border);
  background: var(--sg-bg-lighter);
  padding: 40px;
  transition: all 0.5s;
}
.sg-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.15);
}
.sg-value-card__icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.5s;
}
.sg-value-card:hover .sg-value-card__icon {
  border-color: rgba(201,168,76,0.2);
}
.sg-value-card__icon svg {
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.3);
  transition: color 0.5s;
}
.sg-value-card:hover .sg-value-card__icon svg {
  color: rgba(201,168,76,0.6);
}
.sg-value-card__title {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  font-family: var(--font-display);
}
.sg-value-card__text {
  margin-top: 16px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

/* ═══ Founder Section ═══ */
.sg-founder {
  display: grid;
  gap: 64px;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .sg-founder {
    grid-template-columns: 3fr 2fr;
  }
}
.sg-founder__body {
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.sg-founder__body p + p { margin-top: 24px; }

.sg-founder__visual {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1f1f1f, var(--sg-bg-light));
  border: 1px solid var(--sg-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}
.sg-founder__initials {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.sg-founder__initials span {
  color: rgba(201,168,76,0.4);
  font-size: 30px;
  font-family: var(--font-display);
  font-weight: 700;
}
.sg-founder__placeholder {
  font-size: 11px;
  color: rgba(255,255,255,0.1);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.sg-founder__corner-tl,
.sg-founder__corner-br {
  position: absolute;
  width: 128px;
  height: 128px;
}
.sg-founder__corner-tl {
  top: 0; right: 0;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-right: 1px solid rgba(201,168,76,0.1);
}
.sg-founder__corner-br {
  bottom: 0; left: 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  border-left: 1px solid rgba(201,168,76,0.1);
}

/* ═══ Contact ═══ */
.sg-contact-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) {
  .sg-contact-grid {
    grid-template-columns: 2fr 3fr;
    gap: 80px;
  }
}
.sg-contact-info__item {
  margin-bottom: 40px;
}
.sg-contact-info__icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.sg-contact-info__icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.5s;
}
.sg-contact-info__icon svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.3);
  transition: color 0.5s;
}
.sg-contact-info__item:hover .sg-contact-info__icon {
  border-color: rgba(201,168,76,0.2);
}
.sg-contact-info__item:hover .sg-contact-info__icon svg {
  color: rgba(201,168,76,0.6);
}
.sg-contact-info__label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}
.sg-contact-info__value {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.sg-contact-info__value:hover { color: white; }

/* Social icons */
.sg-social {
  display: flex;
  gap: 12px;
}
.sg-social__link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  transition: all 0.5s;
}
.sg-social__link:hover {
  color: rgba(201,168,76,0.6);
  border-color: rgba(201,168,76,0.2);
}
.sg-social__link svg {
  width: 16px;
  height: 16px;
}

/* Direct links */
.sg-direct-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.sg-direct-links a:hover { color: rgba(255,255,255,0.6); }
.sg-direct-links a svg {
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}
.sg-direct-links a:hover svg { opacity: 1; }

/* ═══ Contact Form ═══ */
.sg-form__row {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) {
  .sg-form__row--2col { grid-template-columns: 1fr 1fr; }
}
.sg-form__group { margin-bottom: 24px; }
.sg-form__label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}
.sg-form__input,
.sg-form__textarea {
  width: 100%;
  background: var(--sg-bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 16px 20px;
  color: white;
  font-size: 14px;
  font-family: var(--font-sans);
  transition: border-color 0.3s;
  outline: none;
}
.sg-form__input::placeholder,
.sg-form__textarea::placeholder {
  color: rgba(255,255,255,0.15);
}
.sg-form__input:focus,
.sg-form__textarea:focus {
  border-color: rgba(201,168,76,0.3);
}
.sg-form__textarea { resize: none; }

.sg-form__success {
  border: 1px solid var(--sg-border);
  background: var(--sg-bg-card);
  padding: 48px;
  text-align: center;
}
.sg-form__success-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.sg-form__success-icon svg {
  width: 24px;
  height: 24px;
  color: rgba(201,168,76,0.5);
}

/* ═══ CTA Section ═══ */
.sg-cta {
  text-align: center;
  overflow: hidden;
}
.sg-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: rgba(201,168,76,0.03);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.sg-cta__subtitle {
  margin-top: 24px;
  color: rgba(255,255,255,0.35);
  font-size: 18px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ═══ Footer ═══ */
.sg-footer {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--sg-bg-footer);
}
.sg-footer__top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
}
.sg-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 80px 0;
}
@media (min-width: 768px) {
  .sg-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .sg-footer__grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
.sg-footer__brand-desc {
  margin-top: 24px;
  color: rgba(255,255,255,0.25);
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}
.sg-footer__heading {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.sg-footer__link {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.sg-footer__link:hover { color: rgba(255,255,255,0.6); }

.sg-footer__bottom {
  margin-top: 0;
  padding: 32px 0;
  border-top: 1px solid var(--sg-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 640px) {
  .sg-footer__bottom { flex-direction: row; }
}
.sg-footer__copy {
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.15em;
}
.sg-footer__top-btn {
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.sg-footer__top-btn:hover { color: rgba(255,255,255,0.4); }

/* ═══ Scroll Reveal Animations ═══ */
.sg-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.sg-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.sg-reveal--left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.sg-reveal--left.sg-reveal--visible {
  opacity: 1;
  transform: translateX(0);
}
.sg-reveal--right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.sg-reveal--right.sg-reveal--visible {
  opacity: 1;
  transform: translateX(0);
}
.sg-delay-1 { transition-delay: 0.1s; }
.sg-delay-2 { transition-delay: 0.2s; }
.sg-delay-3 { transition-delay: 0.3s; }
.sg-delay-4 { transition-delay: 0.4s; }

/* ═══ Glow Pulse ═══ */
@keyframes sg-glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0), 0 0 40px rgba(201,168,76,0); }
  50% { box-shadow: 0 0 20px rgba(201,168,76,0.15), 0 0 60px rgba(201,168,76,0.05); }
}

/* ═══ Noise Overlay ═══ */
.sg-theme::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.5;
}

/* ═══ Custom Scrollbar ═══ */
.sg-theme::-webkit-scrollbar { width: 6px; }
.sg-theme::-webkit-scrollbar-track { background: var(--sg-bg); }
.sg-theme::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
.sg-theme::-webkit-scrollbar-thumb:hover { background: #555; }

/* ═══ Hero page header (non-home) ═══ */
.sg-page-hero {
  position: relative;
  padding: 128px 0 64px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .sg-page-hero { padding: 176px 0 128px; }
}
.sg-page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--sg-bg-light), var(--sg-bg));
}
.sg-page-hero__glow {
  position: absolute;
  top: 80px;
  right: 25%;
  width: 400px;
  height: 400px;
  background: rgba(201,168,76,0.02);
  border-radius: 50%;
  filter: blur(100px);
}
.sg-page-hero__subtitle {
  margin-top: 32px;
  font-size: 18px;
  color: rgba(255,255,255,0.35);
  max-width: 640px;
  line-height: 1.7;
}

/* ═══ Mini Stats ═══ */
.sg-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (min-width: 1024px) {
  .sg-mini-stats { grid-template-columns: repeat(4, 1fr); }
}
.sg-mini-stat { text-align: center; }
.sg-mini-stat__value {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-display);
}
@media (min-width: 1024px) {
  .sg-mini-stat__value { font-size: 48px; }
}
.sg-mini-stat__label {
  margin-top: 8px;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═══ Separator ═══ */
.sg-separator {
  border: none;
  border-top: 1px solid var(--sg-border);
  margin: 32px 0;
}

/* ═══ Utility ═══ */
.sg-text-center { text-align: center; }
.sg-mt-4 { margin-top: 16px; }
.sg-mt-6 { margin-top: 24px; }
.sg-mt-8 { margin-top: 32px; }
.sg-mt-10 { margin-top: 40px; }
.sg-mt-16 { margin-top: 64px; }
.sg-w-full { width: 100%; }
