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

:root {
  --ink:   #1a1a2e;
  --slate: #2d3561;
  --teal:  #0f7173;
  --cream: #f5f0e8;
  --gold:  #c9a84c;
  --mist:  #e8edf2;
  --serif: Georgia, 'Times New Roman', Times, serif;
  --mono:  'Courier New', Courier, monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--serif);
  background-color: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ===== HEADER ===== */

header {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--ink);
  overflow: hidden;
}

.grid-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

.diagonal-accent {
  position: absolute;
  top: 0; right: -10%;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--slate) 0%, var(--teal) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.55;
}

nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.wordmark {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.nav-badge {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: rgba(245,240,232,0.4);
  border: 1px solid rgba(245,240,232,0.15);
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
}

.hero {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 6rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: normal;
  font-style: normal;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.15s ease both;
}

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

.hero-sub {
  font-size: 1.2rem;
  font-weight: normal;
  color: rgba(245,240,232,0.65);
  line-height: 1.75;
  max-width: 540px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-line {
  width: 60px;
  height: 1px;
  background-color: var(--gold);
  margin: 2.5rem 0;
  animation: fadeUp 0.8s 0.45s ease both;
}

.hero-state {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: rgba(245,240,232,0.28);
  text-transform: uppercase;
  margin-top: 2rem;
  animation: fadeUp 0.8s 0.6s ease both;
}

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

/* ===== ABOUT ===== */

.about {
  padding: 6rem 4rem 3rem;
  background-color: var(--cream);
}

.section-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.about p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #444444;
  max-width: 640px;
}

/* ===== MISSION & VISION ===== */

.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background-color: var(--ink);
}

.mv-block {
  flex: 1 1 300px;
  padding: 5rem 4rem;
  border-right: 1px solid rgba(201,168,76,0.12);
}

.mv-block:last-child {
  border-right: none;
}

.mv-block .section-label {
  color: rgba(201,168,76,0.7);
  margin-bottom: 1.25rem;
}

.mv-block p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(245,240,232,0.65);
  max-width: 520px;
}

/* ===== OBJECTIVES, BELIEFS & VALUES ===== */

.obv {
  padding: 6rem 4rem;
  background-color: var(--cream);
}

.obv h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: normal;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 4rem;
}

.obv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.obv-col {
  flex: 1 1 220px;
}

.obv-col h3 {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(15,113,115,0.25);
}

.obv-col ul {
  list-style: none;
  padding: 0;
}

.obv-col ul li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444444;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-left: 1rem;
  position: relative;
}

.obv-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--gold);
}

.obv-col ul li:last-child {
  border-bottom: none;
}

@media (max-width: 640px) {
  .mv-block      { padding: 3rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(201,168,76,0.12); }
  .mv-block:last-child { border-bottom: none; }
  .obv           { padding: 4rem 1.5rem; }
}

/* ===== SERVICES ===== */

.services {
  padding: 6rem 4rem;
  background-color: var(--ink);
}

.services .section-label {
  color: rgba(201,168,76,0.7);
}

.services h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: normal;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 4rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.service-card {
  flex: 1 1 260px;
  background-color: rgba(245,240,232,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background-color: var(--gold);
  transition: height 0.4s ease;
}

.service-card:hover {
  background-color: rgba(245,240,232,0.07);
}

.service-card:hover::before {
  height: 100%;
}

.card-num {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.45rem;
  font-weight: normal;
  margin-bottom: 1rem;
  color: var(--cream);
  line-height: 1.3;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245,240,232,0.5);
}

/* ===== COMING SOON ===== */

.coming-soon {
  background-color: var(--mist);
  text-align: center;
  padding: 5rem 4rem;
}

.coming-soon-box {
  display: inline-block;
  border: 1px solid rgba(15,113,115,0.3);
  background-color: #ffffff;
  padding: 3rem 4rem;
  max-width: 600px;
  position: relative;
}

.coming-soon-box::before,
.coming-soon-box::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
}

.coming-soon-box::before {
  top: -2px; left: -2px;
  border-width: 2px 0 0 2px;
}

.coming-soon-box::after {
  bottom: -2px; right: -2px;
  border-width: 0 2px 2px 0;
}

.status-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--teal);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--teal);
  margin-right: 10px;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.65); }
}

.coming-soon-box h2 {
  font-size: 2rem;
  font-weight: normal;
  color: var(--ink);
  margin-bottom: 1rem;
}

.coming-soon-box p {
  font-size: 1.05rem;
  color: #666666;
  line-height: 1.8;
}

/* ===== FOOTER ===== */

footer {
  background-color: var(--ink);
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

footer .wordmark {
  color: var(--gold);
}

footer p {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: rgba(245,240,232,0.25);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 640px) {
  nav              { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero            { padding: 2.5rem 1.5rem 4rem; }
  .about           { padding: 4rem 1.5rem; }
  .services        { padding: 4rem 1.5rem; }
  .coming-soon     { padding: 3rem 1.5rem; }
  .coming-soon-box { padding: 2rem 1.5rem; }
  footer           { padding: 2rem 1.5rem; }
}


/* Hero principles: larger and inline */
.hero-principles,
.hero-tags,
.hero-values {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.hero-principles .separator,
.hero-tags .separator,
.hero-values .separator {
  opacity: 0.8;
}

@media (max-width: 640px) {
  .hero-principles,
  .hero-tags,
  .hero-values {
    font-size: 0.9rem;
    gap: 0.5rem;
  }
}


/* Improve spacing before support cards */
.support-intro,
.how-support-intro,
.support-section > p:first-of-type {
  margin-bottom: 3rem !important;
}

/* Larger headings for support items */
.support-card h3,
.service-card h3,
.offer-card h3,
.feature-card h3 {
  font-size: 1.7rem !important;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

/* Larger body text under support headings */
.support-card p,
.service-card p,
.offer-card p,
.feature-card p {
  font-size: 1.08rem !important;
  line-height: 1.85;
}


/* =========================================
   Shared Secondary Pages
   ========================================= */

.back-home-btn {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.9rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.back-home-btn:hover {
  background-color: var(--gold);
  color: var(--cream);
}

.secondary-header {
  padding: 2rem 4rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.secondary-header .wordmark {
  color: var(--gold);
  text-decoration: none;
}

@media (max-width: 640px) {
  .secondary-header {
    padding: 1.5rem;
  }

  .back-home-btn {
    width: 100%;
    text-align: center;
  }
}


/* =========================================
   Final approved refinements
   ========================================= */

/* Keep the hero compact and readable. */
.hero h1 {
  font-size: clamp(1.65rem, 3.1vw, 2.75rem);
  line-height: 1.14;
  max-width: 820px;
  margin-bottom: 1.25rem;
}

/* Present the three principles as one prominent horizontal statement. */
.hero-principles {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 2rem;
  color: var(--gold);
  font-family: var(--mono);
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.hero-principles .principle-dot {
  opacity: 0.78;
}

/* Tighten the transition from Our Philosophy to Our Principles. */
#philosophy {
  padding-bottom: 2.25rem;
}

#principles {
  padding-top: 2.75rem;
}

.about p + p {
  margin-top: 1.15rem;
}

/* Create clear separation before the four profession-support items. */
#support .support-intro {
  max-width: 760px;
  margin-bottom: 3.25rem;
}

/* Make the four support headings easier to scan. */
#support .obv-col h3 {
  font-size: 0.86rem;
  line-height: 1.5;
  letter-spacing: 0.16em;
  margin-bottom: 1.35rem;
}

#support .obv-col p {
  font-size: 1.08rem;
  line-height: 1.85;
}

/* Responsible AI page navigation. */
.back-home-btn--hero {
  align-self: flex-start;
  margin-top: 2.5rem;
  border-color: var(--gold);
  color: var(--cream);
}

.back-home-btn--hero:hover {
  color: var(--ink);
}

.secondary-page-nav {
  padding: 0 4rem 5rem;
  background-color: var(--cream);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(1.55rem, 7.2vw, 2.2rem);
  }

  .hero-principles {
    gap: 0.45rem;
    font-size: 0.82rem;
    letter-spacing: 0.035em;
  }

  #philosophy {
    padding-bottom: 2rem;
  }

  #principles {
    padding-top: 2rem;
  }

  #support .support-intro {
    margin-bottom: 2.5rem;
  }

  .secondary-page-nav {
    padding: 0 1.5rem 4rem;
  }
}

/* =========================================
   Compact vertical rhythm — approved revision
   ========================================= */

/* Remove the forced full-screen hero and tighten its internal spacing. */
header {
  min-height: auto;
}

.hero {
  padding: 3rem 4rem 3.5rem;
}

.hero-eyebrow {
  margin-bottom: 1.15rem;
}

.hero h1 {
  margin-bottom: 0.55rem;
}

.hero-principles {
  margin: 0 0 1.1rem;
}

.hero-line {
  margin: 1.1rem 0;
}

/* Tighten the transition from the hero into Our Philosophy. */
#philosophy {
  padding-top: 3.25rem;
  padding-bottom: 1.75rem;
}

/* Use the hero's gold rule and heading serif for the seven defining statements only. */
.principle-statement {
  max-width: 650px;
  margin: 2rem 0 1.75rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 1.45rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.35;
  text-align: left;
  color: var(--ink);
}

.principle-statement::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--gold);
  margin-bottom: 1.25rem;
}

#principles .principle-statement,
#support .principle-statement {
  margin-top: 1.5rem;
}

/* Tighten Our Philosophy into Our Principles. */
#principles {
  padding-top: 1.75rem;
  padding-bottom: 3.25rem;
}

#principles h2 {
  margin-bottom: 2rem;
}

/* Tighten Our Principles into Who We Serve. */
#who-we-serve .mv-block {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

#who-we-serve .mv-block h2 {
  margin-bottom: 1.15rem;
}

#who-we-serve .mv-block .section-label {
  margin-bottom: 0.85rem;
}

/* Tighten Who We Serve into How We Support the Profession. */
#support {
  padding-top: 3.25rem;
  padding-bottom: 3.5rem;
}

#support .section-label {
  margin-bottom: 0.9rem;
}

#support h2 {
  margin-bottom: 1.35rem;
}

#support .support-intro {
  margin-bottom: 2.5rem;
}

/* Tighten How We Support the Profession into Our Services. */
#services {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

#services h2 {
  margin-bottom: 2.5rem;
}

/* Tighten Our Services into Responsible AI. */
#responsible-ai {
  padding-top: 3.25rem;
  padding-bottom: 2.25rem;
}

#responsible-ai .section-label {
  margin-bottom: 0.9rem;
}

#responsible-ai h2 {
  margin-bottom: 1.15rem;
}

#responsible-ai p:last-child {
  margin-top: 1.2rem;
}

/* Tighten Responsible AI into Looking Ahead. */
#looking-ahead {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (max-width: 640px) {
  .hero {
    padding: 2.25rem 1.5rem 2.75rem;
  }

  .hero h1 {
    margin-bottom: 0.5rem;
  }

  .hero-principles {
    margin-bottom: 0.9rem;
  }

  .hero-line {
    margin: 0.9rem 0;
  }

  #philosophy,
  #principles,
  #support,
  #services,
  #responsible-ai,
  #looking-ahead {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  #philosophy {
    padding-top: 2.75rem;
    padding-bottom: 1.5rem;
  }

  #principles {
    padding-top: 1.5rem;
    padding-bottom: 2.75rem;
  }

  #who-we-serve .mv-block {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  #support,
  #services {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  #responsible-ai {
    padding-top: 2.75rem;
    padding-bottom: 2rem;
  }

  #looking-ahead {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}


/* Looking Ahead redesigned as a standard content section */
.coming-soon{
  background: var(--cream) !important;
  padding: 6rem 4rem !important;
  text-align:left !important;
}
.coming-soon-box{
  display:block !important;
  max-width:700px !important;
  padding:0 !important;
  border:none !important;
  background:transparent !important;
  box-shadow:none !important;
}
.coming-soon-box::before,
.coming-soon-box::after{
  display:none !important;
}
.status-label{
  justify-content:flex-start !important;
  margin-bottom:1rem !important;
}

/* Change 05: tighten Who We Serve spacing */
.who-we-serve,.audience-section{padding-top:3.2rem!important;padding-bottom:3.2rem!important;}
.who-we-serve h2,.audience-section h2{margin-bottom:.5rem!important;}
.who-we-serve h3,.audience-section h3{margin-bottom:.75rem!important;}
.who-we-serve p:first-of-type,.audience-section p:first-of-type{margin-top:0!important;}
/* Keep the Thoughtful Decision-Making statement flush with its supporting paragraph. */
#support .principle-statement--flush {
  margin-bottom: 0;
}



/* Change 12: align the four support headings and remove statement-rule spacing. */
#support > .section-label {
  margin-bottom: 1.35rem;
}

#support .obv-col h3 {
  display: flex;
  align-items: flex-end;
  min-height: 3.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  line-height: 1.45;
}

#support .obv-col p + p {
  margin-top: 0;
}

@media (max-width: 640px) {
  #support .obv-col h3 {
    min-height: 0;
  }
}


/* Change 15: remove gold rules from principle cards and tighten final homepage spacing. */
#principles .principle-statement::before {
  display: none;
}

#principles .principle-statement {
  margin-top: 0;
}

#who-we-serve .mv-block > .section-label + p {
  margin-top: 0;
}

#responsible-ai {
  padding-bottom: 3rem;
}

#responsible-ai p:last-child {
  margin-bottom: 0;
}

/* Change 17: strengthen principle-statement hierarchy and add breathing room between major homepage sections. */
.principle-statement {
  font-size: clamp(1.5rem, 2.3vw, 1.6rem);
}

main > section {
  margin-top: 1.25rem;
}

@media (max-width: 640px) {
  .principle-statement {
    font-size: 1.5rem;
  }

  main > section {
    margin-top: 0.75rem;
  }
}

/* Change 18: mobile-only hero refinements. */
@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    margin-bottom: 0;
  }

  .hero h1 .hero-title-line {
    display: block;
    white-space: nowrap;
  }

  .hero-principles {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-top: 0;
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    line-height: 1.35;
  }

  .hero-principles .principle-dot {
    display: none;
  }

  .hero-sub {
    width: 92%;
    max-width: 92%;
  }
}
