/* ==========================================================================
   BE·OZEN Studio — Main Stylesheet
   Extracted and unified from 11 HTML wireframes
   ========================================================================== */

/* ── GOOGLE FONTS (loaded via wp_enqueue_scripts) ── */
/* @import handled in enqueue.php */

/* ── CSS VARIABLES ── */
:root {
  --green:       #1e3a0f;
  --green-mid:   #2d5016;
  --green-light: #3d6b1e;
  --gold:        #b8960c;
  --gold-light:  #d4aa18;
  --cream:       #f5f0e8;
  --cream-dark:  #ede6d6;
  --sand:        #c8b87a;
  --white:       #faf8f4;
  --text:        #1a1a17;
  --text-mid:    #4a4a42;
  --text-light:  #8a8a7a;
  --ink:         #12110e;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow-light {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,184,122,0.7);
}

.gold-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0;
}

.gold-rule-center {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Placeholder wireframe images */
.img-wf {
  width: 100%;
  height: 100%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.img-wf-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.img-wf-sub {
  font-size: 9px;
  color: rgba(138,138,122,0.6);
  letter-spacing: 0.08em;
}

/* Diamond icon */
.diamond {
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  border: none;
  padding: 15px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--green-light); }

.btn-ghost {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-ghost-light {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200,184,122,0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.2s;
  border: 1px solid rgba(200,184,122,0.25);
  padding: 12px 24px;
}
.btn-ghost-light:hover { color: var(--sand); border-color: rgba(200,184,122,0.5); }
.btn-ghost-light::after { content: '→'; transition: transform 0.2s; }
.btn-ghost-light:hover::after { transform: translateX(4px); }

.btn-submit {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-submit:hover { background: var(--green-light); }

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,150,12,0.15);
  transition: all 0.3s ease;
}

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

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

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark span {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--sand);
}

.logo-text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  border: none;
  padding: 11px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--green-light); }
nav.scrolled { box-shadow: 0 1px 20px rgba(30,58,15,0.08); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid rgba(184,150,12,0.12);
  padding: 12px 0;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.breadcrumb-inner a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-inner span,
.breadcrumb-inner .bc-sep { color: rgba(184,150,12,0.4); }
.breadcrumb-inner .bc-current { color: var(--gold); }

/* ── HOME HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 68px;
}

.hero-left {
  padding: 80px 64px 80px 48px;
}

.hero-right {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,248,244,0.12), transparent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

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

.hero-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 32px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.hero-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid rgba(30,58,15,0.15);
  padding: 6px 14px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding-top: 68px;
  background: var(--green);
  overflow: hidden;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  align-items: center;
}

.page-hero-left {
  padding: 80px 64px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.page-hero-left .eyebrow { color: rgba(200,184,122,0.6); }

.page-hero-left h1 {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1.12;
  color: var(--sand);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

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

.page-hero-sub,
.page-hero-left p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(200,184,122,0.7);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 36px;
}

.page-hero-right {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.hero-service-num {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(200,184,122,0.5);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-service-num::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(200,184,122,0.3);
}

.hero-overlay-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(200,184,122,0.03) 60px,
    rgba(200,184,122,0.03) 61px
  );
  pointer-events: none;
}

/* ── PROOF STRIP ── */
.proof-strip {
  background: var(--green);
  padding: 28px 0;
  overflow: hidden;
}

.proof-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.proof-item {
  text-align: center;
  padding: 0 52px;
  position: relative;
}

.proof-item + .proof-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(200,184,122,0.3);
}

.proof-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 4px;
}

.proof-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200,184,122,0.6);
}

/* ── NARRATIVE ── */
.narrative {
  padding: 120px 0;
  background: var(--white);
}

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

.narrative-left h2 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}

.narrative-left p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.narrative-quote {
  margin-top: 36px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

.narrative-quote p {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 10px;
}

.narrative-quote cite {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.narrative-right {
  background: var(--cream);
  padding: 44px 40px;
  position: relative;
}

.narrative-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 60px;
  background: var(--gold);
}

.narrative-right p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

.pillars {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(184,150,12,0.2);
}

.pillars-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}

.pillars-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--green);
  letter-spacing: 0.04em;
}

/* ── SERVICES ── */
.services {
  padding: 120px 0;
  background: var(--cream);
}

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

.services-header h2 {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
}

.services-header p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.service-card {
  background: var(--white);
  padding: 44px 40px;
  cursor: pointer;
  transition: background 0.25s;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.service-card:hover { background: var(--green); }
.service-card:hover::after { width: 100%; }
.service-card:hover .sc-num { color: rgba(200,184,122,0.5); }
.service-card:hover .sc-title { color: var(--sand); }
.service-card:hover .sc-body { color: rgba(200,184,122,0.7); }
.service-card:hover .sc-result { color: var(--sand); border-color: rgba(200,184,122,0.3); }
.service-card:hover .sc-arrow { color: var(--sand); }

.sc-num {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 20px;
  transition: color 0.25s;
}

.sc-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 14px;
  transition: color 0.25s;
}

.sc-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  transition: color 0.25s;
}

.sc-result {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
  border-top: 1px solid rgba(184,150,12,0.2);
  padding-top: 16px;
  transition: color 0.25s, border-color 0.25s;
}

.sc-arrow {
  float: right;
  color: var(--text-light);
  transition: color 0.25s;
  font-size: 14px;
}

/* ── METHOD ── */
.method {
  padding: 120px 0;
  background: var(--white);
}

.method-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}

.method-left h2 {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.method-left p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 32px;
}

.method-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.method-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(30,58,15,0.08);
  align-items: start;
  transition: background 0.2s;
  cursor: default;
}

.method-step:last-child { border-bottom: none; }

.step-n {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184,150,12,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.25s;
}

.method-step:hover .step-n {
  background: var(--green);
  border-color: var(--green);
  color: var(--sand);
}

.step-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}

.step-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
}

.step-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,150,12,0.3);
  padding: 3px 10px;
}

/* ── PORTFOLIO ── */
.portfolio {
  padding: 120px 0;
  background: var(--cream);
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.portfolio-header h2 {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  cursor: pointer;
}

.portfolio-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-item:nth-child(1) .portfolio-img { height: 420px; }
.portfolio-item:hover .portfolio-img { transform: scale(1.04); }

.portfolio-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(30,58,15,0.85));
  padding: 32px 24px 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay { transform: translateY(0); }

.p-cat {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 4px;
}

.p-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--cream);
}

.portfolio-label {
  position: absolute;
  top: 20px; left: 20px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(30,58,15,0.75);
  padding: 5px 12px;
}

/* ── DIFFERENTIATION ── */
.diff {
  padding: 96px 0;
  background: var(--green);
}

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

.diff-left .eyebrow { color: rgba(200,184,122,0.6); }

.diff-left h2 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--sand);
  margin-bottom: 20px;
}

.diff-left p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(200,184,122,0.7);
  line-height: 1.9;
}

.diff-values {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.diff-val {
  padding: 24px 0;
  border-top: 1px solid rgba(200,184,122,0.15);
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 16px;
  align-items: start;
}

.diff-val:last-child { border-bottom: 1px solid rgba(200,184,122,0.15); }

.diff-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
}

.diff-val-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--sand);
  margin-bottom: 4px;
}

.diff-val-body {
  font-size: 12px;
  font-weight: 300;
  color: rgba(200,184,122,0.6);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 120px 0;
  background: var(--white);
}

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

.test-header h2 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--text);
}

.test-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.test-card {
  background: var(--cream);
  padding: 44px 40px;
}

.test-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 28px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 40px;
  height: 40px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--sand);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.test-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.test-role {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 120px 0;
  background: var(--cream);
  text-align: center;
}

.cta-section.dark {
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.cta-section.dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 80px,
    rgba(200,184,122,0.025) 80px, rgba(200,184,122,0.025) 81px
  );
}

.cta-section.dark .container { position: relative; z-index: 1; }

.cta-section .eyebrow { display: block; margin-bottom: 16px; }
.cta-section.dark .eyebrow { color: rgba(200,184,122,0.6); }

.cta-section h2 {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 20px;
}

.cta-section.dark h2 {
  color: var(--white);
}

.cta-section.dark h2 em { font-style: italic; color: var(--sand); }

.cta-section p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 440px;
  margin: 0 auto 40px;
}

.cta-section.dark p { color: rgba(200,184,122,0.7); max-width: 520px; }

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.cta-note,
.cta-bottom-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-top: 16px;
  text-transform: uppercase;
}

.cta-section.dark .cta-note { color: rgba(200,184,122,0.4); }

/* ── FAQ ACCORDION ── */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(30,58,15,0.1);
  overflow: hidden;
}

.faq-item:first-child { border-top: 1px solid rgba(30,58,15,0.1); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-q:hover { color: var(--green); }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(184,150,12,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--green);
  border-color: var(--green);
  color: var(--sand);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 24px;
}

/* ── SCOPE / ALCANCE ── */
.scope-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 32px;
}

.scope-chip {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1px solid rgba(30,58,15,0.15);
  padding: 8px 16px;
  background: var(--cream);
}

/* ── SCOPE CARDS ── */
.scope-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}

.scope-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.scope-card:hover { background: var(--green); }
.scope-card:hover::after { width: 100%; }
.scope-card:hover .sc-card-title { color: var(--sand); }
.scope-card:hover .sc-card-body { color: rgba(200,184,122,0.65); }

.sc-card-num {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
  transition: color 0.25s;
}

.sc-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.25s;
}

.sc-card-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  transition: color 0.25s;
}

/* ── RESULTS SECTION ── */
.result-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,184,122,0.12);
  padding: 40px 28px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s;
}

.result-card:hover {
  background: rgba(200,184,122,0.08);
  border-color: rgba(200,184,122,0.25);
}

.result-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 12px;
}

.result-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200,184,122,0.55);
  margin-bottom: 12px;
}

.result-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(200,184,122,0.5);
  line-height: 1.6;
}

/* ── SERVICE BLOCKS (Services page) ── */
.sb-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.sb-layout.reverse { direction: rtl; }
.sb-layout.reverse > * { direction: ltr; }

.sb-content {
  padding: 64px 60px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sb-content.dark { background: var(--green); }

.sb-number {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: rgba(184,150,12,0.12);
  line-height: 1;
  margin-bottom: -12px;
}

.sb-content.dark .sb-number { color: rgba(200,184,122,0.08); }

.sb-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.sb-content.dark .sb-label { color: rgba(200,184,122,0.6); }

.sb-title {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 8px;
}

.sb-content.dark .sb-title { color: var(--sand); }

.sb-subtitle {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 20px;
}

.sb-content.dark .sb-subtitle { color: rgba(200,184,122,0.6); }

.sb-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 24px;
}

.sb-content.dark .sb-body { color: rgba(200,184,122,0.7); }

.sb-list {
  list-style: none;
  margin-bottom: 28px;
}

.sb-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  padding: 6px 0;
  border-bottom: 1px solid rgba(184,150,12,0.1);
}

.sb-list li:last-child { border-bottom: none; }
.sb-content.dark .sb-list li { color: rgba(200,184,122,0.65); border-bottom-color: rgba(200,184,122,0.1); }

.sb-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── BLOG / ARTICLES ── */
.masthead {
  padding-top: 68px;
  background: var(--cream);
  border-bottom: 1px solid rgba(184,150,12,0.15);
  overflow: hidden;
  position: relative;
}

.masthead-bg-text {
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: var(--serif);
  font-size: 200px;
  font-weight: 300;
  color: rgba(184,150,12,0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.masthead-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 56px 0 0;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.masthead-title {
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.masthead-title em { font-style: italic; color: var(--green); }

.masthead-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 520px;
}

.category-bar {
  margin-top: 40px;
  border-top: 1px solid rgba(184,150,12,0.15);
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
}

.cat-item {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 16px 24px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}

.cat-item:hover { color: var(--text); border-bottom-color: rgba(184,150,12,0.3); }
.cat-item.active { color: var(--text); border-bottom-color: var(--gold); font-weight: 500; }

.featured-article {
  background: var(--white);
  padding: 72px 0;
  border-bottom: 1px solid rgba(184,150,12,0.1);
}

.fa-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}

.fa-content {
  padding: 56px 60px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.fa-content::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 3px;
  height: 80px;
  background: var(--gold);
}

.fa-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.fa-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 32px;
  flex: 1;
}

/* Article grid cards */
.articles-grid-section {
  padding: 72px 0;
  background: var(--white);
}

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

.article-card {
  background: var(--cream);
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}

.article-card:hover { background: var(--cream-dark); }

.article-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--cream-dark);
  display: block;
}

.article-card-body {
  padding: 28px 28px 32px;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.article-card-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-card-date {
  font-size: 10px;
  font-weight: 300;
  color: var(--text-light);
}

.article-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 10px;
}

.article-card-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── CONTACT FORM ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  align-items: start;
  min-height: 80vh;
}

.form-panel {
  padding: 72px 64px 72px 0;
  border-right: 1px solid rgba(184,150,12,0.1);
}

.form-block { margin-bottom: 36px; }

.form-block-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(30,58,15,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-block-title::before {
  content: '';
  width: 3px;
  height: 12px;
  background: var(--gold);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.field-row.single { grid-template-columns: 1fr; }

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

.field-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.field-label .req { color: var(--gold); margin-left: 3px; }

.field-input,
.field-select,
.field-textarea {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(30,58,15,0.15);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  appearance: none;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: var(--gold);
  background: var(--cream);
}

.field-input::placeholder,
.field-textarea::placeholder { color: rgba(138,138,122,0.5); font-weight: 300; }
.field-textarea { resize: vertical; min-height: 120px; line-height: 1.7; }

.consent-block {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--cream);
}

.consent-text {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
}

.consent-text a { color: var(--text-mid); text-decoration: underline; }

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.submit-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

/* Contact aside */
.contact-aside {
  padding: 72px 0 72px 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 68px;
}

.aside-section {
  padding: 32px 0;
  border-bottom: 1px solid rgba(30,58,15,0.07);
}

.aside-section:first-child { padding-top: 0; }
.aside-section:last-child { border-bottom: none; }

.aside-section-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.ci-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.ci-value {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.ci-value:hover { color: var(--gold); }

/* ── SINGLE BLOG POST ── */
.post-hero {
  padding-top: 68px;
  background: var(--white);
  border-bottom: 1px solid rgba(184,150,12,0.1);
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  padding: 72px 0;
  align-items: start;
}

.post-content {
  max-width: 680px;
}

.post-content h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin: 40px 0 16px;
}

.post-content h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin: 32px 0 12px;
}

.post-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

.post-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--cream);
}

.post-content blockquote p {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0;
}

.post-sidebar {
  position: sticky;
  top: 88px;
}

/* ── SECTOR / RELATED CARDS ── */
.sector-card {
  background: var(--cream);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}

.sector-card:hover { background: var(--green); }
.sector-card:hover .sector-title { color: var(--sand); }
.sector-card:hover .sector-body { color: rgba(200,184,122,0.6); }

.sector-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  transition: color 0.25s;
}

.sector-body {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  transition: color 0.25s;
}

/* Related service cards */
.related-card {
  background: var(--cream);
  padding: 44px 36px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.related-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.related-card:hover { background: var(--green); }
.related-card:hover::after { width: 100%; }
.related-card:hover .rc-title { color: var(--sand); }
.related-card:hover .rc-body { color: rgba(200,184,122,0.6); }
.related-card:hover .rc-link { color: var(--sand); }

.rc-num {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 20px;
  transition: color 0.25s;
}

.rc-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 12px;
  transition: color 0.25s;
}

.rc-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  transition: color 0.25s;
}

.rc-link {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s;
}

.rc-link::after { content: '→'; transition: transform 0.2s; }
.related-card:hover .rc-link::after { transform: translateX(4px); }

/* ── INTRO NARRATIVE (inner pages) ── */
.intro-narrative {
  padding: 96px 0 80px;
  background: var(--white);
}

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

.intro-left h2 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}

.intro-left p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.intro-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 36px;
}

.pillar-chip {
  background: var(--cream);
  padding: 18px 20px;
  border-left: 2px solid var(--gold);
}

.pillar-chip-num {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 6px;
}

.pillar-chip-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
}

.intro-right {
  background: var(--green);
  padding: 48px 44px;
  position: relative;
}

.intro-right::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 3px;
  height: 60px;
  background: var(--gold);
}

.intro-quote {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--sand);
  line-height: 1.55;
  margin-bottom: 28px;
}

.intro-right p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(200,184,122,0.7);
  line-height: 1.9;
  margin-bottom: 14px;
}

/* ── FORMATION CARDS ── */
.formation-card {
  background: var(--cream);
  padding: 44px 40px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.formation-card:hover { background: var(--green); }
.formation-card:hover .fc-title { color: var(--sand); }
.formation-card:hover .fc-body { color: rgba(200,184,122,0.7); }

.fc-badge {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,150,12,0.1);
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 20px;
  transition: color 0.25s, background 0.25s;
}

.formation-card:hover .fc-badge {
  color: var(--sand);
  background: rgba(200,184,122,0.1);
}

.fc-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 14px;
  transition: color 0.25s;
}

.fc-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  transition: color 0.25s;
}

.fc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(184,150,12,0.2);
}

.fc-meta-item {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── FOOTER ── */
footer {
  background: var(--green);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 28px;
  height: 28px;
  background: rgba(200,184,122,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-mark span {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--sand);
}

.footer-logo-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
}

.footer-tagline {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: rgba(200,184,122,0.5);
  line-height: 1.6;
}

.footer-col-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200,184,122,0.45);
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(200,184,122,0.65);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.footer-links a:hover { color: var(--sand); }

.footer-bottom {
  border-top: 1px solid rgba(200,184,122,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 10px;
  font-weight: 300;
  color: rgba(200,184,122,0.35);
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-legal a {
  font-size: 10px;
  font-weight: 300;
  color: rgba(200,184,122,0.35);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(200,184,122,0.65); }

/* ── PAGE CONTENT (generic page.php) ── */
.page-content {
  padding: 120px 0;
  background: var(--white);
}

.page-content-inner {
  max-width: 720px;
}

.page-content h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 20px;
  margin-top: 48px;
  line-height: 1.2;
}

.page-content h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  margin-top: 36px;
}

.page-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-content li {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 8px;
}

.page-content a {
  color: var(--green);
  text-decoration: underline;
  transition: color 0.2s;
}

.page-content a:hover { color: var(--gold); }

/* ── 404 ── */
.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
}

.error-num {
  font-family: var(--serif);
  font-size: 160px;
  font-weight: 300;
  color: rgba(184,150,12,0.12);
  line-height: 1;
  margin-bottom: 0;
}

.error-title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 20px;
  margin-top: -20px;
}

.error-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 40px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

/* ── WP ADMIN BAR OFFSET ── */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav { top: 46px; }
}

/* ── WP ALIGNMENTS ── */
.alignwide  { margin-left: -48px; margin-right: -48px; }
.alignfull  { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); width: 100vw; }
.alignleft  { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 120px 48px 80px; }

  .narrative-grid,
  .page-hero-inner,
  .services-grid,
  .diff-grid,
  .test-grid,
  .intro-grid,
  .method-layout { grid-template-columns: 1fr; gap: 40px; }

  .method-layout { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { padding: 48px 0 0; }
  .form-panel { padding-right: 0; border-right: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .hero-h1 { font-size: 40px; }
  .page-hero-left h1 { font-size: 36px; }
  .cta-section h2 { font-size: 36px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
