/* ==========================================================================
   Lariat Builders — Site Stylesheet
   Brand system (locked):
   Ink #0E0E0E · Warm White #F7F5F1 · Stone #B8B3AC · Bronze #8C6A3F · Charcoal #2A2A2A
   Inter Tight (display) · Inter (body) · Fraunces (editorial accents)
   ========================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..500;1,9..144,300..500&family=Inter+Tight:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- Tokens ---------- */
:root {
  --ink: #0E0E0E;
  --charcoal: #2A2A2A;
  --stone: #B8B3AC;
  --stone-2: #D9D5CE;
  --warm-white: #F7F5F1;
  --bronze: #8C6A3F;
  --hairline: rgba(14,14,14,.12);
  --hairline-light: rgba(247,245,241,.16);

  --sans-display: 'Inter Tight', sans-serif;
  --sans-body: 'Inter', sans-serif;
  --serif: 'Fraunces', serif;

  --container: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --section: clamp(80px, 12vw, 160px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--sans-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--sans-display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); }
.eyebrow {
  font-family: var(--sans-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--charcoal);
  opacity: 0.7;
}
.editorial { font-family: var(--serif); font-style: italic; font-weight: 300; letter-spacing: -0.01em; }
.lede { font-size: clamp(18px, 2vw, 22px); line-height: 1.5; color: var(--charcoal); max-width: 62ch; }

.display-hero { font-size: clamp(44px, 6.5vw, 96px); font-weight: 400; letter-spacing: -0.035em; line-height: 1.02; }
.display-1    { font-size: clamp(36px, 5vw, 68px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.04; }
.display-2    { font-size: clamp(28px, 3.5vw, 44px); font-weight: 500; letter-spacing: -0.02em; }
.display-3    { font-size: clamp(20px, 2vw, 28px); font-weight: 500; letter-spacing: -0.01em; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--wide { max-width: 1600px; }
.section { padding: var(--section) 0; }
.section--tight { padding: clamp(60px, 8vw, 100px) 0; }
.grid { display: grid; gap: clamp(24px, 3vw, 40px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-12 { grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 32px); }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-5 { grid-column: span 5; }
.col-8 { grid-column: span 8; }
.col-4 { grid-column: span 4; }
.col-12 { grid-column: span 12; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background .35s var(--ease), padding .35s var(--ease), color .35s var(--ease);
  color: var(--warm-white);
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: var(--warm-white);
  color: var(--ink);
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--hairline);
}
.brand {
  font-family: var(--sans-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark { width: 22px; height: 22px; }
.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
  font-size: 13.5px;
  letter-spacing: 0.02em;
}
.nav a {
  position: relative;
  padding: 6px 0;
  opacity: 0.85;
  transition: opacity .2s var(--ease);
}
.nav a:hover, .nav a.active { opacity: 1; }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
}
.nav .cta {
  border: 1px solid currentColor;
  padding: 10px 16px;
  border-radius: 999px;
  opacity: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav .cta:hover { background: currentColor; color: var(--warm-white); }
.site-header.is-scrolled .nav .cta:hover { color: var(--warm-white); background: var(--ink); }
.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(80px, 10vh, 140px);
  overflow: hidden;
  color: var(--warm-white);
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: kenburns 22s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

/* Rotator: layered images cross-fading */
.hero-rotator img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease-in-out;
  animation: none;
  will-change: opacity, transform;
}
.hero-rotator img.is-active {
  opacity: 1;
  animation: kenburns-slow 12s ease-out forwards;
}
@keyframes kenburns-slow {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(14,14,14,.45) 0%, rgba(14,14,14,.1) 25%, rgba(14,14,14,.15) 50%, rgba(14,14,14,.78) 100%);
  z-index: -1;
}
.hero-content {
  max-width: 1100px;
}
.hero h1 { color: var(--warm-white); }
.hero .eyebrow { color: var(--stone-2); opacity: 1; }
.hero-scroll-hint {
  position: absolute;
  right: var(--gutter);
  bottom: 30px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm-white);
  opacity: 0.75;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-meta {
  position: absolute;
  left: var(--gutter);
  bottom: 30px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-white);
  opacity: 0.75;
  display: flex;
  gap: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--sans-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  transition: transform .2s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  border: 1px solid transparent;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn--dark { background: var(--ink); color: var(--warm-white); }
.btn--dark:hover { background: var(--charcoal); }
.btn--outline { border-color: var(--warm-white); color: var(--warm-white); }
.btn--outline:hover { background: var(--warm-white); color: var(--ink); }
.btn--ghost { color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--warm-white); }
.btn .arrow { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Section headers ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 4vw, 80px);
  margin-bottom: clamp(48px, 6vw, 88px);
  align-items: end;
}
.section-head h2 { max-width: 20ch; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; }
}

/* ---------- Portfolio (home preview + index) ---------- */
.projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(60px, 9vw, 140px);
}
.project-card {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
}
.project-card:nth-child(even) {
  grid-template-columns: 4fr 5fr;
}
.project-card:nth-child(even) .project-media { order: 2; }
.project-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--stone-2);
  position: relative;
}
.project-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.project-card:hover .project-media img { transform: scale(1.03); }
.project-body { padding-bottom: 12px; }
.project-number {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--bronze);
  margin-bottom: 12px;
}
.project-title {
  font-family: var(--sans-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 6px;
}
.project-loc {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: 20px;
}
.project-desc { color: var(--charcoal); max-width: 44ch; margin-bottom: 24px; }
.project-tags {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--charcoal); opacity: 0.7;
}
.project-tags span { position: relative; }
.project-tags span + span::before {
  content: '·';
  margin-right: 16px;
  color: var(--stone);
}
.project-link {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap .3s var(--ease);
}
.project-link:hover { gap: 16px; }
.badge {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px;
}

@media (max-width: 780px) {
  .project-card, .project-card:nth-child(even) { grid-template-columns: 1fr; }
  .project-card:nth-child(even) .project-media { order: 0; }
  .project-media { aspect-ratio: 4/3; }
}

/* ---------- Split feature (home craft moment) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}
.split img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(24px, 4vw, 60px) 0;
  max-width: 46ch;
}
@media (max-width: 780px) { .split { grid-template-columns: 1fr; } .split img { aspect-ratio: 4/3; } }

/* ---------- Pulled quote ---------- */
.pull {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink);
  color: var(--warm-white);
}
.pull-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.pull p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.pull .attrib {
  margin-top: 32px;
  font-family: var(--sans-body);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-2);
}

/* ---------- Process phases ---------- */
.phase {
  border-top: 1px solid var(--hairline);
  padding: clamp(28px, 3vw, 44px) 0;
  cursor: pointer;
  transition: background .3s var(--ease);
}
.phase:last-child { border-bottom: 1px solid var(--hairline); }
.phase:hover { background: rgba(140,106,63,.03); }
.phase-head {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: baseline;
}
.phase-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--bronze);
}
.phase-title {
  font-family: var(--sans-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.phase-toggle {
  width: 34px; height: 34px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.phase.open .phase-toggle { background: var(--ink); color: var(--warm-white); transform: rotate(45deg); }
.phase-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .3s var(--ease);
}
.phase.open .phase-body { max-height: 1600px; padding-top: 24px; }
.phase-body-inner {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  color: var(--charcoal);
  max-width: 900px;
}
.phase-body-inner > *:first-child { grid-column: 1; }
.phase-body-inner > *:last-child { grid-column: 2; }
.phase-body p { margin-bottom: 14px; }
.phase-body ul { padding-left: 18px; margin-bottom: 14px; }
.phase-body li { margin-bottom: 8px; }
@media (max-width: 640px) {
  .phase-head, .phase-body-inner { grid-template-columns: 60px 1fr auto; }
}

/* ---------- CTA block ---------- */
.cta-block {
  text-align: center;
  padding: clamp(100px, 14vw, 200px) 0;
  background: var(--ink);
  color: var(--warm-white);
}
.cta-block h2 {
  color: var(--warm-white);
  font-size: clamp(36px, 5.4vw, 76px);
  font-weight: 400;
  letter-spacing: -0.03em;
  max-width: 22ch;
  margin: 0 auto 40px;
  line-height: 1.05;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--stone-2);
  padding: clamp(60px, 8vw, 100px) 0 40px;
  font-size: 14px;
}
.site-footer a:hover { color: var(--warm-white); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: 60px;
  border-bottom: 1px solid var(--hairline-light);
}
.footer-brand h3 {
  color: var(--warm-white);
  font-family: var(--sans-display);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-brand p { max-width: 34ch; }
.footer-col h4 {
  color: var(--warm-white);
  font-family: var(--sans-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a, .footer-col p { display: block; margin-bottom: 10px; color: var(--stone-2); }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--stone);
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Utility ---------- */
.divider { height: 1px; background: var(--hairline); border: 0; margin: 0; }
.mt-lg { margin-top: clamp(40px, 6vw, 88px); }
.text-center { text-align: center; }
.max-copy { max-width: 62ch; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Portfolio detail page ---------- */
.detail-hero {
  min-height: 88vh;
  min-height: 88svh;
  position: relative;
  overflow: hidden;
  color: var(--warm-white);
  display: flex; align-items: flex-end;
  padding-bottom: 60px;
}
.detail-hero .hero-media img { animation: none; transform: none; }
.detail-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,14,.35) 0%, rgba(14,14,14,0) 40%, rgba(14,14,14,.7) 100%);
  z-index: -1;
}
.detail-hero .container { position: relative; z-index: 1; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--hairline);
}
.spec dt {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.6;
  margin-bottom: 10px;
}
.spec dd {
  font-family: var(--sans-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
@media (max-width: 700px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery {
  display: grid;
  grid-template-columns: 12fr;
  gap: clamp(16px, 2vw, 28px);
}
.gallery-row {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
}
.gallery-row.g-1 { grid-template-columns: 1fr; }
.gallery-row.g-2 { grid-template-columns: 1fr 1fr; }
.gallery-row.g-2-a { grid-template-columns: 3fr 2fr; }
.gallery-row.g-2-b { grid-template-columns: 2fr 3fr; }
.gallery-row img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.gallery-row.tall img { aspect-ratio: 3/4; }
.gallery-row.wide img { aspect-ratio: 16/9; }

.next-project {
  display: block;
  position: relative;
  color: var(--warm-white);
  min-height: 60vh;
  overflow: hidden;
}
.next-project img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.next-project:hover img { transform: scale(1.04); }
.next-project::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(14,14,14,.55);
  transition: background .35s var(--ease);
}
.next-project:hover::before { background: rgba(14,14,14,.4); }
.next-project-inner {
  position: relative; z-index: 1;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  min-height: 60vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
}
.next-project .eyebrow { color: var(--stone-2); opacity: 1; margin-bottom: 20px; }
.next-project h3 {
  color: var(--warm-white);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(48px, 6vw, 100px);
}
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 24px; }
.form-field label {
  display: block; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--charcoal); opacity: 0.7;
  margin-bottom: 8px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  background: transparent;
  font-family: var(--sans-body);
  font-size: 17px;
  color: var(--ink);
  outline: none;
  transition: border-color .25s var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--ink); }
.form-field textarea { min-height: 140px; resize: vertical; }

.contact-info { border-left: 1px solid var(--hairline); padding-left: clamp(24px, 3vw, 48px); }
.info-block { margin-bottom: 40px; }
.info-block h4 {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--charcoal); opacity: 0.6; margin-bottom: 12px;
  font-family: var(--sans-body); font-weight: 500;
}
.info-block p, .info-block a { font-size: 17px; }

/* ---------- Portfolio index grid ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(48px, 6vw, 96px) clamp(24px, 3vw, 40px);
}
@media (max-width: 780px) { .portfolio-grid { grid-template-columns: 1fr; } }
.p-tile a { display: block; }
.p-tile-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 20px;
}
.p-tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.p-tile:hover .p-tile-media img { transform: scale(1.04); }
.p-tile h3 {
  font-family: var(--sans-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.p-tile p.loc { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal); opacity: 0.6; }

/* ---------- Services page ---------- */
.services-list { display: grid; gap: 0; margin-top: 40px; }
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 2fr;
  padding: 40px 0;
  border-top: 1px solid var(--hairline);
  gap: 24px;
  align-items: start;
}
.service-row:last-child { border-bottom: 1px solid var(--hairline); }
.service-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
  font-size: 18px;
}
.service-title { font-family: var(--sans-display); font-size: clamp(22px, 2.4vw, 32px); font-weight: 500; letter-spacing: -0.015em; }
.service-body { color: var(--charcoal); max-width: 60ch; }
@media (max-width: 700px) {
  .service-row { grid-template-columns: 40px 1fr; }
  .service-body { grid-column: 1 / -1; }
}

/* ---------- About ---------- */
.about-lead { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 80px); align-items: end; }
@media (max-width: 780px) { .about-lead { grid-template-columns: 1fr; } }
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: 60px;
}
.value {
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.value h4 { font-family: var(--sans-display); font-size: 22px; font-weight: 500; margin-bottom: 12px; letter-spacing: -0.01em; }
.value p { color: var(--charcoal); }
@media (max-width: 780px) { .values { grid-template-columns: 1fr; } }

/* ---------- Mobile nav ---------- */
@media (max-width: 900px) {
  .nav { display: none; position: fixed; top: 62px; left: 0; right: 0; background: var(--warm-white); color: var(--ink); flex-direction: column; padding: 20px var(--gutter); border-bottom: 1px solid var(--hairline); }
  .nav.is-open { display: flex; align-items: flex-start; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid currentColor; border-radius: 999px; }
  .site-header.is-scrolled .menu-toggle { border-color: var(--ink); }
}

/* ---------- Print / focus ---------- */
:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }

/* ---- Falabella II: progress timeline ---- */
.progress-timeline {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 84px);
  margin-top: clamp(32px, 5vw, 56px);
}
.progress-phase {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding-top: 32px;
  border-top: 1px solid rgba(14,14,14,.08);
}
@media (max-width: 900px) {
  .progress-phase { grid-template-columns: 1fr; gap: 20px; }
}
.progress-meta { position: sticky; top: 96px; align-self: start; }
.progress-num {
  display: inline-block;
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-weight: 300;
  font-size: 44px;
  color: var(--bronze);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.progress-meta .eyebrow { color: var(--ink); }
.progress-date {
  margin-top: 6px;
  font-family: var(--font-italic, "Fraunces", serif);
  font-style: italic;
  font-size: 15px;
  color: var(--charcoal);
}
.progress-phase--upcoming .progress-num { color: var(--stone); }
.progress-phase--upcoming .progress-date { color: var(--stone); }
.progress-media {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.progress-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  background: var(--stone);
}
.progress-media img:only-child { aspect-ratio: 16/9; }

/* ---- Falabella II: plan/material blocks ---- */
.plan-block img {
  display: block;
  transition: opacity .3s ease;
}
.plan-block a:hover img { opacity: .88; }

/* ---- Ghost/outline button on dark ---- */
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border: 1px solid rgba(247,245,241,.6);
  color: var(--warm-white);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.btn-outline-light:hover {
  background: rgba(247,245,241,.08);
  border-color: var(--warm-white);
}
