/*
Theme Name: Alamar Ventures
Theme URI: https://alamarventures.com
Author: Alamar Ventures
Description: Custom WordPress theme for Alamar Ventures — Texas-rooted venture firm.
Version: 1.0.8
License: Proprietary
Text Domain: alamar
*/

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

:root {
  --rope: #C4933F;
  --rope-light: #E8C37A;
  --leather: #8B5E3C;
  --leather-dark: #6B4226;
  --charcoal: #1C1814;
  --charcoal-mid: #2E2820;
  --smoke: #7A6F62;
  --cream: #FAF6EF;
  --dust: #B5A48A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem clamp(1.5rem, 5vw, 5rem);
  background: rgba(28,24,20,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196,147,63,0.18);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem; text-decoration: none;
}
.nav-star { width: 18px; height: 18px; fill: var(--rope); flex-shrink: 0; }
.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--rope); letter-spacing: 0.04em;
}
.nav-wordmark span { color: var(--cream); font-weight: 400; font-style: italic; }

/* WordPress nav menu */
.nav-menu-wrap { display: flex; align-items: center; gap: 2.4rem; }
.nav-menu-wrap ul.nav-links,
ul.nav-links {
  display: flex; gap: 2.4rem; list-style: none; margin: 0; padding: 0;
}
ul.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--smoke); text-decoration: none;
  transition: color 0.2s;
}
ul.nav-links a:hover,
ul.nav-links li.current-menu-item > a { color: var(--rope); }

.nav-right { display: flex; align-items: center; gap: 0; }
.nav-badge {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rope);
  border: 1px solid rgba(196,147,63,0.4);
  padding: 0.2rem 0.7rem; margin-right: 1rem;
}
.nav-cta {
  background: var(--rope); color: var(--charcoal); border: none;
  padding: 0.55rem 1.4rem;
  font-family: 'Barlow', sans-serif; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; transition: background 0.2s;
  display: inline-block;
}
.nav-cta:hover { background: var(--rope-light); }

/* Mobile nav toggle (hidden on desktop) */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.4rem;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--cream); margin: 4px 0; transition: all 0.25s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; position: relative;
  padding: 9rem clamp(1.5rem, 5vw, 5rem) 7rem; overflow: hidden;
}
.hero-ambient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 62% 42%, rgba(139,94,60,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 35% 65% at 10% 80%, rgba(196,147,63,0.06) 0%, transparent 55%);
}
.tx-star-bg {
  position: absolute; right: 3%; top: 50%;
  transform: translateY(-50%); width: 46%;
  opacity: 0.022; pointer-events: none;
}
.hero-location {
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1.6rem; position: relative;
}
.loc-pin { width: 6px; height: 6px; background: var(--rope); border-radius: 50%; }
.loc-text { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rope); }
.loc-divider { width: 1px; height: 12px; background: rgba(196,147,63,0.3); }
.loc-sub { font-size: 0.75rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--smoke); }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  font-weight: 700; line-height: 1.04;
  color: var(--cream); max-width: 800px; position: relative;
}
.hero h1 em { font-style: italic; color: var(--rope-light); }
.hero-sub {
  margin-top: 2rem; font-size: 1.02rem; font-weight: 300;
  line-height: 1.88; color: rgba(250,246,239,0.58);
  max-width: 510px; position: relative;
}
.hero-sub strong { font-weight: 500; color: rgba(250,246,239,0.82); }
.hero-actions {
  margin-top: 3rem; display: flex; gap: 1.2rem;
  align-items: center; position: relative;
}
.hero-footer-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  border-top: 1px solid rgba(196,147,63,0.12);
  display: flex; align-items: stretch;
}
.strip-item {
  flex: 1; padding: 1.4rem 2rem;
  border-right: 1px solid rgba(196,147,63,0.1);
  text-align: center;
}
.strip-item:last-child { border-right: none; }
.strip-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--smoke); margin-bottom: 0.3rem;
}
.strip-value {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-style: italic; color: var(--dust);
}

/* ============================================================
   SHARED / UTILITY
   ============================================================ */
.sdivider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,147,63,0.22), transparent);
}
.section-label {
  font-size: 0.7rem !important; font-weight: 600 !important;
  letter-spacing: 0.22em !important; text-transform: uppercase;
  color: var(--rope) !important; margin-bottom: 1.2rem;
  line-height: 1.4 !important;
}

.btn-primary {
  background: var(--rope); color: var(--charcoal); border: none;
  padding: 0.9rem 2.2rem;
  font-family: 'Barlow', sans-serif; font-size: 0.84rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--rope-light); }
.btn-ghost {
  background: transparent; color: var(--smoke); border: none;
  padding: 0.9rem 0;
  font-family: 'Barlow', sans-serif; font-size: 0.84rem;
  font-weight: 500; letter-spacing: 0.08em;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--cream); }
.btn-ghost::after { content: '→'; }

/* Page hero (interior pages) */
.page-hero {
  padding: 10rem clamp(1.5rem, 5vw, 5rem) 5rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(196,147,63,0.1);
}
.page-hero-ambient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 60% at 50% 40%, rgba(139,94,60,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-star {
  position: absolute; right: -2%; top: 50%;
  transform: translateY(-50%); width: 35%;
  opacity: 0.018; pointer-events: none;
}
.page-hero-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rope); margin-bottom: 1.2rem;
  position: relative;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 700; line-height: 1.06;
  color: var(--cream); max-width: 700px; position: relative;
}
.page-hero h1 em { font-style: italic; color: var(--rope-light); }
.page-hero-sub {
  margin-top: 1.6rem; font-size: 1rem; font-weight: 300;
  line-height: 1.88; color: rgba(250,246,239,0.55);
  max-width: 520px; position: relative;
}

/* ============================================================
   ORIGIN / THE KNOT SECTION
   ============================================================ */
.origin {
  padding: 7rem clamp(1.5rem, 5vw, 5rem); display: grid;
  grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.origin h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700; line-height: 1.18;
  color: var(--cream); margin-bottom: 1.8rem;
}
.origin h2 em { font-style: italic; color: var(--rope-light); }
.origin p {
  font-size: 0.96rem; font-weight: 300;
  line-height: 1.92; color: rgba(250,246,239,0.6); margin-bottom: 1.1rem;
}
.origin-quote {
  border-left: 2px solid var(--rope);
  padding-left: 1.4rem; margin: 2rem 0;
}
.origin-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-style: italic;
  color: rgba(250,246,239,0.78); line-height: 1.7; margin: 0;
}
.tx-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(196,147,63,0.28);
  padding: 0.45rem 1rem; margin-top: 1.5rem;
}
.tx-badge svg { width: 14px; height: 14px; fill: var(--rope); flex-shrink: 0; }
.tx-badge span {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dust);
}

.knot-diagram { display: flex; align-items: center; justify-content: center; }
.knot-rings {
  position: relative; width: 310px; height: 310px;
  display: flex; align-items: center; justify-content: center;
}
.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(196,147,63,0.18); }
.ring-1 { width: 310px; height: 310px; }
.ring-2 { width: 240px; height: 240px; border-color: rgba(196,147,63,0.1); }
.knot-core {
  width: 165px; height: 165px;
  background: rgba(139,94,60,0.07);
  border: 1px solid rgba(196,147,63,0.35);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px; text-align: center; padding: 1.5rem;
}
.knot-word-main {
  font-family: 'Playfair Display', serif;
  font-size: 0.96rem; font-style: italic;
  color: var(--rope-light); letter-spacing: 0.04em;
}
.knot-sep { width: 26px; height: 1px; background: rgba(196,147,63,0.3); }
.knot-word-sub {
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--smoke);
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach { padding: 7rem 0; background: rgba(255,255,255,0.015); }
.approach-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 5rem); }
.approach-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 4rem;
}
.approach h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700; color: var(--cream);
  max-width: 400px; line-height: 1.15;
}
.approach h2 em { font-style: italic; color: var(--rope-light); }
.approach-desc {
  font-size: 0.9rem; font-weight: 300;
  line-height: 1.82; color: rgba(250,246,239,0.48); max-width: 300px;
}
.approach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: rgba(196,147,63,0.1);
}
.approach-card {
  background: var(--charcoal);
  padding: 2.4rem 1.8rem; transition: background 0.25s;
}
.approach-card:hover { background: rgba(139,94,60,0.07); }
.approach-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem; font-weight: 700;
  color: rgba(196,147,63,0.1); line-height: 1; margin-bottom: 1rem;
}
.approach-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--cream); margin-bottom: 0.7rem;
}
.approach-card p {
  font-size: 0.87rem; font-weight: 300;
  line-height: 1.8; color: rgba(250,246,239,0.5);
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners { padding: 7rem clamp(1.5rem, 5vw, 5rem); max-width: 1200px; margin: 0 auto; }
.partners-header { margin-bottom: 3.5rem; }
.partners h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700; color: var(--cream); line-height: 1.15;
}
.partner-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.partner-card {
  border: 1px solid rgba(196,147,63,0.16);
  padding: 2.4rem; position: relative; overflow: hidden;
  transition: border-color 0.25s;
}
.partner-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--rope); transition: height 0.4s;
}
.partner-card:hover { border-color: rgba(196,147,63,0.4); }
.partner-card:hover::before { height: 100%; }
.partner-tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--rope); margin-bottom: 1.1rem;
  display: flex; align-items: center; gap: 0.55rem;
}
.partner-tag::before {
  content: ''; display: block; width: 18px; height: 1px; background: var(--rope);
}
.partner-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.9rem; line-height: 1.22;
}
.partner-card p {
  font-size: 0.89rem; font-weight: 300;
  line-height: 1.84; color: rgba(250,246,239,0.5);
}

/* ============================================================
   FIELD & WATER — PROOF SECTION
   ============================================================ */
.fw-proof {
  padding: 7rem 2rem;
  max-width: 1140px;
  margin: 0 auto;
}
.fw-proof-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.fw-proof-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.8rem;
  color: var(--cream);
}
.fw-proof-text h2 em { font-style: italic; color: var(--rope-light); }
.fw-proof-text p {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250,246,239,0.72);
  margin-bottom: 1.2rem;
}
.fw-proof-block {
  border: 1px solid rgba(196,147,63,0.16);
  overflow: hidden;
}
.fw-proof-image { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.fw-proof-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.fw-proof-body { padding: 2rem; }
.fw-proof-brand {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rope);
  margin-bottom: 1.5rem;
}
.fw-proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(196,147,63,0.12);
}
.fw-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rope-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.fw-stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(250,246,239,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 860px) {
  .fw-proof-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .fw-proof { padding: 5rem 1.5rem; }
}

/* ============================================================
   TEXAS STRIP
   ============================================================ */
.tx-strip {
  background: rgba(196,147,63,0.06);
  border-top: 1px solid rgba(196,147,63,0.12);
  border-bottom: 1px solid rgba(196,147,63,0.12);
  padding: 4.5rem clamp(1.5rem, 5vw, 5rem);
}
.tx-strip-inner {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 2.5rem;
}
.tx-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700; color: var(--cream); line-height: 1.18;
}
.tx-strip h2 em { font-style: italic; color: var(--rope-light); }
.tx-strip-inner > div { width: 100%; }
.tx-strip p {
  font-size: 0.94rem; font-weight: 300;
  line-height: 1.9; color: rgba(250,246,239,0.58); margin-bottom: 1rem;
  text-align: left;
}
.tx-strip p:last-child { margin-bottom: 0; }
.tx-values { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; justify-content: center; }
.tx-val { display: flex; align-items: center; gap: 0.6rem; }
.tx-val-dot {
  width: 6px; height: 6px; background: var(--rope);
  border-radius: 50%; flex-shrink: 0;
}
.tx-val-text {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--dust);
}

/* ============================================================
   EXPERTISE
   ============================================================ */
.expertise { padding: 7rem clamp(1.5rem, 5vw, 5rem); max-width: 1200px; margin: 0 auto; }
.expertise h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700; color: var(--cream); margin-bottom: 3.5rem;
}
.expertise-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.exp-item {
  padding: 1.35rem 2rem 1.35rem 0;
  border-bottom: 1px solid rgba(196,147,63,0.07);
  display: flex; align-items: flex-start; gap: 0.85rem;
}
.exp-dot {
  width: 6px; height: 6px; background: var(--rope);
  border-radius: 50%; margin-top: 0.38rem; flex-shrink: 0;
}
.exp-text {
  font-size: 0.92rem; font-weight: 400;
  color: rgba(250,246,239,0.7); line-height: 1.5;
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.case-studies-archive {
  padding: 4rem clamp(1.5rem, 5vw, 5rem) 7rem; max-width: 1200px; margin: 0 auto;
}
.case-studies-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.case-card {
  border: 1px solid rgba(196,147,63,0.16);
  overflow: hidden; position: relative;
  transition: border-color 0.25s;
  display: flex; flex-direction: column;
}
.case-card:hover { border-color: rgba(196,147,63,0.4); }
.case-card-image {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  background: var(--charcoal-mid);
}
.case-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.case-card:hover .case-card-image img { transform: scale(1.04); }
.case-card-image-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: rgba(196,147,63,0.05);
  display: flex; align-items: center; justify-content: center;
}
.case-card-image-placeholder svg {
  width: 40px; height: 40px; fill: rgba(196,147,63,0.2);
}
.case-card-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.case-card-tag {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--rope); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.case-card-tag::before {
  content: ''; display: block; width: 14px; height: 1px; background: var(--rope);
}
.case-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.8rem; line-height: 1.25;
}
.case-card p {
  font-size: 0.87rem; font-weight: 300;
  line-height: 1.78; color: rgba(250,246,239,0.5); margin-bottom: 1.4rem; flex: 1;
}
.case-card-stats {
  display: flex; gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(196,147,63,0.1);
  margin-top: auto;
}
.case-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--rope-light);
  line-height: 1;
}
.case-stat-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--smoke); margin-top: 0.25rem;
}
.case-card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--rope);
  margin-top: 1.2rem; transition: color 0.2s;
}
.case-card-link:hover { color: var(--rope-light); }
.case-card-link::after { content: '→'; }

/* Single case study */
.case-study-single { max-width: 1200px; margin: 0 auto; padding: 4rem clamp(1.5rem, 5vw, 5rem) 7rem; }
.case-study-meta {
  display: flex; gap: 3rem; margin-bottom: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(196,147,63,0.1);
}
.case-meta-item {}
.case-meta-label {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--smoke); margin-bottom: 0.4rem;
}
.case-meta-value {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-style: italic; color: var(--dust);
}
.case-study-results {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: rgba(196,147,63,0.1);
  margin: 3rem 0;
}
.result-block {
  background: var(--charcoal); padding: 2rem 1.8rem;
}
.result-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--rope-light);
  line-height: 1; margin-bottom: 0.5rem;
}
.result-label {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--smoke);
}
/* ── CASE STUDY: STRUCTURED SECTIONS ─────────────────────── */
.case-featured-image { margin-bottom: 3rem; overflow: hidden; }

.case-section { margin: 3.5rem 0; }

.case-section-label {
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
  color: var(--rope) !important;
  margin-bottom: 1.4rem;
  line-height: 1.4 !important;
}

/* Challenge */
.case-challenge {
  border-left: 3px solid var(--rope);
  background: rgba(196,147,63,0.04);
  padding: 2rem 2.5rem;
}
.case-challenge-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(250,246,239,0.8);
  margin-bottom: 1rem;
}
.case-challenge-body p:last-child { margin-bottom: 0; }

/* Findings */
.case-findings-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.case-finding-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1.3rem 1.5rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(196,147,63,0.12);
  font-size: 0.93rem;
  color: rgba(250,246,239,0.72);
  line-height: 1.65;
}
.case-finding-dash {
  color: var(--rope);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* Pull Quote */
.case-pullquote {
  text-align: center;
  padding: 3.5rem 2rem;
  margin: 4rem 0;
}
.case-pullquote-rule {
  width: 48px; height: 1px;
  background: var(--rope);
  margin: 0 auto 2rem;
}
.case-pullquote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto 2rem;
  border: none; padding: 0;
}

/* Narrative (What We Did) */
.case-narrative-body p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(250,246,239,0.72);
  margin-bottom: 1.4rem;
  max-width: 740px;
}
.case-narrative-body p:last-child { margin-bottom: 0; }

/* What's Next */
.case-next {
  padding: 2.5rem;
  border-top: 1px solid rgba(196,147,63,0.12);
  border-bottom: 1px solid rgba(196,147,63,0.12);
}
.case-next-body p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250,246,239,0.58);
  margin-bottom: 1rem;
  font-style: italic;
}
.case-next-body p:last-child { margin-bottom: 0; }

/* Prev / Next nav */
.case-nav {
  display: flex; justify-content: space-between;
  margin-top: 5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(196,147,63,0.1);
}
.case-nav-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--smoke); margin-bottom: 0.4rem;
}
.case-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--cream);
  transition: color 0.2s;
}
.case-nav-link:hover { color: var(--rope-light); }

/* No posts state */
.no-posts {
  padding: 5rem 0; text-align: center;
}
.no-posts p {
  font-size: 0.96rem; color: rgba(250,246,239,0.45);
  font-weight: 300; line-height: 1.8;
}

/* ============================================================
   HOME — CASE STUDIES PREVIEW STRIP
   ============================================================ */
.case-preview {
  padding: 7rem clamp(1.5rem, 5vw, 5rem); max-width: 1200px; margin: 0 auto;
}
.case-preview-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3rem;
}
.case-preview h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700; color: var(--cream); line-height: 1.15;
}
.case-preview h2 em { font-style: italic; color: var(--rope-light); }
.case-preview-link {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--smoke);
  transition: color 0.2s; display: flex; align-items: center; gap: 0.4rem;
}
.case-preview-link:hover { color: var(--rope); }
.case-preview-link::after { content: '→'; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 9rem clamp(1.5rem, 5vw, 5rem); text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(139,94,60,0.1) 0%, transparent 70%);
}
.cta-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rope); margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  position: relative;
}
.cta-eyebrow::before, .cta-eyebrow::after {
  content: ''; display: block; width: 2rem; height: 1px;
  background: rgba(196,147,63,0.4);
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 4.6vw, 4.3rem);
  font-weight: 700; color: var(--cream);
  max-width: 720px; margin: 0 auto 1.4rem;
  line-height: 1.08; position: relative;
}
.cta-section h2 em { font-style: italic; color: var(--rope-light); }
.cta-sub {
  font-size: 0.98rem; font-weight: 300;
  color: rgba(250,246,239,0.48); margin-bottom: 3rem; position: relative;
}
.cta-actions { display: flex; justify-content: center; gap: 1.2rem; position: relative; }

/* Contact page form */
.contact-section { max-width: 1200px; margin: 0 auto; padding: 4rem clamp(1.5rem, 5vw, 5rem) 7rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.contact-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700; color: var(--cream); line-height: 1.18; margin-bottom: 1.5rem;
}
.contact-intro h2 em { font-style: italic; color: var(--rope-light); }
.contact-intro p {
  font-size: 0.94rem; font-weight: 300;
  line-height: 1.9; color: rgba(250,246,239,0.55); margin-bottom: 1rem;
}
.contact-detail {
  display: flex; align-items: center; gap: 0.8rem; margin-top: 2rem;
}
.contact-detail-dot { width: 6px; height: 6px; background: var(--rope); border-radius: 50%; }
.contact-detail-text {
  font-size: 0.84rem; color: var(--dust); font-weight: 400; letter-spacing: 0.04em;
}
.contact-detail-text a { color: var(--rope); transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--rope-light); }

/* WP comment form used as contact form */
#respond { margin: 0; }
#respond h3 { display: none; }
.comment-form label {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--smoke); margin-bottom: 0.5rem;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,147,63,0.2);
  color: var(--cream); font-family: 'Barlow', sans-serif;
  font-size: 0.92rem; font-weight: 300;
  padding: 0.85rem 1rem; margin-bottom: 1.4rem;
  transition: border-color 0.2s; outline: none;
}
.comment-form input:focus, .comment-form textarea:focus {
  border-color: rgba(196,147,63,0.5);
}
.comment-form textarea { height: 150px; resize: vertical; }
.comment-form input[type="submit"] {
  background: var(--rope); color: var(--charcoal); border: none;
  padding: 0.9rem 2.2rem; font-family: 'Barlow', sans-serif;
  font-size: 0.84rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s;
}
.comment-form input[type="submit"]:hover { background: var(--rope-light); }
.comment-notes, .logged-in-as { display: none; }

/* ============================================================
   ABOUT PAGE EXTRAS
   ============================================================ */
.about-team { padding: 5rem clamp(1.5rem, 5vw, 5rem) 7rem; max-width: 1200px; margin: 0 auto; }
.about-team h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700; color: var(--cream); margin-bottom: 3rem;
}
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
  border: 1px solid rgba(196,147,63,0.16);
  overflow: hidden;
  transition: border-color 0.25s;
}
.team-card:hover { border-color: rgba(196,147,63,0.38); }
.team-photo {
  width: 100%; height: 260px; overflow: hidden;
  background: rgba(196,147,63,0.06);
  display: flex; align-items: center; justify-content: center;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-photo svg { width: 44px; height: 44px; fill: rgba(196,147,63,0.22); }
.team-card-body { padding: 1.8rem; }
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rope); margin-bottom: 0.9rem;
}
.team-bio {
  font-size: 0.87rem; font-weight: 300;
  line-height: 1.78; color: rgba(250,246,239,0.5);
  margin-bottom: 1.2rem;
}
.team-linkedin {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rope);
  transition: color 0.2s;
}
.team-linkedin:hover { color: var(--rope-light); }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer {
  padding: 2.6rem clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid rgba(196,147,63,0.1);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-left { display: flex; align-items: center; gap: 0.8rem; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--rope);
}
.footer-logo span { color: rgba(250,246,239,0.32); font-weight: 400; font-style: italic; }
.footer-sep { width: 1px; height: 14px; background: rgba(196,147,63,0.2); }
.footer-loc {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--smoke);
}
.footer-right { font-size: 0.75rem; color: rgba(250,246,239,0.22); letter-spacing: 0.06em; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fu  { animation: fadeUp 0.85s ease forwards; }
.fu1 { opacity: 0; animation: fadeUp 0.85s 0.15s ease forwards; }
.fu2 { opacity: 0; animation: fadeUp 0.85s 0.28s ease forwards; }
.fu3 { opacity: 0; animation: fadeUp 0.85s 0.42s ease forwards; }
.fu4 { opacity: 0; animation: fadeUp 0.85s 0.56s ease forwards; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  nav.site-nav { padding: 1rem 1.5rem; }
  .nav-links-wrap, .nav-badge { display: none; }
  .nav-toggle { display: block; }

  .hero { padding: 7rem 1.5rem 11rem; }
  .hero-footer-strip { flex-wrap: wrap; position: relative; margin-top: 3rem; }
  .strip-item { flex: 1 1 50%; border-bottom: 1px solid rgba(196,147,63,0.08); }
  .tx-star-bg { width: 90%; right: -20%; opacity: 0.025; }

  .origin { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  .knot-diagram { display: none; }

  .approach { padding: 5rem 0; }
  .approach-inner { padding: 0 1.5rem; }
  .approach-header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .approach-grid { grid-template-columns: 1fr; }

  .partners { padding: 5rem 1.5rem; }
  .partner-cards { grid-template-columns: 1fr; }

  .tx-strip { padding: 4rem 1.5rem; }
  .tx-strip-inner { gap: 1.8rem; }
  .tx-values { gap: 1rem; }

  .expertise { padding: 5rem 1.5rem; }
  .expertise-list { grid-template-columns: 1fr 1fr; }

  .case-studies-grid { grid-template-columns: 1fr; }
  .case-preview { padding: 5rem 1.5rem; }
  .case-preview-header { flex-direction: column; gap: 1rem; align-items: flex-start; }

  .cta-section { padding: 6rem 1.5rem; }
  .cta-actions { flex-direction: column; align-items: center; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-section { padding: 3rem 1.5rem 5rem; }

  .case-study-single { padding: 3rem 1.5rem 5rem; }
  .case-study-meta { flex-wrap: wrap; gap: 1.5rem; }
  .case-study-results { grid-template-columns: 1fr; }
  .case-challenge { padding: 1.5rem; }
  .case-findings-grid { grid-template-columns: 1fr; }
  .case-pullquote { padding: 2.5rem 1rem; }
  .case-next { padding: 1.5rem; }
  .case-nav { flex-direction: column; gap: 2rem; }

  .team-grid { grid-template-columns: 1fr; }
  .team-photo { height: 220px; }
  .page-hero { padding: 8rem 1.5rem 3.5rem; }

  footer.site-footer { flex-direction: column; gap: 1.2rem; text-align: center; padding: 2rem 1.5rem; }
}

@media (max-width: 600px) {
  .expertise-list { grid-template-columns: 1fr; }
  .case-studies-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAID LANDING PAGE — .lp-* (page-fw-partner.php)
   ============================================================ */

/* Reset body for standalone template */
body.lp-page { background: var(--charcoal); color: var(--cream); font-family: 'Barlow', sans-serif; }

/* Stripped header */
.lp-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem clamp(1.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(196,147,63,0.1);
  position: sticky; top: 0; background: rgba(28,24,20,0.96);
  backdrop-filter: blur(8px); z-index: 100;
}
.lp-header-cta { font-size: 0.8rem; padding: 0.65rem 1.4rem; }

/* Hero */
.lp-hero {
  padding: 8rem clamp(1.5rem, 5vw, 4rem) 6rem;
  max-width: 900px; margin: 0 auto; text-align: center;
  position: relative;
}
.lp-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rope);
  margin-bottom: 1.8rem;
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
}
.lp-eyebrow::before, .lp-eyebrow::after {
  content: ''; display: block; width: 2rem; height: 1px; background: rgba(196,147,63,0.4);
}
.lp-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 700; line-height: 1.06; color: var(--cream);
  margin-bottom: 1.8rem;
}
.lp-hero h1 em { font-style: italic; color: var(--rope-light); }
.lp-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.85;
  color: rgba(250,246,239,0.6); margin-bottom: 2.8rem; max-width: 680px; margin-left: auto; margin-right: auto;
}
.lp-hero-cta { font-size: 0.9rem; padding: 1rem 2.4rem; }

/* Proof strip */
.lp-proof-strip {
  display: flex; align-items: stretch;
  background: rgba(196,147,63,0.06);
  border-top: 1px solid rgba(196,147,63,0.14);
  border-bottom: 1px solid rgba(196,147,63,0.14);
}
.lp-proof-item {
  flex: 1; padding: 2.5rem clamp(1.5rem, 3vw, 3rem); text-align: center;
}
.lp-proof-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700;
  color: var(--rope-light); line-height: 1; margin-bottom: 0.6rem;
}
.lp-proof-label {
  font-size: 0.78rem; font-weight: 300; line-height: 1.6;
  color: rgba(250,246,239,0.45);
}
.lp-proof-divider {
  width: 1px; background: rgba(196,147,63,0.14); flex-shrink: 0;
}

/* Who this is for */
.lp-who {
  max-width: 1100px; margin: 0 auto;
  padding: 7rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}
.lp-section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rope);
  margin-bottom: 1.2rem;
}
.lp-who h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
  color: var(--cream); line-height: 1.12; margin-bottom: 3.5rem;
}
.lp-who h2 em { font-style: italic; color: var(--rope-light); }
.lp-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; text-align: left; }
.lp-who-card {
  border: 1px solid rgba(196,147,63,0.16);
  padding: 2.4rem;
}
.lp-who-tag {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rope);
  margin-bottom: 1.2rem;
}
.lp-who-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; line-height: 1.25;
  color: var(--cream); margin-bottom: 1rem;
}
.lp-who-card p {
  font-size: 0.92rem; font-weight: 300; line-height: 1.85;
  color: rgba(250,246,239,0.55);
}

/* Treezyn proof section */
.lp-treezyn {
  background: rgba(196,147,63,0.04);
  border-top: 1px solid rgba(196,147,63,0.1);
  border-bottom: 1px solid rgba(196,147,63,0.1);
}
.lp-treezyn-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem;
  align-items: center;
  padding: 6rem clamp(1.5rem, 5vw, 4rem);
}
.lp-treezyn-image { overflow: hidden; }
.lp-treezyn-image img { width: 100%; display: block; object-fit: cover; }
.lp-treezyn-content .lp-section-label { margin-bottom: 0.8rem; }
.lp-treezyn-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 700;
  color: var(--cream); line-height: 1.12; margin-bottom: 1.4rem;
}
.lp-treezyn-content h2 em { font-style: italic; color: var(--rope-light); }
.lp-treezyn-content p {
  font-size: 0.94rem; font-weight: 300; line-height: 1.9;
  color: rgba(250,246,239,0.58); margin-bottom: 1.1rem;
}
.lp-treezyn-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin: 2rem 0 1.8rem;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(196,147,63,0.12);
  border-bottom: 1px solid rgba(196,147,63,0.12);
}
.lp-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem; font-weight: 700; color: var(--rope-light);
  line-height: 1; margin-bottom: 0.4rem;
}
.lp-stat-label {
  font-size: 0.7rem; font-weight: 400; line-height: 1.5;
  color: rgba(250,246,239,0.45); text-transform: uppercase; letter-spacing: 0.06em;
}
.lp-story-link {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--rope);
  transition: color 0.2s;
}
.lp-story-link:hover { color: var(--rope-light); }

/* Form section */
.lp-form-section {
  padding: 7rem clamp(1.5rem, 5vw, 4rem);
  position: relative;
}
.lp-form-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 30%, rgba(139,94,60,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.lp-form-wrap {
  max-width: 760px; margin: 0 auto; position: relative;
}
.lp-form-header { text-align: center; margin-bottom: 3.5rem; }
.lp-form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
  color: var(--cream); line-height: 1.12; margin: 0.8rem 0 1.2rem;
}
.lp-form-header h2 em { font-style: italic; color: var(--rope-light); }
.lp-form-header p {
  font-size: 0.94rem; font-weight: 300; line-height: 1.85;
  color: rgba(250,246,239,0.5);
}
.lp-form-error {
  background: rgba(196,63,63,0.12); border: 1px solid rgba(196,63,63,0.3);
  color: #e88; padding: 1rem 1.2rem; font-size: 0.88rem;
  margin-bottom: 1.8rem;
}
.lp-form-row { margin-bottom: 1.4rem; }
.lp-form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.lp-form-field label {
  display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--smoke); margin-bottom: 0.5rem;
}
.lp-req { color: var(--rope); }
.lp-form-field input,
.lp-form-field select,
.lp-form-field textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,147,63,0.2);
  color: var(--cream); font-family: 'Barlow', sans-serif;
  font-size: 0.92rem; font-weight: 300;
  padding: 0.85rem 1rem; outline: none;
  transition: border-color 0.2s; box-sizing: border-box;
  -webkit-appearance: none; appearance: none;
}
.lp-form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C4933F' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.lp-form-field input:focus,
.lp-form-field select:focus,
.lp-form-field textarea:focus { border-color: rgba(196,147,63,0.5); }
.lp-form-field textarea { resize: vertical; }
.lp-submit {
  width: 100%; font-size: 0.88rem; padding: 1.1rem;
  cursor: pointer; border: none; letter-spacing: 0.08em;
}
.lp-form-fine {
  font-size: 0.76rem; color: rgba(250,246,239,0.3); text-align: center;
  margin-top: 1.2rem; line-height: 1.7;
}

/* Success state */
.lp-success {
  text-align: center; padding: 4rem 2rem;
}
.lp-success h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--cream);
  margin: 1.5rem 0 1rem;
}
.lp-success p {
  font-size: 0.96rem; font-weight: 300; line-height: 1.85;
  color: rgba(250,246,239,0.55);
}
.lp-success a { color: var(--rope); }

/* Stripped footer */
.lp-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(196,147,63,0.1);
  font-size: 0.75rem; color: rgba(250,246,239,0.25); letter-spacing: 0.06em;
}
.lp-footer a { color: rgba(196,147,63,0.45); transition: color 0.2s; }
.lp-footer a:hover { color: var(--rope); }

/* LP responsive */
@media (max-width: 860px) {
  .lp-proof-strip { flex-direction: column; }
  .lp-proof-divider { width: auto; height: 1px; }
  .lp-who-grid { grid-template-columns: 1fr; }
  .lp-treezyn-inner { grid-template-columns: 1fr; gap: 3rem; }
  .lp-form-2col { grid-template-columns: 1fr; }
  .lp-hero { padding: 6rem 1.5rem 4rem; }
  .lp-who { padding: 5rem 1.5rem; }
  .lp-form-section { padding: 5rem 1.5rem; }
  .lp-footer { flex-direction: column; gap: 0.8rem; text-align: center; }
}
