/* ═══════════════════════════════════════
   GREYSTONE STRATEGIC PARTNERS
   Website Stylesheet
   ═══════════════════════════════════════ */

:root {
  --navy-deep: #0A1220;
  --navy: #0F1C32;
  --navy-mid: #1B2A4A;
  --navy-light: #2C3E5A;
  --gold: #C5A55A;
  --gold-dark: #8A7A50;
  --gold-pale: #E8D9A8;
  --gold-wash: #F4EDD8;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --grey-100: #F5F4F0;
  --grey-200: #E8E6E0;
  --grey-400: #AAAAAA;
  --grey-600: #9CA3AF;
  --grey-800: #444444;
  --text-light: #D1D5DB;
  --text-muted: #8899AA;
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--navy-deep);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* ═══════════════════════════════════════
   LOGO ICON (reusable)
   ═══════════════════════════════════════ */
.bar {
  display: block;
  background: var(--gold);
  border-radius: 1px;
}
.bar-1 { opacity: 0.4; }
.bar-2 { opacity: 0.65; }
.bar-3 { opacity: 1; }
.bar-line {
  background: var(--gold);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: all 0.4s ease;
}

.nav.scrolled {
  padding: 14px 48px;
  background: rgba(10, 18, 32, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 165, 90, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-icon {
  position: relative;
  width: 44px;
  height: 50px;
}

.nav-logo-icon .bar-1 {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 11px;
  height: 16px;
}

.nav-logo-icon .bar-2 {
  position: absolute;
  bottom: 5px;
  left: 16px;
  width: 11px;
  height: 30px;
}

.nav-logo-icon .bar-3 {
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 11px;
  height: 44px;
}

.nav-logo-icon .bar-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-logo-name {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--white);
}

.nav-logo-sub {
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 4.5px;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy-deep) !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(10, 18, 32, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo-name { font-size: 13px; letter-spacing: 4px; }
  .nav-logo-sub { font-size: 6px; letter-spacing: 2.5px; }
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background:
    radial-gradient(ellipse at center, transparent 0%, var(--navy-deep) 75%),
    linear-gradient(180deg, transparent 60%, var(--navy-deep) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}

.hero-icon {
  position: relative;
  width: 60px;
  height: 70px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-icon .bar-1 {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 16px;
  height: 20px;
}

.hero-icon .bar-2 {
  position: absolute;
  bottom: 6px;
  left: 22px;
  width: 16px;
  height: 38px;
}

.hero-icon .bar-3 {
  position: absolute;
  bottom: 6px;
  right: 0;
  width: 16px;
  height: 56px;
}

.hero-icon .bar-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.hero-title {
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  line-height: 1.7;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-btn:hover {
  color: var(--gold-pale);
  transform: translateY(2px);
}

.hero-btn svg {
  animation: bobDown 2s ease-in-out infinite;
}

@keyframes bobDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .hero-icon { width: 44px; height: 52px; margin-bottom: 32px; }
  .hero-icon .bar-1 { width: 12px; height: 15px; }
  .hero-icon .bar-2 { width: 12px; height: 28px; left: 16px; }
  .hero-icon .bar-3 { width: 12px; height: 42px; }
}

/* ═══════════════════════════════════════
   SECTIONS (shared)
   ═══════════════════════════════════════ */
.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: 44px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-intro {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 64px;
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-title { font-size: 30px; }
  .section-intro { font-size: 15px; margin-bottom: 40px; }
}

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.services {
  background: var(--navy-deep);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: linear-gradient(145deg, rgba(27, 42, 74, 0.5), rgba(15, 28, 50, 0.8));
  border: 1px solid rgba(197, 165, 90, 0.08);
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  border-color: rgba(197, 165, 90, 0.2);
  transform: translateY(-4px);
  background: linear-gradient(145deg, rgba(27, 42, 74, 0.7), rgba(15, 28, 50, 0.9));
}

.service-card:hover::before {
  opacity: 1;
}

.service-number {
  font-size: 48px;
  font-weight: 200;
  color: rgba(197, 165, 90, 0.15);
  letter-spacing: 2px;
  margin-bottom: 16px;
  line-height: 1;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.service-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

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

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { padding: 32px 24px; }
}

/* ═══════════════════════════════════════
   INDUSTRIES
   ═══════════════════════════════════════ */
.industries {
  background: var(--navy);
  border-top: 1px solid rgba(197, 165, 90, 0.06);
  border-bottom: 1px solid rgba(197, 165, 90, 0.06);
}

.industries-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  margin-top: 48px;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 1px;
}

.industry-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .industries-row { gap: 16px 32px; }
  .industry-item { font-size: 14px; }
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about {
  background: var(--navy-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-left {
  position: sticky;
  top: 120px;
}

.about-right p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-lead {
  font-size: 18px !important;
  color: var(--white) !important;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(197, 165, 90, 0.15);
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-left { position: static; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .stat-number { font-size: 28px; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; gap: 24px; }
}

/* ═══════════════════════════════════════
   TEAM
   ═══════════════════════════════════════ */
.team {
  background: var(--navy);
  border-top: 1px solid rgba(197, 165, 90, 0.06);
}

.team-coming-soon {
  margin-top: 48px;
}

.team-placeholder {
  text-align: center;
  padding: 80px 40px;
  border: 1px solid rgba(197, 165, 90, 0.1);
  background: linear-gradient(145deg, rgba(27, 42, 74, 0.3), rgba(15, 28, 50, 0.5));
}

.team-icon {
  position: relative;
  width: 48px;
  height: 56px;
  margin: 0 auto 32px;
}

.team-icon .bar-1 {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 12px;
  height: 16px;
}

.team-icon .bar-2 {
  position: absolute;
  bottom: 5px;
  left: 18px;
  width: 12px;
  height: 30px;
}

.team-icon .bar-3 {
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 12px;
  height: 44px;
}

.team-icon .bar-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
}

.team-placeholder p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.team-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.team-link:hover {
  color: var(--gold-pale);
  border-color: var(--gold-pale);
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact {
  background: var(--navy-deep);
  border-top: 1px solid rgba(197, 165, 90, 0.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-item a {
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  background: rgba(27, 42, 74, 0.4);
  border: 1px solid rgba(197, 165, 90, 0.12);
  outline: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(27, 42, 74, 0.6);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.form-submit:hover {
  background: transparent;
  color: var(--gold);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  padding: 48px 0 32px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(197, 165, 90, 0.08);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  position: relative;
  width: 28px;
  height: 32px;
}

.footer-logo .bar-1 {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 7px;
  height: 10px;
}

.footer-logo .bar-2 {
  position: absolute;
  bottom: 4px;
  left: 10px;
  width: 7px;
  height: 18px;
}

.footer-logo .bar-3 {
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 7px;
  height: 26px;
}

.footer-logo .bar-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
}

.footer-name {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(197, 165, 90, 0.06);
}

.footer-bottom span {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-links { gap: 20px; }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger service cards */
.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }
.service-card:nth-child(5) { transition-delay: 0.4s; }
.service-card:nth-child(6) { transition-delay: 0.5s; }

.industry-item:nth-child(1) { transition-delay: 0s; }
.industry-item:nth-child(2) { transition-delay: 0.08s; }
.industry-item:nth-child(3) { transition-delay: 0.16s; }
.industry-item:nth-child(4) { transition-delay: 0.24s; }
.industry-item:nth-child(5) { transition-delay: 0.32s; }
.industry-item:nth-child(6) { transition-delay: 0.40s; }

/* ═══════════════════════════════════════
   NAV DROPDOWN
   ═══════════════════════════════════════ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(15, 28, 50, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 165, 90, 0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  color: var(--text-muted) !important;
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  color: var(--white) !important;
  background: rgba(197, 165, 90, 0.06);
}

/* ═══════════════════════════════════════
   CLIENTS
   ═══════════════════════════════════════ */
.clients {
  background: var(--navy-deep);
  border-top: 1px solid rgba(197, 165, 90, 0.06);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.client-card {
  padding: 40px 32px;
  border: 1px solid rgba(197, 165, 90, 0.08);
  background: linear-gradient(145deg, rgba(27, 42, 74, 0.3), rgba(15, 28, 50, 0.5));
  transition: all 0.4s ease;
  position: relative;
}

.client-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.client-card:hover {
  border-color: rgba(197, 165, 90, 0.18);
  transform: translateY(-4px);
}

.client-card:hover::after {
  opacity: 1;
}

.client-type {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.client-card h3 {
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.client-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.client-card:nth-child(1) { transition-delay: 0s; }
.client-card:nth-child(2) { transition-delay: 0.1s; }
.client-card:nth-child(3) { transition-delay: 0.15s; }

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

@media (max-width: 640px) {
  .clients-grid { grid-template-columns: 1fr; gap: 20px; }
  .client-card { padding: 32px 24px; }
}

/* ═══════════════════════════════════════
   OPERATING PRINCIPLES
   ═══════════════════════════════════════ */
.principles {
  background: var(--navy);
  border-top: 1px solid rgba(197, 165, 90, 0.06);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.principle-card {
  padding: 40px 32px;
  border-left: 2px solid rgba(197, 165, 90, 0.15);
  transition: all 0.4s ease;
}

.principle-card:hover {
  border-left-color: var(--gold);
}

.principle-number {
  font-size: 36px;
  font-weight: 200;
  color: rgba(197, 165, 90, 0.2);
  letter-spacing: 2px;
  margin-bottom: 12px;
  line-height: 1;
}

.principle-card h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.principle-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.principle-card:nth-child(1) { transition-delay: 0s; }
.principle-card:nth-child(2) { transition-delay: 0.08s; }
.principle-card:nth-child(3) { transition-delay: 0.16s; }
.principle-card:nth-child(4) { transition-delay: 0.24s; }
.principle-card:nth-child(5) { transition-delay: 0.32s; }
.principle-card:nth-child(6) { transition-delay: 0.40s; }

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

@media (max-width: 640px) {
  .principles-grid { grid-template-columns: 1fr; gap: 20px; }
  .principle-card { padding: 32px 24px; }
}
