:root {
  --ink: #11110f;
  --paper: #f4efe7;
  --paper-2: #ece3d6;
  --sand: #b99f7a;
  --olive: #6c705d;
  --wine: #5c3438;
  --line: rgba(17,17,15,.16);
  --white: #fffdf8;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  background: var(--paper);
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 4vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(244,239,231,.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 20px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 14px;
  letter-spacing: .22em;
}

.brand-text small {
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: .20em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}

.site-nav a { opacity: .82; }
.site-nav a:hover { opacity: 1; }

.nav-cta {
  padding: 12px 16px;
  border: 1px solid var(--ink);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
}

.hero {
  min-height: 820px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: stretch;
}

.hero-copy {
  padding: clamp(70px, 8vw, 130px) clamp(28px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 22px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .24em;
  font-weight: 600;
}

.eyebrow.light { color: #d8c9b6; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 92px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.035em;
}

.hero-intro {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(17,17,15,.72);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); }
.button-light { background: var(--paper); color: var(--ink); }
.text-link { font-size: 13px; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.text-link span { margin-left: 8px; }

.hero-proof {
  display: flex;
  gap: 44px;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-proof strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.hero-proof span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(17,17,15,.56);
}

.hero-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #2e2924;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,11,10,.74) 0%, rgba(12,11,10,.20) 48%, rgba(12,11,10,.06) 100%);
}

.visual-copy {
  position: absolute;
  left: 9%;
  right: 8%;
  bottom: 9%;
  color: white;
  z-index: 2;
}

.visual-copy span {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: .22em;
}

.visual-copy p {
  max-width: 630px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 58px);
  line-height: 1.02;
}

.floating-note {
  position: absolute;
  z-index: 3;
  left: 7%;
  top: 10%;
  width: min(245px, 42%);
  padding: 22px 24px;
  background: rgba(244,239,231,.96);
  border: 1px solid rgba(17,17,15,.14);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}

.floating-note span {
  font-family: var(--serif);
  font-size: 27px;
}

.floating-note p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.55;
}

.section-pad {
  padding: clamp(82px, 9vw, 140px) clamp(28px, 7vw, 110px);
}

.statement {
  display: grid;
  grid-template-columns: .8fr 1.6fr 1fr;
  gap: 40px;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement h2,
.section-heading h2,
.approach h2,
.contact h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.03em;
}

.statement p:last-child {
  align-self: end;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(17,17,15,.7);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 64px;
}

.perspective-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.perspective-card {
  min-height: 360px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: start;
}

.card-number {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--wine);
}

.perspective-card h3 {
  align-self: end;
  min-height: 2.3em;
  display: flex;
  align-items: flex-end;
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.15;
  font-weight: 500;
}

.perspective-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(17,17,15,.67);
}

.review-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  padding: clamp(68px, 7vw, 100px) clamp(28px, 7vw, 110px);
  background: var(--wine);
  color: var(--white);
}

.review-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 500;
}

.review-band > p {
  margin: 0;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
}

.deliverable-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: start;
}

.deliverable-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.deliverable-item:last-child { border-bottom: 1px solid var(--line); }

.deliverable-item > span {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--wine);
}

.deliverable-item h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.deliverable-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(17,17,15,.68);
}

.report-card {
  position: sticky;
  top: 110px;
  padding: 32px;
  background: var(--ink);
  color: var(--white);
}

.report-kicker {
  margin-bottom: 28px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #c5b49f;
}

.report-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 14px;
}

.report-line strong {
  font-family: var(--serif);
  font-weight: 500;
  color: #c5b49f;
}

.report-foot {
  margin: 26px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,.75);
}

.approach {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 90px;
  background: var(--olive);
  color: var(--white);
}

.approach-copy p:last-child {
  max-width: 720px;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
}

.principle-panel {
  align-self: center;
  padding: 36px;
  border: 1px solid rgba(255,255,255,.28);
}

.quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.small-copy {
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.20);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

.contact {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  background: var(--ink);
  color: var(--white);
}

.contact-copy p:last-child {
  max-width: 540px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

.contact-form {
  display: grid;
  gap: 22px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.64);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  background: transparent;
  color: white;
  padding: 12px 0;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: white;
}

.contact-form textarea { resize: vertical; }

.form-note {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255,255,255,.46);
}

.form-note code { color: #d7c6b4; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: end;
  padding: 34px clamp(28px, 7vw, 110px);
  background: #090909;
  color: rgba(255,255,255,.55);
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  color: white;
}

.footer-brand strong { letter-spacing: .20em; }
.footer-brand span { margin-top: 5px; font-size: 8px; letter-spacing: .18em; }

.site-footer p { margin: 0; }
.site-footer p:last-child { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1020px) {
  .site-nav {
    position: absolute;
    top: 79px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .menu-toggle { display: block; }

  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 620px; }
  .floating-note { left: 28px; top: 28px; }

  .statement {
    grid-template-columns: 1fr;
  }

  .statement p:last-child { max-width: 700px; }

  .perspective-grid { grid-template-columns: 1fr 1fr; }

  .deliverable-layout,
  .approach,
  .contact {
    grid-template-columns: 1fr;
  }

  .report-card { position: static; }
  .review-band { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header { padding: 16px 20px; }
  .brand-text strong { font-size: 12px; }
  .brand-text small { font-size: 7px; }

  .hero-copy { padding: 72px 24px 64px; }
  h1 { font-size: clamp(48px, 15vw, 70px); }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-proof {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-visual { min-height: 520px; }
  .visual-copy { width: 78%; }
  .floating-note { width: 190px; }

  .section-pad { padding: 78px 24px; }
  .statement { padding: 72px 24px; }
  .perspective-grid { grid-template-columns: 1fr; }
  .perspective-card { min-height: 300px; }

  .review-band {
    padding: 68px 24px;
  }

  .field-row { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer p:last-child { text-align: left; }
}


.editorial-image {
  padding: 0 clamp(28px, 7vw, 110px);
  background: var(--paper);
}

.editorial-image img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center;
}

.approach-side {
  display: grid;
  gap: 28px;
  align-self: center;
}

.approach-image {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 680px) {
  .floating-note {
    left: 24px;
    top: 24px;
    width: 210px;
  }

  .visual-copy {
    left: 24px;
    right: 24px;
    bottom: 34px;
  }

  .visual-copy p {
    font-size: 36px;
  }

  .perspective-card h3 {
    min-height: 0;
  }

  .editorial-image {
    padding: 0 24px;
  }
}


/* V3 alignment correction: every perspective title starts on the exact same row */
.perspective-card {
  display: grid !important;
  grid-template-rows: 36px 86px auto !important;
  align-content: start !important;
}

.perspective-card .card-number {
  align-self: start !important;
  margin: 0 !important;
}

.perspective-card h3 {
  min-height: 0 !important;
  height: 86px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: flex-end !important;
  line-height: 1.15 !important;
}

.perspective-card p {
  margin: 0 !important;
}

/* The removed floating note should never render even if cached markup lingers */
.floating-note {
  display: none !important;
}
