/* ============================================================
   De Los Santos Law — maroon editorial system
   ============================================================ */

:root {
  --maroon:      #7B1113;
  --maroon-deep: #560B0D;
  --maroon-tint: #A25859;
  --wash:        #F8F1F1;
  --ink:         #1A1413;
  --ink-soft:    #4a403d;
  --cream:       #FBF9F6;
  --green:       #2C5F4F;
  --brass:       #B08D57;
  --line:        rgba(26,20,19,.14);

  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 5rem);

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Hanken Grotesk", system-ui, sans-serif;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); background: var(--cream); color: var(--ink);
  line-height: 1.6; font-size: clamp(1rem, .95rem + .25vw, 1.0625rem);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
::selection { background: var(--maroon); color: var(--cream); }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
button { font-family: inherit; }

/* grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ───────── DRAFT / FILLER MARKING ───────── */
.draft-badge {
  position: fixed; left: 12px; bottom: 12px; z-index: 9998;
  background: #2b2622; color: #ffe9b0; border: 1px solid var(--brass);
  border-radius: 8px; padding: .55rem .8rem; max-width: 240px; line-height: 1.3;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,.5); font-size: .72rem;
}
.draft-badge strong { display: inline-block; background: var(--brass); color: #2b2622; font-weight: 700; letter-spacing: .12em; padding: .05rem .4rem; border-radius: 4px; margin-bottom: .3rem; }
.draft-badge span { display: block; opacity: .85; }
body:not(.draft) .draft-badge { display: none; }

/* highlight every placeholder while body.draft is on */
.draft .is-filler {
  background: linear-gradient(transparent 62%, rgba(176,141,87,.45) 0) !important;
  outline: 1px dashed rgba(176,141,87,.7); outline-offset: 2px; border-radius: 1px;
}
.draft .is-filler.pa, .draft .is-filler.about__body, .draft .is-filler.express__qr,
.draft article.is-filler, .draft blockquote.is-filler {
  background: rgba(176,141,87,.07) !important;
  outline: 1px dashed rgba(176,141,87,.55); outline-offset: -1px;
}

/* ───────── NAV ───────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.4rem 0; transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease); }
.nav--scrolled { background: rgba(251,249,246,.86); backdrop-filter: blur(14px) saturate(1.2); box-shadow: 0 1px 0 var(--line); padding: .85rem 0; }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); display: flex; align-items: center; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand__logo { height: 2.9rem; width: auto; display: block; }
.brand__amp { color: var(--brass); }
.brand__name { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; letter-spacing: -.01em; color: var(--ink); }
.brand__name em { color: var(--maroon); font-weight: 500; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a { font-size: .9rem; font-weight: 500; letter-spacing: .01em; color: var(--ink-soft); position: relative; padding: .2rem 0; transition: color .25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0; background: var(--maroon); transition: width .3s var(--ease); }
.nav__links a:hover { color: var(--maroon); }
.nav__links a:hover::after { width: 100%; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: .5rem; }
.nav__toggle span { width: 24px; height: 2px; background: var(--maroon); transition: .3s; }

/* ───────── BUTTONS ───────── */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; letter-spacing: .01em; padding: .85rem 1.5rem; border-radius: 4px; cursor: pointer; border: 1.5px solid transparent; transition: transform .2s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s; white-space: nowrap; }
.btn--solid { background: var(--maroon); color: var(--cream); }
.btn--solid:hover { background: var(--maroon-deep); transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(86,11,13,.7); }
.btn--ghost { color: var(--maroon); border-color: var(--line); background: transparent; }
.btn--ghost:hover { border-color: var(--maroon); background: var(--wash); }
.btn--ghost-light { color: var(--cream); border-color: rgba(251,249,246,.3); }
.btn--ghost-light:hover { border-color: var(--cream); background: rgba(251,249,246,.08); }
.btn--nav { background: var(--maroon); color: var(--cream); padding: .6rem 1.1rem; font-size: .85rem; border: 0; }
.btn--nav:hover { background: var(--maroon-deep); }
.btn--full { width: 100%; justify-content: center; padding: 1rem; }

/* ───────── HERO ───────── */
.hero { max-width: var(--maxw); margin: 0 auto; padding: clamp(8rem,16vh,12rem) var(--pad) 0; position: relative; }
.hero__grid { max-width: 56rem; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--serif); font-size: clamp(1.05rem, .95rem + .5vw, 1.3rem); font-weight: 600; letter-spacing: 0; line-height: 1.2; color: var(--maroon); margin-bottom: 1.6rem; }
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brass); }
.hero__title { font-family: var(--serif); font-weight: 340; line-height: .98; letter-spacing: -.025em; font-size: clamp(3.2rem, 11vw, 8.5rem); font-optical-sizing: auto; }
.hero__title span { display: block; }
.hero__accent { font-style: italic; color: var(--maroon); font-weight: 380; }
.hero__lede { font-size: clamp(1.15rem, 1.05rem + .6vw, 1.5rem); line-height: 1.5; color: var(--ink-soft); max-width: 34rem; margin: 2rem 0 2.5rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__meta { display: flex; gap: clamp(1.5rem,5vw,3.5rem); margin-top: 4rem; flex-wrap: wrap; }
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta strong { font-family: var(--serif); font-size: clamp(1.5rem,1.2rem+1vw,2.1rem); font-weight: 420; color: var(--maroon); line-height: 1; }
.hero__meta span { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-top: .5rem; }
.hero__rule { max-width: var(--maxw); margin: clamp(4rem,9vh,7rem) auto 0; height: 1px; background: var(--line); }

/* ───────── MARQUEE ───────── */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.1rem 0; margin-top: -1px; background: var(--wash); }
.marquee__track { display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap; font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--maroon-deep); animation: scroll 36s linear infinite; will-change: transform; }
.marquee__track .sep { color: var(--brass); font-style: normal; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ───────── SECTION SCAFFOLD ───────── */
section { max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem,11vh,9rem) var(--pad); }
.section-kicker { font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--maroon); margin-bottom: 2.5rem; display: flex; align-items: center; gap: .9rem; }
.section-kicker span { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--brass); font-size: 1.1rem; }
.section-kicker--light { color: var(--cream); }
.section-kicker--light span { color: var(--brass); }

/* ───────── ABOUT ───────── */
.about__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem,6vw,5rem); align-items: start; }
.about__lead { font-family: var(--serif); font-weight: 330; line-height: 1.12; letter-spacing: -.02em; font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3.4rem); }
.about__lead em { color: var(--maroon); font-style: italic; }
.about__body { color: var(--ink-soft); }
.about__body p + p { margin-top: 1.2rem; }

/* ───────── PRACTICE ───────── */
.practice { border-top: 1px solid var(--line); }
.practice__list { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); }
.pa { padding: clamp(1.8rem,3vw,2.6rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s var(--ease); position: relative; background: var(--cream); }
.pa:nth-child(3n) { border-right: 0; }
.pa:nth-last-child(-n+1) { border-bottom: 0; }
.pa--featured { background: var(--wash); }
.pa--featured::before { transform: scaleY(1); }
.pa--featured h3 { color: var(--maroon); }
.pa--featured .pa__num { color: var(--maroon); margin-bottom: .8rem; }
.pa__tag { display: block; font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); margin-bottom: .5rem; }
.pa__num { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--brass); display: block; margin-bottom: 1.2rem; }
.pa h3 { font-family: var(--serif); font-weight: 420; font-size: 1.4rem; line-height: 1.15; letter-spacing: -.01em; margin-bottom: .7rem; color: var(--ink); }
.pa p { font-size: .95rem; color: var(--ink-soft); }
.pa::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 3px; background: var(--maroon); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.pa:hover { background: var(--wash); }
.pa:hover::before { transform: scaleY(1); }
.pa:hover h3 { color: var(--maroon); }

/* ───────── DOCUMENT EXPRESS ───────── */
.express { background: var(--wash); max-width: none; border-top: 1px solid var(--line); }
.express > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.express__card {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem);
  background: var(--cream); border: 1px solid var(--line); border-radius: 6px;
  padding: clamp(2rem,5vw,3.5rem); box-shadow: 0 30px 60px -40px rgba(86,11,13,.4);
  position: relative; overflow: hidden;
}
.express__card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(var(--maroon), var(--brass)); }
.express__lead h2 { font-family: var(--serif); font-weight: 360; font-size: clamp(1.9rem,1.5rem+2vw,2.9rem); line-height: 1.05; letter-spacing: -.02em; margin-bottom: 1.2rem; }
.express__lead h2 em { color: var(--maroon); }
.express__lead > p { color: var(--ink-soft); margin-bottom: 1.2rem; max-width: 30rem; }
.express__fee { font-size: .95rem; color: var(--ink); margin-bottom: 1.6rem !important; }
.express__fee strong { font-family: var(--serif); color: var(--maroon); font-size: 1.3rem; }
.express__steps { list-style: none; display: grid; gap: 1.4rem; align-content: start; }
.express__steps li { display: flex; gap: 1.1rem; align-items: flex-start; }
.es__n { flex: 0 0 2.2rem; height: 2.2rem; display: grid; place-items: center; border-radius: 50%; background: var(--maroon); color: var(--cream); font-family: var(--serif); font-size: 1.1rem; }
.express__steps h3 { font-family: var(--serif); font-weight: 460; font-size: 1.2rem; margin-bottom: .15rem; }
.express__steps p { font-size: .92rem; color: var(--ink-soft); }
.express__qr { grid-column: 1 / -1; display: flex; align-items: center; gap: 1.2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.qr-frame { width: 84px; height: 84px; border-radius: 8px; display: grid; place-items: center; background: repeating-conic-gradient(var(--ink) 0% 25%, var(--cream) 0% 50%) 50% / 14px 14px; border: 3px solid var(--ink); color: var(--cream); font-family: var(--serif); font-size: .9rem; }
.qr-frame span { background: var(--ink); padding: .1rem .35rem; border-radius: 3px; }
.express__qr p { font-size: .85rem; color: var(--ink-soft); }

/* ───────── APPROACH (dark) ───────── */
.approach { max-width: none; padding: 0; }
.approach__inner { background: var(--maroon-deep); color: var(--cream); padding: clamp(5rem,11vh,8rem) var(--pad); position: relative; overflow: hidden; }
.approach__inner::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 100% at 80% 0%, rgba(176,141,87,.18), transparent 55%); }
.approach__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(2rem,5vw,4rem); position: relative; }
.approach .section-kicker { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.step__n { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: var(--brass); display: block; line-height: 1; margin-bottom: 1rem; opacity: .9; }
.step h3 { font-family: var(--serif); font-weight: 440; font-size: 1.6rem; margin-bottom: .7rem; }
.step p { color: rgba(251,249,246,.78); font-size: .98rem; }

/* ───────── PARTNERS ───────── */
.partners { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,4rem); }
.partner { display: grid; grid-template-columns: minmax(0,17rem) 1fr; gap: clamp(1.6rem,4vw,3rem); align-items: center; }
.portrait-frame { position: relative; display: grid; place-items: center; border-radius: 8px; overflow: hidden; }
.portrait-initials { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); font-weight: 300; font-style: italic; color: var(--maroon-tint); letter-spacing: .02em; }
.portrait-frame img { width: 100%; height: auto; object-fit: contain; display: block; }
.partner__body h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem,1.1rem+1.2vw,1.9rem); letter-spacing: -.02em; line-height: 1.05; }
.counsel__role { color: var(--brass); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: .76rem; margin: .5rem 0 1rem; }
.partner__body > p { color: var(--ink-soft); font-size: .95rem; }
.creds { list-style: none; margin-top: 1.4rem; border-top: 1px solid var(--line); }
.creds li { display: flex; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--line); font-size: .88rem; align-items: baseline; }
.creds li span { flex: 0 0 5rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--maroon); }
.creds li strong { font-weight: 500; color: var(--ink); }
.creds .deg { display: block; }
.creds .deg + .deg { margin-top: .5rem; }

/* ───────── PULL QUOTE ───────── */
.pull { max-width: none; background: var(--wash); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pull blockquote { max-width: 50rem; margin: 0 auto; text-align: center; padding: 0 var(--pad); }
.pull p { font-family: var(--serif); font-style: italic; font-weight: 330; font-size: clamp(1.6rem,1.2rem+2.2vw,3rem); line-height: 1.18; letter-spacing: -.02em; color: var(--maroon-deep); }
.pull cite { display: block; margin-top: 1.8rem; font-style: normal; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

/* ───────── CONTACT (dark) ───────── */
.contact { max-width: none; background: var(--ink); color: var(--cream); }
.contact > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem,6vw,5rem); }
.contact__intro h2 { font-family: var(--serif); font-weight: 360; font-size: clamp(2rem,1.5rem+2.4vw,3.4rem); line-height: 1.04; letter-spacing: -.02em; }
.contact__intro > p { color: rgba(251,249,246,.72); margin: 1.4rem 0 2rem; max-width: 30rem; }

.channels { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: 2rem; }
.channel { display: flex; align-items: center; gap: .8rem; text-align: left; padding: .9rem 1rem; border-radius: 8px; border: 1px solid rgba(251,249,246,.16); background: rgba(251,249,246,.04); color: var(--cream); cursor: pointer; transition: border-color .25s, background .25s, transform .2s var(--ease); }
.channel:hover { border-color: var(--maroon-tint); background: rgba(251,249,246,.08); transform: translateY(-2px); }
.channel__ico { font-size: 1.3rem; line-height: 1; }
.channel strong { display: block; font-size: .95rem; }
.channel small { color: rgba(251,249,246,.6); font-size: .8rem; }
.channel--book { border-color: var(--maroon-tint); background: rgba(123,17,19,.35); }

.contact__details { list-style: none; }
.contact__details li { display: flex; gap: 1.2rem; padding: .8rem 0; border-bottom: 1px solid rgba(251,249,246,.13); align-items: baseline; }
.contact__details span:first-child { flex: 0 0 4.5rem; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); }
.contact__details a, .contact__details li > span:last-child { color: var(--cream); transition: color .2s; }
.contact__details a:hover { color: var(--maroon-tint); }

.contact__panel { background: rgba(251,249,246,.04); border: 1px solid rgba(251,249,246,.14); border-radius: 10px; padding: clamp(1.5rem,3vw,2.2rem); align-self: start; }
.contact__panel h3 { font-family: var(--serif); font-weight: 440; font-size: 1.5rem; }
.contact__panel > p { color: rgba(251,249,246,.65); font-size: .92rem; margin: .3rem 0 1.3rem; }
.contact__or { text-align: center; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(251,249,246,.45); margin: 1.4rem 0 1rem !important; }

/* form fields */
.field { display: grid; gap: .45rem; margin-bottom: 1rem; }
.field--row { grid-template-columns: 1fr 1fr; gap: 1rem; }
.field--row > div { display: grid; gap: .45rem; }
.contact__form label, .modal label { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(251,249,246,.6); }
.contact__form input, .contact__form textarea { background: rgba(251,249,246,.05); border: 1px solid rgba(251,249,246,.18); border-radius: 4px; padding: .8rem .9rem; color: var(--cream); font-family: var(--sans); font-size: 1rem; transition: border-color .25s, background .25s; resize: vertical; }
.contact__form input:focus, .contact__form textarea:focus { outline: none; border-color: var(--maroon-tint); background: rgba(251,249,246,.08); }
.form-note { font-size: .9rem; color: var(--brass); min-height: 1.2em; margin-top: .3rem; }
.form-note.error { color: #e09a9a; }

/* ───────── FOOTER ───────── */
.footer { background: var(--maroon-deep); color: rgba(251,249,246,.7); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem,6vh,4.5rem) var(--pad); display: grid; gap: 1.6rem; }
.footer__brand { display: flex; align-items: center; gap: .8rem; }
.footer__brand .brand__logo { height: 2.6rem; filter: brightness(0) invert(1); opacity: .92; }
.footer__brand .brand__amp { color: var(--brass); }
.footer__brand p { font-family: var(--serif); font-size: 1.2rem; color: var(--cream); }
.footer__disclaimer { font-size: .82rem; max-width: 52rem; line-height: 1.6; }
.footer__copy { font-size: .82rem; letter-spacing: .04em; padding-top: 1rem; border-top: 1px solid rgba(251,249,246,.15); }

/* ───────── FLOATING CHAT FAB ───────── */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: .7rem; }
.fab__menu { display: flex; flex-direction: column; gap: .5rem; }
.fab__menu[hidden] { display: none; }
.fab__item { display: flex; align-items: center; gap: .6rem; background: var(--cream); color: var(--ink); border: 1px solid var(--line); border-radius: 30px; padding: .6rem 1rem; font-size: .9rem; font-weight: 600; box-shadow: 0 8px 22px -10px rgba(0,0,0,.4); cursor: pointer; transition: transform .2s var(--ease), background .2s; animation: fabIn .3s var(--ease) both; }
.fab__item:hover { background: var(--wash); transform: translateX(-3px); }
.fab__item span { font-size: 1.1rem; }
@keyframes fabIn { from { opacity: 0; transform: translateY(8px); } }
.fab__btn { width: 60px; height: 60px; border-radius: 50%; border: 0; background: var(--maroon); color: var(--cream); cursor: pointer; box-shadow: 0 12px 28px -8px rgba(86,11,13,.7); position: relative; transition: transform .25s var(--ease), background .25s; }
.fab__btn:hover { transform: scale(1.05); background: var(--maroon-deep); }
.fab__icon { position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.5rem; transition: opacity .25s, transform .25s; }
.fab__icon--close { opacity: 0; transform: rotate(-90deg); font-size: 1.3rem; }
.fab--open .fab__icon--chat { opacity: 0; transform: rotate(90deg); }
.fab--open .fab__icon--close { opacity: 1; transform: rotate(0); }

/* ───────── BOOKING MODAL ───────── */
.modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(26,20,19,.55); backdrop-filter: blur(4px); animation: fade .3s ease; }
.modal__panel { position: relative; width: min(560px, 100%); max-height: 92vh; overflow-y: auto; background: var(--cream); border-radius: 12px; padding: clamp(1.5rem,4vw,2.6rem); box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); animation: pop .35s var(--ease); }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } }
.modal__close { position: absolute; top: 1rem; right: 1rem; width: 2.2rem; height: 2.2rem; border-radius: 50%; border: 1px solid var(--line); background: var(--cream); cursor: pointer; color: var(--ink-soft); font-size: 1rem; transition: background .2s, color .2s; }
.modal__close:hover { background: var(--wash); color: var(--maroon); }
.modal__kicker { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); font-weight: 700; }
.modal__panel h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem,1.3rem+1.5vw,2.2rem); letter-spacing: -.02em; margin: .3rem 0 .5rem; }
.modal__sub { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.6rem; }
.modal label { color: var(--maroon); }
.modal input, .modal select, .modal textarea { width: 100%; background: var(--cream); border: 1px solid var(--line); border-radius: 4px; padding: .75rem .85rem; font-family: var(--sans); font-size: 1rem; color: var(--ink); transition: border-color .25s; }
.modal input:focus, .modal select:focus, .modal textarea:focus { outline: none; border-color: var(--maroon); }
.modal .field { margin-bottom: 1rem; }
.modal__fineprint { font-size: .78rem; color: var(--ink-soft); margin-top: .8rem; line-height: 1.5; }

/* ───────── REVEAL ───────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .marquee__track, .fab__item { animation: none; }
  html { scroll-behavior: auto; }
}

/* ───────── RESPONSIVE ───────── */
@media (max-width: 880px) {
  .nav__links, .nav .btn--nav { display: none; }
  .nav__toggle { display: flex; }
  .nav--open .nav__links { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 1.5rem var(--pad); gap: 1.2rem; box-shadow: 0 12px 24px -16px rgba(0,0,0,.4); border-top: 1px solid var(--line); }
  .about__grid, .practice__list, .express__card, .approach__grid, .partners, .contact__grid { grid-template-columns: 1fr; }
  .practice__list { border: 1px solid var(--line); }
  .pa { border-right: 0 !important; }
  .pa:last-child { border-bottom: 0; }
  .express__qr { grid-column: auto; }
}
@media (max-width: 560px) {
  .field--row, .channels { grid-template-columns: 1fr; }
  .hero__meta { gap: 1.5rem 2.2rem; }
  .partner { grid-template-columns: 1fr; }
  .partner__portrait { max-width: 12rem; }
}
