/* ===================================
   cintyaramos.com — Shared Stylesheet
   =================================== */

/* --- Tokens --- */
:root {
  --navy: #0F1E3C;
  --navy-mid: #162040;
  --gold: #C9A96E;
  --ivory: #F5F0E8;
  --ivory-soft: #FAF7F2;
  --stone: #F0ECE4;
  --charcoal: #2A2A2A;
  --mid: #555555;
  --light: #7A7A7A;
  --serif: 'Playfair Display', serif;
  --sans: 'DM Sans', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

/* --- Reset & Base --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--ivory-soft);
  color: var(--charcoal);
  line-height: 1.6;
}

/* --- Navigation --- */
nav {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 72px;
  border-bottom: 1px solid rgba(201,169,110,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wordmark {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ivory);
  line-height: 1;
}
.nav-name a {
  color: inherit;
  text-decoration: none;
}
.nav-name span { color: var(--gold); }
.nav-tag {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245,240,232,0.56);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 34px;
  padding: 0;
  margin: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245,240,232,0.58);
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* --- Buttons --- */
.btn-gold,
.btn-outline,
.btn-outline-dark {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  padding: 14px 24px;
  transition: all 0.2s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.btn-gold:hover { transform: translateY(-1px); }
.btn-outline {
  color: rgba(245,240,232,0.84);
  border: 1px solid rgba(201,169,110,0.45);
}
.btn-outline:hover {
  color: var(--ivory);
  border-color: rgba(201,169,110,0.75);
}
.btn-outline-dark {
  border: 1px solid rgba(15,30,60,0.18);
  color: var(--navy);
}
.btn-outline-dark:hover {
  border-color: rgba(15,30,60,0.4);
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* --- Text Link --- */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--navy-mid);
  border-bottom: 3px solid var(--gold);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 22px;
  text-align: center;
  border-right: 1px solid rgba(201,169,110,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat-lbl {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245,240,232,0.46);
}

/* --- Section Utilities --- */
.section-eyebrow {
  display: block;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}
.section-heading {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.12;
  color: var(--navy);
}
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 28px;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: radial-gradient(circle at 86% 30%, rgba(201,169,110,0.08), transparent 28%), var(--navy);
  padding: 84px 56px 72px;
  color: var(--ivory);
}
.page-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.page-sub {
  max-width: 760px;
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(245,240,232,0.76);
  font-weight: 300;
}

/* --- Home Hero --- */
.hero {
  background: radial-gradient(circle at 85% 28%, rgba(201,169,110,0.1), transparent 28%), var(--navy);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 620px;
  overflow: hidden;
}
.hero-left {
  padding: 92px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 72px;
  bottom: 72px;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,169,110,0.04));
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero h1 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ivory);
  max-width: 720px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}
.hero-sub {
  max-width: 590px;
  margin: 0 0 38px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(245,240,232,0.76);
  font-weight: 300;
}
.ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-right {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 56px;
}
.hero-cta {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  padding: 14px 24px;
  border: 1px solid rgba(201,169,110,0.45);
  color: rgba(245,240,232,0.84);
}

/* --- Photo Components --- */
.photo-wrap {
  width: 100%;
  max-width: 380px;
  position: relative;
}
.photo-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,169,110,0.18);
  padding: 24px;
  position: relative;
}
.photo-card::after {
  content: '';
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201,169,110,0.22);
  z-index: -1;
}
.photo-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 1px solid rgba(201,169,110,0.22);
  background: linear-gradient(180deg, rgba(245,240,232,0.08), rgba(245,240,232,0.01));
}
.photo-caption {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(201,169,110,0.16);
}
.photo-caption strong,
.photo-caption-name {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ivory);
  margin-bottom: 4px;
}
.photo-caption span,
.photo-caption-title {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(201,169,110,0.72);
}
.photo-frame {
  background: rgba(15,30,60,0.02);
  border: 1px solid rgba(201,169,110,0.18);
  padding: 22px;
  position: relative;
}
.photo-frame::after {
  content: '';
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201,169,110,0.22);
  z-index: -1;
}
.photo-frame .photo-image {
  color: var(--navy);
}
.photo-frame .photo-caption-name {
  color: var(--navy);
}
.photo-frame .photo-caption-title {
  color: rgba(15,30,60,0.62);
}

/* --- Grid Layouts --- */
.intro-grid,
.cta-grid,
.bio-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.intro-label,
.bio-label,
.contact-label {
  display: block;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.intro-pull,
.contact-pull {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.22;
  color: var(--navy);
  font-style: italic;
  max-width: 380px;
}
.intro-rule,
.contact-rule {
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin-top: 24px;
}
.intro-right p,
.cta-right p,
.cta-copy p,
.contact-copy p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--mid);
  font-weight: 300;
}

/* --- Cards Grid --- */
.cards-grid,
.scope-grid,
.values-grid,
.creds-grid,
.contact-cards,
.capabilities-grid,
.examples-grid,
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Home page "What I Do" section: 2x2 layout for 4 cards */
.cards-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* --- Numbered Cards --- */
.exp-card,
.scope-card,
.value-card,
.contact-card,
.capability-card,
.example-card,
.case-card {
  background: var(--ivory-soft);
  padding: 30px 24px;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 12px 30px rgba(15,30,60,0.05);
}
.card-icon,
.scope-num,
.value-num,
.card-num,
.capability-num,
.example-num,
.case-num {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  color: rgba(201,169,110,0.34);
  margin-bottom: 16px;
  font-weight: 900;
}
.card-title,
.scope-title,
.value-title,
.capability-title,
.example-title,
.case-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}
.card-items,
.scope-copy,
.value-desc,
.card-copy,
.capability-copy,
.example-copy,
.case-copy {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
  font-weight: 300;
}
.card-label {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 10px;
}
.card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.card-link:hover { color: var(--gold); }

/* --- Credential Cards --- */
.cred-card {
  background: var(--ivory-soft);
  padding: 30px 24px;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 12px 30px rgba(15,30,60,0.05);
}
.cred-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 14px;
}
.cred-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--mid);
  font-weight: 300;
}
.cred-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--mid);
  font-weight: 300;
}

/* --- Capability Card Extras --- */
.capability-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--mid);
  font-weight: 300;
}

/* --- Role Cards (Experience) --- */
.role-card {
  background: var(--ivory-soft);
  padding: 36px 32px;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 12px 30px rgba(15,30,60,0.05);
  margin-bottom: 24px;
}
.role-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.role-org {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 6px;
}
.role-title {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy);
  margin: 0;
}
.role-dates {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--light);
  white-space: nowrap;
}
.role-copy {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 20px;
}
.role-bullets {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--mid);
  font-weight: 300;
}

/* --- Theme Cards (Experience) --- */
.theme-card {
  background: var(--ivory-soft);
  padding: 30px 24px;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 12px 30px rgba(15,30,60,0.05);
}
.theme-num {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  color: rgba(201,169,110,0.34);
  margin-bottom: 16px;
  font-weight: 900;
}
.theme-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}
.theme-copy {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
  font-weight: 300;
}
.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- CTA Sections --- */
.cta-heading {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.16;
  color: var(--navy);
  max-width: 420px;
}

/* --- Bio Section (About) --- */
.bio-photo-col {
  position: sticky;
  top: 96px;
}
.bio-heading {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
  color: var(--navy);
}
.bio-text-col p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--mid);
  font-weight: 300;
}
.bio-text-col strong {
  color: var(--charcoal);
  font-weight: 500;
}

/* --- Experience Page Hero Variant --- */
.page-hero--experience {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

/* --- Section Backgrounds --- */
.section-ivory-soft { padding: 92px 56px; background: var(--ivory-soft); }
.section-stone { padding: 92px 56px; background: var(--stone); }
.section-ivory { padding: 92px 56px; background: var(--ivory); }

/* --- Footer --- */
footer {
  background: #080F1E;
  border-top: 2px solid var(--gold);
  padding: 56px 56px 28px;
  color: rgba(245,240,232,0.4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 40px;
  padding-bottom: 28px;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 6px;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand-tag,
.footer-heading,
.footer-bottom p,
.footer-social a {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.footer-brand-tag {
  font-size: 8px;
  color: rgba(201,169,110,0.45);
  margin-bottom: 16px;
}
.footer-brand-copy {
  font-size: 13px;
  line-height: 1.8;
  max-width: 280px;
  color: rgba(245,240,232,0.34);
}
.footer-heading {
  font-size: 9px;
  color: rgba(201,169,110,0.58);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  text-decoration: none;
  color: rgba(245,240,232,0.42);
  font-size: 13px;
  transition: color 0.2s ease;
}
.footer-col a:hover,
.footer-social a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
  font-size: 10px;
  color: rgba(245,240,232,0.24);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  text-decoration: none;
  font-size: 10px;
  color: rgba(245,240,232,0.32);
}

/* --- Responsive: Tablet --- */
@media (max-width: 1100px) {
  .hero,
  .intro-grid,
  .cta-grid,
  .bio-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid,
  .scope-grid,
  .values-grid,
  .creds-grid,
  .contact-cards,
  .capabilities-grid,
  .examples-grid,
  .cases-grid,
  .themes-grid {
    grid-template-columns: 1fr;
  }
  .hero-right { padding-top: 0; }
  .bio-photo-col { position: static; }
  .photo-frame, .photo-wrap { max-width: 320px; }
}

/* --- Responsive: Small tablet / large phone --- */
@media (max-width: 820px) {
  nav {
    padding: 0 20px;
    height: auto;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .nav-wordmark { align-items: center; text-align: center; }
  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-links a { font-size: 10px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 48px 24px 32px;
    text-align: center;
    align-items: center;
  }
  .hero-left::before { display: none; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-sub { text-align: center; font-size: 15px; }
  .hero-eyebrow { text-align: center; }
  .ctas { justify-content: center; }
  .hero-right {
    padding: 0 24px 48px;
    justify-content: center;
  }
  .photo-wrap { max-width: 280px; }

  .page-hero {
    padding: 48px 24px 40px;
  }
  .page-hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .page-sub { font-size: 15px; }

  .section-ivory-soft,
  .section-stone,
  .section-ivory {
    padding: 48px 24px;
  }
  footer { padding: 36px 24px 20px; }

  .intro-grid,
  .cta-grid,
  .bio-grid,
  .contact-grid { gap: 32px; }

  .intro-pull,
  .contact-pull { font-size: clamp(24px, 5vw, 32px); }

  .section-heading { font-size: clamp(24px, 5vw, 32px); }
  .cta-heading { font-size: clamp(24px, 5vw, 32px); }
  .bio-heading { font-size: clamp(22px, 4vw, 30px); }

  .role-card { padding: 24px 20px; }
  .role-title { font-size: 20px; }
  .role-copy { font-size: 14px; }
  .role-bullets { font-size: 13px; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 24px; }

  .section-header { flex-direction: column; align-items: flex-start; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* --- Responsive: Phone --- */
@media (max-width: 480px) {
  .hero-left { padding: 36px 20px 24px; }
  .hero-right { padding: 0 20px 36px; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; }

  .page-hero { padding: 36px 20px 32px; }
  .page-hero h1 { font-size: 28px; }
  .page-sub { font-size: 14px; }

  .section-ivory-soft,
  .section-stone,
  .section-ivory { padding: 36px 20px; }
  footer { padding: 28px 20px 16px; }

  nav { padding: 10px 16px; }
  .nav-name { font-size: 16px; }
  .nav-tag { font-size: 7px; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 9px; letter-spacing: 0.1em; }

  .btn-gold, .btn-outline, .btn-outline-dark {
    font-size: 10px;
    padding: 12px 20px;
  }
  .ctas { flex-direction: column; align-items: center; }

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 18px 12px; }
  .stat-num { font-size: 20px; }
  .stat-lbl { font-size: 7px; }

  .photo-wrap, .photo-frame { max-width: 240px; }

  .exp-card, .scope-card, .value-card, .contact-card,
  .capability-card, .example-card, .case-card,
  .cred-card, .theme-card, .role-card {
    padding: 24px 18px;
  }
  .card-icon, .scope-num, .value-num, .card-num,
  .capability-num, .example-num, .case-num, .theme-num {
    font-size: 32px;
  }
  .card-title, .scope-title, .value-title,
  .capability-title, .example-title, .case-title, .theme-title {
    font-size: 17px;
  }

  .hero-cta { font-size: 10px; padding: 12px 20px; }

  .intro-right p, .cta-right p, .cta-copy p, .contact-copy p {
    font-size: 14px;
  }
  .bio-text-col p { font-size: 14px; }

  .text-link { font-size: 11px; }
}
