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

:root {
  --forest:  #1C3829;
  --moss:    #2D5440;
  --cream:   #F6F2E9;
  --gold:    #C9A84C;
  --sage:    #7A9E8A;
  --stone:   #8C8878;
  --ink:     #1A1A18;
  --light:   #E8E4DB;
  --white:   #FFFDF8;
  --max:     1100px;
  --content: 820px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
}

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

/* ─── HERO ANIMATIONS ───────────────────────────────────────── */
@keyframes spinCW {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes spinCCW {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes drawLine400 {
  from { stroke-dashoffset: 400; opacity: 0.02; }
  to   { stroke-dashoffset: 0; opacity: 0.09; }
}
@keyframes drawLine300 {
  from { stroke-dashoffset: 300; opacity: 0.02; }
  to   { stroke-dashoffset: 0; opacity: 0.09; }
}
@keyframes glow {
  0%   { opacity: 0.03; stroke-width: 0.5; }
  50%  { opacity: 0.14; stroke-width: 1.5; }
  100% { opacity: 0.03; stroke-width: 0.5; }
}
@keyframes circlePulse {
  0%   { opacity: 0.03; stroke-width: 0.5; }
  50%  { opacity: 0.12; stroke-width: 1.2; }
  100% { opacity: 0.03; stroke-width: 0.5; }
}

/* Horizontal lines — length 400 */
.hero-pat line:nth-child(1) {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine400 2.5s ease-out 0.2s forwards, glow 5s ease-in-out 2.7s infinite;
}
.hero-pat line:nth-child(2) {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine400 2.5s ease-out 0.7s forwards, glow 6s ease-in-out 3.2s infinite;
}
.hero-pat line:nth-child(3) {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine400 2.5s ease-out 1.2s forwards, glow 4.5s ease-in-out 3.7s infinite;
}
.hero-pat line:nth-child(4) {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine400 2.5s ease-out 1.7s forwards, glow 7s ease-in-out 4.2s infinite;
}

/* Vertical lines — length 300 */
.hero-pat line:nth-child(5) {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine300 2.5s ease-out 2.2s forwards, glow 5.5s ease-in-out 4.7s infinite;
}
.hero-pat line:nth-child(6) {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine300 2.5s ease-out 2.7s forwards, glow 6.5s ease-in-out 5.2s infinite;
}
.hero-pat line:nth-child(7) {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine300 2.5s ease-out 3.2s forwards, glow 4s ease-in-out 5.7s infinite;
}
.hero-pat line:nth-child(8) {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine300 2.5s ease-out 3.7s forwards, glow 8s ease-in-out 6.2s infinite;
}

/* Circles — spin + pulse */
.hero-pat circle:nth-child(1) {
  transform-origin: center;
  transform-box: fill-box;
  animation: spinCW 35s linear infinite, circlePulse 6s ease-in-out infinite;
}
.hero-pat circle:nth-child(2) {
  transform-origin: center;
  transform-box: fill-box;
  animation: spinCCW 25s linear infinite, circlePulse 8s ease-in-out 2s infinite;
}
.hero-pat circle:nth-child(3) {
  transform-origin: center;
  transform-box: fill-box;
  animation: spinCW 45s linear infinite, circlePulse 5s ease-in-out 1s infinite;
}

/* ─── NAV ───────────────────────────────────────────────────── */
.nav-bar {
  background: rgba(246,242,233,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-bar-inner {
  max-width: var(--max);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--forest);
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.7; }
.nav-logo .eye { color: var(--gold); }
.nav-logo img { display: block; width: auto; }
.footer-logo img { display: block; width: auto; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--forest); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  background: var(--forest);
  padding: 6rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero--short { padding: 4.5rem 3rem 4rem; }

.hero-pat {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.75rem;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 3.75rem;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.75rem;
  max-width: 700px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-title--sm {
  font-size: 2.75rem;
  margin-bottom: 0.6rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--sage);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* ─── CTA BUTTON ────────────────────────────────────────────── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}
.cta-btn:hover { background: var(--gold); color: var(--forest); }

/* ─── STAT ROW ──────────────────────────────────────────────── */
.stat-row {
  display: flex;
  gap: 3.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(122,158,138,0.2);
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.65rem;
  color: var(--sage);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ─── SECTIONS ──────────────────────────────────────────────── */
.sec {
  padding: 4rem 3rem;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.sec-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sec-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--light), transparent);
}

.sec-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 1.85rem;
  color: var(--forest);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.sec-sub {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ─── BUILT THIS YEAR ───────────────────────────────────────── */
.built-wrap {
  padding: 0 3rem 4rem;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.built-year {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 5rem;
  color: var(--light);
  position: absolute;
  top: -1.5rem; right: 3rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ─── CASE STUDY CARDS ──────────────────────────────────────── */
.cs-card {
  border: 1px solid var(--light);
  padding: 2rem;
  background: var(--white);
  cursor: pointer;
  transition: all 0.35s;
  position: relative;
  overflow: visible;
  margin-bottom: 1rem;
  display: block;
}
.cs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.35s;
}
.cs-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateX(6px);
}
.cs-card:hover::before { height: 100%; }

.cs-card .cs-preview {
  position: absolute;
  right: -280px;
  top: 0;
  width: 260px;
  background: var(--forest);
  padding: 1.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
  pointer-events: none;
  z-index: 10;
  border-left: 2px solid var(--gold);
}
.cs-card:hover .cs-preview {
  opacity: 1;
  transform: translateX(0);
}
.cs-preview-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.cs-preview-outcome {
  font-size: 0.75rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(201,168,76,0.3);
}
.cs-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}

.cs-card--featured {
  background: var(--forest);
  border: none;
  padding: 2.25rem;
  overflow: hidden;
}
.cs-card--featured::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
  transition: transform 0.5s;
}
.cs-card--featured:hover { transform: translateX(0); }
.cs-card--featured:hover::after { transform: scale(1.3); }
.cs-card--featured:hover::before { height: 100%; }
.cs-card--featured .cs-title { color: var(--cream); font-size: 1.35rem; }
.cs-card--featured .cs-type { color: var(--sage); }
.cs-card--featured .cs-num { color: rgba(201,168,76,0.5); }
.cs-card--featured .cs-arrow { color: rgba(201,168,76,0.3); }
.cs-card--featured:hover .cs-arrow { color: var(--gold); }
.cs-card--featured .tag { background: rgba(255,255,255,0.08); color: var(--sage); }
.cs-card--featured .cs-preview { background: var(--moss); }

.cs-inner {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: start;
}
.cs-num {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  color: var(--gold);
  padding-top: 0.2rem;
}
.cs-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.cs-type {
  font-size: 0.78rem;
  color: var(--stone);
  line-height: 1.6;
}
.cs-arrow {
  position: absolute;
  bottom: 1.75rem; right: 1.75rem;
  color: var(--light);
  transition: all 0.3s;
  font-size: 1.1rem;
}
.cs-card:hover .cs-arrow { color: var(--gold); transform: translateX(4px); }

.tag {
  display: inline-block;
  padding: 0.22rem 0.7rem;
  background: var(--light);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.65rem;
  margin-right: 0.35rem;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  position: relative;
  padding-bottom: 3px;
}
.view-all::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
}
.view-all:hover { color: var(--gold); }

/* ─── STRIPE SECTION ────────────────────────────────────────── */
.stripe {
  background: var(--forest);
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
}
.stripe-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stripe-pat {
  position: absolute;
  top: 0; right: 0;
  bottom: 0; width: 50%;
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
}
.stripe-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 2rem;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1.25rem;
  max-width: 520px;
}
.stripe-title em { color: var(--gold); font-style: italic; }
.stripe-body {
  font-size: 0.95rem;
  color: var(--sage);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* ─── WORK LIST ─────────────────────────────────────────────── */
.list-wrap { max-width: var(--max); margin: 0 auto; }
.list-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr 8rem;
  gap: 1.25rem;
  align-items: center;
  padding: 1.6rem 3rem;
  border-bottom: 1px solid var(--light);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}
.list-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--gold);
  transition: width 0.2s;
}
.list-item:hover { background: var(--white); padding-left: 3.5rem; }
.list-item:hover::before { width: 3px; }
.list-num {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  color: var(--gold);
}
.list-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--forest);
  transition: color 0.2s;
  line-height: 1.4;
}
.list-item:hover .list-title { color: var(--moss); }
.list-cat {
  font-size: 0.68rem;
  color: var(--stone);
  text-align: right;
  line-height: 1.5;
}

/* ─── CASE STUDY PAGE ───────────────────────────────────────── */
.cs-page-body {
  max-width: var(--content);
  margin: 0 auto;
  padding: 4rem 3rem;
}
.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.cs-back:hover { color: var(--gold); }

.cs-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--light);
}
.cs-block:last-child { border-bottom: none; margin-bottom: 0; }

.cs-block-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cs-block-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}
.cs-block p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #2C2C2C;
}

.outcome {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #2C2C2C;
}
.outcome-dash { color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }

.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill {
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(28,56,41,0.18);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--forest);
  background: var(--white);
  transition: all 0.2s;
}
.pill:hover { background: var(--forest); color: var(--cream); }

/* ─── STUDIO ────────────────────────────────────────────────── */
.studio-lede {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--forest);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.studio-pull {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--forest);
  line-height: 1.6;
  padding: 1.5rem 1.75rem 1.5rem 2rem;
  border-left: 2px solid var(--gold);
  margin: 2.25rem 0;
  background: var(--white);
}
.studio-p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #2C2C2C;
  margin-bottom: 1.1rem;
}

.proc-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--light);
  align-items: start;
}
.proc-row:last-child { border-bottom: none; }
.proc-num {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.proc-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}
.proc-desc { font-size: 0.9rem; color: var(--stone); line-height: 1.75; }

/* ─── BLOG INDEX ────────────────────────────────────────────── */
.blog-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 3rem;
  font-size: 1.1rem;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
  line-height: 1.7;
  border-bottom: 1px solid var(--light);
}
.post-list { max-width: var(--max); margin: 0 auto; }
.post-item {
  display: block;
  padding: 2.25rem 3rem;
  border-bottom: 1px solid var(--light);
  transition: all 0.25s;
  position: relative;
}
.post-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--gold);
  transition: width 0.2s;
}
.post-item:hover { background: var(--white); padding-left: 3.5rem; }
.post-item:hover::before { width: 3px; }
.post-date {
  font-size: 0.65rem;
  color: var(--stone);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.post-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 0.4rem;
  line-height: 1.35;
  transition: color 0.2s;
}
.post-item:hover .post-title { color: var(--moss); }
.post-exc {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.65;
}
.post-read {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
}

/* ─── BLOG POST ─────────────────────────────────────────────── */
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.post-back:hover { color: var(--gold); }

.post-hero-date {
  font-size: 0.65rem;
  color: var(--sage);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.post-hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 700px;
}
.post-hero-sub {
  font-size: 0.95rem;
  color: var(--sage);
  line-height: 1.75;
  max-width: 560px;
}

.post-meta-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light);
}
.post-meta-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem 3rem;
  display: flex;
  gap: 2.5rem;
}
.post-meta-item {
  font-size: 0.68rem;
  color: var(--stone);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.post-meta-item span { color: var(--forest); font-weight: 500; }

.post-body {
  max-width: var(--content);
  margin: 0 auto;
  padding: 4rem 3rem;
}
.post-body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--forest);
  margin: 3rem 0 1rem;
  line-height: 1.3;
}
.post-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: #2C2C2C;
  margin-bottom: 1.4rem;
}
.post-body strong { font-weight: 500; color: var(--forest); }
.post-body blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--forest);
  line-height: 1.6;
  padding: 1.5rem 1.75rem 1.5rem 2rem;
  border-left: 2px solid var(--gold);
  margin: 2.25rem 0;
  background: var(--white);
}
.post-body ul, .post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}
.post-body li {
  font-size: 1rem;
  line-height: 1.85;
  color: #2C2C2C;
  margin-bottom: 0.4rem;
}

.post-rule { border: none; border-top: 1px solid var(--light); margin: 3rem 0; }
.post-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--light);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

/* ─── CTA BAND ──────────────────────────────────────────────── */
.cta-band {
  background: var(--forest);
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
}
.cta-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-band::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}
.cta-band::after {
  content: '';
  position: absolute;
  top: -80px; right: 80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(122,158,138,0.06);
}
.cta-band-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 1.75rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  max-width: 500px;
}
.cta-band-sub {
  font-size: 0.95rem;
  color: var(--sage);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* ─── RELATED POSTS ─────────────────────────────────────────── */
.related-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 3rem;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.related-card {
  border: 1px solid var(--light);
  padding: 1.6rem;
  background: var(--white);
  transition: all 0.25s;
  display: block;
}
.related-card:hover {
  border-color: rgba(201,168,76,0.35);
  background: var(--cream);
}
.related-date {
  font-size: 0.62rem;
  color: var(--stone);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.related-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--forest);
  line-height: 1.4;
}

/* ─── CONTENT WRAP ─────────────────────────────────────────── */
.content-wrap {
  max-width: var(--content);
  margin: 0 auto;
  width: 100%;
}
.contact-note {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
}
.gform-wrap { width: 100%; overflow: hidden; }
.gform-wrap iframe {
  width: 100%;
  min-height: 1513px;
  border: none;
  display: block;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--forest);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  display: block;
}
.footer-tagline {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--sage);
  letter-spacing: 0.18em;
  text-transform: lowercase;
  margin-bottom: 1rem;
}
.footer-logo .eye { color: var(--gold); }
.footer-sub {
  font-size: 0.78rem;
  color: var(--sage);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.footer-links {
  display: flex;
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(122,158,138,0.15);
}
.footer-links a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-geo {
  width: 100px;
  opacity: 0.12;
  align-self: center;
}
.footer-copy {
  font-size: 0.65rem;
  color: rgba(122,158,138,0.4);
  padding-top: 1.75rem;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(122,158,138,0.1);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────── */
.anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }


/* ─── FOOTER LIGHT SWEEP ────────────────────────────────────── */
@keyframes footerSweep {
  0%   { transform: translateX(-100%) skewX(-15deg); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: translateX(400%) skewX(-15deg); opacity: 0; }
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201,168,76,0.06) 40%,
    rgba(201,168,76,0.12) 50%,
    rgba(201,168,76,0.06) 60%,
    transparent 100%
  );
  animation: footerSweep 8s ease-in-out infinite;
  animation-delay: 3s;
  pointer-events: none;
  z-index: 0;
}

/* ─── MOBILE ────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .cs-card .cs-preview { display: none; }
}

@media (max-width: 720px) {
  .nav-bar {
    height: auto;
    padding: 1rem 1.5rem;
    justify-content: center;
  }
  .nav-bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }
  .nav-links { gap: 1.25rem; justify-content: center; }
  .nav-links a { font-size: 0.65rem; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .hero--short { padding: 3rem 1.5rem 2.5rem; }
  .hero-title { font-size: 2.4rem; }
  .hero-title--sm { font-size: 1.85rem; }
  .stat-row { gap: 2rem; }
  .stat-num { font-size: 1.85rem; }
  .built-year { font-size: 3rem; }
  .sec { padding: 3rem 1.5rem; }
  .built-wrap { padding: 0 1.5rem 3rem; }
  .list-item { grid-template-columns: 2.5rem 1fr; padding: 1.25rem 1.5rem; }
  .list-cat { display: none; }
  .post-item { padding: 1.75rem 1.5rem; }
  .post-body { padding: 2.5rem 1.5rem; }
  .post-hero-title { font-size: 1.85rem; }
  .post-meta-inner { padding: 1rem 1.5rem; }
  .related-grid { grid-template-columns: 1fr; }
  .related-wrap { padding: 3rem 1.5rem; }
  .cs-page-body { padding: 3rem 1.5rem; }
  .contact-wrap { padding: 3rem 1.5rem; }
  .blog-intro { padding: 1.5rem; }
  .gform-wrap iframe { min-height: 1700px; }
  .stripe { padding: 4rem 1.5rem; }
  .cta-band { padding: 4rem 1.5rem; }
  .footer { padding: 3rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 0; }
  .footer-geo { display: none; }
}


