/* ============================================================
   LAKE STREET DESIGN CO. — Main Stylesheet
   ============================================================ */

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

/* ---- Variables ---- */
:root {
  --taupe:      #ACA691;
  --olive:      #505136;
  --dark:       #2D2E32;
  --grey:       #45474C;
  --cream:      #EDE7DB;
  --warm-grey:  #DDDBC9;
  --white:      #FFFFFF;
  --black:      #000000;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --header-h: 76px;
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---- Loading Screen ---- */
#loading-screen {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transition: opacity .7s var(--ease), visibility .7s;
}
#loading-screen.out { opacity: 0; visibility: hidden; pointer-events: none; }

.load-logo {
  width: clamp(160px, 22vw, 260px);
  filter: brightness(0) invert(1);
  opacity: 0;
  animation: fadeLogo 1s ease .3s forwards;
}
.load-bar-wrap {
  width: clamp(160px, 22vw, 260px);
  height: 1px;
  background: rgba(237,231,219,.15);
}
.load-bar {
  height: 100%;
  background: var(--taupe);
  width: 0;
  animation: growBar 1.6s var(--ease) .2s forwards;
}
@keyframes fadeLogo { to { opacity: 1; } }
@keyframes growBar  { to { width: 100%; } }

/* ---- Site Header ---- */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background: rgba(45,46,50,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(172,166,145,.12);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
#site-header.visible { opacity: 1; transform: translateY(0); pointer-events: all; }

.hdr-logo { height: 34px; width: auto; object-fit: contain; }

.hdr-nav {
  display: flex; align-items: center;
  gap: clamp(1.5rem, 2.5vw, 3rem);
}
.hdr-nav a {
  font-size: .75rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(237,231,219,.82);
  transition: color .3s ease;
  position: relative;
}
.hdr-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--taupe);
  transition: width .35s var(--ease);
}
.hdr-nav a:hover { color: var(--cream); }
.hdr-nav a:hover::after { width: 100%; }

/* Hamburger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.burger span {
  display: block; width: 24px; height: 1px;
  background: var(--cream);
  transition: transform .3s ease, opacity .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mob-nav {
  position: fixed; inset: 0; background: var(--dark); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .45s var(--ease);
}
.mob-nav.open { opacity: 1; pointer-events: all; }
.mob-nav a {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 9vw, 4.5rem);
  color: var(--cream);
  letter-spacing: .04em;
  position: relative;
}
.mob-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--taupe);
  transition: width .35s var(--ease);
}
.mob-nav a:hover::after { width: 100%; }

/* ---- Hover Underline (reusable) ---- */
.u-link {
  position: relative; display: inline-block;
}
.u-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .4s var(--ease);
}
.u-link:hover::after { width: 100%; }

/* ---- Arrow ---- */
.arrow-down {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  animation: bounce 2.5s ease-in-out infinite;
  cursor: pointer;
}
.arrow-down svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.5; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(12px); }
}

/* ---- HERO ---- */
#hero {
  position: relative; width: 100vw; height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.hero-vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-vid-desk { display: block; }
.hero-vid-mob  { display: none; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(45,46,50,.25) 0%, rgba(45,46,50,.55) 100%);
  z-index: 1;
}
.hero-body {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: clamp(2rem, 5vh, 4rem);
  text-align: center;
}
#hero-logo {
  width: clamp(190px, 28vw, 360px);
  height: auto; object-fit: contain;
}
.hero-nav {
  display: flex; align-items: center;
  gap: clamp(1.2rem, 3.5vw, 3.5rem);
}
.hero-nav a {
  font-size: clamp(.72rem, 1.1vw, .9rem);
  font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.88);
  position: relative;
}
.hero-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--cream);
  transition: width .4s var(--ease);
}
.hero-nav a:hover { color: var(--white); }
.hero-nav a:hover::after { width: 100%; }

.hero-arrow {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.7);
}

/* ---- VENN DIAGRAM ---- */
/* ---- VENN DIAGRAM ----
   Geometry: 2 equal circles, 35% diameter overlap.
   Total stage = 1.65D → D = stage/1.65 = 60.61% of stage.
   Content zones: left 39.4% | overlap 21.2% | right 39.4%
   padding-top % is relative to stage WIDTH (CSS rule).
   18% of stage width ≈ 30% of circle height — places titles in upper-middle.
*/
#venn {
  background: var(--dark);
  color: var(--cream);
  padding: clamp(5rem,10vh,10rem) clamp(1.5rem,5vw,4rem);
  overflow: hidden;
  display: flex; align-items: center;
}
.venn-wrap { max-width: 1200px; margin: 0 auto; width: 100%; }
.venn-eyebrow {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,3.5rem);
  font-weight: 400; letter-spacing: .04em;
  color: var(--cream);
  margin-bottom: clamp(2.5rem,5vh,4.5rem);
  line-height: 1.05;
}

.venn-stage {
  position: relative;
  width: min(820px, 82vw);
  margin: 0 auto;
  aspect-ratio: 1.65 / 1;
}

/* Decorative circles — purely visual, no content */
.vc-bg {
  position: absolute;
  top: 0;
  width: 60.61%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  will-change: transform;
}
.vc-bg-l {
  left: 0;
  background: rgba(80,81,54,.58);
  border: 1px solid rgba(172,166,145,.25);
}
.vc-bg-r {
  right: 0;
  background: rgba(69,71,76,.58);
  border: 1px solid rgba(172,166,145,.25);
}

/* 3-column content overlay */
.vc-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 39.4fr 21.2fr 39.4fr;
  align-items: start;
  padding-top: 18%;
  z-index: 2;
}
.vc-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.vc-col-l,
.vc-col-r { padding: 0 7%; }
.vc-col-m  { padding: 0 1%; }

/* Invisible spacer in mid column — keeps list aligned with left/right lists */
.vc-spc { visibility: hidden; pointer-events: none; user-select: none; }

.venn-c-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 2.1rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.venn-c-list,
.venn-mid-list {
  list-style: none; padding: 0; margin: 0;
  text-align: center;
}
.venn-c-list li,
.venn-mid-list li {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(237,231,219,.70);
  margin-bottom: .48rem;
  line-height: 1.45;
  font-weight: 400;
}

/* ---- FEATURED PROJECT (full screen) ---- */
.feat-proj {
  position: relative; width: 100vw; height: 100vh;
  overflow: hidden; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.feat-proj-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.feat-proj:hover .feat-proj-img { transform: scale(1.04); }
.feat-proj-img-d { display: block; }
.feat-proj-img-m { display: none; }
.feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(45,46,50,.08) 0%, rgba(45,46,50,.52) 100%);
}
.feat-title {
  position: relative; z-index: 2;
  font-family: var(--serif);
  font-size: clamp(2rem,5vw,5.5rem);
  font-weight: 400; color: var(--white);
  letter-spacing: .04em; text-align: center;
  padding: 0 2rem;
}
.feat-arrow {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.7);
}

/* ---- PUZZLE SECTION (SVG) ---- */
#puzzle {
  background: var(--cream);
  padding: clamp(5rem,10vh,10rem) 0;
  overflow: hidden;
}
.puzzle-wrap { max-width: 1400px; margin: 0 auto; padding: 0 clamp(1.5rem,5vw,4rem); }
.puzzle-head {
  text-align: center;
  margin-bottom: clamp(3rem,6vh,6rem);
}
.puzzle-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem,5vw,5.5rem);
  font-weight: 400; color: var(--dark);
  margin-bottom: .75rem; line-height: 1;
}
.puzzle-head p {
  font-size: .95rem; color: var(--grey);
  max-width: 460px; margin: 0 auto; line-height: 1.7;
}

/* Desktop: stacked overlay — all 4 clips form one complete image */
.puzz-desktop { display: block; overflow: hidden; }
.puzz-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1100px, 92vw);
  margin: 0 auto;
  overflow: visible;
}
.puzz-svg {
  flex: 0 0 auto;
  width: 28%;
  height: auto;
  display: block;
  position: relative;
  will-change: transform;
  opacity: 0;
}
#ps1 { z-index: 1; }
#ps2 { z-index: 2; margin-left: -7%; }
#ps3 { z-index: 3; margin-left: -7%; }
#ps4 { z-index: 4; margin-left: -7%; }

/* Mobile: horizontal swipe carousel */
.puzz-mobile { display: none; }
.puzz-track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 clamp(1rem,5vw,3rem);
  gap: 1rem;
}
.puzz-track::-webkit-scrollbar { display: none; }
.puzz-slide {
  scroll-snap-align: start;
  flex: 0 0 calc(100vw - clamp(2rem,10vw,6rem));
  overflow: hidden; border-radius: 4px;
}
.puzz-slide img { width: 100%; height: auto; display: block; }
.puzz-indicators {
  display: flex; justify-content: center; gap: .6rem; margin-top: 1.5rem;
}
.puzz-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(45,46,50,.2); border: none; cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.puzz-dot.on { background: var(--olive); transform: scale(1.3); }

@media (max-width: 768px) {
  .puzz-desktop { display: none; }
  .puzz-mobile { display: block; }
}

/* ---- HOME CONTACT SPLIT ---- */
#home-cta {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.cta-proj {
  position: relative; overflow: hidden; cursor: pointer;
}
.cta-proj-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.48);
  transition: transform .6s var(--ease), filter .4s ease;
}
.cta-proj:hover .cta-proj-img { transform: scale(1.04); filter: brightness(.55); }
.cta-proj-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; padding: 2rem;
}
.cta-proj-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3.2vw,4rem);
  font-weight: 400; color: var(--white);
  letter-spacing: .04em; text-align: center;
}

/* CTA Form */
.cta-form-side {
  background: var(--dark);
  padding: clamp(3rem,6vw,6rem) clamp(2rem,5vw,5rem);
  display: flex; flex-direction: column; justify-content: center;
}
.cta-form-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,3.5rem);
  font-weight: 400; color: var(--cream);
  margin-bottom: .4rem; line-height: 1.05;
}
.cta-form-sub {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 2.5rem;
}
.cform {
  display: flex; flex-direction: column; gap: 1.4rem;
}
.cform-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
}
.cform-group {
  display: flex; flex-direction: column; gap: .4rem;
}
.cform-label {
  font-size: .67rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--taupe);
}
.cform-input,
.cform-select,
.cform-textarea {
  background: transparent;
  border: none; border-bottom: 1px solid rgba(172,166,145,.35);
  padding: .65rem 0;
  font-family: var(--sans); font-size: .88rem; color: var(--cream);
  width: 100%; outline: none;
  transition: border-color .3s ease;
}
.cform-input::placeholder,
.cform-textarea::placeholder { color: rgba(237,231,219,.3); }
.cform-input:focus,
.cform-select:focus,
.cform-textarea:focus { border-bottom-color: var(--taupe); }
.cform-select {
  appearance: none; cursor: pointer;
  color: rgba(237,231,219,.45);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ACA691' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .4rem center;
}
.cform-select option { background: var(--dark); color: var(--cream); }
.cform-textarea { resize: none; min-height: 90px; }
.cform-btn {
  background: var(--olive); color: var(--cream);
  padding: 1rem 2rem; margin-top: .5rem;
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid transparent;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  width: 100%;
}
.cform-btn:hover {
  background: transparent;
  border-color: var(--taupe); color: var(--taupe);
}
.cform-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* ---- FOOTER ---- */
#footer {
  background: var(--olive);
  color: var(--cream);
  padding: clamp(4rem,8vh,8rem) clamp(1.5rem,5vw,4rem) 2rem;
  overflow: hidden;
}
.footer-brand-text {
  font-family: var(--serif);
  font-size: clamp(4rem,12vw,14rem);
  font-weight: 400;
  color: rgba(237,231,219,.06);
  letter-spacing: -.01em; line-height: .9;
  margin-bottom: 2.5rem;
  white-space: nowrap; pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(2rem,4vw,5rem);
  padding-bottom: clamp(3rem,6vh,6rem);
  border-bottom: 1px solid rgba(237,231,219,.15);
  margin-bottom: 2rem;
}
.footer-logo { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: .8; }
.footer-tagline {
  font-size: .88rem; color: rgba(237,231,219,.65);
  line-height: 1.8; margin-top: 1.25rem; max-width: 280px;
}
.footer-social { display: flex; gap: 1rem; margin-top: 1.25rem; }
.footer-social-link { color: rgba(237,231,219,.55); transition: color .3s ease; }
.footer-social-link:hover { color: var(--cream); }
.footer-col h5 {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 1.25rem;
}
.footer-col h5 a {
  color: var(--taupe); transition: color .3s ease;
}
.footer-col h5 a:hover { color: var(--cream); }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a {
  font-size: .85rem; color: rgba(237,231,219,.65);
  transition: color .3s ease;
}
.footer-col ul a:hover { color: var(--cream); }
.footer-contact p {
  font-size: .85rem; line-height: 1.9;
  color: rgba(237,231,219,.65);
}
.footer-contact a {
  color: rgba(237,231,219,.65);
  transition: color .3s ease;
}
.footer-contact a:hover { color: var(--cream); }
.areas-btn {
  display: inline-block; margin-top: .75rem;
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--taupe);
  border: 1px solid rgba(172,166,145,.35); padding: .45rem 1rem;
  opacity: 0; transition: opacity .3s ease, border-color .3s ease, color .3s ease;
}
.footer-contact:hover .areas-btn { opacity: 1; }
.areas-btn:hover { border-color: var(--cream); color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p {
  font-size: .72rem; color: rgba(237,231,219,.35);
  letter-spacing: .05em;
}

/* ---- Page Hero (inner pages) ---- */
.pg-hero {
  position: relative; min-height: 65vh;
  display: flex; align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
  background: var(--dark);
}
.pg-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.pg-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(45,46,50,.2) 0%, rgba(45,46,50,.75) 100%);
}
.pg-hero-inner {
  position: relative; z-index: 2;
  padding: calc(var(--header-h) + 2rem) clamp(1.5rem,5vw,4rem) 0;
  width: 100%;
}
.pg-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem,8vw,9rem);
  color: var(--cream); font-weight: 400;
  letter-spacing: -.02em; line-height: .9;
}
.pg-eyebrow {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 1.25rem; display: block;
}

/* ---- Section Shared ---- */
.s-pad { padding: clamp(5rem,10vh,10rem) clamp(1.5rem,5vw,4rem); }
.s-max { max-width: 1400px; margin: 0 auto; }
.s-label {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 1.5rem;
}
.s-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem,5.5vw,6rem);
  font-weight: 400; color: var(--dark);
  line-height: .95; letter-spacing: -.02em;
  margin-bottom: clamp(2.5rem,5vh,5rem);
}
.s-title.light { color: var(--cream); }
.s-body {
  font-size: clamp(.9rem,1.5vw,1.05rem);
  line-height: 1.85; color: var(--grey);
}

/* ---- SERVICES FLOW ART ---- */
.flow-section {
  position: relative; min-height: 100vh; width: 100%; overflow: hidden;
}
.flow-inner {
  position: relative;
  display: flex; min-height: 100vh; width: 100%;
  flex-direction: column; justify-content: space-between;
  gap: clamp(.75rem,1.5vh,1.5rem);
  padding: clamp(5rem,9vw,7rem) clamp(2rem,6vw,5rem) clamp(2rem,5vw,4rem);
  will-change: transform;
  transform-origin: bottom left;
}
.flow-inner.c1 { background: var(--olive);  color: var(--cream); }
.flow-inner.c2 { background: var(--black);  color: var(--white); }
.flow-inner.c3 { background: var(--cream);  color: var(--dark);  }
.flow-inner.c4 { background: var(--taupe);  color: var(--dark);  }
.flow-inner.c5 { background: var(--dark);   color: var(--cream); }

.flow-no {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; opacity: .65;
}
.flow-hr { width: 100%; height: 1px; background: currentColor; opacity: .18; }
.flow-h {
  font-family: var(--serif);
  font-size: clamp(3.5rem,10vw,11rem);
  font-weight: 400; line-height: .85;
  text-transform: uppercase; letter-spacing: -.03em;
}
.flow-desc {
  max-width: 52ch;
  font-size: clamp(.9rem,2vw,1.35rem);
  font-weight: 300; line-height: 1.65; opacity: .8;
}
.flow-feats {
  display: flex; flex-wrap: wrap;
  gap: clamp(.75rem,2vw,2.5rem);
}
.flow-feat { flex: 1; min-width: 155px; }
.flow-feat-t {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: .4rem; font-weight: 500;
}
.flow-feat-d {
  font-size: clamp(.78rem,1.2vw,.88rem);
  line-height: 1.65; opacity: .68;
}

/* ---- PROCESS ---- */
#process {
  background: var(--cream);
  padding: clamp(6rem,12vh,12rem) clamp(1.5rem,5vw,4rem);
  overflow: hidden;
}
.proc-inner { max-width: 1400px; margin: 0 auto; }
.proc-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem,6vw,7rem);
  font-weight: 400; color: var(--dark);
  line-height: .9; margin-bottom: clamp(4rem,8vh,8rem);
}
.proc-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: clamp(1.5rem,2.5vw,3rem);
  position: relative;
}
.proc-steps::before {
  content: ''; position: absolute;
  top: 2.4rem; left: 3rem; right: 3rem;
  height: 1px; background: var(--taupe); opacity: .35;
}
.proc-step { text-align: center; position: relative; }
.proc-num {
  width: 4.8rem; height: 4.8rem; border-radius: 50%;
  border: 1px solid var(--taupe);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem;
  font-family: var(--serif); font-size: 1.8rem; color: var(--olive);
  background: var(--cream); position: relative; z-index: 1;
}
.proc-step-t {
  font-family: var(--serif);
  font-size: clamp(1.2rem,2vw,2rem);
  color: var(--dark); margin-bottom: .75rem;
}
.proc-step-d {
  font-size: .85rem; line-height: 1.7; color: var(--grey);
}

/* ---- TEAM ---- */
.team-section {
  background: var(--dark);
  padding: clamp(5rem,10vh,10rem) clamp(1.5rem,5vw,4rem);
}
.team-inner { max-width: 1400px; margin: 0 auto; }
.team-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(2rem,4vw,4rem);
  margin-top: clamp(3rem,6vh,6rem);
}
.team-photo {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top center;
  filter: grayscale(15%); transition: filter .4s ease;
  margin-bottom: 1.5rem;
}
.team-card:hover .team-photo { filter: grayscale(0%); }
.team-name {
  font-family: var(--serif);
  font-size: clamp(1.4rem,2.5vw,2.5rem);
  color: var(--cream); font-weight: 400; margin-bottom: .2rem;
}
.team-role {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 1rem;
}
.team-bio {
  font-size: .875rem; line-height: 1.75;
  color: rgba(237,231,219,.6);
}

/* ---- ABOUT INTRO ---- */
.about-intro {
  background: var(--cream);
  padding: clamp(5rem,10vh,10rem) clamp(1.5rem,5vw,4rem);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem,7vw,8rem); align-items: start;
  max-width: 1400px; margin: 0 auto;
}
.about-h {
  font-family: var(--serif);
  font-size: clamp(2rem,4.5vw,5.5rem);
  font-weight: 400; color: var(--dark);
  line-height: 1.05;
}
.about-body p {
  font-size: clamp(.9rem,1.5vw,1.05rem);
  line-height: 1.85; color: var(--grey);
  margin-bottom: 1.5rem;
}

/* ---- VALUES ---- */
.values-section {
  background: var(--olive); color: var(--cream);
  padding: clamp(5rem,10vh,10rem) clamp(1.5rem,5vw,4rem);
}
.values-inner { max-width: 1400px; margin: 0 auto; }
.values-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(2rem,4vw,4rem);
  margin-top: clamp(3rem,6vh,6rem);
}
.value-item { border-top: 1px solid rgba(237,231,219,.2); padding-top: 1.75rem; }
.value-n {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: .75rem;
}
.value-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem,2.5vw,2.2rem);
  margin-bottom: .75rem; line-height: 1.1;
}
.value-text { font-size: .875rem; line-height: 1.75; opacity: .7; }

/* ---- PORTFOLIO ---- */
.port-hero {
  background: var(--dark);
  padding: calc(var(--header-h) + 5rem) clamp(1.5rem,5vw,4rem) 5rem;
  text-align: center;
}
.port-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem,8vw,9rem);
  color: var(--cream); font-weight: 400;
  letter-spacing: -.03em; line-height: .9; margin-bottom: 1.25rem;
}
.port-hero p {
  font-size: .95rem; color: rgba(237,231,219,.55);
  max-width: 450px; margin: 0 auto; line-height: 1.65;
}
.port-filters {
  display: flex; justify-content: center;
  background: var(--dark);
  border-bottom: 1px solid rgba(237,231,219,.1);
  overflow-x: auto;
  gap: 0; flex-wrap: nowrap;
}
.port-filter {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(237,231,219,.45);
  padding: 1.1rem 1.75rem;
  border-bottom: 2px solid transparent;
  transition: all .3s ease; white-space: nowrap; cursor: pointer;
}
.port-filter.active,
.port-filter:hover { color: var(--cream); border-bottom-color: var(--taupe); }

.port-grid {
  background: var(--cream);
  display: grid; grid-template-columns: repeat(2,1fr); gap: 4px;
}
.port-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3;
}
.port-item.wide { grid-column: span 2; aspect-ratio: 16/7; }
.port-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.port-item:hover img { transform: scale(1.05); }
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(45,46,50,.88) 100%);
  opacity: 0; transition: opacity .4s ease;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  transform: translateY(8px); opacity: 0;
  transition: all .4s ease;
}
.port-item:hover .port-info { transform: translateY(0); opacity: 1; }
.port-cat {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: .4rem;
}
.port-name {
  font-family: var(--serif);
  font-size: clamp(1.2rem,2.5vw,2.5rem);
  color: var(--white); font-weight: 400;
}

/* ---- PROJECT PAGE ---- */
.proj-header {
  background: var(--dark);
  padding: calc(var(--header-h) + 4rem) clamp(1.5rem,5vw,4rem) 4rem;
}
.proj-meta {
  display: flex; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 1.75rem;
}
.proj-meta-item label {
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--taupe); display: block; margin-bottom: .2rem;
}
.proj-meta-item span { font-size: .875rem; color: var(--cream); }
.proj-title {
  font-family: var(--serif);
  font-size: clamp(3rem,7vw,8rem);
  color: var(--cream); font-weight: 400;
  letter-spacing: -.02em; line-height: .95;
  max-width: 900px;
}
.proj-gallery { background: var(--dark); }
.proj-img-full { width: 100%; height: 80vh; object-fit: cover; display: block; }
.proj-img-half { width: 100%; height: 60vh; object-fit: cover; display: block; }
.proj-two { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.proj-desc {
  background: var(--cream);
  padding: clamp(4rem,8vh,8rem) clamp(1.5rem,5vw,4rem);
}
.proj-desc-inner { max-width: 820px; margin: 0 auto; }
.proj-desc p {
  font-size: clamp(.95rem,1.5vw,1.1rem);
  line-height: 1.9; color: var(--grey); margin-bottom: 1.5rem;
}

/* ---- TESTIMONIALS ---- */
.test-section {
  background: var(--cream);
  padding: clamp(5rem,10vh,10rem) clamp(1.5rem,5vw,4rem);
}
.test-inner { max-width: 1400px; margin: 0 auto; }
.test-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: clamp(1.5rem,3vw,3rem);
  margin-top: clamp(3rem,6vh,6rem);
}
.test-card {
  background: var(--white);
  padding: clamp(2rem,3.5vw,3.5rem);
  border-left: 2px solid var(--taupe);
}
.test-stars { color: var(--taupe); font-size: .875rem; margin-bottom: 1.25rem; }
.test-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.05rem,1.8vw,1.4rem);
  line-height: 1.65; color: var(--dark);
  margin-bottom: 2rem;
}
.test-author { display: flex; align-items: center; gap: .9rem; }
.test-author-name {
  font-size: .875rem; font-weight: 500; color: var(--dark); display: block;
}
.test-author-loc { font-size: .75rem; color: var(--taupe); }

/* ---- CONTACT PAGE ---- */
.contact-hero {
  background: var(--dark);
  padding: calc(var(--header-h) + 5rem) clamp(1.5rem,5vw,4rem) 5rem;
}
.contact-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem,8vw,9rem);
  color: var(--cream); font-weight: 400;
  letter-spacing: -.03em; line-height: .9; max-width: 800px;
}
.contact-body {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem,6vw,7rem);
  max-width: 1400px; margin: 0 auto;
  padding: clamp(4rem,8vh,8rem) clamp(1.5rem,5vw,4rem);
}
.contact-info h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem,3vw,3.5rem);
  font-weight: 400; color: var(--dark); margin-bottom: 2rem;
}
.ci-item { margin-bottom: 2rem; }
.ci-label {
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--dark); font-weight: 600; margin-bottom: .4rem;
}
.ci-value { font-size: .9rem; line-height: 1.75; color: var(--grey); }
.ci-value a { color: var(--grey); transition: color .3s ease; }
.ci-value a:hover { color: var(--dark); }

.contact-form-full {
  background: var(--dark);
  padding: clamp(3rem,5vw,5rem) clamp(2rem,4vw,4rem);
}
.cf-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,3rem);
  color: var(--cream); font-weight: 400; margin-bottom: 2rem;
}
.cf { display: flex; flex-direction: column; gap: 1.4rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.cf-group { display: flex; flex-direction: column; gap: .4rem; }
.cf-lbl {
  font-size: .67rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--taupe);
}
.cf-in, .cf-sel, .cf-ta {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(172,166,145,.3);
  padding: .65rem 0;
  font-family: var(--sans); font-size: .88rem; color: var(--cream);
  outline: none; width: 100%;
  transition: border-color .3s ease;
}
.cf-in::placeholder, .cf-ta::placeholder { color: rgba(237,231,219,.28); }
.cf-in:focus, .cf-sel:focus, .cf-ta:focus { border-bottom-color: var(--taupe); }
.cf-sel {
  appearance: none; cursor: pointer; color: rgba(237,231,219,.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ACA691' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .4rem center;
}
.cf-sel option { background: var(--dark); color: var(--cream); }
.cf-ta { resize: none; min-height: 110px; }
.cf-btn {
  background: var(--olive); color: var(--cream); margin-top: .5rem;
  padding: 1rem 2rem; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid transparent;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  width: 100%;
}
.cf-btn:hover { background: transparent; border-color: var(--taupe); color: var(--taupe); }

/* ---- SERVICE AREAS ---- */
.areas-hero {
  background: var(--olive); color: var(--cream);
  padding: calc(var(--header-h) + 5rem) clamp(1.5rem,5vw,4rem) 5rem;
  text-align: center;
}
.areas-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem,8vw,9rem);
  font-weight: 400; letter-spacing: -.03em; line-height: .9; margin-bottom: 1.25rem;
}
.areas-hero p { font-size: .95rem; color: rgba(237,231,219,.65); max-width: 480px; margin: 0 auto; }
.areas-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(2.5rem,4vw,4rem);
  max-width: 1400px; margin: 0 auto;
  padding: clamp(5rem,10vh,10rem) clamp(1.5rem,5vw,4rem);
}
.area-card { border-top: 1px solid var(--taupe); padding-top: 1.75rem; }
.area-state {
  font-family: var(--serif);
  font-size: clamp(1.4rem,2.5vw,3rem);
  color: var(--dark); margin-bottom: 1rem;
}
.area-cities li {
  font-size: .875rem; color: var(--grey);
  padding: .3rem 0; border-bottom: 1px solid rgba(172,166,145,.2);
}

/* ---- SCROLL REVEAL ---- */
.rv { opacity: 0; transform: translateY(35px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.on { opacity: 1; transform: translateY(0); }
.rv-l { opacity: 0; transform: translateX(-35px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv-l.on { opacity: 1; transform: translateX(0); }
.rv-r { opacity: 0; transform: translateX(35px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv-r.on { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proc-steps { grid-template-columns: repeat(2,1fr); }
  .proc-steps::before { display: none; }
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .contact-body { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .port-grid { grid-template-columns: 1fr; }
  .port-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 768px) {
  .hdr-nav { display: none; }
  .burger { display: flex; }
  #home-cta { grid-template-columns: 1fr; min-height: auto; }
  .cta-proj { height: 65vw; min-height: 300px; }
  .cform-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .cf-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .proc-steps { grid-template-columns: 1fr; }
  .venn-stage { aspect-ratio: auto; height: auto; }
  .vc-bg { display: none; }
  .vc-grid {
    position: relative; inset: auto;
    grid-template-columns: 1fr;
    padding-top: 0;
    gap: .75rem;
  }
  .vc-col {
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: 8px;
  }
  .vc-col-l { background: rgba(80,81,54,.4); }
  .vc-col-m { background: rgba(172,166,145,.07); }
  .vc-col-r { background: rgba(69,71,76,.5); }
  .vc-spc { display: none; }
}
@media (orientation: portrait) {
  .hero-vid-desk { display: none; }
  .hero-vid-mob { display: block; }
  .feat-proj-img-d { display: none; }
  .feat-proj-img-m { display: block; }
}
@media (orientation: landscape) and (min-width: 769px) {
  .hero-vid-desk { display: block; }
  .hero-vid-mob { display: none; }
  .feat-proj-img-d { display: block; }
  .feat-proj-img-m { display: none; }
}
@media (max-width: 480px) {
  .hero-nav { gap: .75rem; flex-wrap: wrap; justify-content: center; }
  .hero-nav a { font-size: .62rem; }
  .values-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
}

/* ---- SECTION LABEL LARGE (about page) ---- */
.s-label-lg {
  font-family: var(--sans);
  font-size: clamp(.9rem, 1.6vw, 1.35rem);
  font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.5rem; display: block;
}
.s-label-lg.dark { color: var(--dark); }

/* ---- BLOG ---- */
.blog-hero {
  background: var(--dark);
  padding: calc(var(--header-h) + 5rem) clamp(1.5rem,5vw,4rem) 4rem;
}
.blog-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem,8vw,9rem);
  color: var(--cream); font-weight: 400;
  letter-spacing: -.03em; line-height: .9;
  max-width: 700px; margin-bottom: 1rem;
}
.blog-hero p {
  font-size: .9rem; color: rgba(237,231,219,.55);
  max-width: 420px; line-height: 1.6;
}
.blog-layout {
  display: grid; grid-template-columns: 1.75fr 1fr;
  gap: clamp(3rem,5vw,5rem);
  max-width: 1400px; margin: 0 auto;
  padding: clamp(3.5rem,7vh,7rem) clamp(1.5rem,5vw,4rem);
  align-items: start;
}
.blog-posts { display: flex; flex-direction: column; gap: clamp(3rem,5vh,5rem); }
.blog-article-link { display: block; color: inherit; }
.blog-article-img {
  width: 100%; aspect-ratio: 16/9;
  overflow: hidden; margin-bottom: 1.25rem;
}
.blog-article-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease);
}
.blog-article-link:hover .blog-article-img img { transform: scale(1.04); }
.blog-cat {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--taupe); display: block; margin-bottom: .5rem;
}
.blog-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem,2.5vw,2.4rem);
  color: var(--dark); font-weight: 400;
  margin-bottom: .75rem; line-height: 1.15;
  transition: color .3s ease;
}
.blog-article-link:hover .blog-title { color: var(--olive); }
.blog-excerpt {
  font-size: .9rem; line-height: 1.75; color: var(--grey);
  margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-meta {
  display: flex; gap: 1.5rem; align-items: center;
  font-size: .75rem; color: var(--taupe); letter-spacing: .04em;
}
.blog-divider { height: 1px; background: rgba(172,166,145,.28); margin: 0; }

.blog-sidebar { position: sticky; top: calc(var(--header-h) + 2rem); }
.sidebar-block { margin-bottom: 2.75rem; }
.sidebar-block h4 {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--taupe);
  border-bottom: 1px solid rgba(172,166,145,.28);
  padding-bottom: .75rem; margin-bottom: 1.25rem;
}
.sidebar-story {
  display: flex; gap: .9rem; align-items: flex-start;
  margin-bottom: 1.1rem; padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(45,46,50,.07);
}
.sidebar-story:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.sidebar-story-img {
  width: 68px; height: 52px; object-fit: cover; flex-shrink: 0;
}
.sidebar-story-title {
  font-family: var(--serif); font-size: .95rem;
  color: var(--dark); line-height: 1.3;
  transition: color .3s ease;
}
.sidebar-story a:hover .sidebar-story-title { color: var(--olive); }
.topic-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.topic-tag {
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--grey); border: 1px solid rgba(172,166,145,.38);
  padding: .28rem .65rem; transition: all .3s ease; cursor: pointer;
}
.topic-tag:hover { border-color: var(--olive); color: var(--olive); }
.sidebar-latest { display: flex; flex-direction: column; }
.sidebar-latest li {
  font-size: .84rem; color: var(--dark);
  padding: .5rem 0; border-bottom: 1px solid rgba(45,46,50,.07);
  line-height: 1.4;
}
.sidebar-latest li:last-child { border-bottom: none; }
.sidebar-latest li a { transition: color .3s ease; }
.sidebar-latest li a:hover { color: var(--olive); }
.subscribe-form { display: flex; flex-direction: column; gap: .7rem; }
.subscribe-input {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(172,166,145,.35);
  padding: .6rem 0; font-family: var(--sans); font-size: .875rem;
  color: var(--dark); outline: none; transition: border-color .3s ease;
}
.subscribe-input::placeholder { color: rgba(45,46,50,.32); }
.subscribe-input:focus { border-bottom-color: var(--olive); }
.subscribe-btn {
  background: var(--olive); color: var(--cream); padding: .8rem 1.5rem;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid transparent; transition: all .3s ease; cursor: pointer;
  text-align: center;
}
.subscribe-btn:hover { background: transparent; border-color: var(--olive); color: var(--olive); }

@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}

/* blog.html class aliases */
.blog-hero-sub { font-size: .9rem; color: rgba(237,231,219,.55); max-width: 420px; line-height: 1.6; }
.blog-article { border-bottom: 1px solid rgba(172,166,145,.2); padding-bottom: clamp(2.5rem,4vh,4rem); }
.blog-article:last-child { border-bottom: none; }
.blog-article-img-wrap { display: block; overflow: hidden; margin-bottom: 1.25rem; }
.blog-article-img-wrap .blog-article-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform .55s var(--ease);
}
.blog-article-img-wrap:hover .blog-article-img { transform: scale(1.04); }
.blog-article-body {}
.blog-article-cat {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--taupe); display: inline-block; margin-bottom: .5rem;
  transition: color .3s ease;
}
.blog-article-cat:hover { color: var(--olive); }
.blog-article-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem,2.5vw,2.4rem);
  color: var(--dark); font-weight: 400;
  margin-bottom: .75rem; line-height: 1.15;
}
.blog-article-title a { transition: color .3s ease; }
.blog-article-title a:hover { color: var(--olive); }
.blog-article-excerpt {
  font-size: .9rem; line-height: 1.75; color: var(--grey);
  margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-article-meta {
  display: flex; gap: 1.25rem; align-items: center;
  font-size: .75rem; color: var(--taupe); letter-spacing: .04em;
}
.blog-article-author { font-weight: 500; }
.blog-article-date {}
.sidebar-block-title {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--taupe);
  border-bottom: 1px solid rgba(172,166,145,.28);
  padding-bottom: .75rem; margin-bottom: 1.25rem;
  display: block;
}
.sidebar-story { text-decoration: none; }
.sidebar-story-date { font-size: .72rem; color: var(--taupe); margin-top: .2rem; display: block; }
.sidebar-subscribe-text { font-size: .85rem; color: var(--grey); line-height: 1.6; margin-bottom: 1rem; }
.sidebar-latest { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.sidebar-latest li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  font-size: .84rem; color: var(--dark);
  padding: .5rem 0; border-bottom: 1px solid rgba(45,46,50,.07); line-height: 1.4;
}
.sidebar-latest li:last-child { border-bottom: none; }
.sidebar-latest li a { transition: color .3s ease; flex: 1; }
.sidebar-latest li a:hover { color: var(--olive); }
.sidebar-latest li span { font-size: .72rem; color: var(--taupe); white-space: nowrap; }

/* ---- BLOG POST PAGE ---- */
.post-hero { width:100%; height:clamp(320px,50vh,580px); overflow:hidden; }
.post-hero img { width:100%; height:100%; object-fit:cover; object-position:center; }
.post-wrap { max-width:760px; margin:0 auto; padding:clamp(3rem,6vh,6rem) clamp(1.5rem,5vw,2rem); }
.post-eyebrow { font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; color:var(--taupe); margin-bottom:1.25rem; }
.post-title { font-family:var(--serif); font-size:clamp(1.8rem,4vw,3.2rem); font-weight:400; color:var(--dark); line-height:1.2; margin-bottom:1.5rem; }
.post-meta { font-size:.8rem; color:rgba(45,46,50,.5); margin-bottom:3rem; display:flex; gap:1.5rem; }
.post-body p { font-size:1.05rem; line-height:1.85; color:var(--dark); margin-bottom:1.75rem; }
.post-body h2 { font-family:var(--serif); font-size:clamp(1.3rem,2.5vw,1.9rem); font-weight:400; color:var(--dark); margin:3rem 0 1.25rem; }
.post-nav { display:flex; justify-content:space-between; align-items:center; padding:3rem clamp(1.5rem,5vw,4rem); border-top:1px solid rgba(237,231,219,.12); background:var(--dark); flex-wrap:wrap; gap:1.5rem; }
.post-nav a { font-size:.72rem; letter-spacing:.15em; text-transform:uppercase; color:var(--taupe); transition:color .3s; }
.post-nav a:hover { color:var(--cream); }
.post-nav-label { display:block; font-size:.62rem; letter-spacing:.18em; text-transform:uppercase; color:rgba(237,231,219,.35); margin-bottom:.4rem; }
.post-nav-title { font-family:var(--serif); font-size:clamp(1rem,1.8vw,1.4rem); color:var(--cream); font-weight:400; }
