:root {
  --bg: #f3f4f6;
  --surface: #ffffff;
  --ink: #1c1c1e;
  --muted: #7e8792;
  --teal: #183a4a;
  --line: rgba(255, 255, 255, 0.05);
  --line-soft: rgba(28, 28, 30, 0.08);
  --hero-height: 700px;
  --shell: min(1280px, calc(100vw - 48px));
  --font-sans: "General Sans", sans-serif;
  --font-display: "General Sans", sans-serif;
  --font-serif: "IBM Plex Serif", serif;
  --shadow: 0 24px 64px rgba(12, 23, 31, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
}

:focus-visible {
  outline: 2px solid #4d95b8;
  outline-offset: 3px;
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -64px;
  z-index: 100;
  padding: 10px 14px;
  background: #fff;
  color: #111;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: top 160ms ease;
}

.skip-link:focus-visible {
  top: 12px;
}

#inicio,
#quem-somos,
#areas,
#socios,
#contato {
  scroll-margin-top: 108px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 8px 0;
  background: rgba(28, 28, 30, 0.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.brand-logo {
  display: block;
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav .nav-cta {
  padding: 10px 24px;
  background: var(--teal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 8px;
}

.hero {
  position: relative;
  min-height: var(--hero-height);
  padding: 209px 0 129px;
  background: var(--ink);
  overflow: clip;
}

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

.hero-art {
  left: 0;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: -12% -18% -28% -8%;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.12), transparent 20%),
    radial-gradient(circle at 52% 34%, rgba(98, 150, 178, 0.16), transparent 22%),
    linear-gradient(145deg, rgba(12, 16, 20, 0.18), rgba(24, 58, 74, 0.24) 42%, rgba(10, 12, 15, 0.4)),
    url("./public/hero-bg.png");
  background-position: center, center, center, center right;
  background-repeat: no-repeat;
  background-size: auto, auto, auto, cover;
  filter: saturate(1.15) contrast(1.05);
}

.hero-image::before,
.hero-image::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(24deg);
}

.hero-image::after {
  inset: 26% 8% 18% 24%;
  transform: rotate(-18deg);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 672px;
  color: #fff;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.01em;
}

.hero-copy h1 {
  max-width: 532px;
  font-size: clamp(3.4rem, 6vw, 4.5rem);
  line-height: 1;
}

.hero-copy p,
.serif-stack p,
.practice-card p,
.practice-highlight p,
.partner-bio,
.contact-item p {
  margin: 0;
  font-family: var(--font-serif);
}

.hero-copy p {
  max-width: 672px;
  font-size: 1.5rem;
  line-height: 1.33;
  color: #f3f4f6;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 20px 40px;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.whatsapp-button:hover,
.whatsapp-button:focus-visible,
.practice-highlight a:hover,
.practice-highlight a:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--teal);
  color: #fff;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 47px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.46);
}

.scroll-indicator span {
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, rgba(126, 135, 146, 0) 0%, rgba(126, 135, 146, 0.3) 100%);
}

.scroll-indicator small {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.section-light,
.contact,
.site-footer {
  position: relative;
}

.about,
.contact {
  padding: 96px 0;
}

.practice,
.partners,
.site-footer {
  padding: 96px 0;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 500px;
}

.office-placeholder {
  height: 721px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.office-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 48px;
  background: var(--teal);
  color: #fff;
}

.experience-badge strong {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge span,
.eyebrow {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.eyebrow {
  color: var(--muted);
}

.about-copy h2 {
  font-size: clamp(2.8rem, 4vw, 3rem);
  line-height: 1;
  max-width: 12ch;
}

.divider {
  width: 100%;
  height: 4px;
  background: var(--teal);
}

.serif-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.serif-stack p {
  color: var(--ink);
  font-size: 1.125rem;
  line-height: 1.625;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(24, 58, 74, 0.03) 25%, transparent 25%) 0 0 / 40px 40px,
    linear-gradient(225deg, rgba(24, 58, 74, 0.03) 25%, transparent 25%) 0 0 / 40px 40px,
    var(--ink);
  color: #fff;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
}

.section-heading.center {
  text-align: center;
  align-items: center;
}

.section-heading h2 {
  font-size: clamp(2.6rem, 3vw, 3rem);
  line-height: 1.1;
}

.section-heading p {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.8;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
}

.practice-card,
.practice-highlight {
  min-height: 225px;
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.practice-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.practice-card:hover,
.practice-card:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.practice-card h3,
.practice-highlight h3,
.partner-content h3,
.contact-cta h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.4;
}

.practice-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 33ch;
}

.practice-link {
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.icon,
.button-icon,
.whatsapp-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  margin-bottom: 24px;
  color: var(--muted);
}

.icon {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  color: var(--muted);
  stroke-width: 1.75;
}

.practice-highlight {
  background: var(--teal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 2;
}

.practice-highlight .icon {
  color: rgba(255, 255, 255, 0.7);
}

.practice-highlight p {
  padding-bottom: 21px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.625;
}

.practice-highlight a {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: transform 180ms ease;
}

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

.partner-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.partner-photo {
  position: relative;
  height: 500px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(24, 58, 74, 0.24)), #1c1c1e;
  overflow: hidden;
}

.partner-photo::before,
.partner-photo::after {
  content: "";
  position: absolute;
  inset: auto;
  background: rgba(255, 255, 255, 0.08);
}

.partner-photo::before {
  left: 26%;
  top: 0;
  width: 1px;
  height: 100%;
}

.partner-photo::after {
  left: 0;
  right: 0;
  bottom: 24%;
  height: 1px;
}

.partner-photo span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 9vw, 7rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.14);
}

.partner-paulo {
  background:
    radial-gradient(circle at 62% 18%, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(24, 58, 74, 0.24)),
    #1c1c1e;
}

.partner-vinicius {
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(24, 58, 74, 0.24)),
    #1c1c1e;
}

.partner-content h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.partner-meta {
  margin: 0;
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 500;
}

.partner-bio {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.625;
}

.contact {
  background: var(--teal);
  color: #fff;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(24, 58, 74, 0) 0%, rgba(24, 58, 74, 1) 50%, rgba(24, 58, 74, 0) 100%);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 4vw, 3rem);
  line-height: 1.25;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 16px;
}

.contact-item {
  display: flex;
  gap: 24px;
}

.contact-icon {
  margin: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 1.7;
}

.contact-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item a {
  font-size: 1.25rem;
  font-weight: 500;
}

.contact-item p.contact-address {
  color: #fff;
  max-width: none;
}

.contact-item p {
  max-width: 32ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.625;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  min-height: 100%;
  padding: 48px;
  background: rgba(12, 16, 20, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 64px rgba(8, 11, 14, 0.18);
  backdrop-filter: blur(8px);
  color: #fff;
}

.contact-cta .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.contact-cta h3 {
  max-width: 30ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.contact-cta p {
  max-width: 36ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-serif);
  line-height: 1.75;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  padding: 20px 0;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #f3f4f6;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

.whatsapp-button .whatsapp-icon {
  color: currentColor;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.site-footer {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 80px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand {
  width: min(378px, 100%);
  padding-bottom: 32px;
}

.footer-brandmark {
  display: inline-flex;
  margin-bottom: 32px;
}

.footer-brand p,
.footer-links a,
.footer-links p,
.footer-bottom p {
  color: var(--muted);
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.875rem;
  line-height: 1.625;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  width: min(805px, 100%);
}

.footer-links h4 {
  margin: 0 0 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links p {
  display: block;
  margin: 0 0 12px;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: var(--delay, 0ms);
}

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

.inner-page {
  background: var(--bg);
}

.subpage-main {
  padding-top: 96px;
}

.detail-hero {
  position: relative;
  overflow: clip;
  background: var(--ink);
  color: #fff;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 19, 22, 0.96) 0%, rgba(17, 19, 22, 0.88) 42%, rgba(17, 19, 22, 0.18) 100%);
  pointer-events: none;
}

.detail-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: stretch;
  min-height: 620px;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 96px 0;
}

.back-link {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.75rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.detail-lead {
  max-width: 32ch;
  color: rgba(243, 244, 246, 0.92);
  font-size: 1.25rem;
  line-height: 1.6;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.detail-meta span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-visual {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(24, 58, 74, 0.08)),
    url("./public/hero-bg.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.02) contrast(1.02);
}

.detail-section {
  padding: 112px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 56px;
  align-items: start;
}

.detail-article {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-article h2,
.detail-band-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.detail-article p,
.detail-aside p,
.detail-band-copy p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.9;
}

.detail-article ul {
  display: grid;
  gap: 16px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.detail-article li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.7;
}

.detail-article li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  background: var(--teal);
  transform: rotate(45deg);
}

.detail-aside {
  display: grid;
  gap: 24px;
  padding: 40px;
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-aside h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.detail-aside-list {
  display: grid;
  gap: 14px;
}

.detail-aside-list span {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-band {
  background: linear-gradient(135deg, rgba(24, 58, 74, 0.04), rgba(24, 58, 74, 0));
}

.detail-band-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 48px;
  align-items: center;
}

.detail-band-copy {
  display: grid;
  gap: 24px;
}

.detail-band-card {
  padding: 40px;
  background: var(--teal);
  color: #fff;
}

.detail-band-card h3 {
  margin: 0 0 16px;
  font-size: 1.25rem;
}

.detail-band-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-serif);
  line-height: 1.8;
}

.detail-band-card a {
  display: inline-flex;
  margin-top: 24px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .practice-grid,
  .partners-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .practice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    width: 100%;
  }

  .detail-hero-shell,
  .detail-grid,
  .detail-band-shell {
    grid-template-columns: 1fr;
  }

  .detail-visual {
    min-height: 360px;
  }

  .partner-photo,
  .about-visual {
    height: auto;
    min-height: 0;
  }

  .partner-photo {
    height: 420px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100vw - 32px, 1280px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(28, 28, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 160px 0 96px;
  }

  .subpage-main {
    padding-top: 88px;
  }

  .hero-art {
    left: 0;
    opacity: 0.5;
  }

  .scroll-indicator {
    display: none;
  }

  .about,
  .practice,
  .partners,
  .contact,
  .site-footer {
    padding: 96px 0;
  }

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

  .detail-copy {
    padding: 72px 0 24px;
  }

  .detail-section {
    padding: 88px 0;
  }

  .footer-links,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .header-bar {
    min-height: 72px;
  }

  .hero-copy p {
    font-size: 1.125rem;
  }

  .experience-badge,
  .contact-cta,
  .practice-card,
  .practice-highlight {
    padding: 32px;
  }

  .office-placeholder {
    height: 520px;
  }

  .experience-badge {
    position: relative;
    margin-top: -72px;
    width: fit-content;
  }

  .partner-photo {
    height: 360px;
  }

  .detail-aside,
  .detail-band-card {
    padding: 32px;
  }

  .contact-item {
    flex-direction: column;
    gap: 16px;
  }

  .contact-item a {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
