/* ============================================================
   DARA STRATEGIES — Stylesheet
   ============================================================ */


/* ── RESET & BASE ── */

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

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

:root {
  --ivory:      #f5f0e6;
  --ivory-alt:  #ede8da;
  --ivory-deep: #e0d8c8;
  --forest:     #4a6b42;
  --forest-dk:  #3a5432;
  --forest-lt:  #edf3eb;
  --gold:       #c4a96a;
  --ink:        #1a1710;
  --text:       #2e2a22;
  --muted:      #7a7060;
  --stone:      #cdc5b4;
  --white:      #fdfaf5;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--text);
  font-weight: 300;
  overflow-x: hidden;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* ── NAV ── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  transition: all 0.4s;
}

nav.scrolled {
  background: rgba(245, 240, 230, 0.97);
  backdrop-filter: blur(14px);
  padding: 14px 60px;
  border-bottom: 1px solid var(--ivory-deep);
}

.nav-logo img {
  height: 60px;
  width: auto;
  display: block;
}

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

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

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

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

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

.nav-li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-li svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  opacity: 0.6;
}

.nav-li:hover {
  color: var(--forest);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--muted);
  transition: all 0.3s;
}

.close-nav {
  display: none;
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
}

@media (max-width: 768px) {
  .close-nav { display: block; }
}


/* ── HERO ── */

.hero {
  min-height: 100vh;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-main {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-rule-top {
  position: absolute;
  top: 90px;
  left: 60px;
  right: 60px;
  /* height: 1px; */
  height: 0px;
  background: var(--stone);
}

.hero-rule-bot {
  position: absolute;
  bottom: 0;
  left: 60px;
  right: 60px;
  height: 1px;
  background: var(--stone);
}

.hero-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 60px 60px;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.hero-eyebrow span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--forest);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 1.07;
  color: var(--ink);
  margin-bottom: 0;
}

.hero-title em {
  font-style: italic;
  color: var(--forest);
}

.hero-rule-mid {
  width: 36px;
  height: 1px;
  background: var(--forest);
  margin: 28px auto;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s;
}

.hero-cta::after {
  content: '';
  display: block;
  width: 34px;
  height: 1px;
  background: var(--forest);
  transition: width 0.4s;
}

.hero-cta:hover {
  color: var(--forest);
}

.hero-cta:hover::after {
  width: 56px;
}

.hero-cta-row {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-cta-primary {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--forest);
  text-decoration: none;
  padding: 13px 28px;
  transition: background 0.3s;
}

.hero-cta-primary:hover {
  background: var(--forest-dk);
}


/* ── PILLAR BAR ── */

.pillars {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  border-top: 1px solid var(--stone);
}

.pillar {
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-div {
  background: var(--stone);
}

.pillar-head {
  display: flex;
  align-items: center;
  gap: 9px;
}

.pillar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pillar-name {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.pillar-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.45;
}


/* ── SHARED SECTION STYLES ── */

section {
  position: relative;
}

.sec {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 60px;
}

.sec-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sec-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--forest);
}


/* ── ABOUT ── */

#about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 22px;
}

.about-heading em {
  font-style: italic;
  color: var(--forest);
}

.about-body {
  font-size: 15px;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 16px;
}

.about-vis {
  position: relative;
  height: 420px;
}

.vis-a {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 56%;
  background: var(--forest);
  display: flex;
  align-items: flex-end;
  padding: 24px 26px;
}

.vis-a-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 230, 0.82);
  line-height: 1.4;
}

.vis-b {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54%;
  height: 52%;
  background: var(--ivory-alt);
  border: 1px solid var(--ivory-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.vis-b-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 5px;
}

.vis-b-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.vis-dot {
  position: absolute;
  bottom: 33%;
  right: 56%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vis-dot svg {
  width: 19px;
  height: 19px;
  stroke: white;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ── SERVICES ── */

#services {
  padding: 120px 0;
  background: var(--ivory);
}

.svc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 56px;
}

.svc-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}

.svc-heading em {
  font-style: italic;
  color: var(--forest);
}

.svc-intro {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  padding-top: 6px;
}

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

.svc-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest);
  transition: width 0.5s;
}

.svc-card:hover {
  background: var(--forest-lt);
}

.svc-card:hover::after {
  width: 100%;
}

.svc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-bottom: 16px;
  display: block;
}

.dot-c { background: var(--forest); }
.dot-r { background: var(--gold); }
.dot-t { background: var(--stone); }

.svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--stone);
  letter-spacing: 0.1em;
  margin-bottom: 13px;
  display: block;
}

.svc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 11px;
}

.svc-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}

.svc-legend {
  display: flex;
  gap: 24px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--ivory-deep);
}

.leg {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.leg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}


/* ── PERSPECTIVES ── */

#perspectives {
  padding: 120px 0;
  background: var(--ivory-alt);
}

.persp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 56px;
}

.persp-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}

.persp-heading em {
  font-style: italic;
  color: var(--forest);
}

.persp-intro {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  padding-top: 6px;
}

.persp-grid {
  display: flex;
  flex-direction: row;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.persp-grid::-webkit-scrollbar { display: none; }

.persp-card {
  scroll-snap-align: start;
  flex: 0 0 340px;
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  position: relative;
  transition: background 0.3s;
  text-decoration: none;
  cursor: pointer;
}

.persp-card:hover {
  background: var(--forest-lt);
}

.persp-card-featured {
  background: var(--forest);
}

.persp-card-featured:hover {
  background: var(--forest-dk);
}

.persp-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.persp-tag {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid rgba(74, 107, 66, 0.28);
  padding: 3px 9px;
}

.persp-tag-featured {
  color: rgba(245, 240, 230, 0.65);
  border-color: rgba(245, 240, 230, 0.2);
}

.persp-tag-transformation {
  color: var(--muted);
  border-color: rgba(122, 112, 96, 0.28);
}

a.persp-card {
  color: inherit;
}

.persp-date {
  font-size: 9px;
  color: var(--stone);
}

.persp-date-featured {
  color: rgba(245, 240, 230, 0.35);
}

.persp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.35;
}

.persp-title-featured {
  color: rgba(245, 240, 230, 0.92);
}

.persp-excerpt {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 12px;
}

.persp-excerpt-featured {
  color: rgba(245, 240, 230, 0.5);
}

.persp-read {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
}

.persp-read::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--forest);
  transition: width 0.3s;
}

.persp-card:hover .persp-read::after {
  width: 36px;
}

.persp-read-featured {
  color: rgba(245, 240, 230, 0.6);
}

.persp-read-featured::after {
  background: rgba(245, 240, 230, 0.4);
}


/* ── PHILOSOPHY ── */

#philosophy {
  padding: 120px 0;
  background: var(--forest);
  overflow: hidden;
  position: relative;
}

.phil-bg {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 260px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.phil-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.phil-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(196, 169, 106, 0.8);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.phil-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(196, 169, 106, 0.7);
}

.phil-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 26px;
}

.phil-heading em {
  font-style: italic;
  color: rgba(245, 240, 230, 0.6);
}

.phil-body {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(245, 240, 230, 0.45);
  margin-bottom: 13px;
}

.phil-pillar {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 20px;
}

.phil-pillar:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.phil-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: rgba(196, 169, 106, 0.65);
  flex-shrink: 0;
  padding-top: 2px;
}

.phil-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--ivory);
  margin-bottom: 4px;
}

.phil-p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.35);
}


/* ── TEAM ── */

#team {
  padding: 120px 0;
  background: var(--ivory-alt);
}

.team-header {
  margin-bottom: 56px;
}

.team-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}

.team-heading em {
  font-style: italic;
  color: var(--forest);
}

.team-narrative {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 680px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.team-card {
  background: var(--white);
  padding: 44px 38px;
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.team-avatar-mono {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 230, 0.55);
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 2px;
}

.team-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  display: block;
  margin-bottom: 3px;
}

.team-li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-top: 7px;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.team-li svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  opacity: 0.5;
}

.team-li:hover {
  color: var(--forest);
}

.team-bio {
  font-size: 15px;
  line-height: 1.88;
  color: var(--muted);
  margin-bottom: 13px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 16px;
}

.team-tag {
  padding: 5px 12px;
  border: 1px solid var(--ivory-deep);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ── PARTNERSHIP (SCLS) ── */

#partnership {
  padding: 80px 0;
  background: var(--ivory-deep);
  border-top: 1px solid var(--stone);
}

.partnership-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: center;
}

.partnership-label {
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.partnership-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--muted);
}

.partnership-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
}

.partnership-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 20px;
}

.partnership-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  transition: gap 0.3s;
}

.partnership-link::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--forest);
  transition: width 0.3s;
}

.partnership-link:hover {
  gap: 14px;
}

.partnership-link:hover::after {
  width: 36px;
}


/* ── WHO WE WORK WITH ── */

#proof {
  padding: 100px 0;
  background: var(--white);
}

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

.proof-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}

.proof-heading em {
  font-style: italic;
  color: var(--forest);
}

.proof-sub {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}

.proof-card {
  background: var(--ivory);
  padding: 36px 32px;
}

.proof-card-accent {
  background: var(--forest);
}

.proof-category {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-category::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--forest);
}

.proof-category-light {
  color: rgba(245, 240, 230, 0.55);
}

.proof-category-light::before {
  background: rgba(245, 240, 230, 0.3);
}

.proof-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 12px;
}

.proof-title-light {
  color: rgba(245, 240, 230, 0.9);
}

.proof-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

.proof-desc-light {
  color: rgba(245, 240, 230, 0.5);
}

.proof-bottom {
  background: var(--ivory-alt);
  padding: 28px 32px;
  border-top: 1px solid var(--ivory-deep);
}

.proof-bottom-text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}


/* ── CONTACT ── */

#contact {
  padding: 120px 0;
  background: var(--white);
}

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

.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}

.contact-heading em {
  font-style: italic;
  color: var(--forest);
}

.contact-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 40px;
}

.contact-detail {
  margin-bottom: 18px;
}

.detail-lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 4px;
  display: block;
}

.detail-val {
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.detail-val:hover {
  color: var(--forest);
}

.form-f {
  border-bottom: 1px solid var(--stone);
  padding: 14px 0;
  position: relative;
}

.form-f label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 5px;
}

.form-f input,
.form-f textarea,
.form-f select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  resize: none;
  appearance: none;
}

.form-f textarea {
  height: 64px;
}

.form-f input::placeholder,
.form-f textarea::placeholder {
  color: var(--stone);
}

.form-f::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--forest);
  transition: width 0.4s;
}

.form-f:focus-within::after {
  width: 100%;
}

.form-submit {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: var(--forest);
  color: var(--ivory);
  border: none;
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit::after {
  content: '→';
  font-size: 13px;
  transition: transform 0.3s;
}

.form-submit:hover {
  background: var(--forest-dk);
}

.form-submit:hover::after {
  transform: translateX(4px);
}


/* ── FOOTER ── */

footer {
  background: var(--ink);
  padding: 36px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.28);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: rgba(196, 169, 106, 0.75);
}

.footer-li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.28);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-li svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.footer-li:hover {
  color: rgba(196, 169, 106, 0.75);
}

.footer-copy {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 230, 0.18);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.2);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: rgba(196, 169, 106, 0.6);
}


/* ── ANIMATIONS ── */

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

@keyframes fadeIn {
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── BLOG POST ── */

.post-hero {
  padding: 160px 60px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.3s;
}

.post-back:hover { color: var(--forest); }

.post-back::before {
  content: '←';
  font-size: 14px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.post-tag {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid rgba(74, 107, 66, 0.28);
  padding: 3px 9px;
}

.post-date {
  font-size: 9px;
  color: var(--stone);
  letter-spacing: 0.1em;
}

.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}

.post-title em {
  font-style: italic;
  font-weight: 300;
}

.post-lede {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  border-left: 2px solid var(--forest);
  padding-left: 20px;
  margin-bottom: 0;
}

.post-rule {
  width: 48px;
  height: 1px;
  background: var(--stone);
  margin: 56px auto;
}

.post-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 60px 100px;
}

.post-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 300;
}

.post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin: 48px 0 16px;
  line-height: 1.25;
}

.post-body h2 em {
  font-style: italic;
}

.post-body blockquote {
  border-left: 2px solid var(--forest);
  padding-left: 20px;
  margin: 36px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  font-style: italic;
}

.post-footer {
  background: var(--ivory-alt);
  padding: 48px 60px;
  text-align: center;
}

.post-footer-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.post-footer-cta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  border: 1px solid rgba(74, 107, 66, 0.4);
  padding: 12px 28px;
  margin-top: 16px;
  transition: all 0.3s;
}

.post-footer-cta:hover {
  background: var(--forest);
  color: var(--white);
}

@media (max-width: 768px) {
  .post-hero { padding: 120px 24px 56px; }
  .post-body { padding: 0 24px 64px; }
  .post-footer { padding: 40px 24px; }
  .post-lede { font-size: 16px; }
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

.h-anim-1 { opacity: 0; animation: fadeUp 0.9s 0.2s forwards; }
.h-anim-2 { opacity: 0; animation: fadeUp 0.9s 0.4s forwards; }
.h-anim-3 { opacity: 0; animation: fadeUp 0.9s 0.6s forwards; }
.h-anim-4 { opacity: 0; animation: fadeUp 0.9s 0.8s forwards; }
.h-anim-5 { opacity: 0; animation: fadeIn  1s  0.4s forwards; }


/* ── RESPONSIVE: 768px ── */

@media (max-width: 768px) {

  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-logo img { height: 30px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 10px; letter-spacing: 0.14em; }
  .nav-li { font-size: 10px; letter-spacing: 0.12em; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 200;
  }

  .nav-links.open { display: flex; }
  .nav-links a, .nav-li { font-size: 14px; letter-spacing: 0.2em; }

  .hero-main { padding-top: 80px; }
  .hero-rule-top { left: 24px; right: 24px; top: 80px; }
  .hero-rule-bot { left: 24px; right: 24px; }
  .hero-content { padding: 80px 24px 48px; max-width: 100%; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.26em; gap: 10px; }
  .hero-eyebrow span { width: 16px; }
  .hero-title { font-size: clamp(38px, 9vw, 60px); }
  .hero-rule-mid { margin: 18px auto; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }

  .pillars { grid-template-columns: 1fr; }
  .pillar { padding: 22px 24px; }
  .pillar-div { display: none; }
  .pillar:not(:last-child) { border-bottom: 1px solid var(--ivory-deep); }
  .pillar-desc { font-size: 15px; }

  .sec { padding: 0 24px; }

  #about { padding: 64px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-vis { height: 280px; order: -1; }
  .vis-a { width: 58%; height: 54%; }
  .vis-a-text { font-size: 16px; }
  .vis-b { width: 54%; height: 50%; }
  .vis-b-word { font-size: 26px; }
  .about-heading { font-size: clamp(28px, 7vw, 42px); }
  .about-body { font-size: 14px; }

  #services { padding: 64px 0; }
  .svc-header { grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px; }
  .svc-heading { font-size: clamp(28px, 7vw, 42px); }
  .svc-intro { font-size: 14px; padding-top: 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 30px 24px; }
  .svc-title { font-size: 22px; }
  .svc-desc { font-size: 13px; }
  .svc-legend { flex-wrap: wrap; gap: 12px; }

  #perspectives { padding: 64px 0; }
  .persp-header { grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px; }
  .persp-grid { flex-direction: column; overflow-x: visible; scroll-snap-type: none; }
  .persp-card { flex: none; width: 100%; min-height: auto; padding: 28px 24px; }

  #philosophy { padding: 64px 0; }
  .phil-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 24px; }
  .phil-heading { font-size: clamp(28px, 7vw, 42px); }
  .phil-body { font-size: 14px; }
  .phil-bg { display: none; }
  .phil-h { font-size: 18px; }
  .phil-p { font-size: 12px; }

  #team { padding: 64px 0; }
  .team-heading { font-size: clamp(28px, 7vw, 42px); }
  .team-narrative { font-size: 14px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { padding: 32px 24px; }
  .team-name { font-size: 26px; }
  .team-bio { font-size: 14px; }

  #partnership { padding: 56px 0; }
  .partnership-inner { grid-template-columns: 1fr; gap: 24px; padding: 0 24px; }

  #proof { padding: 64px 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { padding: 28px 24px; }

  #contact { padding: 64px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-heading { font-size: clamp(28px, 7vw, 42px); }
  .contact-body { font-size: 14px; margin-bottom: 24px; }
  .detail-val { font-size: 15px; }

  footer { padding: 24px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-links { gap: 14px; flex-wrap: wrap; }
}


/* ── RESPONSIVE: 420px ── */

@media (max-width: 420px) {
  .hero-title { font-size: clamp(34px, 10vw, 48px); }
  .hero-eyebrow { font-size: 8px; }
}
