:root {
  --wine: #5b1719;
  --wine-deep: #2c0d0f;
  --wine-soft: #843235;
  --ink: #17120f;
  --muted: #68615a;
  --line: #d7d0c8;
  --paper: #ebe8e2;
  --white: #ffffff;
  --stone: #f7f4ef;
  --olive: #747765;
  --sand: #c8b9a6;
  --shadow: 0 26px 90px rgba(23, 18, 15, 0.14);
  --serif: "Cormorant Garamond", "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans: Aptos, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  display: block;
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 16px;
  padding: 10px 14px;
  clip: auto;
  background: var(--wine);
  color: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 10px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(91, 23, 25, 0.09);
  background: rgba(255, 253, 250, 0.96);
  backdrop-filter: blur(14px);
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  min-height: 64px;
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 10px 34px rgba(22, 20, 18, 0.08);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 3px;
  width: auto;
  min-width: 178px;
  height: auto;
}

.brand-monogram {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.brand-text small {
  display: none;
  max-width: 132px;
  color: var(--muted);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  content: "";
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--wine);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--wine);
  border-radius: 2px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta,
.button.primary {
  background: var(--wine);
  color: var(--white);
}

.button.primary:hover,
.header-cta:hover {
  background: var(--wine-deep);
  border-color: var(--wine-deep);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--wine);
}

.button.secondary:hover {
  background: rgba(90, 23, 25, 0.06);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(90, 23, 25, 0.18);
  background: transparent;
  color: var(--wine);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--wine-deep);
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(91, 8, 19, 0.92) 0%, rgba(91, 8, 19, 0.7) 36%, rgba(16, 8, 7, 0.68) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46)),
    url("../public/bukolts-hero-office.png") center / cover no-repeat;
  opacity: 1;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(18px, 6vw, 96px);
  width: 1px;
  background: rgba(90, 23, 25, 0.18);
  content: "";
}

.hero::after {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: -8vh;
  width: 1px;
  height: 36vh;
  background: rgba(90, 23, 25, 0.2);
  content: "";
}

.hero-inner {
  position: relative;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  justify-content: center;
  padding: 118px clamp(24px, 7vw, 112px) 68px;
}

.hero-copy {
  align-self: center;
  width: 100%;
  max-width: 700px;
  margin-right: auto;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.4vw, 6.2rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  color: var(--white);
}

.hero-brandline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  padding: 0;
  border-left: 0;
  color: #d7b56d;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-brandline::before {
  display: block;
  width: 58px;
  height: 1px;
  background: #d7b56d;
  content: "";
}

.hero-text {
  max-width: 520px;
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 2px solid #d7b56d;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.2;
}

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

.hero .button.primary {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(122, 35, 46, 0.86);
  color: var(--white);
}

.hero .button.secondary {
  border-color: rgba(215, 181, 109, 0.78);
  color: #d7b56d;
}

.hero .button.secondary:hover {
  background: rgba(215, 181, 109, 0.1);
}

.hero-card {
  position: relative;
  align-self: center;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(91, 23, 25, 0.18);
  background: var(--wine-deep);
  box-shadow: var(--shadow);
}

.hero-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(44, 13, 15, 0) 36%, rgba(44, 13, 15, 0.82) 100%);
  content: "";
}

.hero-card-mark {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.hero-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.04);
}

.hero-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 28px;
  color: var(--white);
}

.hero-card-copy span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card-copy strong {
  display: block;
  max-width: 330px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 400;
  line-height: 1.04;
}

.hero-card-copy p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-docket {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: rgba(91, 23, 25, 0.2);
}

.hero-docket span,
.hero-docket a {
  min-height: 58px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-docket a {
  text-align: right;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.hero-card,
.hero-docket {
  animation: heroReveal 700ms ease both;
}

.hero-card {
  animation-delay: 120ms;
}

.hero-docket {
  animation-delay: 220ms;
}

.hero-credentials {
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 56px;
}

.hero-credentials span {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(90, 23, 25, 0.22);
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(91, 23, 25, 0.15);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.signal-item {
  min-height: 150px;
  padding: clamp(24px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.1;
}

.signal-item span {
  color: var(--muted);
  font-size: 0.96rem;
}

.decision-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(247, 244, 239, 0.96), rgba(247, 244, 239, 0.86)),
    url("../public/bukolts-logo-vertical.jpeg") left 8vw center / 360px auto no-repeat;
}

.decision-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.decision-grid {
  display: grid;
  gap: 14px;
}

.decision-grid a {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 154px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(91, 23, 25, 0.15);
  background: rgba(255, 255, 255, 0.74);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.decision-grid a::after {
  position: absolute;
  top: 26px;
  right: 28px;
  color: var(--wine);
  font-size: 1.2rem;
  content: "\2197";
}

.decision-grid a:hover {
  border-color: rgba(91, 23, 25, 0.46);
  background: var(--white);
  transform: translateX(4px);
}

.decision-grid span {
  color: var(--wine);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.decision-grid strong {
  max-width: 620px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.4rem);
  font-weight: 400;
  line-height: 1.08;
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(24px, 7vw, 112px);
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-section {
  position: relative;
  overflow: hidden;
  background: var(--wine-deep);
  color: var(--white);
}

.intro-section::after {
  position: absolute;
  right: -120px;
  bottom: -170px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--serif);
  font-size: 28rem;
  line-height: 0.8;
  content: "B";
}

.intro-section .section-kicker {
  color: rgba(255, 255, 255, 0.58);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.2vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

h3,
p {
  margin-top: 0;
}

.intro-copy p,
.section-heading p,
.about-copy p,
.international-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.intro-section .intro-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.intro-copy p + p {
  margin-top: 24px;
}

.areas-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: end;
  margin-bottom: clamp(42px, 7vw, 86px);
}

.section-heading p {
  margin-bottom: 0;
}

.practice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border-top: 0;
}

.practice-list article {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  min-height: 226px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(91, 23, 25, 0.13);
  background: rgba(255, 255, 255, 0.68);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.practice-list article:nth-child(odd) {
  border-right: 1px solid rgba(91, 23, 25, 0.13);
}

.practice-list article::before {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.practice-list article:hover {
  border-color: rgba(91, 23, 25, 0.32);
  background: var(--white);
  transform: translateY(-3px);
}

.practice-list article:hover::before {
  transform: scaleX(1);
}

.practice-list span {
  color: var(--olive);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.practice-list h3 {
  margin-bottom: 12px;
  color: var(--wine-deep);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 400;
  line-height: 1.08;
}

.practice-list p {
  grid-column: 2;
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
}

.quote-band {
  padding: clamp(70px, 10vw, 132px) clamp(24px, 9vw, 138px);
  background:
    linear-gradient(90deg, rgba(91, 23, 25, 0.92), rgba(44, 13, 15, 0.96)),
    url("../public/bukolts-assinatura-contatos.jpeg") center / cover no-repeat;
  color: var(--white);
}

.quote-band blockquote {
  max-width: 1120px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 5.4rem);
  line-height: 1;
}

.quote-band span {
  color: rgba(255, 255, 255, 0.42);
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 100px);
  background: var(--stone);
}

.method-heading {
  align-self: start;
}

.method-steps {
  display: grid;
  gap: 1px;
  background: rgba(91, 23, 25, 0.18);
}

.method-steps article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.7);
}

.method-steps span {
  color: var(--olive);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.method-steps h3 {
  margin-bottom: 8px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1;
}

.method-steps p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.56fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(235, 232, 226, 0.96), rgba(235, 232, 226, 0.9)),
    url("../public/bukolts-monograma.jpeg") right -14vw center / 54vw auto no-repeat;
}

.portrait-frame {
  position: relative;
}

.portrait-frame::before {
  position: absolute;
  inset: -22px 22px 22px -22px;
  border: 1px solid rgba(90, 23, 25, 0.26);
  content: "";
}

.portrait-frame img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5.4;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.about-copy h2 {
  max-width: 850px;
}

.about-copy p {
  max-width: 760px;
  margin-top: 28px;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 800px;
  margin: 38px 0 0;
  background: rgba(90, 23, 25, 0.2);
}

.credential-grid div {
  min-height: 112px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.42);
}

.credential-grid dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credential-grid dd {
  margin: 0;
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.12;
}

.international-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background: var(--white);
}

.international-copy h2 {
  max-width: 920px;
}

.international-copy p {
  max-width: 680px;
  margin-top: 30px;
}

.international-panel {
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  background: var(--stone);
}

.route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 34px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.route i {
  height: 1px;
  background: currentColor;
}

.international-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(53, 16, 18, 0.94), rgba(53, 16, 18, 0.9)),
    url("../public/bukolts-assinatura-contatos.jpeg") center / cover no-repeat;
  color: var(--white);
}

.contact-copy .section-kicker,
.contact-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-copy h2 {
  max-width: 790px;
}

.contact-copy p {
  max-width: 620px;
  margin-top: 26px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin-top: 38px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, transform 180ms ease;
}

.contact-methods a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(2px);
}

.contact-methods svg {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-methods span {
  display: grid;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.contact-methods strong {
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 18px;
  align-self: start;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfc8c1;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
  padding: 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(90, 23, 25, 0.18);
  border-color: var(--wine);
}

.form-button {
  width: 100%;
  min-height: 52px;
  cursor: pointer;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 34px clamp(24px, 7vw, 112px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-wordmark {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
}

.site-footer nav a {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer nav a:hover {
  color: var(--white);
}

.footer-legal {
  color: var(--white);
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(53, 16, 18, 0.24);
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
}

.floating-whatsapp svg {
  width: 27px;
  height: 27px;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
  }

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

  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 14px;
    left: 14px;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 20px;
    border: 1px solid rgba(90, 23, 25, 0.16);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(90, 23, 25, 0.12);
    font-size: 0.86rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    content: none;
  }

  .hero-background {
    background:
      linear-gradient(90deg, rgba(91, 8, 19, 0.94) 0%, rgba(91, 8, 19, 0.78) 42%, rgba(16, 8, 7, 0.72) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.5)),
      url("../public/bukolts-hero-office.png") center / cover no-repeat;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    align-self: end;
  }

  .hero-card {
    width: min(100%, 520px);
    min-height: 480px;
  }

  .hero-card img {
    height: 480px;
  }

  .hero-docket {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
  }

  .signal-strip,
  .decision-section,
  .intro-grid,
  .section-heading,
  .method-section,
  .about-section,
  .international-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .decision-copy {
    position: static;
  }

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

  .practice-list article:nth-child(odd) {
    border-right: 0;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 74px;
    padding: 12px 16px;
  }

  .brand-link {
    gap: 8px;
  }

  .brand-monogram {
    font-size: 2.75rem;
  }

  .brand-text strong {
    font-size: 1.05rem;
  }

  .brand-text small {
    max-width: 100px;
    font-size: 0.42rem;
  }

  .hero,
  .hero-inner {
    min-height: 92vh;
  }

  .hero-inner {
    padding: 102px 22px 38px;
  }

  .hero::before,
  .hero::after {
    content: none;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.15rem);
  }

  .hero-brandline {
    margin-bottom: 18px;
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .hero-text {
    margin-top: 22px;
    font-size: clamp(1.12rem, 5.4vw, 1.48rem);
  }

  .hero-actions,
  .hero-docket {
    display: grid;
    width: 100%;
  }

  .hero-card {
    display: none;
  }

  .hero-docket {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-docket span,
  .hero-docket a {
    min-height: 48px;
    padding: 14px 12px;
  }

  .hero-docket a {
    text-align: left;
  }

  .button {
    width: 100%;
  }

  .signal-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 22px;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }

  .decision-grid a {
    min-height: 130px;
  }

  .practice-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    padding: 24px 18px;
  }

  .quote-band {
    padding: 58px 22px;
  }

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

  .method-steps article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 18px;
  }

  .portrait-frame::before {
    inset: -12px 12px 12px -12px;
  }

  .route {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .route i {
    width: 64px;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    padding: 34px 22px 92px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
