/* ===================================================================
   Luis J Torres, v4 (Review 2 integration)
   Black, white, beige. High-contrast layered editorial.
   EB Garamond + Inter.
   =================================================================== */

:root {
  /* Core ink + paper */
  --ink:        #0F0E0C;
  --ink-2:      #1A1914;
  --ink-3:      #2A2620;
  --paper:      #FFFFFF;
  --paper-2:    #FAF7F1;
  --beige:      #EADFC9;
  --beige-2:    #D6C5A4;
  --beige-3:    #8E7C5E;
  --taupe:      #6B5E48;

  /* Accent */
  --gold:       #B89968;     /* used very minimally */

  /* Typography */
  --f-display:  'EB Garamond', 'Garamond', 'Georgia', serif;
  --f-sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Easing */
  --e-out:      cubic-bezier(0.22, 1, 0.36, 1);

  /* Rhythm */
  --wrap:       1680px;
  --pad-section: clamp(96px, 11vw, 168px);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }

::selection { background: var(--ink); color: var(--paper-2); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ===== Wrap ===== */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Type ===== */
.eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 0 0 28px;
}
.eyebrow--light { color: var(--beige-2); }

.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 36px;
}
.display__line { display: block; }
.display__coda {
  display: block;
  font-size: clamp(1.45rem, 3.4vw, 2.85rem);
  line-height: 1.14;
  letter-spacing: -0.006em;
  margin-top: 0.36em;
  background: linear-gradient(180deg, #D8B679 0%, #B89968 50%, #97793A 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(184, 153, 104, 0.28));
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

.h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 32px;
  max-width: 22ch;
}
.h2--light { color: var(--paper); }
.h2 em { font-style: italic; font-weight: 400; }

.lede {
  font-family: var(--f-sans);
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  line-height: 1.7;
  color: var(--ink-3);
  max-width: 50ch;
  margin: 0 0 44px;
  font-weight: 300;
}

.section__head {
  margin-bottom: 84px;
  max-width: 760px;
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__head--center .h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 18ch;
}
.section__sub {
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-3);
  max-width: 56ch;
  margin: 0;
}
.section__head--center .section__sub {
  margin-left: auto; margin-right: auto;
}

/* ===== Reveal ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--e-out), transform 1s var(--e-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 0;
  transition: background 0.35s var(--e-out), color 0.35s var(--e-out),
    border-color 0.35s var(--e-out), gap 0.35s var(--e-out);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--primary .btn__arrow {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  display: inline-block;
  transform: translateX(-6px);
  transition: max-width 0.4s var(--e-out), opacity 0.35s var(--e-out),
    transform 0.4s var(--e-out);
}
.btn--primary:hover { gap: 18px; background: var(--ink-3); border-color: var(--ink-3); }
.btn--primary:hover .btn__arrow {
  max-width: 30px; opacity: 1; transform: translateX(0);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink);
  letter-spacing: 0.18em;
}
.btn--ghost:hover { color: var(--taupe); border-bottom-color: var(--taupe); }

.btn--block { width: 100%; justify-content: center; padding: 22px 32px; margin-top: 12px; }

/* ===== TICKER ===== */
.ticker {
  background: var(--ink);
  color: var(--beige-2);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: tickerScroll 38s linear infinite;
  padding-left: 28px;
}
.ticker__item { display: inline-block; }
.ticker__sep {
  display: inline-block;
  font-size: 8px;
  color: var(--gold);
  opacity: 0.85;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ===== HEADER ===== */
.mast {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 22px 0;
  background: rgba(255,255,255,0);
  transition: background 0.35s var(--e-out), padding 0.3s var(--e-out),
    border-color 0.3s var(--e-out);
  border-bottom: 1px solid transparent;
}
.mast.is-scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(1.1) blur(10px);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
  border-bottom-color: rgba(15,14,12,0.07);
  padding: 14px 0;
}
.mast__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.mast__brand {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.32rem;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.mast__nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.mast__nav a {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
}
.mast__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--e-out);
}
.mast__nav a:hover::after { transform: scaleX(1); }
.mast__nav a.mast__cta::after {
  transform: scaleX(1);
  opacity: 0.4;
}
.mast__nav a.mast__cta:hover::after { opacity: 1; }

.mast__toggle {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.mast__toggle span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--e-out), top 0.3s var(--e-out), opacity 0.2s;
}
.mast__toggle span:nth-child(1) { top: 16px; }
.mast__toggle span:nth-child(2) { top: 23px; }
.mast__toggle.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.mast__toggle.is-open span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

/* ===== DRAWER ===== */
.drawer[hidden] { display: none !important; }
.drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}
.drawer nav a {
  font-family: var(--f-display);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
}
.drawer nav a.drawer__cta {
  font-style: italic;
  margin-top: 14px;
  color: var(--taupe);
}

/* ===== HERO ===== */
.hero {
  background: var(--paper-2);
  padding: clamp(36px, 5vw, 72px) 0 var(--pad-section);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: var(--paper);
  z-index: 0;
}
@media (max-width: 960px) {
  .hero::before { display: none; }
}
.hero__frame {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy { padding-right: 16px; }
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 32px;
  margin-top: 8px;
}

.hero__portrait {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
}
.hero__portrait picture,
.hero__portrait img {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__portrait img {
  object-fit: cover;
  object-position: center 28%;
  filter: contrast(1.02) saturate(1.03) brightness(1.14);
}
.hero__portrait-bracket {
  position: absolute;
  width: 42px; height: 42px;
  border: 0 solid var(--ink);
  pointer-events: none;
  z-index: 2;
}
.hero__portrait-bracket--tl {
  top: -1px; left: -14px;
  border-top-width: 1px; border-left-width: 1px;
}
.hero__portrait-bracket--br {
  bottom: -1px; right: -14px;
  border-bottom-width: 1px; border-right-width: 1px;
}

/* ===== WORK ===== */
.work {
  background: var(--ink);
  color: var(--paper-2);
  padding: var(--pad-section) 0;
}
.work .wrap { max-width: 1340px; }
.work__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.work__lead .h2--light em {
  color: var(--beige-2);
}
.work__body p {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.18rem, 1.6vw, 1.5rem);
  line-height: 1.5;
  color: rgba(245,240,224,0.92);
  margin: 0 0 24px;
  max-width: 50ch;
}
.work__sig {
  font-style: italic !important;
  color: var(--beige-2) !important;
}
.work__sig em {
  font-style: normal;
  color: var(--paper);
  border-bottom: 1px solid var(--beige-3);
  padding-bottom: 2px;
}
.work__photo {
  margin: clamp(32px, 4vw, 48px) 0 0;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-3);
}
.work__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.02) saturate(1.03) brightness(1.1);
}

/* ===== SOUL BLUEPRINT ===== */
.blueprint {
  background: var(--paper);
  padding: var(--pad-section) 0;
  position: relative;
}
.blueprint__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}
.bp-card {
  border: 1px solid rgba(15,14,12,0.08);
  border-radius: 10px;
  padding: clamp(40px, 4vw, 60px) clamp(32px, 3.4vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--e-out), box-shadow 0.4s var(--e-out);
}
.bp-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--bp-accent, var(--gold));
}
.bp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15,14,12,0.07);
}
.bp-card--1 { background: #EDE6D4; --bp-accent: #8A7444; }
.bp-card--2 { background: #EAE0D8; --bp-accent: #9A6F5A; }
.bp-card--3 { background: #E4E5DB; --bp-accent: #6F7A5E; }
.bp-card--4 { background: #D7EBE0; --bp-accent: #5B8C76; }
.bp-card__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--bp-accent, var(--gold));
  margin-bottom: 18px;
}
.bp-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.3vw, 1.95rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 14px;
}
.bp-card p {
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-3);
  margin: 0;
  max-width: 46ch;
}
.blueprint__cta {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

/* ===== EDITORIAL BREAK ===== */
.break {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 10vw, 144px) 32px clamp(64px, 8vw, 112px);
  text-align: center;
}
.break__inner {
  max-width: 920px;
  margin: 0 auto;
}
.break__photo {
  position: relative;
  max-width: 460px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.break__photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.03) saturate(1.02) brightness(1.05);
}
.break__photo::before,
.break__photo::after {
  content: "";
  position: absolute;
  width: 38px; height: 38px;
  border: 0 solid var(--beige-3);
  pointer-events: none;
}
.break__photo::before {
  top: -12px; left: -12px;
  border-top-width: 1px; border-left-width: 1px;
}
.break__photo::after {
  bottom: -12px; right: -12px;
  border-bottom-width: 1px; border-right-width: 1px;
}
.break blockquote {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.break blockquote p {
  margin: 0 0 24px;
}
.break__tag {
  font-family: var(--f-display) !important;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem) !important;
  color: var(--beige-2) !important;
  margin-top: 32px !important;
}

/* ===== SERVICES ===== */
.services {
  background: var(--ink-2);
  color: var(--paper-2);
  padding: var(--pad-section) 0;
}
.services .h2--light em { color: var(--beige-2); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service {
  padding: 48px 44px;
  border-left: 1px solid rgba(245,240,224,0.12);
  display: flex;
  flex-direction: column;
}
.service:first-child { border-left: 0; padding-left: 0; }
.service:last-child { padding-right: 0; }
.service__index {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beige-2);
  margin: 0 0 32px;
}
.service h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 0 0 20px;
}
.service__lede {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,224,0.85);
  margin: 0 0 28px;
}
.service__list {
  margin-bottom: 36px;
}
.service__list li {
  font-family: var(--f-sans);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,240,224,0.78);
  padding: 12px 0;
  padding-left: 22px;
  position: relative;
  border-bottom: 1px solid rgba(245,240,224,0.08);
}
.service__list li:last-child { border-bottom: 0; }
.service__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.4em;
  width: 10px;
  height: 1px;
  background: var(--beige-2);
}
.service__cta {
  margin-top: auto;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  border-bottom: 1px solid var(--beige-3);
  padding-bottom: 8px;
  align-self: flex-start;
  transition: color 0.3s, border-color 0.3s;
}
.service__cta:hover {
  color: var(--beige-2);
  border-bottom-color: var(--beige-2);
}

/* ===== ABOUT ===== */
.about {
  background: var(--paper-2);
  padding: var(--pad-section) 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 7vw, 112px);
  align-items: center;
}
.about__media {
  margin: 0;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  position: relative;
}
.about__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: contrast(1.03) saturate(0.96) brightness(1.05);
}
.about__copy p {
  font-family: var(--f-sans);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-3);
  margin: 0 0 22px;
  max-width: 56ch;
  font-weight: 300;
}
.about__sig {
  font-family: var(--f-display) !important;
  font-style: italic;
  font-size: 1.4rem !important;
  line-height: 1.45 !important;
  color: var(--ink) !important;
  margin-top: 36px !important;
  border-left: 1px solid var(--taupe);
  padding-left: 24px !important;
}

/* ===== VOICES ===== */
.voices {
  background: var(--paper);
  padding: var(--pad-section) 0;
}
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.voice {
  margin: 0;
  padding: 40px 0 0;
  border-top: 1px solid rgba(15,14,12,0.16);
}
.voice blockquote {
  margin: 0 0 28px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.voice figcaption {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ===== APPLY ===== */
.apply {
  background: var(--ink-2);
  color: var(--paper);
  padding: var(--pad-section) 0;
}
.apply .wrap { max-width: 1000px; }
.apply__head {
  text-align: left;
  margin-bottom: 64px;
}
.apply__h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 28px;
}
.apply__h1 em {
  font-style: italic;
  color: var(--beige-2);
}
.apply__sub {
  font-family: var(--f-sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245,240,224,0.85);
  max-width: 56ch;
  margin: 0 0 48px;
  font-weight: 300;
}
.apply__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid rgba(245,240,224,0.16);
  border-bottom: 1px solid rgba(245,240,224,0.16);
  padding: 28px 0;
  counter-reset: step;
}
.apply__steps li {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.apply__steps li span {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--beige-2);
  flex-shrink: 0;
  font-weight: 500;
}
.apply__steps li p {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,240,224,0.85);
  line-height: 1.5;
}

/* Form */
.form { margin-top: 8px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.field > span {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beige-2);
}
.field input,
.field textarea,
.field select {
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245,240,224,0.28);
  padding: 14px 0;
  border-radius: 0;
  width: 100%;
  resize: vertical;
  transition: border-color 0.3s var(--e-out);
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--beige-2) 50%),
    linear-gradient(135deg, var(--beige-2) 50%, transparent 50%);
  background-position: calc(100% - 14px) 1.45em, calc(100% - 8px) 1.45em;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.field select option {
  background: var(--ink-2);
  color: var(--paper);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245,240,224,0.4);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--beige-2);
}

.form__success {
  padding: 64px 0;
  text-align: center;
}
.form__success-lead {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--beige-2);
  margin: 0 0 18px;
  line-height: 1.05;
}
.form__success p {
  font-family: var(--f-sans);
  color: rgba(245,240,224,0.85);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto;
  font-weight: 300;
}

/* ===== FOOTER ===== */
.foot {
  background: var(--ink);
  color: rgba(245,240,224,0.65);
  padding: 80px 0 56px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,240,224,0.08);
}
.foot__mark {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--paper);
  display: block;
  margin-bottom: 12px;
}
.foot__brand p {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,240,224,0.55);
  max-width: 32ch;
  font-weight: 300;
}
.foot__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot__nav a {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,224,0.65);
  transition: color 0.25s;
}
.foot__nav a:hover { color: var(--paper); }

.foot__copy {
  margin: 32px 0 0;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,224,0.4);
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: 1fr; }
  .service { border-left: 0; border-top: 1px solid rgba(245,240,224,0.12); padding: 40px 0; }
  .service:first-child { border-top: 0; padding-top: 0; }
  .service:last-child { padding-bottom: 0; }
}

@media (max-width: 960px) {
  .hero__frame { grid-template-columns: 1fr; gap: 56px; }
  .hero__copy { padding-right: 0; }
  .hero__portrait { max-width: 480px; }
  .work__grid { grid-template-columns: 1fr; gap: 32px; }
  .blueprint__grid { grid-template-columns: 1fr; gap: 14px; }
  .bp-card { grid-column: span 1 !important; }
  .voices__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__grid { grid-template-columns: 1fr; gap: 56px; }
  .foot__grid { grid-template-columns: 1fr; gap: 32px; }
  .apply__steps { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 720px) {
  .mast__nav { display: none; }
  .mast__toggle { display: block; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .ticker { font-size: 10px; padding: 11px 0; }
  .bp-card { padding: 36px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
