/* ============================================================
   Fernald Advisory & Legal Consulting, PLLC
   Brand: navy #1B2C4E + gold #B7995A on warm off-white
   Type:  Cormorant Garamond (display) + Inter (body)
   ============================================================ */

:root {
  --navy: #1B2C4E;
  --navy-deep: #142142;
  --gold: #B7995A;
  --gold-soft: #d4be8a;
  --bg: #FFFFFF;
  --bg-alt: #F5F2EC;
  --ink: #1A1D24;
  --ink-soft: #4A4E58;
  --rule: #E4DECF;
  --max: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --shadow-soft: 0 1px 2px rgba(20, 33, 66, 0.04), 0 8px 24px rgba(20, 33, 66, 0.06);
  --shadow-lift: 0 4px 10px rgba(20, 33, 66, 0.06), 0 20px 40px rgba(20, 33, 66, 0.10);
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a {
  color: var(--navy);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover { color: var(--gold); }

::selection { background: var(--gold-soft); color: var(--navy-deep); }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section {
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
}

section + section { border-top: 1px solid var(--rule); }

.section-alt { background: var(--bg-alt); }

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); }

p { margin: 0 0 1em; color: var(--ink-soft); }
p.lead { font-size: 1.1rem; color: var(--ink); max-width: 60ch; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--rule);
  background: rgba(255, 255, 255, 0.96);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo .sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-decoration: none;
  padding: 0.4rem 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 0.75rem 1.35rem 0.75rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--navy-deep); color: #fff !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(5rem, 11vw, 9rem);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(183, 153, 90, 0.10), transparent 60%),
    radial-gradient(900px 500px at -5% 110%, rgba(27, 44, 78, 0.06), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-mark { display: none; }
.hero-mark-frame {
  position: relative;
  padding: 2.5rem;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lift);
  max-width: 420px;
  margin-inline: auto;
}
.hero-mark-frame::before,
.hero-mark-frame::after { content: none; }
.hero-mark-frame img { width: 100%; height: auto; }
.hero-mark-rule { width: 1px; height: 60px; background: var(--gold); margin: 1.5rem auto 0.8rem; }
.hero-mark-tag {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 0;
}
.hero h1 {
  margin-top: 0.5rem;
}
.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-deep);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}
.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.hero-meta {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; display: inline-block; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.about-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--navy);
}
.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: auto -10px -10px auto;
  width: 64%;
  height: 64%;
  border: 1px solid var(--gold);
  border-radius: var(--r-md);
  z-index: -1;
}
.about-photo-wrap { position: relative; padding: 0 10px 10px 0; }

.about-bio p { font-size: 1.02rem; color: var(--ink); }
.about-bio p + p { margin-top: 1.05em; }

.honors {
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--rule);
}
.honors h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 1rem;
}
.honors ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem 1.5rem;
}
.honors li {
  font-size: 0.96rem;
  color: var(--ink);
  padding-left: 1.1rem;
  position: relative;
}
.honors li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 6px; height: 1px;
  background: var(--gold);
}

.cv-note {
  margin-top: 1.8rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Services ---------- */
.services-intro {
  max-width: 60ch;
  margin-bottom: 3rem;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.service-card h3 { margin-bottom: 0.65rem; }
.service-card p { font-size: 0.97rem; margin: 0; }

/* ---------- Speaking band ---------- */
.speaking-band {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--bg);
}
.speaking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.speaking-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: 420px;
  margin-inline: auto;
}
.speaking-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(27, 44, 78, 0.18) 100%);
  pointer-events: none;
}
.speaking-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}
.speaking-line {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 1rem;
  max-width: 30ch;
}
.speaking-attribution {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  margin: 0;
}

/* ---------- Casework ---------- */
.case-intro { max-width: 60ch; margin-bottom: 3rem; }

.case-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem 2.5rem;
  padding-block: 2.2rem;
  border-top: 1px solid var(--rule);
}
.case-block:last-of-type { border-bottom: 1px solid var(--rule); }
.case-head h3 { margin: 0; }
.case-head .case-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.case-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.case-body li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
}
.case-body li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 10px; height: 1px;
  background: var(--gold);
}

.case-disclaimer {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-alt);
  border-left: 3px solid var(--gold);
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* ---------- Recognition & Honors ---------- */
.honors-intro { max-width: 760px; margin-bottom: 3rem; }

.honors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .honors-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1000px) {
  .honors-grid { grid-template-columns: repeat(3, 1fr); }
}

.honor-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  border-radius: var(--r-md);
  padding: 1.75rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.honor-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.honor-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 0.6rem;
}
.honor-card h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  line-height: 1.25;
  margin: 0 0 0.6rem;
}
.honor-card p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--ink-soft);
}
.honors-foot {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-align: center;
}

/* Two-column Honors layout */
.honors-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 880px) {
  .honors-two-col { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}
.honors-col {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-soft);
}
.col-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule);
}
.honors-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}
.honors-list li { padding: 0; }
.honors-list h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin: 0 0 0.4rem;
}
.honors-list .year-tag {
  display: inline-block;
  margin-left: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.honors-list p {
  font-size: 0.94rem;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Credentials Section ---------- */
#credentials h2 { margin-bottom: 2.5rem; }
.creds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 760px) {
  .creds-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (min-width: 1080px) {
  .creds-grid { grid-template-columns: repeat(3, 1fr); gap: 2.25rem; }
}
.creds-block {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 1.85rem 1.6rem;
  box-shadow: var(--shadow-soft);
}
.creds-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Bar admissions: year + court layout */
.creds-bar li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.creds-bar li:last-child { border-bottom: none; }
.creds-year {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.creds-text {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.4;
}

/* Education list */
.creds-edu li {
  padding: 0 0 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--rule);
}
.creds-edu li:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.creds-edu h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.4rem;
  line-height: 1.25;
}
.creds-edu p {
  font-size: 0.95rem;
  margin: 0 0 0.3rem;
  color: var(--ink);
  line-height: 1.5;
}
.creds-meta {
  font-size: 0.87rem !important;
  color: var(--ink-soft) !important;
  font-style: italic;
  margin-top: 0.35rem !important;
}

/* In-Practice band nested in Credentials section */
.credentials-speaking {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--rule);
}
.credentials-speaking .speaking-photo {
  max-width: 380px;
}

/* Speaking list */
.creds-speaking li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.25rem;
  border-bottom: 1px solid var(--rule);
  font-size: 0.93rem;
  color: var(--ink);
  line-height: 1.5;
}
.creds-speaking li:last-child { border-bottom: none; }
.creds-speaking li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.contact-info p { color: var(--ink); }
.contact-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
.contact-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.contact-list .label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.contact-list .value {
  font-size: 1.02rem;
  color: var(--ink);
}
.contact-list a { color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--rule); }
.contact-list a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.contact-list .pending {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  background: var(--bg);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(183, 153, 90, 0.18);
}
.field textarea { min-height: 130px; resize: vertical; }
.field.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}
.form-status {
  font-size: 0.9rem;
  color: var(--ink-soft);
  min-height: 1.2em;
}
.form-status.success { color: #1f6f47; }
.form-status.error { color: #a8341f; }

.fineprint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding-block: 3rem 2rem;
  font-size: 0.9rem;
}
.site-footer a { color: var(--gold-soft); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0 0 0.4rem;
}
.footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding-top: 1.5rem;
}

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

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .case-block { grid-template-columns: 280px 1fr; }
  .honors ul { grid-template-columns: 1fr 1fr; }
  .speaking-grid { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; }
}

@media (min-width: 960px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero-mark { display: block; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%; right: var(--gutter);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    gap: 1rem;
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lift);
    display: none;
    min-width: 220px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
