/* ============================================================
   SOCIAL RETURN ADVISORY — Institutional Signal
   Palette: Deep Navy · Aged Gold · Cream
   Type: Cormorant Garamond (display) · Libre Franklin (body) · DM Mono (data)
   ============================================================ */

:root {
  --navy-900: #0C2340;
  --navy-700: #1B3D6E;
  --navy-500: #2E5A94;
  --gold-600: #A8975A;
  --gold-400: #C9B88A;
  --gold-200: #E8E0CC;
  --cream-100: #F5F1EA;
  --cream-50:  #FAF8F4;
  --text-body: #3D3220;
  --text-muted: #7A6A52;
  --text-faint: #A89880;
  --border: rgba(168,151,90,0.22);
  --border-strong: rgba(168,151,90,0.45);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Libre Franklin', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;

  --max-w: 1100px;
  --col-pad: clamp(24px, 5vw, 80px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream-50);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ─────────────────────────────────────────── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--col-pad);
}

.centered { text-align: center; }

.label-small {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 20px;
}

.label-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  text-decoration: none;
  border-bottom: 0.5px solid var(--border);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.label-link:hover { border-color: var(--gold-400); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--navy-900);
  line-height: 1.2;
}

.body-text {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.body-text:last-child { margin-bottom: 0; }

/* ── BUTTONS ───────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--navy-900);
  color: var(--cream-100);
  border: 1px solid var(--navy-900);
}
.btn-primary:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
}

.btn-secondary {
  background: transparent;
  color: var(--navy-900);
  border: 0.5px solid var(--gold-400);
}
.btn-secondary:hover {
  background: var(--gold-200);
}

.btn-large { padding: 15px 36px; font-size: 12px; }

/* ── NAVIGATION ────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream-50);
  border-bottom: 0.5px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--col-pad);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold-400);
  position: relative;
}
.nav-logo-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 5px;
  height: 5px;
  background: var(--gold-400);
}
.nav-logo-mark.small {
  width: 12px;
  height: 12px;
}
.nav-logo-mark.small::after {
  width: 4px;
  height: 4px;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--navy-900);
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-700);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy-900); }

.nav-cta {
  color: var(--navy-900) !important;
  border-bottom: 0.5px solid var(--gold-400);
  padding-bottom: 1px;
}

/* ── HERO ──────────────────────────────────────────────── */

.hero {
  padding: clamp(36px, 5vw, 64px) 0;
  position: relative;
}

.hero-rule-top,
.hero-rule-bottom {
  position: absolute;
  left: var(--col-pad);
  right: var(--col-pad);
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.hero-rule-top { top: 0; }
.hero-rule-bottom { bottom: 0; }

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--col-pad);
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 300;
  color: var(--navy-900);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--navy-700);
}

.hero-rule-mid {
  width: 48px;
  height: 0.5px;
  background: var(--gold-400);
  margin: 0 auto 28px;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.4s forwards;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.85;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.65s forwards;
}

/* ── FOCUS SECTION ─────────────────────────────────────── */

.focus-section {
  padding: clamp(36px, 4vw, 56px) 0;
  background: var(--cream-100);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

@media (max-width: 700px) {
  .focus-grid { grid-template-columns: 1fr; gap: 28px; }
}

.gap-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .gap-cards { grid-template-columns: 1fr; }
}

.gap-card {
  padding: 28px 28px;
  border-radius: 2px;
  border: 0.5px solid var(--border);
}

.gap-card--weak { background: var(--cream-50); }
.gap-card--focus {
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.gap-card-header { margin-bottom: 16px; }

.gap-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 1px;
}
.gap-label--strong {
  background: var(--gold-200);
  color: var(--text-muted);
}
.gap-label--focus {
  background: rgba(201,184,138,0.2);
  color: var(--gold-400);
}

.gap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gap-card--weak .gap-list li {
  font-size: 16px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gap-card--focus .gap-list li {
  font-size: 16px;
  color: var(--cream-100);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.gap-card--focus .gap-list strong { color: var(--gold-400); font-weight: 500; }

.dim-marker {
  font-size: 12px;
  color: var(--text-faint);
  flex-shrink: 0;
  margin-top: 1px;
}
.dim-marker--gold { color: var(--gold-400); }

/* ── FIVE DIMENSIONS ───────────────────────────────────── */

.dimensions-section {
  padding: clamp(28px, 3.5vw, 48px) 0;
}

.dimensions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 28px 0 20px;
}

.dim-item {
  text-align: center;
  padding: 20px 32px;
  flex: 1;
  min-width: 140px;
}

.dim-item--focus {
  border-left: 0.5px solid var(--border);
  border-right: 0.5px solid var(--border);
  background: var(--cream-100);
}

.dim-divider {
  width: 0.5px;
  height: 60px;
  background: var(--border);
}

.dim-number {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--gold-600);
  margin-bottom: 6px;
}

.dim-name {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.dim-item--focus .dim-name { font-style: italic; }

.dim-desc {
  font-size: 11px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}
.dim-item--focus .dim-desc { color: var(--gold-600); }

.dimensions-note {
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
  font-style: italic;
  font-family: var(--font-display);
  max-width: 480px;
  margin: 0 auto;
}

/* ── SERVICES ──────────────────────────────────────────── */

.services-section {
  padding: clamp(36px, 4vw, 56px) 0;
  background: var(--cream-100);
  border-top: 0.5px solid var(--border);
}

.services-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}
.services-header .label-small { margin-bottom: 0; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 0.5px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

@media (max-width: 680px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  display: block;
  padding: 36px 36px;
  text-decoration: none;
  background: var(--cream-50);
  border: 0.5px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.service-card:hover { background: var(--cream-100); }

.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-600);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy-900);
  line-height: 1.25;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-right: 24px;
}

.service-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-size: 16px;
  color: var(--gold-400);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
}
.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── WHY THIS WORK MATTERS ─────────────────────────────── */

.why-section {
  padding: clamp(36px, 4vw, 56px) 0;
  border-top: 0.5px solid var(--border);
}

.why-inner {
  max-width: 680px;
}

.why-body {
  font-size: 19px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

.why-triad {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--navy-900);
}

.why-sep {
  color: var(--gold-400);
  font-style: normal;
}

/* ── PRINCIPLES ────────────────────────────────────────── */

.principles-section {
  padding: clamp(36px, 4vw, 56px) 0;
}

.principles-rule {
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  margin-bottom: 36px;
}
.principles-rule:last-child { margin-bottom: 0; margin-top: 36px; }

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

@media (max-width: 700px) {
  .principles-grid { grid-template-columns: 1fr; gap: 32px; }
}

.principle-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.principle-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── CTA SECTION ───────────────────────────────────────── */

.cta-section {
  padding: clamp(40px, 5vw, 64px) 0;
  background: var(--navy-900);
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--cream-100);
  line-height: 1.2;
  margin-bottom: 36px;
}
.cta-heading em { font-style: italic; color: var(--gold-400); }

.cta-section .btn-primary {
  background: var(--gold-400);
  color: var(--navy-900);
  border-color: var(--gold-400);
}
.cta-section .btn-primary:hover {
  background: var(--gold-200);
  border-color: var(--gold-200);
}

/* ── FOOTER ────────────────────────────────────────────── */

.footer {
  background: var(--cream-50);
  border-top: 0.5px solid var(--border);
  padding: 24px 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--col-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.footer-sep { color: var(--border-strong); }

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--navy-900); }

/* ── APPROACH PAGE ─────────────────────────────────────── */

.page-hero {
  padding: clamp(32px, 4vw, 52px) 0 clamp(24px, 3vw, 40px);
  border-bottom: 0.5px solid var(--border);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--col-pad);
  right: var(--col-pad);
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 700px) {
  .page-hero .container { grid-template-columns: 1fr; gap: 28px; }
}

.page-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  padding-top: 8px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 300;
  color: var(--navy-900);
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-title em { font-style: italic; }

.page-intro {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 580px;
}

/* Methodology Steps */
.method-section {
  padding: clamp(36px, 4vw, 56px) 0;
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 0.5px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 40px;
}

.method-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  border-bottom: 0.5px solid var(--border);
}
.method-step:last-child { border-bottom: none; }

.method-step-num {
  padding: 32px 24px;
  border-right: 0.5px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--cream-100);
}
.method-step-num span {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-400);
}

.method-step-body {
  padding: 32px 36px;
  background: var(--cream-50);
}
.method-step-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.method-step-body .step-principle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-600);
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 2px solid var(--gold-200);
}
.method-step-body p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Evidence Section */
.evidence-section {
  padding: clamp(28px, 3.5vw, 48px) 0;
  background: var(--cream-100);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.evidence-section .section-heading { margin-bottom: 20px; }

.evidence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 36px;
}
@media (max-width: 680px) {
  .evidence-grid { grid-template-columns: 1fr; }
}

.evidence-block h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.evidence-block p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── SERVICE TAB BAR ───────────────────────────────────── */

.service-tab-bar {
  position: sticky;
  top: 60px;
  z-index: 90;
  background: var(--cream-100);
  border-bottom: 0.5px solid var(--border);
}

.service-tab-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--col-pad);
  display: flex;
  align-items: stretch;
}

.service-tabs {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.service-tabs::-webkit-scrollbar { display: none; }

.service-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 14px 16px;
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
  outline: none;
}
.service-tab:hover,
.service-tab:focus-visible {
  background: rgba(201, 184, 138, 0.08);
  border-bottom-color: var(--gold-400);
}
.service-tab.active {
  border-bottom-color: var(--navy-900);
  background: var(--cream-50);
}
.service-tab.active:hover {
  border-bottom-color: var(--navy-900);
}

.service-tab-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-style: italic;
  color: var(--gold-600);
  transition: color 0.22s ease;
}
.service-tab:hover .service-tab-num,
.service-tab:focus-visible .service-tab-num {
  color: var(--gold-400);
}

.service-tab-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  display: block;
  transform-origin: left center;
  transition: color 0.22s ease, transform 0.22s ease;
}
.service-tab:hover .service-tab-title,
.service-tab:focus-visible .service-tab-title {
  color: var(--navy-900);
  transform: scale(1.04);
}
.service-tab.active .service-tab-title {
  color: var(--navy-900);
}


/* ── SERVICE PANELS ────────────────────────────────────── */

.service-panel {
  display: none;
}
.service-panel.active {
  display: block;
  animation: panelFadeIn 0.25s ease;
}

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

/* ── SERVICES PAGE ─────────────────────────────────────── */

.service-panel > .container {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.service-full-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 700px) {
  .service-full-inner { grid-template-columns: 1fr; gap: 24px; }
}

.service-full-label {
  padding-top: 6px;
}

.service-full-label .service-num-lg {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-200);
  line-height: 1;
  margin-bottom: 8px;
}

.service-full-label h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 12px;
}

.service-full-label .label-small { margin-bottom: 0; }

.service-full-body p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.deliverable-list {
  margin-top: 24px;
  border-top: 0.5px solid var(--border);
  padding-top: 20px;
}

.deliverable-list h4 {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
}

.deliverable-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.deliverable-list li {
  font-size: 15px;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
}
.deliverable-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-400);
  font-family: var(--font-mono);
  font-size: 11px;
}

/* ── CONTACT PAGE ──────────────────────────────────────── */

.contact-layout {
  padding: clamp(36px, 4vw, 56px) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 20px;
}
.contact-left h2 em { font-style: italic; }

.contact-left p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.contact-direct {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 0.5px solid var(--border);
}
.contact-direct p {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 8px;
}
.contact-direct a {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--navy-900);
  text-decoration: none;
  border-bottom: 0.5px solid var(--border-strong);
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--cream-100);
  border: 0.5px solid var(--border-strong);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-body);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy-700);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

/* ── WRITING PAGE ──────────────────────────────────────── */

.writing-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 0.5px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 40px;
}

.writing-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: baseline;
  gap: 32px;
  padding: 28px 32px;
  border-bottom: 0.5px solid var(--border);
  text-decoration: none;
  background: var(--cream-50);
  transition: background 0.2s;
}
.writing-item:last-child { border-bottom: none; }
.writing-item:hover { background: var(--cream-100); }

.writing-date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}

.writing-title {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
  color: var(--navy-900);
}

.writing-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  white-space: nowrap;
}

/* ── ANIMATIONS ────────────────────────────────────────── */

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

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
