/* ============================================================
   Moore Luxury Homes — classic warm luxury
   Palette: cream / parchment + deep navy + brushed gold
   Type:    Cormorant Garamond (display) + Cardo (body)
   ============================================================ */

:root {
  --cream: #f5efe4;
  --parchment: #ebe1d0;
  --paper: #faf6ee;
  --ink: #1a2436;
  --ink-soft: #2c3a52;
  --gold: #b8945a;
  --gold-deep: #8d6a3a;
  --rule: #c9b896;
  --muted: #6b6357;
  --shadow: 0 30px 80px -20px rgba(26, 36, 54, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cardo', 'Georgia', serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ===== Typography ===== */
.serif-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}
h2.serif-display { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.005em;
}
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.6rem;
}
.italic { font-style: italic; font-family: 'Cormorant Garamond', serif; }
.gold { color: var(--gold); }

.eyebrow {
  font-family: 'Cardo', serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
}
.eyebrow.gold { color: var(--gold-deep); }

.rule { width: 60px; height: 1px; background: var(--gold); margin: 28px 0; }
.rule--center { margin-left: auto; margin-right: auto; }

/* ===== Buttons & Links ===== */
.btn {
  display: inline-block;
  padding: 16px 38px;
  font-family: 'Cardo', serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  text-decoration: none;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.4s ease;
}
.btn--gold { background: var(--gold); color: var(--paper); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn--full { width: 100%; }

.link-arrow {
  display: inline-block;
  margin-top: 18px;
  font-family: 'Cardo', serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}
.link-arrow:hover { color: var(--ink); }

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 22px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(245, 239, 228, 0.96);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(184, 148, 90, 0.2);
}
.nav__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav__brand img { height: 44px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); transition: all 0.4s; }
.nav.scrolled .nav__brand img { height: 38px; filter: none; }
.nav__links { display: flex; gap: 44px; }
.nav__links a {
  font-family: 'Cardo', serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  color: var(--paper);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.nav.scrolled .nav__links a { color: var(--ink); text-shadow: none; }
.nav__links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 1px; background: var(--gold);
  transition: all 0.4s ease;
}
.nav__links a:hover::after { width: 100%; left: 0; }

.nav__menu {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 28px; height: 22px; position: relative;
}
.nav__menu span {
  display: block; height: 1px; background: var(--paper);
  position: absolute; left: 0; right: 0; transition: all 0.3s;
  box-shadow: 0 0 4px rgba(0,0,0,0.4);
}
.nav.scrolled .nav__menu span { background: var(--ink); box-shadow: none; }
.nav__menu span:nth-child(1) { top: 2px; }
.nav__menu span:nth-child(2) { top: 10px; }
.nav__menu span:nth-child(3) { top: 18px; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero__image {
  position: absolute; inset: 0;
  background-image: url('assets/hockaday/h01.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.72) saturate(1.05);
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 36, 54, 0.55) 0%, rgba(26, 36, 54, 0.25) 50%, rgba(26, 36, 54, 0.65) 100%),
    radial-gradient(ellipse at bottom right, rgba(184, 148, 90, 0.18), transparent 60%);
}
.hero__content {
  position: relative;
  max-width: 1240px; width: 100%;
  margin: 0 auto; padding: 0 32px;
  color: var(--paper);
}
.hero__content .eyebrow { color: rgba(245, 239, 228, 0.85); }
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.98;
  margin-top: 24px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero__title span { display: block; }
.hero__title .italic { font-style: italic; color: #e8cd96; font-weight: 400; }
.hero__rule { width: 90px; height: 1px; background: var(--gold); margin: 36px 0; }
.hero__lede {
  font-size: 1.18rem; max-width: 540px;
  margin-bottom: 44px; line-height: 1.7;
  color: rgba(250, 246, 238, 0.92);
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.hero__content .btn--gold {
  background: transparent; border-color: var(--paper); color: var(--paper);
}
.hero__content .btn--gold:hover { background: var(--gold); border-color: var(--gold); }
.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  color: var(--paper);
  font-family: 'Cardo', serif;
  text-transform: uppercase; letter-spacing: 0.32em;
  font-size: 0.68rem;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  opacity: 0.85;
}
.hero__scroll span {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ===== Philosophy ===== */
.philosophy {
  padding: 140px 0;
  background: var(--paper);
  position: relative;
}
.philosophy::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rule), transparent);
}
.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 80px;
  align-items: start;
}
.philosophy__label { padding-top: 18px; border-top: 1px solid var(--rule); }
.philosophy__copy p {
  font-size: 1.1rem;
  margin-top: 28px;
  color: var(--ink-soft);
  max-width: 640px;
}
.philosophy__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--rule);
}
.philosophy__stats > div { display: flex; flex-direction: column; }
.philosophy__stats .stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold-deep);
  line-height: 1;
}
.philosophy__stats .label {
  font-family: 'Cardo', serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 10px;
}

/* ===== Section heads ===== */
.section-head { margin-bottom: 80px; }
.section-head h2 { margin-top: 18px; }
.section-head--center { text-align: center; }

/* ===== Portfolio ===== */
.portfolio { padding: 140px 0; background: var(--cream); }
.portfolio__list { display: flex; flex-direction: column; gap: 140px; }

.project {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
}
.project--reverse { grid-template-columns: 1fr 1.3fr; }
.project--reverse .project__gallery,
.project--reverse .project__archive { order: 2; }

.project__copy h3 { margin: 14px 0 12px; }
.project__meta {
  font-family: 'Cardo', serif;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 24px;
}
.project__copy p { color: var(--ink-soft); }
.project__tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none;
  margin-top: 28px;
}
.project__tags li {
  padding: 7px 18px;
  font-family: 'Cardo', serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  border: 1px solid var(--rule);
}

/* ===== Gallery component ===== */
.gallery { position: relative; }
.gallery__viewport {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}
.gallery__viewport::after {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid rgba(245, 239, 228, 0.35);
  pointer-events: none;
  z-index: 3;
}
.gallery__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 1.6s ease;
}
.gallery__img.active { opacity: 1; transform: scale(1); }

.gallery__arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(26, 36, 54, 0.55);
  border: 1px solid rgba(245, 239, 228, 0.5);
  color: var(--paper);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; line-height: 1;
  cursor: pointer;
  z-index: 4;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.gallery__arrow:hover { background: var(--gold); border-color: var(--gold); }
.gallery__arrow--prev { left: 20px; }
.gallery__arrow--next { right: 20px; }

.gallery__counter {
  position: absolute;
  bottom: 22px; right: 24px;
  z-index: 4;
  color: var(--paper);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.gallery__counter .current { color: #e8cd96; font-size: 1.4rem; }

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.thumb {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border: 1px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s;
}
.thumb:hover { opacity: 0.85; }
.thumb.active { opacity: 1; border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }

/* Archive tile */
.project__archive {
  aspect-ratio: 4 / 5;
  background: var(--ink);
  background-image:
    linear-gradient(135deg, rgba(26, 36, 54, 0.85), rgba(26, 36, 54, 0.95)),
    url('assets/hockaday/h33.jpg');
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
  color: var(--paper);
  text-align: center;
}
.project__archive::after {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(184, 148, 90, 0.45);
  pointer-events: none;
}
.project__archive-inner h3 { color: var(--paper); margin: 14px 0 18px; }
.project__archive-inner p { font-style: italic; font-family: 'Cormorant Garamond', serif; color: var(--gold); }

/* ===== Interiors strip ===== */
.interiors {
  padding: 140px 0 0;
  background: var(--paper);
}
.interiors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
  margin-top: 60px;
  padding: 0 14px;
}
.interiors__tile {
  position: relative;
  background-size: cover;
  background-position: center;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.6s ease;
}
/* Tall tiles disabled — they leave grid gaps. Use uniform 3x2 grid. */
.interiors__tile--tall { grid-row: span 1; }
.interiors__tile::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26, 36, 54, 0.75) 0%, transparent 55%);
  opacity: 0.75;
  transition: opacity 0.4s;
}
.interiors__tile::after {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(245, 239, 228, 0);
  transition: border-color 0.4s;
}
.interiors__tile span {
  position: absolute;
  bottom: 30px; left: 32px;
  z-index: 2;
  color: var(--paper);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
}
.interiors__tile:hover { transform: scale(1.005); }
.interiors__tile:hover::before { opacity: 1; }
.interiors__tile:hover::after { border-color: rgba(184, 148, 90, 0.55); }
.interiors__tile:hover span { opacity: 1; transform: translateY(0); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 22, 36, 0.96);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 60px;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(184, 148, 90, 0.4);
}
.lightbox__close {
  position: absolute;
  top: 30px; right: 40px;
  width: 50px; height: 50px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--paper);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; line-height: 0.8;
  cursor: pointer;
  transition: all 0.3s;
}
.lightbox__close:hover { background: var(--gold); }

/* ===== Featured listing (Prestonshire showpiece) ===== */
.featured-listing {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  padding: 70px clamp(28px, 5vw, 70px);
  border: 1px solid rgba(184, 148, 90, 0.3);
  position: relative;
  margin-bottom: 50px;
  box-shadow: 0 40px 100px -30px rgba(26, 36, 54, 0.25);
}
.featured-listing::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(184, 148, 90, 0.18);
  pointer-events: none;
}

.featured-listing__header {
  text-align: center;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 50px;
}
.featured-listing__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: -0.015em;
  line-height: 1;
  margin: 18px 0 14px;
  color: var(--ink);
}
.featured-listing__address {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 38px;
}
.featured-listing__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 720px;
  margin: 0 auto;
}
.featured-listing__specs > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.featured-listing__specs > div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(184, 148, 90, 0.3);
}
.featured-listing__specs .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--gold-deep);
  line-height: 1;
}
.featured-listing__specs .lbl {
  font-family: 'Cardo', serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.66rem;
  color: var(--muted);
  margin-top: 10px;
}

.featured-listing__hero { margin-bottom: 60px; }
.featured-listing__hero .gallery__viewport {
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 80px -20px rgba(26, 36, 54, 0.35);
}

.featured-listing__body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: start;
}
.featured-listing__lede p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
  line-height: 1.75;
}
.featured-listing__lede em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink);
}
.featured-listing__deadline {
  padding: 22px 26px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  font-size: 1rem !important;
  color: var(--ink-soft);
  margin: 30px 0 !important;
}
.featured-listing__deadline strong {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-deep);
}

.featured-listing__specsheet {
  background: var(--paper);
  padding: 38px 36px;
  border: 1px solid var(--rule);
  position: relative;
}
.featured-listing__specsheet::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(184, 148, 90, 0.2);
  pointer-events: none;
}
.featured-listing__specsheet h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ink);
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.featured-listing__specsheet dl {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.featured-listing__specsheet dt {
  font-family: 'Cardo', serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  color: var(--gold-deep);
  margin-bottom: 4px;
}
.featured-listing__specsheet dd {
  font-family: 'Cardo', serif;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 184, 150, 0.35);
}
.featured-listing__specsheet dl > div:last-child dd,
.featured-listing__specsheet dd:last-child { border-bottom: none; padding-bottom: 0; }

/* Scroll-reveal for featured listing */
.featured-listing {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.featured-listing.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Status badges on galleries ===== */
.status-badge {
  position: absolute;
  top: 24px; left: 24px;
  z-index: 5;
  padding: 8px 18px;
  font-family: 'Cardo', serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  color: var(--paper);
  background: var(--gold-deep);
  border: 1px solid rgba(245, 239, 228, 0.4);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.status-badge--sold {
  background: var(--ink);
  color: #e8cd96;
  border-color: rgba(184, 148, 90, 0.6);
}

/* ===== Sold section ===== */
.sold {
  padding: 140px 0;
  background: var(--paper);
  position: relative;
}
.sold::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rule), transparent);
}

/* Available listing — subtle distinction */
.project--available .gallery__viewport {
  box-shadow: 0 30px 80px -20px rgba(184, 148, 90, 0.4), 0 0 0 1px rgba(184, 148, 90, 0.15);
}

/* ===== Process ===== */
.process {
  padding: 140px 0;
  background: var(--ink);
  color: var(--paper);
}
.process .eyebrow { color: rgba(245, 239, 228, 0.7); }
.process .serif-display { color: var(--paper); }
.process .rule { background: var(--gold); }
.process__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.process__steps li {
  padding-top: 26px;
  border-top: 1px solid rgba(184, 148, 90, 0.4);
}
.process__steps .numeral {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.process__steps h4 { margin-bottom: 14px; color: var(--paper); }
.process__steps p {
  font-size: 1rem;
  color: rgba(245, 239, 228, 0.78);
}

/* ===== Quote ===== */
.quote {
  padding: 130px 0;
  background: var(--parchment);
  text-align: center;
}
.quote__mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--gold);
  line-height: 0.7;
  margin-bottom: 20px;
}
.quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.4;
  max-width: 880px;
  margin: 0 auto;
  color: var(--ink);
}
.quote__attr {
  margin-top: 36px;
  font-family: 'Cardo', serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ===== Contact ===== */
.contact { padding: 140px 0; background: var(--paper); }
.contact__center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.contact__center h2 { margin-top: 18px; }
.contact__lede {
  font-size: 1.15rem;
  margin: 38px auto 50px;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.7;
}
.contact__actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.btn--outline {
  background: transparent;
  color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--outline-light {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn--outline-light:hover {
  background: var(--gold);
  color: var(--paper);
  border-color: var(--gold);
}

/* ===== Legacy entry (link card to legacy.html) ===== */
.legacy-entry {
  padding: 100px 0;
  background: var(--cream);
}
.legacy-card {
  display: block;
  position: relative;
  min-height: 460px;
  padding: 80px clamp(28px, 6vw, 90px);
  text-decoration: none;
  color: var(--paper);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(26, 36, 54, 0.4);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.legacy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px -20px rgba(26, 36, 54, 0.5);
}
.legacy-card__image {
  position: absolute; inset: 0;
  background-image: url('assets/lakeshore/l01.jpg');
  background-size: cover;
  background-position: center;
  transition: transform 1.4s ease;
}
.legacy-card:hover .legacy-card__image {
  transform: scale(1.04);
}
.legacy-card__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(26, 36, 54, 0.88) 0%, rgba(26, 36, 54, 0.55) 60%, rgba(26, 36, 54, 0.3) 100%);
}
.legacy-card__overlay::after {
  content: '';
  position: absolute; inset: 16px;
  border: 1px solid rgba(184, 148, 90, 0.4);
  pointer-events: none;
}
.legacy-card__content {
  position: relative;
  max-width: 600px;
}
.legacy-card__content .eyebrow {
  color: #e8cd96;
}
.legacy-card__content .serif-display {
  color: var(--paper);
  margin: 20px 0 32px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.legacy-card__lede {
  font-size: 1.1rem;
  color: rgba(245, 239, 228, 0.92);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
}
.contact__signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.contact__signature em {
  font-weight: 500;
  color: var(--gold-deep);
  font-style: italic;
}
.contact__signature-line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--rule);
}

/* Scroll reveal target for new contact layout */
.contact__center {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.contact__center.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: rgba(245, 239, 228, 0.78);
  padding: 80px 0 36px;
}
.footer__inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 50px;
}
.footer__logo { height: 50px; width: auto; filter: brightness(1.4); }
.footer__cols {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 80px; width: 100%; max-width: 560px;
  padding: 50px 0;
  border-top: 1px solid rgba(184, 148, 90, 0.25);
  border-bottom: 1px solid rgba(184, 148, 90, 0.25);
}
.footer__cols--single { grid-template-columns: 1fr; max-width: 360px; text-align: center; }
.footer__head {
  font-family: 'Cardo', serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer p { font-size: 0.95rem; line-height: 1.8; }
.footer a { color: rgba(245, 239, 228, 0.78); text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer__copy {
  font-family: 'Cardo', serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(245, 239, 228, 0.5);
}

/* ===== Scroll reveal ===== */
.project, .process__steps li, .philosophy__copy, .section-head, .quote blockquote, .interiors__tile {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.project.in, .process__steps li.in, .philosophy__copy.in, .section-head.in, .quote blockquote.in, .interiors__tile.in {
  opacity: 1;
  transform: translateY(0);
}
.process__steps li:nth-child(2) { transition-delay: 0.12s; }
.process__steps li:nth-child(3) { transition-delay: 0.24s; }
.process__steps li:nth-child(4) { transition-delay: 0.36s; }
.interiors__tile:nth-child(2) { transition-delay: 0.08s; }
.interiors__tile:nth-child(3) { transition-delay: 0.16s; }
.interiors__tile:nth-child(4) { transition-delay: 0.24s; }
.interiors__tile:nth-child(5) { transition-delay: 0.32s; }
.interiors__tile:nth-child(6) { transition-delay: 0.40s; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .nav__menu { display: block; }
  .nav__links {
    position: fixed; top: 80px; right: -100%; bottom: 0;
    width: 75%; max-width: 320px;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 40px;
    gap: 28px;
    transition: right 0.4s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
  }
  .nav__links.open { right: 0; }
  .nav__links a { color: var(--ink); text-shadow: none; }

  .philosophy__grid { grid-template-columns: 1fr; gap: 30px; }
  .philosophy__stats { grid-template-columns: 1fr; gap: 28px; }
  .philosophy__stats .stat { font-size: 2.4rem; }

  .project, .project--reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .project--reverse .project__gallery,
  .project--reverse .project__archive { order: 0; }

  /* Featured listing mobile */
  .featured-listing { padding: 40px 22px; }
  .featured-listing__specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .featured-listing__specs > div:nth-child(2)::after { display: none; }
  .featured-listing__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .featured-listing__hero .gallery__viewport { aspect-ratio: 4 / 3; }
  .featured-listing__specsheet { padding: 28px 24px; }

  .gallery__arrow { width: 42px; height: 42px; }
  .gallery__arrow--prev { left: 10px; }
  .gallery__arrow--next { right: 10px; }

  .interiors__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .interiors__tile--tall { grid-row: span 1; }
  .interiors__tile span { font-size: 1.2rem; bottom: 20px; left: 22px; }

  .process__steps { grid-template-columns: 1fr 1fr; gap: 36px; }

  .contact__lede { font-size: 1.05rem; }
  .contact__actions { flex-direction: column; align-items: stretch; }
  .contact__actions .btn { width: 100%; }

  .footer__cols { grid-template-columns: 1fr; gap: 40px; text-align: center; }

  .portfolio, .philosophy, .process, .contact, .quote, .interiors, .sold, .legacy-entry { padding: 90px 0; }
  .portfolio__list { gap: 80px; }
  .lightbox { padding: 30px; }
  .lightbox__close { top: 20px; right: 20px; }
}

@media (max-width: 540px) {
  .process__steps { grid-template-columns: 1fr; }
  .container { padding: 0 22px; }
  .hero__lede { font-size: 1.05rem; }
  .gallery__counter { bottom: 12px; right: 14px; font-size: 0.85rem; }
  .gallery__counter .current { font-size: 1.1rem; }
}

/* ============================================================
   v2 — Hero actions, ghost button, richer cream tuning,
        parallax, softer fade-ins, mobile polish
   ============================================================ */

/* ----- Hero: two-button action row ----- */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.hero__actions .btn { white-space: nowrap; }

/* Ghost button — secondary CTA on dark hero */
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(245, 239, 228, 0.6);
  color: var(--paper);
  backdrop-filter: blur(2px);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(26, 36, 54, 0.25);
}

/* ----- Hero parallax + slow ken-burns refinement ----- */
.hero__image {
  will-change: transform;
  /* keep existing zoom; parallax JS will translate Y on top */
}

/* Slightly richer hero overlay — more depth, deeper navy at edges */
.hero__overlay {
  background:
    linear-gradient(135deg, rgba(26, 36, 54, 0.62) 0%, rgba(26, 36, 54, 0.28) 50%, rgba(20, 28, 44, 0.78) 100%),
    radial-gradient(ellipse at bottom right, rgba(184, 148, 90, 0.22), transparent 60%);
}

/* Hero title — slightly tighter, richer gold italic */
.hero__title .italic { color: #ead2a0; }

/* ----- Cream sections: subtle warmth + depth ----- */
/* Add a faint vertical gradient on philosophy for richness without darkening.
   (Process intentionally stays dark navy — that's the original design's
   single high-contrast section.) */
.philosophy {
  background:
    linear-gradient(180deg, var(--paper) 0%, #f7f0e2 100%);
}

/* Section divider hairlines — already present, just make them whisper less */
.philosophy::before { opacity: 0.7; }

/* ----- Stats: richer with hairline accents ----- */
.philosophy__stats > div {
  position: relative;
  padding-left: 0;
}
.philosophy__stats .stat {
  /* tighten letterspacing slightly for elegance at large sizes */
  letter-spacing: -0.01em;
}
/* "Preston Hollow" stat is a word, not a number — scale it down to match */
.philosophy__stats > div:nth-child(3) .stat {
  font-size: 1.6rem;
  font-style: italic;
  padding-top: 16px;
}

/* ----- Sticky nav — make it feel premium when scrolled ----- */
.nav.scrolled {
  background: rgba(250, 246, 238, 0.92);
  border-bottom: 1px solid rgba(184, 148, 90, 0.28);
  box-shadow: 0 6px 30px -12px rgba(26, 36, 54, 0.12);
}
/* Active link state */
.nav__links a.is-active::after {
  width: 100%;
  left: 0;
}
.nav__links a.is-active { color: var(--gold-deep); }
.nav.scrolled .nav__links a.is-active { color: var(--gold-deep); }

/* ----- Softer, longer fade-ins ----- */
.project, .process__steps li, .philosophy__copy, .section-head, .quote blockquote, .interiors__tile, .featured-listing {
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* (Blur-reveal removed — it caused section heads to render unreadable
   on devices where IntersectionObserver fired before the element was
   visible, or where reveal never triggered.) */

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__image { animation: none; }
  .project, .process__steps li, .philosophy__copy, .section-head, .quote blockquote,
  .interiors__tile, .featured-listing {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ----- Mobile polish ----- */
@media (max-width: 880px) {
  .hero__actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .hero__actions .btn { width: 100%; text-align: center; }

  /* Sticky nav backdrop on mobile (always-on backdrop when scrolled so the logo stays readable) */
  .nav.scrolled .nav__brand img { height: 34px; }

  /* Philosophy: tighten on mobile */
  .philosophy { padding: 80px 0; }
  .philosophy__stats > div:nth-child(3) .stat { font-size: 1.35rem; }
}

@media (max-width: 540px) {
  .hero { min-height: 92vh; padding: 100px 0 50px; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .hero__rule { margin: 28px 0; }
  .hero__lede { margin-bottom: 32px; }
  .hero__scroll { display: none; }
}

/* ============================================================
   v2.2 — Legacy card: amplified prominence
   ============================================================ */

/* Outer section — more breathing room, subtle gold rule top + bottom */
.legacy-entry {
  padding: 140px 0;
  background: var(--cream);
  position: relative;
}
.legacy-entry::before,
.legacy-entry::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.legacy-entry::before { top: 0; }
.legacy-entry::after { bottom: 0; }

/* Larger, more cinematic card */
.legacy-card {
  min-height: 620px;
  padding: 110px clamp(36px, 7vw, 110px);
  box-shadow: 0 50px 120px -28px rgba(26, 36, 54, 0.55);
}
.legacy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 60px 140px -28px rgba(26, 36, 54, 0.65);
}

/* Deeper, more dramatic overlay */
.legacy-card__overlay {
  background:
    linear-gradient(120deg, rgba(14, 22, 38, 0.92) 0%, rgba(20, 28, 44, 0.6) 55%, rgba(26, 36, 54, 0.35) 100%),
    radial-gradient(ellipse at bottom right, rgba(184, 148, 90, 0.22), transparent 60%);
}

/* Double-line gold frame instead of single */
.legacy-card__overlay::after {
  inset: 22px;
  border: 1px solid rgba(184, 148, 90, 0.55);
}

/* Eyebrow gets a small gold tick mark in front */
.legacy-card__content .eyebrow {
  position: relative;
  padding-left: 36px;
  display: inline-block;
  letter-spacing: 0.38em;
}
.legacy-card__content .eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--gold);
}

/* Bigger, more confident headline */
.legacy-card__content .serif-display {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  margin: 28px 0 36px;
  letter-spacing: -0.015em;
}

/* Lede gets a touch more size */
.legacy-card__lede {
  font-size: 1.18rem;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 48px;
}

/* CTA inside the card — make it a real gold button instead of outline */
.legacy-card .btn--outline-light {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  padding: 18px 44px;
  font-weight: 700;
  letter-spacing: 0.32em;
  transition: all 0.4s ease;
}
.legacy-card:hover .btn--outline-light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

/* Mobile tuning for the bigger card */
@media (max-width: 880px) {
  .legacy-entry { padding: 90px 0; }
  .legacy-card {
    min-height: 480px;
    padding: 70px 30px;
  }
  .legacy-card__content .serif-display { margin: 22px 0 28px; }
  .legacy-card__lede { font-size: 1.05rem; margin-bottom: 36px; }
}

/* ============================================================
   v2.3 — Interiors tiles: always-visible gold frame
   (matches the new legacy-card border treatment)
   ============================================================ */

/* Inner gold hairline frame — visible at rest, brighter on hover */
.interiors__tile::after {
  inset: 16px;
  border: 1px solid rgba(184, 148, 90, 0.55);
  transition: border-color 0.4s, inset 0.4s;
}
.interiors__tile:hover::after {
  border-color: rgba(232, 205, 150, 0.9);
}

/* Tile labels always visible — not just on hover.
   On touch devices the hover state never fires. */
.interiors__tile span {
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}

/* ============================================================
   v2.4 — Interiors → Process transition
   ============================================================ */

/* Give Interiors actual bottom padding so the tiles aren't kissing the
   next section. (Was 140px 0 0 — no breathing room below the grid.) */
.interiors {
  padding: 140px 0 120px;
}

/* Soft gradient fade from cream into the navy Process section.
   Sits above the navy top edge, so the transition reads as crafted. */
.process {
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: -1px;          /* sit flush with the navy edge */
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom,
              rgba(26, 36, 54, 0) 0%,
              rgba(26, 36, 54, 0.4) 55%,
              rgba(26, 36, 54, 1) 100%);
  transform: translateY(-80px);   /* lift it into the cream section */
  pointer-events: none;
  z-index: 1;
}

/* Hairline gold rule centered across the transition for a touch of craft */
.process::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(to right,
              transparent,
              var(--gold) 50%,
              transparent);
  z-index: 2;
}

/* Mobile: slightly tighter spacing */
@media (max-width: 880px) {
  .interiors { padding: 90px 0 80px; }
  .process::before { height: 60px; transform: translateY(-60px); }
}

/* ============================================================
   v2.5 — SEO-only images
   Hidden visually but indexable by search engines.
   Used inside elements that rely on CSS background-image.
   NEVER use display:none — Google may skip indexing.
   ============================================================ */
.seo-img {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  opacity: 0;
  pointer-events: none;
  border: 0;
  margin: -1px;
  padding: 0;
}

/* ===== 6604 Chevy Chase — Explore the Plan (floor-plan feature) ===== */
.ccfp *{box-sizing:border-box;margin:0;padding:0;}

.ccfp{--gold-light:#ead2a0;box-sizing:border-box;position:relative;overflow:hidden;background:var(--ink);color:var(--paper);padding:clamp(46px,7vw,100px) clamp(16px,5vw,72px);font-family:"Cardo",Georgia,serif;}
.ccfp::after{content:"";position:absolute;right:-12%;bottom:-22%;width:60vw;height:60vw;max-width:760px;max-height:760px;background:radial-gradient(circle at 70% 70%,rgba(184,148,90,.20),rgba(184,148,90,0) 62%);pointer-events:none;z-index:0;}
.ccfp__inner{position:relative;z-index:1;max-width:820px;margin:0 auto;}
.ccfp__eyebrow{text-transform:uppercase;letter-spacing:.32em;font-size:.72rem;color:var(--gold-light);text-align:center;}
.ccfp__title{font-family:"Cormorant Garamond",serif;font-weight:500;font-size:clamp(2.1rem,5vw,3.4rem);line-height:1.04;text-align:center;margin:.5rem 0 .35rem;}
.ccfp__title em{font-style:italic;color:var(--gold-light);}
.ccfp__sub{text-align:center;color:rgba(250,246,238,.72);font-size:1.02rem;max-width:50ch;margin:0 auto;}
.ccfp__rule{width:64px;border-top:1px solid var(--rule);margin:18px auto 0;position:relative;}
.ccfp__rule::before,.ccfp__rule::after{content:"";position:absolute;top:-1px;width:6px;border-top:1px solid var(--gold-light);}
.ccfp__rule::before{left:-14px}.ccfp__rule::after{right:-14px}
.ccfp__toggle{display:flex;gap:6px;justify-content:center;margin:30px 0 22px;}
.ccfp__toggle button{font-family:"Cardo",serif;text-transform:uppercase;letter-spacing:.18em;font-size:.74rem;color:rgba(250,246,238,.6);background:transparent;border:1px solid rgba(201,184,150,.28);padding:11px 22px;cursor:pointer;transition:.35s;}
.ccfp__toggle button:hover{color:var(--paper);border-color:rgba(201,184,150,.55);}
.ccfp__toggle button.is-active{color:var(--ink);background:var(--gold-light);border-color:var(--gold-light);}
.ccfp__planwrap{position:relative;background:linear-gradient(180deg,#fbf8f1,#f3ecdf);padding:14px;border:1px solid rgba(201,184,150,.55);box-shadow:0 30px 80px -22px rgba(0,0,0,.55);}
.ccfp__planwrap::before{content:"";position:absolute;inset:6px;border:1px solid rgba(141,106,58,.35);pointer-events:none;z-index:4;}
.ccfp__planlabel{position:absolute;top:18px;left:22px;z-index:5;text-transform:uppercase;letter-spacing:.26em;font-size:.62rem;color:var(--gold-deep);}
.ccfp .plan{position:relative;display:block;width:100%;}
.ccfp .plan img.base{display:block;width:100%;height:auto;}
.ccfp .plan.hidden{display:none;}
.ccfp .pin{position:absolute;transform:translate(-50%,-50%);width:36px;height:36px;border:0;background:transparent;padding:0;cursor:pointer;z-index:3;display:grid;place-items:center;}
.ccfp .pin::before{content:"";width:15px;height:15px;border-radius:50%;background:var(--gold);border:2px solid #fff;box-shadow:0 1px 4px rgba(0,0,0,.45);transition:transform .2s,box-shadow .2s;}
.ccfp .pin::after{content:"";position:absolute;width:15px;height:15px;border-radius:50%;border:2px solid var(--gold);animation:ccfpPulse 2.4s ease-out infinite;}
.ccfp .pin:hover::before,.ccfp .pin:focus-visible::before{transform:scale(1.2);box-shadow:0 0 0 7px rgba(184,148,90,.28),0 1px 4px rgba(0,0,0,.45);}
@keyframes ccfpPulse{0%{transform:scale(1);opacity:.7}70%{transform:scale(2.6);opacity:0}100%{opacity:0}}
.ccfp__hint{margin-top:14px;text-align:center;font-style:italic;font-size:.9rem;color:rgba(250,246,238,.62);}
.ccfp__hint b{color:var(--gold-light);font-style:normal;}
.ccfp__foot{margin-top:22px;text-align:center;}
.ccfp__cta{display:inline-block;text-transform:uppercase;letter-spacing:.2em;font-size:.72rem;color:var(--gold-light);text-decoration:none;border-bottom:1px solid rgba(234,210,160,.4);padding-bottom:3px;transition:.3s;}
.ccfp__cta:hover{color:var(--paper);border-color:var(--paper);}
/* lightbox */
.ccfp .lb{position:fixed;inset:0;z-index:90;display:none;align-items:center;justify-content:center;background:rgba(12,18,30,.94);padding:clamp(16px,4vw,48px);}
.ccfp .lb.is-open{display:flex;}
.ccfp .lb__fig{max-width:1080px;width:100%;}
.ccfp .lb__frame{position:relative;padding:7px;border:1px solid rgba(201,184,150,.6);background:#10182a;box-shadow:0 30px 80px -20px #000;}
.ccfp .lb__frame::before{content:"";position:absolute;inset:3px;border:1px solid rgba(201,184,150,.32);pointer-events:none;z-index:2;}
.ccfp .lb__frame img{display:block;width:100%;max-height:70vh;object-fit:contain;background:#0d1424;}
.ccfp .lb figcaption{text-align:center;margin-top:18px;color:var(--paper);}
.ccfp .lb__eyebrow{display:block;text-transform:uppercase;letter-spacing:.28em;font-size:.62rem;color:var(--gold-light);}
.ccfp .lb__name{display:block;font-family:"Cormorant Garamond",serif;font-style:italic;font-size:clamp(1.6rem,4vw,2.2rem);margin:.15rem 0 .1rem;}
.ccfp .lb__dim{display:block;text-transform:uppercase;letter-spacing:.2em;font-size:.72rem;color:var(--gold);margin-bottom:.5rem;}
.ccfp .lb__desc{display:block;color:rgba(250,246,238,.78);font-size:1rem;line-height:1.5;max-width:46ch;margin:0 auto;}
.ccfp .lb__close{position:absolute;top:14px;right:20px;width:44px;height:44px;font-size:2rem;line-height:1;color:var(--gold-light);background:transparent;border:0;cursor:pointer;}
.ccfp .lb__close:hover{color:var(--paper);}

/* Chevy Chase — marketing lede line */
.project__lede{font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:500;font-size:1.55rem;line-height:1.25;color:var(--ink);margin:0 0 .6rem;}
