@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #0a0907;
  --surface: #12100d;
  --surface-2: #1a1610;
  --surface-3: #241e15;
  --paper: #f4ecdb;
  --paper-2: #e7dbc4;
  --paper-3: #fffaf2;
  --text: #f4ebd7;
  --muted: #d4c7ad;
  --ink: #1d1811;
  --ink-soft: #5f5141;
  --gold: #deb259;
  --gold-bright: #f6de90;
  --gold-deep: #a17127;
  --line: rgba(246, 222, 144, 0.2);
  --line-strong: rgba(246, 222, 144, 0.42);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(161, 113, 39, 0.16), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(246, 222, 144, 0.1), transparent 26%),
    linear-gradient(180deg, #090806 0%, #0f0c08 42%, #090806 100%);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.015), transparent 28%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 140px
    );
  opacity: 0.32;
  mix-blend-mode: screen;
}

::selection {
  background: rgba(246, 222, 144, 0.26);
  color: #ffffff;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-paper {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(244, 236, 219, 0.98), rgba(231, 219, 196, 0.98));
}

.section-paper .muted,
.section-paper .section-copy,
.section-paper .credential-card p,
.section-paper .contact-list {
  color: var(--ink-soft);
}

.section-copy,
.muted {
  color: var(--muted);
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(10, 9, 7, 0.84);
  border-bottom: 1px solid rgba(246, 222, 144, 0.08);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
  flex-shrink: 0;
}

.brand-copy {
  min-width: 0;
}

.brand-title {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  line-height: 1;
}

.brand-subtitle {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 235, 215, 0.74);
  margin-top: 4px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(18, 16, 13, 0.98);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.menu-toggle-bars {
  width: 18px;
  display: grid;
  gap: 4px;
}

.menu-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-bright);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

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

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

.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: 18px;
  flex-wrap: wrap;
  color: rgba(244, 235, 215, 0.84);
  font-size: 0.94rem;
}

.nav-links a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-bright);
}

.nav-phone {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(246, 222, 144, 0.18);
  background: linear-gradient(180deg, rgba(246, 222, 144, 0.18), rgba(161, 113, 39, 0.16));
  color: var(--gold-bright);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

main {
  position: relative;
}

section {
  padding: 88px 0;
}

#about,
#practice,
#credentials,
#questions {
  scroll-margin-top: 110px;
}

.hero-shell {
  padding: 42px 0 84px;
  position: relative;
  overflow: hidden;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(246, 222, 144, 0.14), transparent 20%),
    radial-gradient(circle at 80% 28%, rgba(161, 113, 39, 0.14), transparent 25%);
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold-bright);
  margin-bottom: 18px;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(246, 222, 144, 0), rgba(246, 222, 144, 0.95));
}

.section-label {
  color: var(--gold-deep);
  margin-bottom: 14px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.03em;
  line-height: 0.98;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.lead {
  font-size: 1.08rem;
  max-width: 60ch;
  color: var(--muted);
  margin: 0;
}

.hero h1 span {
  color: var(--gold-bright);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.22);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1208;
}

.btn-secondary {
  background: rgba(244, 235, 215, 0.06);
  border-color: rgba(246, 222, 144, 0.22);
  color: var(--gold-bright);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
  max-width: 56ch;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(244, 235, 215, 0.92);
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 0 0 4px rgba(246, 222, 144, 0.08);
}

.hero-stack {
  display: grid;
  gap: 18px;
}

.hero-heading {
  display: block;
}

.hero-panel-mobile {
  display: none;
}

.hero-panel {
  position: relative;
  background:
    linear-gradient(180deg, rgba(36, 30, 21, 0.88), rgba(18, 16, 13, 0.96)),
    #12100d;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(246, 222, 144, 0.1);
  border-radius: 26px;
  pointer-events: none;
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  background: #000000;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mini-card {
  min-height: 100%;
  padding: 20px;
  border-radius: 24px;
  background: rgba(18, 16, 13, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.mini-card h3,
.contact-card h3,
.credential-card h3 {
  margin-bottom: 10px;
}

.mini-card p,
.contact-card p,
.credential-card p,
.credential-card li,
.contact-list li {
  margin: 0;
}

.mini-card strong,
.contact-list strong {
  display: block;
  color: var(--gold-bright);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mini-card span,
.mini-card p {
  color: rgba(244, 235, 215, 0.88);
}

.alert-card {
  background: linear-gradient(180deg, rgba(161, 113, 39, 0.24), rgba(18, 16, 13, 0.96));
}

.section-head {
  margin-bottom: 28px;
}

.split-layout,
.contact-grid,
.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.credential-grid {
  align-items: stretch;
}

.contact-grid {
  align-items: stretch;
}

.detail-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.detail-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  align-items: start;
}

.detail-item::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 0 0 5px rgba(161, 113, 39, 0.1);
}

.detail-item strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.about-credentials {
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid rgba(95, 81, 65, 0.12);
}

.portrait-card {
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid rgba(95, 81, 65, 0.14);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 22px 54px rgba(62, 47, 29, 0.12);
}

.portrait-frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(95, 81, 65, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 226, 207, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.portrait-frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center 18%;
}

.portrait-card figcaption {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.practice-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(26, 22, 16, 0.94), rgba(15, 12, 9, 0.98));
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.practice-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(246, 222, 144, 0.12), transparent 64%);
  pointer-events: none;
}

.card-index {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(246, 222, 144, 0.08);
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.practice-card p {
  color: rgba(244, 235, 215, 0.76);
  margin: 0;
}

.practice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.practice-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(244, 235, 215, 0.84);
}

.practice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 0 0 4px rgba(246, 222, 144, 0.08);
}

.practice-copy-text {
  font-size: 1.02rem;
  line-height: 1.85;
}

.practice-copy-text + .practice-copy-text {
  margin-top: 18px;
}

.section-note {
  margin: 24px 0 0;
  color: rgba(244, 235, 215, 0.86);
}

.section-note a {
  color: var(--gold-bright);
  font-weight: 700;
}

.credential-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(95, 81, 65, 0.14);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(62, 47, 29, 0.1);
}

.credential-card ul,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.credential-card li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-soft);
}

.credential-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.contact-card,
.form-card {
  border-radius: 30px;
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(236, 226, 207, 0.98));
  color: var(--ink);
  border-color: rgba(95, 81, 65, 0.14);
  box-shadow: 0 22px 54px rgba(62, 47, 29, 0.12);
}

.contact-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(95, 81, 65, 0.14);
}

.contact-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-card .fine-print {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.contact-card .muted,
.contact-card p,
.contact-card li {
  color: var(--ink-soft);
}

.contact-card strong {
  color: var(--gold-deep);
}

.form-card {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(244, 236, 219, 0.98));
  color: var(--ink);
  border-color: rgba(95, 81, 65, 0.14);
  box-shadow: 0 22px 54px rgba(62, 47, 29, 0.12);
}

.form-card p {
  color: var(--ink-soft);
  margin-top: 0;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(95, 81, 65, 0.18);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(161, 113, 39, 0.16);
  border-color: rgba(161, 113, 39, 0.42);
}

textarea {
  min-height: 170px;
  resize: vertical;
}

footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(246, 222, 144, 0.1);
  background: rgba(9, 8, 6, 0.84);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(244, 235, 215, 0.72);
  font-size: 0.94rem;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-bright);
}

.footer-mark img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

[data-reveal].reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.practice-grid .practice-card:nth-child(2) {
  transition-delay: 0.08s;
}

.practice-grid .practice-card:nth-child(3) {
  transition-delay: 0.16s;
}

.practice-grid .practice-card:nth-child(4) {
  transition-delay: 0.24s;
}

.practice-grid .practice-card:nth-child(5) {
  transition-delay: 0.32s;
}

.practice-grid .practice-card:nth-child(6) {
  transition-delay: 0.4s;
}

.practice-grid .practice-card:nth-child(7) {
  transition-delay: 0.48s;
}

@media (max-width: 980px) {
  header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(16px);
    background: rgba(10, 9, 7, 0.94);
  }

  nav {
    position: relative;
    align-items: center;
    flex-wrap: nowrap;
    gap: 14px;
  }

  .brand {
    flex: 1 1 auto;
    gap: 12px;
  }

  .brand-copy {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: 0;
    flex-shrink: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 25;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(18, 16, 13, 0.995), rgba(11, 10, 8, 0.995));
    border: 1px solid var(--line-strong);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    max-height: calc(100svh - 92px);
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 15px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
  }

  .nav-phone {
    text-align: center;
  }

  .hero,
  .split-layout,
  .contact-grid,
  .credential-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    padding-top: 28px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  header {
    border-bottom-color: rgba(246, 222, 144, 0.1);
  }

  nav {
    padding: 10px 0;
  }

  section {
    padding: 64px 0;
  }

  .hero-shell {
    padding: 18px 0 56px;
  }

  .hero {
    gap: 24px;
  }

  .hero-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(118px, 38vw);
    gap: 16px;
    align-items: start;
  }

  .hero-heading h1 {
    margin-bottom: 0;
  }

  .hero-panel-mobile {
    display: block;
    align-self: start;
    padding: 10px;
    border-radius: 24px;
  }

  .hero-panel-mobile::after {
    inset: 10px;
    border-radius: 18px;
  }

  .hero-panel-mobile img {
    aspect-ratio: 1 / 1;
    max-height: none;
    object-fit: contain;
    padding: 10px;
    border-radius: 16px;
    background: rgba(7, 6, 5, 0.9);
  }

  .hero-panel-desktop {
    display: none;
  }

  .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .brand-copy {
    display: grid;
    gap: 2px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 3.45rem);
    max-width: 8.5ch;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  h3 {
    font-size: 1.7rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .brand-title {
    font-size: 1rem;
    letter-spacing: 0.02em;
  }

  .brand-subtitle {
    font-size: 0.56rem;
    letter-spacing: 0.14em;
    margin-top: 3px;
    white-space: nowrap;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .menu-toggle-bars {
    width: 17px;
    gap: 3px;
  }

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

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

  .eyebrow,
  .section-label {
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .eyebrow::before,
  .section-label::before {
    width: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding: 15px 18px;
  }

  .hero-points {
    margin-top: 24px;
    gap: 12px;
  }

  .hero-stack,
  .contact-grid,
  .credential-grid {
    gap: 16px;
  }

  .hero-panel-desktop img {
    aspect-ratio: 4 / 3;
    max-height: 248px;
    object-fit: contain;
    padding: 18px;
    border-radius: 18px;
    background: rgba(7, 6, 5, 0.86);
  }

  .mini-card {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-panel,
  .contact-card,
  .form-card,
  .practice-card,
  .portrait-card,
  .credential-card {
    border-radius: 24px;
  }

  .hero-panel,
  .contact-card,
  .form-card,
  .portrait-card,
  .credential-card {
    padding: 20px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .detail-list,
  .credential-card ul,
  .contact-list {
    margin-top: 16px;
  }

  .detail-list {
    gap: 14px;
  }

  .about-credentials {
    margin-top: 42px;
    padding-top: 28px;
  }

  .portrait-frame img {
    height: 380px;
  }

  .portrait-card figcaption {
    margin-top: 12px;
    font-size: 0.92rem;
  }

  .credential-card {
    padding: 20px;
  }

  .practice-grid {
    gap: 16px;
  }

  .practice-card {
    padding: 22px 20px;
  }

  .practice-list {
    gap: 10px;
  }

  .practice-copy-text {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .contact-card .fine-print {
    margin-top: 18px;
  }

  form {
    gap: 12px;
  }

  label {
    gap: 6px;
  }

  input,
  textarea {
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 16px;
  }

  textarea {
    min-height: 150px;
  }

  .portrait-frame img {
    object-position: center 14%;
  }

  footer {
    padding: 24px 0 32px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .hero-heading {
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 12px;
  }

  .hero-panel-mobile {
    padding: 8px;
  }

  .hero-panel-mobile::after {
    inset: 8px;
  }

  .hero-panel-mobile img {
    padding: 8px;
  }

  .brand-title {
    font-size: 0.94rem;
  }

  .brand-subtitle {
    font-size: 0.52rem;
    letter-spacing: 0.11em;
  }

  .hero-panel,
  .contact-card,
  .form-card,
  .practice-card,
  .portrait-card,
  .credential-card {
    padding: 18px;
  }

  .mini-card {
    padding: 16px;
  }
}
