/* ============================================================
   MzNompumelelo — mznompumelelo.co.za
   Design System & Main Stylesheet
   Philosophy: Subsoil — Embodied Emergence
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Cormorant:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300;1,9..40,400&display=swap');

/* ── CSS CUSTOM PROPERTIES ───────────────────────────────── */
:root {
  /* Palette */
  --deep:       #1A1A2E;
  --earth:      #4A3728;
  --gold:       #C9A84C;
  --amber:      #8B5E3C;
  --parch:      #F5F0E8;
  --cream:      #FAF7F2;
  --white:      #FFFFFF;
  --black:      #1A1A1A;
  --grey:       #6B6460;
  --lgrey:      #A89E98;
  --border:     #E2DBD4;
  --gold-light: #E8D5A0;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1.0625rem;
  --text-md:   1.1875rem;
  --text-lg:   1.375rem;
  --text-xl:   1.75rem;
  --text-2xl:  2.25rem;
  --text-3xl:  3rem;
  --text-4xl:  4rem;
  --text-5xl:  5.5rem;
  --text-6xl:  7rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width:      1200px;
  --content-width:  700px;
  --wide-width:     960px;

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-slow:  cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:   200ms;
  --dur-mid:    400ms;
  --dur-slow:   700ms;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── NOISE TEXTURE OVERLAY ───────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.font-display    { font-family: var(--font-display); }
.font-body       { font-family: var(--font-body); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--deep);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl);  }

p {
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--black);
}

.text-display {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.text-display-lg {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.text-overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.text-caption {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--lgrey);
  letter-spacing: 0.02em;
}

/* ── LAYOUT UTILITIES ────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.container-wide {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.container-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

/* ── NAVIGATION ──────────────────────────────────────────── */
/* ── NAVIGATION ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(245,240,232,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background-color 400ms ease, padding 400ms ease, border-color 400ms ease;
}

.site-nav.scrolled {
  background-color: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 32px;
  border-bottom: 1px solid var(--border);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 200ms ease;
}
.nav-logo:hover { opacity: 0.7; }

.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--deep);
  letter-spacing: -0.01em;
  line-height: 1.1;
  display: block;
}
.logo-name .gold { 
  font-weight: 300;
  color: var(--gold); 
}

.nav-logo-tagline {
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lgrey);
  line-height: 1;
  margin-top: 3px;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li { position: relative; }

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  white-space: nowrap;
  transition: color 200ms ease;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 200ms ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--deep); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { color: var(--gold) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1px;
  background-color: var(--deep);
  transition: transform 300ms ease, opacity 200ms ease;
}

/* ── HERO SECTION ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-image-side {
  position: relative;
  background-color: var(--deep);
  overflow: hidden;
}
/* ── HERO IMAGE OVERLAY ──────────────────────────────────── */
.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: absolute;
  inset: 0;
}

.hero-image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 26, 46, 0.35) 0%,
    rgba(26, 26, 46, 0.15) 60%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── SUBSOIL TREE SVG ────────────────────────────────────── */
.subsoil-tree {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  max-width: 40%;
  height: auto;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.page-tree-container {
  position: relative;
  overflow: hidden;
}

/* ── PARCHMENT POEM ──────────────────────────────────────── */
.poem-parchment {
  background: linear-gradient(
    135deg,
    #f9f3e8 0%,
    #f5edda 30%,
    #f2e8d5 60%,
    #f7f0e4 100%
  );
  border: 1px solid rgba(139, 94, 60, 0.15);
  border-radius: 2px;
  padding: var(--space-12) var(--space-10);
  position: relative;
  box-shadow:
    0 2px 8px rgba(74,55,40,0.08),
    0 8px 32px rgba(74,55,40,0.06),
    inset 0 1px 0 rgba(255,255,255,0.6);
  max-width: 520px;
}

.poem-parchment::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(139, 94, 60, 0.08);
  border-radius: 1px;
  pointer-events: none;
}

.poem-parchment .poem-title {
  color: var(--earth);
  font-size: var(--text-xl);
  margin-bottom: var(--space-8);
}

.poem-parchment .poem-text {
  color: var(--earth);
  font-size: var(--text-base);
  line-height: 2;
}

.poem-parchment .poem-attr {
  color: var(--lgrey);
  margin-top: var(--space-8);
}



.hero-image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1A1A2E 0%,
    #2D1F14 40%,
    #4A3728 70%,
    #3D2B1E 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--space-12);
}

/* Placeholder for photographer — shows the vision */
.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
}

.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  inset: 0;
  filter: brightness(0.88) contrast(1.05);
}

.hero-photo-credit {
  position: relative;
  z-index: 2;
}

.hero-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-32) var(--space-16) var(--space-32) var(--space-12);
  position: relative;
}

.hero-content-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--parch) 100%);
  z-index: -1;
}

.hero-overline {
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

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

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, var(--text-5xl));
  font-weight: 300;
  line-height: 1.0;
  color: var(--deep);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2);
}

.hero-prefix {
  font-size: 0.55em;
  color: var(--gold);
  display: block;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-bottom: var(--space-1);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 300;
  font-style: italic;
  color: var(--amber);
  margin-bottom: var(--space-8);
  line-height: 1.4;
}

.hero-philosophy {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.85;
  color: var(--grey);
  max-width: 480px;
  margin-bottom: var(--space-10);
  padding-left: var(--space-6);
  border-left: 2px solid var(--gold);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-8);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--dur-mid) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--deep);
  color: var(--cream);
  border-color: var(--deep);
}

.btn-primary:hover {
  background-color: var(--earth);
  border-color: var(--earth);
}

.btn-outline {
  background-color: transparent;
  color: var(--deep);
  border-color: var(--deep);
}

.btn-outline:hover {
  background-color: var(--deep);
  color: var(--cream);
}

.btn-ghost {
  background: none;
  border: none;
  color: var(--earth);
  padding: 0;
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.btn-ghost:hover { color: var(--gold); }

.btn-ghost .arrow {
  transition: transform var(--dur-fast) var(--ease);
}

.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

/* ── GOLD RULE DIVIDER ───────────────────────────────────── */
.rule-gold {
  width: 60px;
  height: 1px;
  background-color: var(--gold);
  margin: var(--space-8) 0;
}

.rule-full {
  width: 100%;
  height: 1px;
  background-color: var(--border);
  margin: var(--space-12) 0;
}

/* ── SUBSOIL PHILOSOPHY SECTION ──────────────────────────── */
.philosophy-section {
  background-color: var(--deep);
  padding: var(--space-32) 0;
  position: relative;
  overflow: hidden;
}

.philosophy-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,55,40,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  align-items: start;
}

.philosophy-label-col {
  padding-top: var(--space-4);
}

.philosophy-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.philosophy-label::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--gold);
  opacity: 0.5;
}

.philosophy-content {
  padding: var(--space-8) 0;
}

.philosophy-word {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.4);
  line-height: 0.9;
  margin-bottom: var(--space-8);
  letter-spacing: -0.04em;
  display: block;
}

.philosophy-statement {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  font-style: italic;
  color: var(--parch);
  line-height: 1.4;
  margin-bottom: var(--space-8);
  max-width: 680px;
}

.philosophy-body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.7);
  max-width: 620px;
  margin-bottom: var(--space-8);
}

.philosophy-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--dur-fast) var(--ease);
}

.philosophy-link:hover { gap: var(--space-4); }

/* ── DIMENSIONS SECTION ──────────────────────────────────── */
.dimensions-section {
  padding: var(--space-32) 0;
  background-color: var(--cream);
}

.section-header {
  margin-bottom: var(--space-16);
}

.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--border);
  border: 1px solid var(--border);
}

.dimension-card {
  background-color: var(--cream);
  padding: var(--space-10) var(--space-8);
  position: relative;
  overflow: hidden;
  transition: background-color var(--dur-mid) var(--ease);
  display: flex;
  flex-direction: column;
}

.dimension-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: transparent;
  transition: background-color var(--dur-mid) var(--ease);
}

.dimension-card:hover {
  background-color: var(--parch);
}

.dimension-card:hover::before {
  background-color: var(--gold);
}

.dimension-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: var(--space-4);
  transition: color var(--dur-mid) var(--ease);
}

.dimension-card:hover .dimension-number {
  color: var(--gold-light);
}

.dimension-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--deep);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.dimension-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--grey);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-6);
}

.dimension-link {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--dur-fast), gap var(--dur-fast);
}

.dimension-link:hover {
  color: var(--gold);
  gap: var(--space-3);
}

/* ── FEATURED WRITING / JOURNAL ──────────────────────────── */
.journal-section {
  padding: var(--space-32) 0;
  background-color: var(--parch);
  position: relative;
}

.journal-section::before {
  content: 'SUBSOIL';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(74, 55, 40, 0.06);
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}
/* ── LYRICIST SECTION SUBSOIL ETCHING ──────────────────────── */
.lyrics-section {
  position: relative;
  overflow: hidden;
}

.lyrics-section::before {
  content: 'SUBSOIL';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(74, 55, 40, 0.06);
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}


.journal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.journal-featured {
  padding: var(--space-10);
  background-color: var(--deep);
  position: relative;
  overflow: hidden;
}

.journal-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
}

.journal-featured-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.journal-featured-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--parch);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.journal-featured-excerpt {
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  max-width: 520px;
}

.journal-featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(201, 168, 76, 0.6);
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: var(--space-4);
  margin-top: var(--space-4);
}

.journal-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.journal-item {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left var(--dur-fast) var(--ease);
}

.journal-item:first-child {
  border-top: 1px solid var(--border);
}

.journal-item:hover {
  padding-left: var(--space-3);
}

.journal-item-tag {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.journal-item-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.25;
  margin-bottom: var(--space-2);
}

.journal-item-date {
  font-size: var(--text-xs);
  color: var(--lgrey);
  letter-spacing: 0.04em;
}

/* ── PULL QUOTE / STATEMENT ──────────────────────────────── */
.statement-section {
  padding: var(--space-24) 0;
  background-color: var(--cream);
  position: relative;
}

.statement-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-8);
  align-items: start;
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.statement-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  min-height: 80px;
  margin-top: var(--space-2);
}

.statement-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, var(--text-3xl));
  font-weight: 300;
  font-style: italic;
  color: var(--earth);
  line-height: 1.35;
  max-width: 760px;
}

.statement-attr {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--lgrey);
  margin-top: var(--space-4);
  letter-spacing: 0.04em;
  display: block;
}

/* ── ABOUT PREVIEW SECTION ───────────────────────────────── */
.about-section {
  padding: var(--space-32) 0;
  background-color: var(--parch);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 3/4;
  background-color: var(--deep);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.9) contrast(1.05);
}

/* Photo direction overlay for photographer */
.photo-direction {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2D1F14 0%, #1A1A2E 50%, #4A3728 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-8);
  text-align: center;
}

.photo-direction-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: rgba(201, 168, 76, 0.6);
  line-height: 1.5;
  max-width: 280px;
}

.photo-direction-note {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
  font-size: var(--text-xs);
  color: rgba(201, 168, 76, 0.4);
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(26,26,46,0.4), transparent);
  pointer-events: none;
}

.about-content {
  padding: var(--space-4) 0;
}

.about-body {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.9;
  color: var(--grey);
  margin-bottom: var(--space-6);
}

.about-body strong {
  color: var(--deep);
  font-weight: 500;
}

/* ── CONNECT / CTA SECTION ───────────────────────────────── */
.connect-section {
  padding: var(--space-32) 0;
  background-color: var(--deep);
  position: relative;
  overflow: hidden;
}

.connect-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(74,55,40,0.4) 0%, transparent 60%);
}

.connect-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-12);
  align-items: center;
}

.connect-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--parch);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.connect-text p {
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
  max-width: 480px;
  line-height: 1.8;
}

.connect-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-width: 220px;
}

.connect-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border: 1px solid rgba(201,168,76,0.25);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--parch);
  transition: all var(--dur-mid) var(--ease);
}

.connect-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  padding-left: var(--space-8);
}

.connect-link span {
  color: var(--gold);
  font-size: var(--text-xs);
  opacity: 0.7;
  transition: opacity var(--dur-fast);
}

.connect-link:hover span { opacity: 1; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background-color: var(--earth);
  padding: var(--space-12) 0 var(--space-8);
  position: relative;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand p {
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
  max-width: 320px;
  margin-top: var(--space-4);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--parch);
  letter-spacing: -0.01em;
}

.footer-brand-philosophy {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-top: var(--space-1);
}

.footer-nav h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav a {
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
  transition: color var(--dur-fast);
}

.footer-nav a:hover { color: var(--parch); }

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 0.04em;
}

.footer-subsoil {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-style: italic;
  color: rgba(201, 168, 76, 0.5);
  letter-spacing: 0.04em;
}

/* ── INTERIOR PAGE HERO ──────────────────────────────────── */
.page-hero {
  padding: calc(var(--space-32) + 60px) 0 var(--space-16);
  background-color: var(--parch);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, var(--text-4xl));
  font-weight: 300;
  color: var(--deep);
  margin-bottom: var(--space-4);
}

.page-hero-lead {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  font-style: italic;
  color: var(--amber);
  max-width: 640px;
  line-height: 1.4;
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-page-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-16);
  padding: var(--space-20) 0;
  align-items: start;
}

.about-prose p {
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.9;
  color: var(--grey);
  margin-bottom: var(--space-6);
}

.about-prose p:first-of-type {
  font-size: var(--text-lg);
  color: var(--black);
}

.about-prose h2 {
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--deep);
  margin: var(--space-12) 0 var(--space-4);
}

.about-prose blockquote {
  border-left: 2px solid var(--gold);
  padding: var(--space-4) var(--space-8);
  margin: var(--space-8) 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--earth);
  line-height: 1.45;
}

.about-sidebar {
  padding-top: var(--space-4);
}

.sidebar-card {
  background-color: var(--parch);
  padding: var(--space-8);
  border-top: 2px solid var(--gold);
  margin-bottom: var(--space-6);
}

.sidebar-card h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.sidebar-card p {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--grey);
  line-height: 1.75;
}

/* ── MOBILE NAVIGATION ───────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--deep);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-5);
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  padding: var(--space-16) var(--space-8);
  transition: opacity var(--dur-mid) var(--ease);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--parch);
  transition: color var(--dur-fast);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-8);
  background: none;
  border: none;
  color: var(--gold);
  font-size: var(--text-xl);
  cursor: pointer;
  font-family: var(--font-display);
}

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-slow),
              transform var(--dur-slow) var(--ease-slow);
}

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

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-side { height: 60vh; }
  .hero-content-side { padding: var(--space-16) var(--space-8); }
  .philosophy-inner { grid-template-columns: 1fr; }
  .philosophy-label-col { display: none; }
  .dimensions-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 4/3; }
  .connect-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --text-4xl: 2.75rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4rem;
    --space-32: 5rem;
    --space-24: 4rem;
  }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .dimensions-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
  .statement-inner { grid-template-columns: auto 1fr; }
  .philosophy-word { font-size: var(--text-5xl); }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-6); }
  .hero-content-side { padding: var(--space-12) var(--space-6); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
