/* ==========================================================================
   UOA Legal — Canva redesign
   ========================================================================== */
:root {
  --near-black: #121212;
  --charcoal: #2a2a2a;
  --white: #ffffff;
  --cream: #f4f1ea;
  --cream-deep: #ebe6dc;
  --border: #e2ddd4;
  --muted: #6f6a63;
  --gold: #a8885c;
  --gold-hover: #96784f;
  --gold-soft: #c4a574;

  --black: var(--near-black);
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --wrap: 1120px;
  --section-y: clamp(64px, 8vw, 96px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--near-black);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.section {
  padding: var(--section-y) 0;
}

.section-muted {
  background: var(--cream-deep);
}

.section-white {
  background: var(--white);
}

.section-center {
  text-align: center;
  margin-bottom: 48px;
}

.section-center .section-title {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 14px;
}

.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  max-width: 640px;
  margin: 0 0 40px;
  color: var(--near-black);
}

.serif-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 48px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background: var(--near-black);
  border-color: var(--near-black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn:focus-visible,
.carousel-btn:focus-visible,
.navlinks a:focus-visible,
.text-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--near-black);
}

.text-link:hover {
  color: var(--gold);
}

.icon,
.icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.icon-box {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.icon-inline {
  color: var(--gold);
  margin-bottom: 16px;
}

/* ==========================================================================
   Nav
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 234, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--near-black);
}

.brand-mark {
  width: 44px;
  height: 44px;
}

.brand-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navlinks a {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--charcoal);
}

.navlinks a:hover,
.navlinks a.current {
  color: var(--gold);
}

.nav-cta {
  border: 1px solid var(--near-black);
  padding: 10px 18px;
}

.nav-cta:hover {
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--near-black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 840px) {
  .nav-toggle {
    display: flex;
  }

  .navlinks {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 8px 0 16px;
  }

  .navlinks.open {
    display: flex;
  }

  .navlinks a {
    padding: 14px 32px;
  }

  .nav-cta {
    margin: 8px 32px 0;
    text-align: center;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(8, 10, 14, 0.78) 0%,
      rgba(8, 10, 14, 0.55) 42%,
      rgba(8, 10, 14, 0.28) 72%,
      rgba(8, 10, 14, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 10, 14, 0.35) 0%,
      rgba(8, 10, 14, 0.15) 40%,
      rgba(8, 10, 14, 0.4) 100%
    );
}

/* Full-width wrap so left edge matches nav + sections below */
.hero > .wrap.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  padding-top: 96px;
  padding-bottom: 96px;
  text-align: left;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 4.8vw, 58px);
  max-width: min(820px, 100%);
  line-height: 1.14;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.hero-lede {
  max-width: min(640px, 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.65;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

.hero .btn {
  min-height: 48px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero .btn-gold {
  background: #b8956c;
  border-color: #b8956c;
}

.hero .btn-gold:hover {
  background: #a8885c;
  border-color: #a8885c;
}

.hero .btn-ghost {
  border-width: 1.5px;
  border-color: rgba(255, 255, 255, 0.92);
}

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
  .card-grid.three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .card-grid.three {
    grid-template-columns: 1fr;
  }
}

.soft-card,
.practice-panel,
.insight-card,
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px;
}

.soft-card h3,
.practice-panel h3,
.insight-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.soft-card p,
.practice-panel p,
.insight-card p {
  color: var(--muted);
  font-size: 15px;
}

.practice-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.panel-audience {
  font-size: 11px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted) !important;
  margin-bottom: 10px;
}

.panel-stake {
  color: var(--gold) !important;
  font-size: 14px !important;
  margin-bottom: 12px;
}

.practice-panel .text-link {
  margin-top: 22px;
}

/* ==========================================================================
   Process
   ========================================================================== */
.process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  counter-reset: none;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px;
  left: calc(50% + 34px);
  width: calc(100% - 68px);
  height: 1px;
  background: #d5cfc4;
}

.process-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  display: grid;
  place-items: center;
  background: var(--cream);
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .process-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }
}

/* ==========================================================================
   Why
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.why-list {
  display: grid;
  gap: 22px;
  margin-top: 8px;
}

.why-list li {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.why-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.why-list p {
  color: var(--muted);
  font-size: 15px;
}

.why-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-media img {
    min-height: 280px;
  }
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stats-band {
  background: #171717;
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}

.stats-heading {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  margin-bottom: 48px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-value {
  font-size: clamp(32px, 4vw, 44px);
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 2);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  scroll-snap-align: start;
  margin: 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  color: var(--charcoal);
}

.testimonial-card footer {
  margin-top: 28px;
}

.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 14px;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--near-black);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 700px) {
  .testimonials-track {
    grid-auto-columns: 100%;
  }
}

/* ==========================================================================
   Founder
   ========================================================================== */
.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.founder-media img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center 20%;
}

.founder-name {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 8px;
}

.founder-role {
  color: var(--muted);
  margin-bottom: 24px;
}

.founder-copy p {
  color: var(--charcoal);
  margin-bottom: 16px;
  max-width: 520px;
}

.founder-copy .btn {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .founder-media img {
    max-height: 480px;
  }
}

/* ==========================================================================
   Insights
   ========================================================================== */
.insight-media {
  margin: -28px -28px 20px;
  overflow: hidden;
}

.insight-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.insight-category {
  color: var(--gold) !important;
  font-size: 11px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.insight-card {
  display: flex;
  flex-direction: column;
}

.insight-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.insight-card .text-link {
  margin-top: 18px;
}

/* ==========================================================================
   Closer CTA
   ========================================================================== */
.closer-cta {
  background: #1b1714;
  color: var(--white);
  text-align: center;
  padding: 88px 0;
}

.closer-cta h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  max-width: 16ch;
  margin: 0 auto 28px;
  line-height: 1.15;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.84);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding-bottom: 48px;
}

.footer-logo img {
  width: 56px;
  height: 56px;
  color: var(--white);
  filter: invert(1);
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 220px;
  font-size: 14px;
  line-height: 1.55;
}

.footer-heading {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-office {
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-office-label {
  display: block;
  color: var(--gold-soft);
  margin-bottom: 4px;
}

.footer-contact-lines {
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact-lines a {
  text-decoration: none;
}

.footer-contact-lines a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--gold-soft);
}

.footer-disclaimer {
  padding-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Inner pages (about / contact / practices / who we serve / legal)
   ========================================================================== */
.page-hero {
  background: var(--near-black);
  color: var(--white);
  padding: clamp(64px, 10vw, 104px) 0 clamp(56px, 8vw, 88px);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 52px);
  max-width: min(18ch, 100%);
  line-height: 1.15;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

.page-hero .lede {
  max-width: min(640px, 100%);
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  margin: 0;
}

.page-hero .idx {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.page-hero .idx,
.page-hero .eyebrow.on-dark {
  color: var(--gold-soft);
}

.gold-rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 0 0 28px;
}

.rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.breadcrumb {
  font-size: 12px;
  color: var(--mid-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 20px;
  line-height: 1.5;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold-soft);
}

.about-body,
.bio-body,
.legal-copy {
  color: var(--muted);
  max-width: 720px;
}

.about-body p,
.bio-body p,
.legal-copy p,
.contact-intro {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.7;
  color: var(--charcoal);
}

.legal-copy .section-title {
  margin-bottom: 16px;
  font-size: clamp(22px, 2.4vw, 28px);
}

.bio-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.bio-avatar {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center 18%;
  background: var(--cream-deep);
  border: 1px solid var(--border);
}

.bio-name {
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 6px;
  line-height: 1.2;
}

.bio-role {
  color: var(--gold);
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 20px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.principle-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(22px, 3vw, 28px);
}

.principle-card .num {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.principle-card p {
  margin: 0;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.65;
}

.closer-band {
  background: var(--near-black);
  color: var(--white);
  text-align: center;
  padding: clamp(56px, 8vw, 88px) 0;
}

.closer-band h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 auto 24px;
  max-width: 16ch;
  line-height: 1.2;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.practice-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(24px, 3vw, 28px);
  text-decoration: none;
}

.practice-card:hover {
  border-color: var(--gold);
}

.practice-card .idx {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.practice-card h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 10px;
}

.practice-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.serve-intro {
  max-width: 720px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
  color: var(--charcoal);
  margin: 0 0 36px;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.serve-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(24px, 3vw, 32px);
}

.serve-card h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin: 0 0 12px;
  line-height: 1.3;
}

.serve-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.closing-line {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-style: italic;
  line-height: 1.35;
  color: var(--near-black);
  max-width: 18ch;
  margin: 0 auto;
  text-align: center;
}

.protect-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
}

.protect-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--charcoal);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
}

.protect-list .mark {
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 600;
}

.related-practices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-practices a {
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 10px 14px;
  background: var(--white);
  font-size: 13px;
}

.related-practices a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.contact-form,
.form-stack {
  display: grid;
  gap: 4px;
  max-width: none;
}

.contact-form label,
.form-stack label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.form-stack input,
.form-stack textarea,
.form-stack select {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--near-black);
  width: 100%;
}

.contact-form textarea,
.form-stack textarea {
  min-height: 140px;
  resize: vertical;
}

.serve-strip {
  background: var(--near-black);
  color: var(--white);
  padding: var(--section-y) 0;
}

.serve-strip .about-quote {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-style: italic;
  max-width: 16ch;
  margin-bottom: 20px;
}

.serve-strip .about-body {
  color: rgba(255, 255, 255, 0.75);
}

.serve-link {
  color: var(--gold-soft);
  text-decoration: none;
}

.serve-link:hover {
  color: var(--white);
}

.final-cta {
  text-align: center;
  padding: var(--section-y) 0;
}

.final-cta h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 14px;
  line-height: 1.2;
}

.final-cta p {
  max-width: 520px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.contact-lead {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-style: italic;
  line-height: 1.3;
  color: var(--near-black);
  margin: 0 0 16px;
}

.contact-details {
  margin-top: 28px;
}

.contact-detail {
  margin-bottom: 18px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

.contact-detail strong {
  display: block;
  color: var(--near-black);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-detail a {
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(24px, 3vw, 36px);
}

.form-field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  width: 100%;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.related-strip {
  padding: var(--section-y) 0;
  background: var(--cream-deep);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(20px, 2.5vw, 24px);
}

.related-card h3 {
  font-size: clamp(16px, 1.8vw, 18px);
  margin: 0 0 12px;
  line-height: 1.3;
}

.related-card a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.related-card a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .contact-grid,
  .related-grid,
  .serve-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .wrap {
    padding: 0 20px;
  }

  .bio-card,
  .practice-grid {
    grid-template-columns: 1fr;
  }

  .bio-avatar {
    width: 120px;
    height: 120px;
  }

  .page-hero {
    padding: 56px 0 48px;
  }

  .contact-card {
    padding: 22px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 44px);
  }

  .hero > .wrap.hero-content {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .closing-line {
    max-width: 100%;
    text-align: left;
  }
}
