/* ============================================
   SINAYAH – Premium golden/white theme
   Inspired by Rasan, balanced typography
   ============================================ */

:root {
  /* Golden & white palette */
  --gold: #c9a227;
  --gold-light: #e5c65c;
  --gold-dark: #a6851f;
  --gold-muted: rgba(201, 162, 39, 0.15);
  --white: #ffffff;
  --off-white: #fafaf9;
  --cream: #f5f3ef;
  --charcoal: #1a1a1a;
  --gray-dark: #2d2d2d;
  --gray: #5c5c5c;
  --gray-light: #8a8a8a;
  --border: #e8e6e1;

  /* Typography – balanced, not thin */
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --text: var(--charcoal);
  --text-muted: var(--gray);

  /* Animation timing – subtle, premium */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-slow: 1s;
  --duration: 0.7s;
  --duration-fast: 0.4s;

  /* Spacing */
  --header-height: 72px;
  --section-padding: clamp(4rem, 10vw, 7rem);
  --content-width: min(1200px, 92vw);
}

/* Smooth scroll – Lenis handles smooth scrolling when active */
html {
  scroll-behavior: smooth;
}

/* Lenis: allow smooth scroll to control behavior */
html.lenis.lenis-smooth {
  scroll-behavior: auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.site-header.header-transparent {
  background: transparent;
  box-shadow: none;
}

.site-header.header-solid {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  width: var(--content-width);
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.header-transparent .logo .logo-text {
  color: var(--white);
}

.header-solid .logo .logo-text {
  color: var(--charcoal);
}

.logo-accent {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: color var(--duration-fast);
}

.header-transparent .main-nav a {
  color: rgba(255, 255, 255, 0.9);
}

.header-transparent .main-nav a:hover {
  color: var(--white);
}

.header-solid .main-nav a {
  color: var(--gray-dark);
}

.header-solid .main-nav a:hover {
  color: var(--gold-dark);
}

.btn-contact {
  padding: 0.6rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 1.5px solid;
  border-radius: 4px;
  transition: background-color var(--duration-fast), color var(--duration-fast), border-color var(--duration-fast);
}

.header-transparent .btn-contact {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.header-transparent .btn-contact:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.header-solid .btn-contact {
  color: var(--charcoal);
  border-color: var(--charcoal);
  background: var(--white);
}

.header-solid .btn-contact:hover {
  background: var(--charcoal);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

@media (max-width: 900px) {
  .main-nav,
  .btn-contact {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .header-transparent .nav-toggle { color: var(--white); }
  .header-solid .nav-toggle { color: var(--charcoal); }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background: linear-gradient(135deg, #2d2a24 0%, #1a1814 50%, #252219 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, var(--gold-muted) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: var(--content-width);
  max-width: 900px;
  margin: 0 auto;
}

.hero-headline {
  margin: 0 0 1.5rem;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hero-sub {
  margin: 0 0 2.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: background-color var(--duration-fast), color var(--duration-fast), border-color var(--duration-fast), transform var(--duration-fast);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--charcoal);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* ========== SECTIONS ========== */
.section {
  padding: var(--section-padding) 0;
}

.section-inner {
  width: var(--content-width);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4vw;
}

.section-heading {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.section-sub {
  margin: 0 0 2.5rem;
  font-size: 1rem;
  color: var(--gray);
  max-width: 640px;
}

/* Scroll-triggered animation base */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-from-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.animate-from-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-from-right-delay {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--duration) var(--ease-out) 0.1s, transform var(--duration) var(--ease-out) 0.1s;
}

.animate-from-right-delay.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-from-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.animate-from-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-from-left-delay {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--duration) var(--ease-out) 0.1s, transform var(--duration) var(--ease-out) 0.1s;
}

.animate-from-left-delay.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-from-bottom {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.animate-from-bottom.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Hero initial animations (no scroll) */
.hero .animate-from-right {
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.hero .animate-from-right-delay {
  transition: opacity var(--duration) var(--ease-out) 0.08s, transform var(--duration) var(--ease-out) 0.08s;
}
.hero .animate-from-bottom {
  transition: opacity var(--duration) var(--ease-out) 0.16s, transform var(--duration) var(--ease-out) 0.16s;
}

.hero .animate-from-right,
.hero .animate-from-right-delay,
.hero .animate-from-bottom {
  opacity: 0;
}

.hero.hero-ready .animate-from-right {
  opacity: 1;
  transform: translateX(0);
}

.hero.hero-ready .animate-from-right-delay {
  opacity: 1;
  transform: translateX(0);
}

.hero.hero-ready .animate-from-bottom {
  opacity: 1;
  transform: translateY(0);
}

/* ========== IDENTITY & VISION ========== */
.identity-vision {
  background: var(--off-white);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 800px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
}

.split-left .body-copy p {
  margin: 0 0 1rem;
  color: var(--gray-dark);
}

.shift-block {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.shift-block .muted {
  color: var(--gray);
}

.lifted-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
}

.vision-graphic {
  height: 200px;
  background: linear-gradient(135deg, var(--gold-muted) 0%, transparent 60%);
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.accent-heading {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}

.lifted-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

/* ========== MODEL SECTION ========== */
.model-section {
  background: var(--white);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 700px) {
  .model-grid {
    grid-template-columns: 1fr;
  }
}

.model-card {
  padding: 1.75rem;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: box-shadow var(--duration-fast), border-color var(--duration-fast);
}

.model-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: var(--gold-muted);
}

.model-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.model-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

/* ========== PORTFOLIO / ASSETS ========== */
.portfolio-section {
  background: var(--off-white);
}

.assets-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}

.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--duration-fast), border-color var(--duration-fast), color var(--duration-fast);
}

.carousel-btn:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.assets-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0;
}

.assets-track::-webkit-scrollbar {
  display: none;
}

.asset-card {
  flex: 0 0 min(360px, 85vw);
  scroll-snap-align: start;
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  transition: box-shadow var(--duration-fast), transform var(--duration-fast);
}

.asset-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.asset-icon {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.asset-icon-img {
  height: 48px;
  display: flex;
  align-items: center;
}

.asset-icon-img img {
  max-height: 100%;
  max-width: 120px;
  object-fit: contain;
}

.asset-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.asset-layer {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0 0 0.75rem;
}

.asset-card p:not(.asset-layer) {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.asset-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.asset-card-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.asset-cta {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: color var(--duration-fast);
}

.asset-card-link:hover .asset-cta {
  color: var(--gold);
}

/* ========== IMPACT / STATS ========== */
.impact-section {
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 1rem;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.stat-value {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.stat-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ========== VERTICALS ========== */
.verticals-section {
  background: var(--cream);
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .verticals-grid {
    grid-template-columns: 1fr;
  }
}

.vertical-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.vertical-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px var(--gold-muted);
}

.vertical-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.vertical-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

/* ========== UNIQUE SECTION ========== */
.unique-section {
  background: var(--white);
}

.unique-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.unique-point h4 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

.unique-point p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

.unique-graphic {
  min-height: 320px;
  background: linear-gradient(160deg, var(--gold-muted) 0%, var(--cream) 50%, transparent 100%);
  border-radius: 12px;
}

/* ========== PARTNERS ========== */
.partners-section {
  background: var(--off-white);
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.partner-logo {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  padding: 0.75rem 1.25rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: color var(--duration-fast), border-color var(--duration-fast);
}

.partner-logo:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
}

/* ========== LEADERSHIP ========== */
.leadership-section {
  background: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 700px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.leader-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.leader-avatar {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.leader-card h4 {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
}

.leader-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
}

@media (max-width: 700px) {
  .leader-avatar {
    width: 140px;
    height: 140px;
  }
}

/* ========== NEWS ========== */
.news-section {
  background: var(--cream);
}

.news-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.view-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: color var(--duration-fast);
}

.view-all:hover {
  color: var(--gold);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  transition: box-shadow var(--duration-fast), transform var(--duration-fast);
}

.news-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.news-card-visual {
  height: 160px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-muted) 100%);
}

.news-card-body {
  padding: 1.5rem;
}

.news-card-body h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
}

.link-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: color var(--duration-fast);
}

.link-read-more:hover {
  color: var(--gold);
}

/* ========== CONTACT ========== */
.contact-section {
  background: var(--off-white);
}

.contact-intro {
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  color: var(--gray-dark);
  max-width: 560px;
}

.contact-form {
  max-width: 520px;
}

.form-row {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-muted);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-light);
}

.form-error {
  display: block;
  font-size: 0.8rem;
  color: #b91c1c;
  margin-top: 0.35rem;
}

.form-success {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.btn-submit {
  margin-top: 0.5rem;
}

/* ========== FOOTER ========== */
.site-footer {
  background: linear-gradient(180deg, #252219 0%, #1a1814 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-inner {
  width: var(--content-width);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 800px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-logo .logo-accent {
  background: var(--gold);
}

.footer-connect h4 {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: color var(--duration-fast);
}

.footer-social a:hover {
  color: var(--gold);
}

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
  transition: background var(--duration-fast), color var(--duration-fast);
}

.btn-footer-cta:hover {
  background: var(--gold-light);
  color: var(--charcoal);
}

.footer-col strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.footer-col p {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--duration-fast);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-copy {
  text-align: center;
  margin: 3rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ========== SUBPAGES (e.g. Who We Are) ========== */
.page-sub .subpage-main {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: var(--section-padding);
}

.subpage-inner {
  width: var(--content-width);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.breadcrumbs a {
  color: var(--gray);
}

.breadcrumbs a:hover {
  color: var(--gold-dark);
}

.breadcrumb-sep {
  margin: 0 0.35rem;
}

/* Subpage intro: accent + headline + lead + abstract art */
.subpage-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

@media (max-width: 900px) {
  .subpage-intro {
    grid-template-columns: 1fr;
  }
  .subpage-intro-art {
    order: -1;
    max-height: 240px;
  }
}

.subpage-accent {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.subpage-headline {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.subpage-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--gray-dark);
}

.subpage-intro-art {
  position: relative;
  min-height: 280px;
}

.subpage-intro-art .abstract-art {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
}

/* Sidebar + content layout */
.subpage-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 700px) {
  .subpage-body {
    grid-template-columns: 1fr;
  }
  .subpage-sidebar {
    position: static;
  }
}

.subpage-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color var(--duration-fast) var(--ease-out);
}

.sidebar-link:hover {
  color: var(--charcoal);
}

.sidebar-link.is-active {
  color: var(--gold);
  font-weight: 600;
}

.subpage-content {
  max-width: 720px;
}

.content-section {
  margin-bottom: 3rem;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section-title {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.content-section p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-dark);
}

.content-section .shift-block {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.content-section .shift-block .muted {
  color: var(--gray);
}

.vision-mission-lead {
  font-size: 1.05rem !important;
  color: var(--charcoal) !important;
}

/* Active nav link on subpages */
.main-nav a.nav-active {
  color: var(--gold);
  font-weight: 600;
}

.header-solid .main-nav a.nav-active {
  color: var(--gold);
}

/* ========== PRODUCT PAGES ========== */
.page-product .subpage-main {
  padding-top: calc(var(--header-height) + 2rem);
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0 4rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4rem;
}

@media (max-width: 700px) {
  .product-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .product-hero-visual {
    order: -1;
  }
}

.product-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--gold-muted);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.product-title {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

.product-tagline {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  color: var(--gray-dark);
  max-width: 500px;
}

.product-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 700px) {
  .product-ctas {
    justify-content: center;
  }
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.product-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon-large {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--gold-muted) 0%, var(--cream) 100%);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.product-logo-img img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* Product About Section */
.product-about {
  margin-bottom: 4rem;
}

.product-about-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .product-about-grid {
    grid-template-columns: 1fr;
  }
}

.product-about-main h2 {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
}

.product-about-main p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-dark);
}

.product-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.product-stat {
  display: flex;
  flex-direction: column;
}

.product-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.product-stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.product-about-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-info-card {
  padding: 1.25rem;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.product-info-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

.product-info-card p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* Product Brands (for Supply Innovation) */
.product-brands {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 600px) {
  .product-brands {
    grid-template-columns: 1fr;
  }
}

.product-brand {
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.product-brand h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.product-brand p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.brand-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: color var(--duration-fast);
}

.brand-link:hover {
  color: var(--gold);
}

/* Product Features (for Saaml) */
.product-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 700px) {
  .product-features {
    grid-template-columns: 1fr;
  }
}

.product-feature {
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.product-feature h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
}

.product-feature p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-dark);
}

/* Product Team Section */
.product-team {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.product-team .section-heading {
  margin-bottom: 0.5rem;
}

.product-team .section-sub {
  margin-bottom: 2.5rem;
}

.product-team .leadership-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 600px;
}

.leadership-grid-inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 500px;
  margin-top: 1.5rem;
}

.leadership-grid-inline .leader-card {
  padding: 1rem;
}

/* ========== LEGAL PAGES ========== */
.page-legal .page-hero {
  margin-bottom: 2rem;
}

.legal-content {
  max-width: 800px;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
}

.legal-section h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.legal-section p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-dark);
}

.legal-section ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-dark);
}

.legal-section a {
  color: var(--gold-dark);
  transition: color var(--duration-fast);
}

.legal-section a:hover {
  color: var(--gold);
}

.legal-section .contact-info {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.legal-section .contact-info p {
  margin: 0 0 0.35rem;
}

.legal-section .contact-info p:last-child {
  margin-bottom: 0;
}

/* ========== PAGE HERO (Subpages) ========== */
.page-hero {
  padding: 2rem 0 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}

.page-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--gold-muted);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.page-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.page-lead {
  margin: 0;
  font-size: 1.1rem;
  color: var(--gray-dark);
  max-width: 640px;
  line-height: 1.7;
}

/* ========== CONTENT BLOCKS ========== */
.content-block {
  margin-bottom: 4rem;
}

.content-block h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

.content-block .section-sub {
  margin-bottom: 2rem;
}

/* ========== INVESTORS PAGE ========== */
.thesis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .thesis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .thesis-grid {
    grid-template-columns: 1fr;
  }
}

.thesis-card {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.thesis-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px var(--gold-muted);
}

.thesis-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.thesis-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.thesis-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

/* Investor Grid */
.investor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.investor-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.investor-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px var(--gold-muted);
}

.investor-logo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-muted) 0%, var(--cream) 100%);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  overflow: hidden;
}

.investor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.logo-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.investor-info h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.investor-info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-dark);
}

/* Partner Grid */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.partner-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.partner-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px var(--gold-muted);
}

.partner-logo-large {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  overflow: hidden;
}

.partner-logo-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.partner-logo-large .logo-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--gray-dark) 100%);
  color: var(--white);
}

.partner-info h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.partner-type {
  margin: 0 0 0.75rem !important;
  font-size: 0.75rem !important;
  font-weight: 600;
  color: var(--gold-dark) !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.partner-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.metric-card {
  padding: 1.5rem;
  background: var(--charcoal);
  border-radius: 8px;
  text-align: center;
}

.metric-value {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* CTA Block */
.cta-block {
  margin-top: 4rem;
}

.cta-card {
  padding: 3rem;
  background: linear-gradient(135deg, var(--gold-muted) 0%, var(--cream) 100%);
  border-radius: 12px;
  text-align: center;
}

.cta-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  color: var(--charcoal);
}

.cta-card p {
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  color: var(--gray-dark);
  max-width: 480px;
}

/* ========== NEWS PAGE ========== */
.news-featured {
  margin-bottom: 4rem;
}

.news-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

@media (max-width: 800px) {
  .news-featured-card {
    grid-template-columns: 1fr;
  }
}

.news-featured-image {
  position: relative;
  min-height: 280px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--gray-dark) 100%);
}

.news-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
}

.news-featured-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-date {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.news-featured-content h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}

.news-featured-content p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* News Grid Full */
.news-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 700px) {
  .news-grid-full {
    grid-template-columns: 1fr;
  }
}

.news-card-full {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.news-card-full:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px var(--gold-muted);
}

.news-card-image {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold-muted) 0%, var(--cream) 100%);
  border-radius: 8px;
}

.news-card-content {
  flex: 1;
  min-width: 0;
}

.news-card-content .news-date {
  display: block;
  margin-bottom: 0.5rem;
}

.news-card-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}

.news-card-content p {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
