/* ═══════════════════════════════════════════════════
   SIMORAH ADVISORY — Global Styles
   Brand: Deep Navy #0D1B2A | Gold #C9A84C | Cream #FAF7F2
   Fonts: Cormorant Garamond (serif) | Jost (sans)
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --deep-navy: #0D1B2A;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5E8C4;
  --cream: #FAF7F2;
  --warm-white: #FFFDF9;
  --charcoal: #2C3E50;
  --soft-gray: #8A9BB0;
  --light-border: rgba(201, 168, 76, 0.25);
  --nonprofit: #2A6049;
  --nonprofit-light: #EAF4EF;
  --business: #1A3A5C;
  --business-light: #E8EEF5;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Jost', 'Helvetica Neue', sans-serif;
  background: var(--cream);
  color: var(--deep-navy);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.25;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--gold-light); }

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--soft-gray);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--deep-navy);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 4px;
}

.dropdown-menu a {
  display: block;
  padding: 8px 24px;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--soft-gray);
}

.dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--deep-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 300;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--warm-white);
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--soft-gray);
  font-weight: 200;
  margin-bottom: 48px;
  letter-spacing: 0.5px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--deep-navy);
}

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

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--deep-navy);
}

.btn-dark {
  background: var(--deep-navy);
  color: var(--warm-white);
  border: 1px solid var(--light-border);
}

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

/* ── SECTIONS ── */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--deep-navy);
  color: var(--warm-white);
}

.section-cream {
  background: var(--cream);
}

.section-white {
  background: var(--warm-white);
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 300;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
  font-weight: 400;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--soft-gray);
  font-weight: 200;
  max-width: 640px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
  opacity: 0.5;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  gap: 32px;
}

.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--warm-white);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  padding: 48px 36px;
  transition: all 0.35s ease;
}

.card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.08);
  transform: translateY(-4px);
}

.card-dark {
  background: rgba(255,255,255,0.03);
  border-color: rgba(201, 168, 76, 0.12);
}

.card-dark:hover {
  background: rgba(255,255,255,0.06);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.card p {
  color: var(--soft-gray);
  font-weight: 200;
  line-height: 1.8;
}

.card .btn {
  margin-top: 24px;
}

/* ── ABOUT SECTION (Home) ── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-preview-text .section-label { text-align: left; }
.about-preview-text .section-title { text-align: left; }

.about-preview-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-preview-image .logo-large {
  width: 280px;
  height: 280px;
  background: var(--deep-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(13, 27, 42, 0.2);
}

.about-preview-image .logo-large img {
  width: 160px;
  height: 160px;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--deep-navy);
  padding: 80px 24px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--warm-white);
  margin-bottom: 12px;
  font-weight: 300;
}

.cta-band p {
  color: var(--soft-gray);
  font-weight: 200;
  margin-bottom: 32px;
}

/* ── ABOUT PAGE ── */
.page-hero {
  background: var(--deep-navy);
  padding: 140px 24px 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--warm-white);
  font-weight: 300;
}

.page-hero p {
  color: var(--soft-gray);
  font-weight: 200;
  margin-top: 12px;
  font-size: 1.05rem;
}

.bio-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
}

.bio-section p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 24px;
  color: var(--charcoal);
  font-weight: 300;
}

.bio-section .highlight {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 40px 0;
  line-height: 1.6;
}

/* ── SERVICES ── */
.service-card {
  padding: 48px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-card .service-for {
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.service-card ul {
  list-style: none;
  margin-top: 20px;
}

.service-card ul li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: var(--charcoal);
  font-weight: 300;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* ── INSIGHTS / BLOG ── */
.blog-card {
  padding: 0;
  overflow: hidden;
}

.blog-card-body {
  padding: 36px;
}

.blog-card .blog-tag {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 400;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.95rem;
}

/* ── RESOURCES ── */
.resource-card {
  text-align: center;
  padding: 56px 36px;
}

.resource-card .resource-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--charcoal);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 300;
  color: var(--charcoal);
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 2px;
  background: var(--warm-white);
  color: var(--deep-navy);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

/* ── FOOTER ── */
.footer {
  background: var(--deep-navy);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--soft-gray);
  font-size: 0.9rem;
  font-weight: 200;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--soft-gray);
  font-size: 0.9rem;
  font-weight: 200;
  transition: color 0.3s;
}

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

.footer-bottom {
  max-width: 1140px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--soft-gray);
  font-size: 0.82rem;
  font-weight: 200;
}

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial {
  background: var(--warm-white);
  border: 1px solid var(--light-border);
  border-radius: 4px;
  padding: 40px 36px;
  position: relative;
  transition: all 0.35s ease;
}

.testimonial:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.08);
}

.testimonial::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.testimonial blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 24px;
  padding-top: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author-info p:first-child {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--deep-navy);
}

.testimonial-author-info p:last-child {
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 300;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--deep-navy);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  }
  .nav-toggle { display: block; }
  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
  }
  .about-preview { grid-template-columns: 1fr; text-align: center; }
  .about-preview-text .section-label,
  .about-preview-text .section-title { text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
