:root {
  --ink: #171411;
  --ink-2: #24201b;
  --paper: #f4efe7;
  --paper-2: #ebe3d7;
  --white: #fffdf9;
  --muted: #6e675e;
  --line: rgba(23, 20, 17, .15);
  --gold: #b39261;
  --gold-2: #8b6e46;
  --brick: #744a3d;
  --success: #4b6c58;
  --danger: #945149;
  --shadow: 0 24px 80px rgba(24, 18, 12, .12);
  --radius: 22px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.container.narrow { width: min(calc(100% - 40px), 900px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 36px; height: 1px; background: currentColor; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(3.05rem, 6.6vw, 6.6rem); }
h2 { font-size: clamp(2.25rem, 4.4vw, 4.25rem); }
h3 { font-size: clamp(1.45rem, 2.15vw, 2rem); }
h4 { font-size: 1.18rem; }
p { margin: 0; }
.lead { font-size: clamp(1.04rem, 1.65vw, 1.32rem); }
.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 53px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-weight: 750;
  font-size: .92rem;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #17120d; }
.btn-primary:hover { background: #c1a171; }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: #2c2722; }
.btn-light { background: var(--white); color: var(--ink); }
.btn-outline { border-color: rgba(255,255,255,.38); color: white; background: rgba(255,255,255,.02); }
.btn-outline:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); }
.btn-outline-dark { border-color: rgba(23,20,17,.28); color: var(--ink); }
.btn-text { padding-inline: 0; min-height: 42px; border-radius: 0; border-bottom: 1px solid currentColor; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: white;
  background: rgba(18, 15, 12, .74);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}
.site-header.light-page { background: rgba(18,15,12,.92); }
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; color: white; min-width: 260px; }
.brand img { width: 272px; height: auto; color: currentColor; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: .86rem; }
.nav-links > a:not(.btn) { color: rgba(255,255,255,.72); }
.nav-links > a:not(.btn):hover, .nav-links > a.active { color: white; }
.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%; background: transparent; color: white; cursor: pointer;
}

.hero-home {
  position: relative;
  min-height: 880px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background-image:
    linear-gradient(90deg, rgba(12,10,8,.92) 0%, rgba(12,10,8,.78) 34%, rgba(12,10,8,.38) 66%, rgba(12,10,8,.34) 100%),
    linear-gradient(0deg, rgba(12,10,8,.62), rgba(12,10,8,.05) 60%),
    url("edificio-calle-100.webp");
  background-size: cover;
  background-position: center center;
}
.hero-home::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 87%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 165px 0 96px; }
.hero-home .eyebrow, .hero-dark .eyebrow { color: #d1b384; }
.hero-home h1 { max-width: 930px; }
.hero-home .lead { max-width: 745px; margin-top: 27px; color: rgba(255,255,255,.75); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 37px; }
.hero-note { max-width: 720px; margin-top: 19px; color: rgba(255,255,255,.55); font-size: .83rem; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin-top: 60px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
  gap: 1px;
}
.hero-fact { padding: 22px 24px; background: rgba(15,13,11,.68); }
.hero-fact strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.13rem; font-weight: 500; }
.hero-fact span { display: block; margin-top: 4px; color: rgba(255,255,255,.52); font-size: .76rem; line-height: 1.45; }

.hero-dark {
  position: relative;
  padding: 185px 0 104px;
  color: white;
  background:
    radial-gradient(circle at 82% 26%, rgba(179,146,97,.17), transparent 27%),
    linear-gradient(135deg, #0f0d0b 0%, #211c17 65%, #100e0c 100%);
  overflow: hidden;
}
.hero-dark::before {
  content: ""; position: absolute; width: 680px; height: 680px; right: -150px; top: -210px;
  border: 1px solid rgba(255,255,255,.08); transform: rotate(45deg);
}
.hero-dark h1 { max-width: 950px; font-size: clamp(3rem, 5.7vw, 5.7rem); }
.hero-dark .lead { max-width: 760px; margin-top: 25px; color: rgba(255,255,255,.68); }
.hero-dark .hero-actions { margin-top: 31px; }

section { padding: 108px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}
.section-head > p { max-width: 540px; color: var(--muted); }
.section-head.on-dark > p { color: rgba(255,255,255,.62); }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.audience-card {
  position: relative;
  min-height: 490px;
  padding: 45px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.audience-card.people { background: var(--white); border: 1px solid var(--line); }
.audience-card.business { background: var(--ink); color: white; }
.audience-card::after {
  content: ""; position: absolute; width: 300px; height: 300px; right: -120px; bottom: -140px;
  border: 1px solid currentColor; opacity: .08; transform: rotate(45deg);
}
.audience-number { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid currentColor; border-radius: 50%; opacity: .65; font-size: .75rem; }
.audience-card h2 { margin-top: 26px; font-size: clamp(2.4rem, 4.2vw, 4.25rem); }
.audience-card > p { margin-top: 20px; max-width: 530px; color: var(--muted); }
.audience-card.business > p { color: rgba(255,255,255,.63); }
.audience-card .card-list { margin: 31px 0 32px; padding: 0; list-style: none; display: grid; gap: 11px; }
.audience-card .card-list li { padding-bottom: 10px; border-bottom: 1px solid currentColor; opacity: .74; font-size: .9rem; }
.audience-card .btn { margin-top: auto; align-self: flex-start; }

.credibility { background: var(--paper-2); }
.cred-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.cred-quote { padding: 42px; border-radius: 22px; color: white; background: var(--ink); box-shadow: var(--shadow); }
.cred-quote blockquote { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 3.1vw, 2.8rem); line-height: 1.18; }
.cred-quote p { margin-top: 23px; color: rgba(255,255,255,.53); }
.cred-copy > p { margin-top: 22px; color: var(--muted); }
.cred-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 34px; }
.cred-point { padding: 23px; border-top: 1px solid var(--ink); background: rgba(255,255,255,.35); }
.cred-point strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; font-weight: 500; }
.cred-point span { display: block; margin-top: 7px; color: var(--muted); font-size: .83rem; }

.leader-strip { background: var(--white); }
.leader-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.leader-intro p:not(.eyebrow) { margin-top: 24px; color: var(--muted); }
.leaders { border-top: 1px solid var(--line); }
.leader { display: grid; grid-template-columns: 70px 1fr; gap: 23px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.monogram { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); font-family: Georgia, "Times New Roman", serif; }
.role { display: block; margin-top: 4px; color: var(--gold-2); font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.leader p { margin-top: 10px; color: var(--muted); font-size: .9rem; }
.team-note { margin-top: 26px; padding: 26px; border-left: 3px solid var(--gold); background: var(--paper); }
.team-note strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.18rem; font-weight: 500; }
.team-note p { margin-top: 7px; color: var(--muted); }

.office-preview { background: var(--paper-2); }
.office-grid { display: grid; grid-template-columns: 1.16fr .84fr; gap: 42px; align-items: stretch; }
.office-image { min-height: 560px; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
.office-image img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.office-image::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); pointer-events: none; }
.office-copy { align-self: center; padding: 24px 5px 24px 17px; }
.office-copy > p:not(.eyebrow) { margin-top: 23px; color: var(--muted); }
.address { margin-top: 31px; padding: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.address strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.28rem; font-weight: 500; }
.address span { display: block; margin-top: 8px; color: var(--muted); }
.office-copy .btn { margin-top: 28px; }

.practice-section { background: var(--paper-2); }
.practice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.practice-card { min-height: 360px; padding: 37px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.66); transition: transform .18s ease, box-shadow .18s ease, background .18s ease; display: flex; flex-direction: column; }
.practice-card:hover { transform: translateY(-4px); background: var(--white); box-shadow: 0 18px 55px rgba(20,16,12,.09); }
.practice-icon { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(23,20,17,.28); border-radius: 50%; color: var(--gold-2); font-family: Georgia, "Times New Roman", serif; margin-bottom: 35px; }
.practice-card p { margin-top: 16px; color: var(--muted); }
.practice-card .more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 25px; font-weight: 750; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.practice-card .more::after { content: "→"; font-size: 1rem; }

.study { background: var(--ink); color: white; }
.study .eyebrow { color: #d1b384; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; overflow: hidden; background: rgba(255,255,255,.12); }
.process-step { min-height: 294px; padding: 31px 27px; background: #1e1a16; }
.process-step .num { display: block; margin-bottom: 55px; color: #d1b384; font-family: Georgia, "Times New Roman", serif; }
.process-step h3 { font-size: 1.31rem; }
.process-step p { margin-top: 13px; color: rgba(255,255,255,.55); font-size: .88rem; }
.study-callout { display: flex; justify-content: space-between; align-items: center; gap: 28px; margin-top: 34px; padding: 29px 32px; border: 1px solid rgba(255,255,255,.11); border-radius: 16px; background: rgba(255,255,255,.05); }
.study-callout strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.32rem; font-weight: 500; }
.study-callout span { color: rgba(255,255,255,.53); font-size: .82rem; }

.corp-services { background: var(--paper); }
.corp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.corp-card { padding: 36px; min-height: 290px; border-radius: 18px; background: var(--white); border: 1px solid var(--line); }
.corp-card .index { color: var(--gold-2); font-family: Georgia, "Times New Roman", serif; }
.corp-card h3 { margin-top: 35px; }
.corp-card p { margin-top: 16px; color: var(--muted); }

.clients { background: var(--ink); color: white; }
.clients .eyebrow { color: #d1b384; }
.client-wall { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.13); border-radius: 20px; overflow: hidden; }
.client-name { min-height: 124px; display: grid; place-items: center; padding: 22px; text-align: center; border-right: 1px solid rgba(255,255,255,.11); border-bottom: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.74); font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; }
.client-name:nth-child(3n) { border-right: 0; }
.client-name:nth-last-child(-n+3) { border-bottom: 0; }
.client-note { margin-top: 24px; color: rgba(255,255,255,.48); font-size: .8rem; }

.firm-history { background: var(--white); }
.history-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 82px; }
.history-aside { position: sticky; top: 116px; align-self: start; padding: 40px; border-radius: 22px; color: white; background: var(--ink); }
.history-aside strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 4.5vw, 4.4rem); font-weight: 500; }
.history-aside p { margin-top: 14px; color: rgba(255,255,255,.55); }
.history-copy > p { margin-top: 22px; color: var(--muted); font-size: 1.02rem; }

.contact-band { background: var(--paper-2); }
.contact-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; padding: 45px; border-radius: 22px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-band h2 { font-size: clamp(2rem, 3.7vw, 3.4rem); max-width: 730px; }
.contact-band p { margin-top: 14px; color: var(--muted); max-width: 740px; }

/* Questionnaire */
.form-page { min-height: 100vh; padding-top: 78px; background: var(--paper-2); }
.form-hero { padding: 82px 0 44px; background: var(--ink); color: white; }
.form-hero .eyebrow { color: #d1b384; }
.form-hero h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); max-width: 850px; }
.form-hero p.lead { max-width: 780px; margin-top: 20px; color: rgba(255,255,255,.65); }
.form-shell { padding: 42px 0 105px; }
.form-layout { display: grid; grid-template-columns: 270px 1fr; gap: 28px; align-items: start; }
.form-aside { position: sticky; top: 104px; }
.form-aside-card { padding: 28px; border-radius: 18px; background: var(--ink); color: white; }
.form-aside-card h3 { font-size: 1.45rem; }
.form-aside-card p { margin-top: 13px; color: rgba(255,255,255,.56); font-size: .84rem; }
.progress-list { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.progress-item { display: grid; grid-template-columns: 31px 1fr; align-items: center; gap: 11px; color: rgba(255,255,255,.45); font-size: .8rem; }
.progress-dot { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-size: .7rem; }
.progress-item.active { color: white; }
.progress-item.active .progress-dot { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.progress-item.done { color: rgba(255,255,255,.72); }
.progress-item.done .progress-dot { border-color: var(--gold); color: #d1b384; }
.form-side-note { margin-top: 17px; padding: 19px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.46); color: var(--muted); font-size: .78rem; }
.form-card { min-height: 650px; padding: 38px; border-radius: 21px; background: var(--white); box-shadow: var(--shadow); }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn .22s ease; }
@keyframes fadeIn { from { opacity: .2; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.form-step-header { margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-step-header span { color: var(--gold-2); font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.form-step-header h2 { margin-top: 8px; font-size: clamp(2rem, 3.5vw, 3rem); }
.form-step-header p { margin-top: 13px; color: var(--muted); }
.area-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.area-option { position: relative; min-height: 210px; padding: 27px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); cursor: pointer; transition: border-color .18s ease, transform .18s ease, background .18s ease; }
.area-option:hover { transform: translateY(-2px); border-color: rgba(139,110,70,.55); background: #f8f4ed; }
.area-option.selected { border-color: var(--gold-2); box-shadow: 0 0 0 3px rgba(179,146,97,.13); background: #fbf7ef; }
.area-option input { position: absolute; opacity: 0; pointer-events: none; }
.area-option .roman { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--gold-2); font-family: Georgia, "Times New Roman", serif; }
.area-option h3 { margin-top: 22px; font-size: 1.45rem; }
.area-option p { margin-top: 11px; color: var(--muted); font-size: .84rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 19px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label, .question-label { font-size: .79rem; font-weight: 800; color: #2d2822; }
.required::after { content: " *"; color: var(--danger); }
.field small, .question-help { color: var(--muted); font-size: .74rem; }
input, select, textarea {
  width: 100%; border: 1px solid rgba(23,20,17,.19); border-radius: 10px; background: white; color: var(--ink); padding: 13px 14px; outline: none;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold-2); box-shadow: 0 0 0 3px rgba(179,146,97,.12); }
input.invalid, select.invalid, textarea.invalid { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(148,81,73,.09); }
.questionnaire { display: grid; gap: 21px; }
.question { padding: 0 0 21px; border-bottom: 1px solid var(--line); }
.question:last-child { border-bottom: 0; }
.question-number { display: inline-block; min-width: 30px; color: var(--gold-2); font-family: Georgia, "Times New Roman", serif; }
.question-label { display: block; margin-bottom: 9px; font-size: .86rem; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px 13px; }
.check-option, .radio-option { display: flex; align-items: flex-start; gap: 9px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px; background: var(--paper); color: #433d35; font-size: .8rem; cursor: pointer; }
.check-option input, .radio-option input { width: 16px; height: 16px; margin-top: 2px; padding: 0; flex: 0 0 auto; }
.upload-zone { padding: 25px; border: 1px dashed rgba(23,20,17,.3); border-radius: 13px; background: var(--paper); }
.upload-zone input { margin-top: 13px; background: white; }
.consent { display: grid; grid-template-columns: 19px 1fr; gap: 10px; margin-top: 22px; color: var(--muted); font-size: .77rem; }
.consent input { width: 16px; height: 16px; margin-top: 3px; }
.form-actions { display: flex; justify-content: space-between; gap: 15px; margin-top: 31px; padding-top: 24px; border-top: 1px solid var(--line); }
.form-actions .right { display: flex; gap: 12px; margin-left: auto; }
.form-message { display: none; margin-top: 20px; padding: 16px 18px; border-radius: 12px; background: #eee6d8; color: #5d4a32; font-size: .86rem; }
.form-message.show { display: block; }
.area-badge { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; padding: 8px 13px; border-radius: 999px; background: #eee4d5; color: #684f31; font-size: .78rem; font-weight: 750; }
.area-badge button { border: 0; background: transparent; padding: 0; text-decoration: underline; cursor: pointer; font-size: inherit; }
.question-count { margin-top: 11px; color: var(--muted); font-size: .78rem; }

.simple-form { padding: 38px; border-radius: 20px; background: var(--white); color: var(--ink); box-shadow: var(--shadow); }

footer { padding: 44px 0; background: #0d0b09; color: rgba(255,255,255,.55); font-size: .77rem; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 35px; align-items: end; }
.footer-logo { width: 310px; color: white; filter: brightness(0) invert(1); }
.footer-meta { max-width: 760px; margin-top: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.prototype-ribbon { position: fixed; z-index: 120; right: 18px; bottom: 18px; padding: 9px 13px; border-radius: 999px; color: white; background: rgba(23,20,17,.86); backdrop-filter: blur(8px); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 1020px) {
  .nav-links { display: none; position: absolute; top: 78px; left: 20px; right: 20px; flex-direction: column; align-items: stretch; padding: 23px; border-radius: 15px; background: #171411; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-home { min-height: 830px; background-position: 55% center; }
  .section-head, .cred-grid, .leader-grid, .office-grid, .history-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .form-layout { grid-template-columns: 1fr; }
  .form-aside { position: static; }
  .progress-list { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .progress-item { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 5px; }
  .form-side-note { display: none; }
  .history-aside { position: static; }
}

@media (max-width: 720px) {
  .container, .container.narrow { width: min(calc(100% - 28px), var(--max)); }
  .brand { min-width: 0; }
  .brand img { width: 230px; }
  .site-header .nav > .btn { display: none; }
  .hero-home { min-height: 860px; background-position: 57% center; }
  .hero-content { padding-top: 135px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-facts { grid-template-columns: 1fr; }
  section { padding: 78px 0; }
  .section-head { gap: 20px; margin-bottom: 36px; }
  .audience-card { min-height: 455px; padding: 31px 25px; }
  .cred-points, .practice-grid, .corp-grid, .area-options, .form-grid { grid-template-columns: 1fr; }
  .leader { grid-template-columns: 55px 1fr; }
  .monogram { width: 50px; height: 50px; }
  .office-image { min-height: 380px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 235px; }
  .study-callout, .contact-band-inner { flex-direction: column; align-items: flex-start; }
  .client-wall { grid-template-columns: 1fr; }
  .client-name { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11) !important; }
  .client-name:last-child { border-bottom: 0 !important; }
  .form-card { padding: 25px 20px; min-height: 0; }
  .form-hero { padding-top: 65px; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .right { width: 100%; margin: 0; flex-direction: column; }
  .form-actions .btn { width: 100%; }
  .progress-list span:last-child { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo { width: 270px; }
  .prototype-ribbon { right: 10px; bottom: 10px; }
}

.site-page { display: block; }
.site-page.active { display: block; }
.preview-help {
  position: fixed; left: 18px; bottom: 18px; z-index: 1200;
  max-width: 340px; padding: 12px 16px; border-radius: 14px;
  background: rgba(23,20,17,.94); color: #fffdf9; box-shadow: 0 12px 35px rgba(0,0,0,.22);
  font-size: .78rem; line-height: 1.45;
}
.preview-help strong { color: #d8bd94; }
@media (max-width: 720px) { .preview-help { left: 10px; right: 10px; bottom: 10px; max-width: none; } }

/* V4: narrative-led intake, approved imagery, shorter opening. */
:root{--gold-2:#735734;--muted:#635d55}
[hidden]{display:none!important} .page-shell{padding:0} .site-page{padding:0}
.portable .site-page{display:none}.portable .site-page.active{display:block}
:focus-visible{outline:3px solid #b18a4e;outline-offset:4px}
a,button{-webkit-tap-highlight-color:transparent}button,input,select,textarea{touch-action:manipulation}
.skip-link{position:fixed;left:16px;top:-100px;z-index:5000;background:#fff;color:#171411;padding:12px 20px;border-radius:8px}.skip-link:focus{top:12px}
h1:focus{outline:none}figure{margin:0}.eyebrow{line-height:1.45}
.hero-home.hero-refined{background:#171411;min-height:0;display:block;padding:143px 0 50px}
.hero-refined::after{display:none}.hero-split{display:grid;grid-template-columns:0.86fr 1.14fr;gap:46px;align-items:center}
.hero-copy h1{font-size:clamp(2.85rem,4.25vw,4.1rem);line-height:1.04;letter-spacing:-.04em;max-width:630px}
.hero-copy h1 em{font-style:normal;color:#d1b384}.hero-copy .lead{font-size:1.08rem;line-height:1.65;max-width:530px;margin-top:25px;color:#ddd5ca}
.hero-copy .hero-actions{gap:10px;margin-top:29px}.hero-copy .btn{font-size:.83rem;padding:0 18px;min-height:49px}
.hero-copy .hero-note{font-size:.83rem;line-height:1.6;color:#bbb1a3}
.hero-building{background:#211e19;border:1px solid #ffffff24;border-radius:20px;overflow:hidden;box-shadow:0 28px 80px #0004}
.hero-building img{width:100%;height:auto;aspect-ratio:1672/941;object-fit:contain;display:block}.hero-building figcaption{display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;padding:14px 19px;font-size:.72rem;color:#d3c7b6;line-height:1.4}.hero-building figcaption span:last-child{opacity:.75}
.hero-refined .hero-facts{max-width:none;margin-top:45px;border-radius:12px}.hero-fact{padding:18px 23px}.hero-fact span{color:#c2b8aa;max-width:280px}.hero-fact strong{color:#f4efe7}
section{padding:80px 0}.section-head{gap:40px;margin-bottom:35px}h2{font-size:clamp(2rem,3.65vw,3.35rem)}
.hero-dark{padding:156px 0 78px}.hero-dark h1{font-size:clamp(2.75rem,4.75vw,4.7rem);max-width:950px;line-height:1.06}.hero-dark .lead{color:#d2c9bd;font-size:1.12rem}
.hero-dark:before{pointer-events:none}.hero-dark .container{position:relative;z-index:1}
.audience-card{min-height:410px;padding:34px}.audience-card h2{margin-top:20px;font-size:3rem}.audience-card .card-list{margin-top:24px}.audience-card .card-list li{font-size:.92rem}.audience-card.business > p{color:#cbc1b2}
.practice-actions{display:flex;align-items:center;gap:22px;flex-wrap:wrap;margin-top:auto;padding-top:25px}.btn-small{font-size:.81rem;min-height:42px;padding:0 17px}
.practice-card{display:flex;flex-direction:column}.practice-card >p{margin-top:16px}.practice-card .more{margin-top:0}
.office-image{position:relative;min-height:0!important;height:fit-content;background:#e3dccf;align-self:center}.office-image img{width:100%!important;height:auto!important;min-height:0!important;object-fit:contain!important;aspect-ratio:1672/941}.office-grid{grid-template-columns:1.3fr .8fr;align-items:center}.image-caption{display:block;padding:10px 15px;color:#645c50;background:#e9e2d7;font-size:.68rem;line-height:1.4}
.process-grid{grid-template-columns:repeat(3,1fr)}.process-step{min-height:220px}.process-step p{color:#d1c6b5}.study .section-head.on-dark>p{color:#d1c6b5}.study-callout span{color:#d1c6b5}
.client-wall{grid-template-columns:repeat(3,1fr)}.client-name{font-size:.94rem}.client-note{color:#c8bbaa!important}.clients .section-head.on-dark>p{color:#c8bbaa}
.breadcrumb{display:block;width:fit-content;font-size:.86rem;color:#d2be9e;margin-bottom:32px;text-decoration:underline;text-underline-offset:5px}
.detail-grid{display:grid;grid-template-columns:1.2fr .7fr;gap:76px;align-items:start}.detail-grid>div>p:not(.eyebrow){margin-top:23px;color:var(--muted);font-size:1.06rem}.detail-grid h3{margin-top:35px}.detail-note{padding:32px;background:var(--white);border:1px solid var(--line);border-radius:18px}.detail-note h3{margin-top:15px}.detail-note p{color:var(--muted);margin-top:20px}.detail-note .btn{margin-top:26px}.small-index{font-size:.69rem;letter-spacing:.16em;font-weight:800;color:var(--gold-2);display:block;line-height:1.5}
.faq-section{background:var(--paper-2)}.faq-section h2{margin-bottom:32px}.faq{border-bottom:1px solid #cbc1b3;padding:0}.faq summary{padding:22px 22px 22px 0;cursor:pointer;font-size:1.08rem;font-weight:600;line-height:1.5}.faq p{padding:0 0 24px;color:var(--muted)}
.form-page{padding-top:0;background:var(--paper-2)}.form-hero{padding:145px 0 52px!important}.form-hero h1{font-size:clamp(2.8rem,4.8vw,4.5rem);line-height:1.04}.form-hero p.lead{color:#d4cabd;font-size:1.12rem;max-width:720px}.form-shell{padding:40px 0 90px}
.intake-layout{display:grid;grid-template-columns:270px minmax(0,1fr);gap:42px;align-items:start}.intake-aside{position:sticky;top:107px;padding:18px 0;color:var(--muted)}.intake-aside h2{font-size:2rem;margin:16px 0 20px;color:var(--ink)}.intake-aside>p{font-size:.93rem}.aside-fact{border-top:1px solid #cabfad;padding-top:23px;margin-top:26px}.aside-fact strong{color:var(--ink);font-size:1rem}.aside-fact p{margin-top:5px;font-size:.89rem}.intake-aside .aside-fine{font-size:.77rem;margin-top:28px}
.demo-note{border:1px solid #c9bba4;background:#f4eddf;color:#635238;padding:13px 18px;border-radius:12px;font-size:.82rem;margin-bottom:19px;line-height:1.55}
.intake-card{padding:38px;background:var(--white);border:1px solid #ded4c6;border-radius:20px;box-shadow:0 18px 45px #2d20120a}.form-heading h2,.story-heading h2{font-size:2rem;margin-top:10px}.form-heading>p{margin:12px 0 26px;font-size:.88rem;color:var(--muted)}.form-grid{gap:20px 22px}.field label{font-size:.86rem;line-height:1.45}.optional-label{font-size:.71rem;font-weight:400;color:var(--muted);margin-left:4px}.field input,.field select,.field textarea{font-size:1rem;min-width:0;width:100%;background:#fffefd;line-height:1.5}.field small{font-size:.78rem}.story-heading{margin:40px 0 24px;border-top:1px solid var(--line);padding-top:28px}.story-field{margin-top:25px}.story-field>p{color:var(--muted);font-size:.92rem}.story-field textarea{min-height:285px;line-height:1.8;padding:20px;font-size:1rem}.story-field small{line-height:1.6}
.submit-reminder{display:flex;gap:12px;align-items:flex-start;margin-top:25px;background:#f2f0e7;border-left:3px solid #9b896b;padding:17px;flex-wrap:wrap;border-radius:0 8px 8px 0}.submit-reminder p{font-size:.87rem;flex:1;min-width:160px;color:#575246}.submit-reminder>span{font-size:1.15rem;color:#4b6654}.text-link{background:none;border:0;border-bottom:1px solid currentColor;color:#624a2c;padding:0;cursor:pointer;font-size:.8rem;line-height:1.5;font-weight:700}
.optional-details{margin-top:32px;border:1px solid #d6cbbd;border-radius:12px;overflow:hidden}.optional-details summary{list-style:none;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:24px;background:#f1ece3;cursor:pointer}.optional-details summary::-webkit-details-marker{display:none}.optional-details summary strong{display:block;font-family:Georgia,serif;font-size:1.45rem;font-weight:500;line-height:1.25;margin:5px 0}.optional-details summary small{color:var(--muted);font-size:.81rem;display:block}.detail-sign{font-size:1.7rem;font-weight:300;line-height:1}.optional-details[open] .detail-sign{transform:rotate(45deg)}.optional-body{padding:25px}.optional-intro{font-size:.88rem;margin-bottom:27px}#optional-questions{display:grid;gap:23px}.optional-empty{font-size:.9rem;color:var(--muted)}.optional-question{border-bottom:1px solid var(--line);padding-bottom:22px}.optional-question:last-child{border:0;padding-bottom:0}.optional-question textarea{min-height:100px}.optional-question .field-help{font-size:.75rem;color:var(--muted);margin-top:4px}
.consent-block{margin-top:34px;padding-top:28px;border-top:1px solid var(--line);scroll-margin-top:110px}.consent-block>p{font-size:.88rem;color:var(--muted);margin-top:12px}.consent{font-size:.83rem;line-height:1.65;margin-top:20px;grid-template-columns:21px 1fr;cursor:pointer;color:#59544c}.consent input{accent-color:#715531;width:18px;height:18px}.consent.sensitive{font-size:.79rem}.inline-link{text-decoration:underline;text-underline-offset:3px}.submission-note{padding-top:15px}.submit-row{display:flex;flex-wrap:wrap;align-items:center;gap:18px;margin-top:26px}.submit-row>span{font-size:.76rem;color:var(--muted);max-width:240px}.field-error{color:#922f28!important;min-height:0;line-height:1.5}.field-error:empty{display:none}.form-error-summary{padding:15px 18px;background:#f6e8e4;color:#772c26!important;border:1px solid #dcb7b0;border-radius:8px;font-size:.88rem}.invalid,[aria-invalid="true"]{border-color:#ac473f!important}.local-note{font-size:.76rem;color:var(--muted);margin:17px 8px 0;line-height:1.6}.demo-result{padding:42px;background:var(--white);border:1px solid #cbbda9;border-radius:20px}.demo-result h2{font-size:2.4rem;margin-top:14px}.demo-result p{margin-top:21px;color:var(--muted)}.demo-result button{margin-top:10px}.result-meta{padding:18px;margin-top:22px;background:var(--paper);font-size:.86rem;color:var(--muted)}
.legal-section{padding:48px 0 90px}.legal-copy h2{font-size:1.7rem;margin:34px 0 14px}.legal-copy>p{color:var(--muted);margin:14px 0}.legal-copy .btn{margin-top:25px}.source-note{font-size:.81rem}.footer-meta{line-height:1.85}.footer-meta a{overflow-wrap:anywhere}.footer-preview{color:#a99c88}.footer-links a{text-decoration:underline;text-underline-offset:4px}footer{color:#bcb1a2}.prototype-ribbon,.preview-help{display:none!important}
section[id],h2[id]{scroll-margin-top:105px}.footer-grid{align-items:center}
@media(max-width:1100px){.hero-split{gap:28px;grid-template-columns:1fr 1fr}.hero-copy h1{font-size:3.3rem}.hero-copy .hero-actions{flex-direction:column;align-items:flex-start}.hero-copy .btn{min-width:210px}.intake-layout{grid-template-columns:230px minmax(0,1fr);gap:25px}.client-wall{grid-template-columns:repeat(2,1fr)}}
@media(max-width:1020px){.hero-refined{padding-top:126px!important}.hero-split{grid-template-columns:1fr}.hero-copy{max-width:720px}.hero-copy h1{font-size:3.6rem}.hero-copy .hero-actions{flex-direction:row;align-items:center}.hero-building{max-width:760px;width:100%;margin-top:10px}.office-grid{grid-template-columns:1fr}.intake-layout{grid-template-columns:1fr}.intake-aside{position:static;display:none}.detail-grid{gap:35px;grid-template-columns:1fr 0.7fr}}
@media(max-width:720px){.brand img{width:230px}.container,.container.narrow{width:calc(100% - 32px)}.hero-home.hero-refined{padding:115px 0 32px!important;min-height:0}.hero-copy h1{font-size:clamp(2.65rem,10.1vw,3.65rem);line-height:1.06}.hero-copy .lead{font-size:1rem;margin-top:20px}.hero-copy .hero-actions{margin-top:23px;flex-direction:column;align-items:stretch}.hero-copy .btn{width:100%;min-width:0;font-size:.87rem}.hero-copy .hero-note{font-size:.78rem;margin-top:15px}.hero-building{border-radius:13px;margin-top:0}.hero-building figcaption{font-size:.65rem;padding:12px;gap:5px}.hero-refined .hero-facts{margin-top:24px;grid-template-columns:1fr}.hero-fact{padding:13px 18px}.hero-fact strong{font-size:1rem}.hero-fact span{max-width:none;font-size:.75rem}.hero-dark{padding:125px 0 52px}.hero-dark h1{font-size:2.65rem}.hero-dark .lead{font-size:1rem}section{padding:55px 0}.audience-card{padding:28px;min-height:0}.audience-card h2{font-size:2.65rem}.audience-card .btn{margin-top:15px}.section-head{gap:19px}.practice-actions{flex-direction:column;align-items:flex-start;gap:15px}.office-image{min-height:0!important}.office-grid{gap:25px}.office-copy{padding:0}.process-grid{grid-template-columns:1fr}.process-step{min-height:0;padding:25px}.client-wall{grid-template-columns:1fr}.detail-grid{grid-template-columns:1fr}.detail-note{padding:25px}.breadcrumb{margin-bottom:26px}.form-hero{padding:120px 0 36px!important}.form-hero h1{font-size:2.8rem}.form-hero p.lead{font-size:1rem}.form-shell{padding:23px 0 60px}.intake-card{padding:24px 19px;border-radius:15px}.demo-note{padding:12px 15px;font-size:.78rem}.form-heading h2,.story-heading h2{font-size:1.7rem}.form-grid{grid-template-columns:1fr;gap:19px}.story-field textarea{min-height:290px;padding:16px}.optional-details summary{padding:18px}.optional-details summary strong{font-size:1.25rem}.optional-body{padding:19px}.submit-reminder{padding:14px;gap:8px}.submit-reminder .text-link{margin-left:25px}.submit-row{align-items:stretch;flex-direction:column}.submit-row .btn{width:100%}.submit-row>span{max-width:none}.consent{font-size:.8rem}.demo-result{padding:27px 20px}.demo-result h2{font-size:2rem}.leader-grid{gap:30px}.leaders .leader h3{font-size:1.55rem}.image-caption{font-size:.64rem}.footer-logo{width:270px}.footer-links{gap:13px}.nav-links{max-height:calc(100dvh - 100px);overflow:auto}.faq summary{font-size:1rem}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*:before,*:after{animation:none!important;transition:none!important;scroll-behavior:auto!important}}

.intake-card,.demo-result,.optional-details,input,select,textarea{scroll-margin-top:110px}

/* Honeypot: invisible to visitors, not display:none. */
.form-honeypot{position:absolute!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;height:1px!important;width:1px!important;margin:-1px!important;padding:0!important;border:0!important;white-space:nowrap!important}
form[aria-busy="true"] button[type="submit"]{opacity:.6;cursor:wait}
