.practice-page {
  min-height: 100vh;
  padding-top: 76px;
}

.practice-hero {
  display: grid;
  min-height: 640px;
  align-items: end;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(90px, 12vw, 155px) clamp(28px, 7vw, 112px) 95px;
  background:
    radial-gradient(circle at 84% 16%, rgba(185, 224, 208, 0.56), transparent 35%),
    var(--paper);
}

.practice-hero-copy {
  max-width: 650px;
}

.practice-hero h1 {
  margin: 22px 0 28px;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.practice-picker {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.picker-intro {
  margin: 0 0 26px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.country-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(23, 60, 52, 0.05);
}

.country-switch button {
  min-height: 48px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #60716c;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.country-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
  box-shadow: 0 8px 22px rgba(23, 60, 52, 0.16);
}

.picker-fields {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.picker-field {
  position: relative;
  display: grid;
  gap: 7px;
}

.picker-field span {
  color: #71817c;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.picker-field::after {
  position: absolute;
  right: 17px;
  bottom: 19px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.picker-field select {
  width: 100%;
  min-height: 58px;
  appearance: none;
  padding: 0 46px 0 17px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  font: 600 13px var(--sans);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.picker-field select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(185, 224, 208, 0.55);
}

.practice-answer {
  max-width: 940px;
  margin: 0 auto;
  padding: 110px 28px 130px;
}

.practice-answer h2 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.practice-answer section {
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.practice-answer section[hidden] {
  display: none;
}

.practice-answer p {
  color: #576c65;
  font-size: 14px;
  line-height: 1.85;
}

.practice-answer a:not(.button) {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 3px;
}

.consent-script {
  margin: 22px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--lime);
  background: var(--ink-deep);
  color: white;
  font-size: 17px;
  line-height: 1.7;
}

.consent-script p {
  margin: 0;
  color: white;
}

.further-reading ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.further-reading li {
  color: #576c65;
  font-size: 14px;
  line-height: 1.7;
}

.practice-cta {
  display: grid;
  justify-items: start;
  padding: 70px !important;
  border: 0 !important;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

.handout-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 90px 28px 120px;
}

.handout-main h1 {
  margin: 20px 0 25px;
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

@media (max-width: 880px) {
  .practice-hero {
    min-height: auto;
    align-items: stretch;
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

  .practice-picker {
    max-width: 620px;
  }
}

@media (max-width: 600px) {
  .practice-page {
    padding-top: 64px;
  }

  .practice-hero {
    gap: 45px;
    padding: 70px 20px 65px;
  }

  .practice-hero h1 {
    font-size: clamp(50px, 16vw, 68px);
  }

  .practice-picker {
    padding: 22px;
  }

  .country-switch {
    grid-template-columns: 1fr;
  }

  .practice-answer {
    padding: 80px 20px 90px;
  }

  .practice-cta {
    padding: 42px 28px !important;
  }

  .handout-main {
    padding: 60px 20px 90px;
  }
}

@media print {
  .legal-header,
  .site-footer {
    display: none;
  }

  .handout-main {
    max-width: none;
    padding: 0;
  }

  body {
    background: white;
  }
}
