:root {
  --green: #163e32;
  --ink: #243d34;
  --muted: #667269;
  --paper: #fafbf7;
  --sage: #e9eee4;
  --line: #dce3d9;
  --lime: #d2e8b9;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid #648546;
  outline-offset: 5px;
}
.wrap {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.topbar {
  display: flex;
  justify-content: space-between;
  background: var(--green);
  color: #eef3e7;
  padding: 12px max(48px, calc((100vw - 1240px) / 2));
  font-size: 10px;
  letter-spacing: 1.4px;
}
.topbar a {
  letter-spacing: 0.2px;
  font-size: 11px;
}
.header {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  display: flex;
  gap: 13px;
  align-items: center;
  line-height: 1;
}
.brand-mark {
  font: italic 65px Georgia;
  letter-spacing: -5px;
  position: relative;
  margin-top: -14px;
  width: 44px;
}
.brand-mark span {
  font: 26px Arial;
  position: absolute;
  top: 7px;
  right: -1px;
  letter-spacing: 0;
}
.brand small {
  display: block;
  letter-spacing: 4px;
  font-size: 9px;
  margin: 0 0 6px 4px;
}
.brand strong {
  font: 42px Georgia;
  letter-spacing: -2px;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--green);
  color: white;
  padding: 19px 25px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #285941;
  transform: translateY(-2px);
}
.button span {
  font-size: 21px;
  line-height: 12px;
}
.button.small {
  padding: 15px 19px;
  font-size: 12px;
  gap: 16px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 23px 0 43px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.eyebrow > span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #66914e;
  border-radius: 50%;
}
h1 {
  font:
    normal clamp(47px, 4.65vw, 67px)/1.08 Georgia,
    serif;
  letter-spacing: -2.5px;
  margin: 0 0 26px;
}
em {
  font-weight: normal;
  color: #628161;
}
h1 em {
  font-size: 1.15em;
}
p {
  line-height: 1.8;
}
.intro {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.text-link {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  gap: 16px;
}
.text-link:hover {
  text-decoration: underline;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
}
.hero-note p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.hero-note strong {
  font-weight: 400;
  color: var(--ink);
}
.outline-icon {
  border: 1px solid #b8c6b2;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}
.hero-art {
  height: 558px;
  position: relative;
  border-radius: 140px 12px 12px 12px;
  overflow: hidden;
  background: var(--sage);
}
.hero-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 49%;
}
.image-label {
  position: absolute;
  left: 25px;
  bottom: 32px;
  background: #fbfcf2ed;
  backdrop-filter: blur(10px);
  padding: 17px 22px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  line-height: 1.6;
}
.image-label > span {
  font-size: 38px;
}
.art-caption {
  position: absolute;
  bottom: 9px;
  right: 14px;
  font-size: 7px;
  letter-spacing: 1px;
  background: #f6f7efc9;
  padding: 3px 6px;
}
.quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  padding-block: 28px;
  gap: 28px;
}
.quick > a {
  display: flex;
  gap: 17px;
  align-items: center;
  border-right: 1px solid var(--line);
  padding-right: 25px;
}
.quick > a:last-child {
  border: 0;
  padding: 0;
}
.quick > a > span:last-child {
  margin-left: auto;
}
.quick-icon {
  font-size: 26px;
  min-width: 32px;
  color: #71866a;
}
.quick h2 {
  font-size: 14px;
  margin: 0 0 5px;
  font-weight: 500;
}
.quick p {
  font-size: 11px;
  margin: 0;
  color: var(--muted);
}
.quick a:hover h2 {
  text-decoration: underline;
}
.section {
  padding-block: 100px;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
}
h2 {
  font: normal 43px/1.14 Georgia;
  letter-spacing: -1.1px;
  margin: 0 0 23px;
}
.about-text {
  padding-top: 25px;
}
.about-text p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 15px;
}
.specialties {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.specialties span {
  padding: 10px 14px;
  border: 1px solid #cfd9c8;
  border-radius: 40px;
  font-size: 11px;
}
.care {
  background: #edf1e8;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-heading p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
}
.section-symbol {
  font-size: 150px;
  font-weight: 200;
  color: #bfceb4;
  margin-right: 40px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 36px;
}
.steps article {
  border-top: 1px solid #cbd6c3;
  padding-top: 23px;
}
.steps article > span {
  font: italic 26px Georgia;
  color: #719063;
}
.steps h3 {
  font-size: 19px;
  font-weight: 500;
  margin: 20px 0 13px;
}
.steps p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.results-banner {
  margin-top: 95px;
  background: var(--green);
  color: white;
  border-radius: 14px;
  padding: 62px 75px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
.results-banner .eyebrow {
  color: var(--lime);
}
.results-banner h2 {
  font-size: 49px;
}
.results-banner em {
  color: var(--lime);
}
.results-banner p:not(.eyebrow) {
  font-size: 13px;
  color: #d1ddd3;
}
.light {
  background: var(--lime);
  color: var(--green);
  margin-top: 12px;
}
.light:hover {
  background: white;
}
.paper {
  width: 285px;
  background: #f5f7ee;
  color: var(--green);
  padding: 27px;
  border-radius: 9px;
  transform: rotate(7deg);
  box-shadow: -16px 20px 0 #ffffff10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.paper-top {
  font: 32px Georgia;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.paper-top span {
  font: 8px Arial;
  letter-spacing: 2px;
}
.paper-line {
  display: block;
  height: 5px;
  width: 60%;
  background: #dfe5d7;
  margin-top: 7px;
}
.paper-line.wide {
  width: 100%;
}
.paper-check {
  margin: 18px auto 10px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  background: #e4ecd9;
  border-radius: 50%;
  font-size: 28px;
}
.paper > strong {
  text-align: center;
  font: 21px Georgia;
}
.paper > span:last-of-type {
  text-align: center;
  font-size: 9px;
}
.paper-bottom {
  font-size: 7px;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 27px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 75px;
}
.questions details {
  border-bottom: 1px solid var(--line);
}
summary {
  padding: 22px 32px 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  top: 16px;
  font-weight: 300;
}
details[open] summary:after {
  content: "−";
}
.questions p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 24px 20px 0;
}
footer {
  background: #edf1e8;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 45px;
  gap: 30px;
}
.footer-main p {
  font-size: 12px;
  color: var(--muted);
}
.footer-main > a:last-child {
  font-size: 12px;
  font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid #d4ddce;
  padding-block: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom b {
  font-size: 16px;
  color: var(--ink);
  margin-left: 6px;
}
.skip {
  position: absolute;
  top: -60px;
  left: 20px;
  background: white;
  padding: 12px;
  z-index: 20;
}
.skip:focus {
  top: 10px;
}
.portal {
  min-height: calc(100vh - 200px);
  padding-block: 55px 80px;
}
.login-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1000px;
  margin: auto;
}
.portal h1 {
  font-size: 53px;
}
.portal .intro {
  max-width: 420px;
}
.login-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 38px;
  box-shadow: 0 20px 65px #163e3207;
}
.login-card h2 {
  font: 27px Georgia;
  margin-bottom: 12px;
}
.login-card > p {
  font-size: 13px;
  color: var(--muted);
}
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 23px 0 9px;
}
input {
  width: 100%;
  border: 1px solid #c5cfc0;
  border-radius: 6px;
  background: #fff;
  padding: 15px;
  font-size: 16px;
  color: var(--green);
}
.password-field {
  position: relative;
}
.password-field input {
  padding-right: 78px;
}
.password-field button {
  position: absolute;
  right: 8px;
  top: 8px;
  height: 35px;
  border: 0;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
  color: var(--green);
}
.login-card .button {
  width: 100%;
  margin-top: 25px;
}
.login-card .help {
  font-size: 11px;
  text-align: center;
  margin-top: 20px;
}
.alert {
  padding: 14px;
  background: #fff0e9;
  color: #8b361c;
  border-radius: 6px;
  font-size: 13px;
  margin: 15px 0;
  line-height: 1.6;
}
.portal-tag {
  margin: 30px 0;
  font-size: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.portal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.portal-top h1 {
  font-size: 36px;
  margin: 0;
}
.result-list {
  display: grid;
  gap: 15px;
}
.result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 25px;
}
.result-item h2 {
  font: 21px Georgia;
  margin: 0 0 8px;
}
.result-item p {
  font-size: 12px;
  color: var(--muted);
  margin: 2px 0;
}
.status {
  font-size: 10px;
  color: #3c6632;
  background: #eaf1e3;
  padding: 6px 9px;
  border-radius: 5px;
}
.empty {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}
.empty h2 {
  font-size: 26px;
}
.empty p {
  font-size: 14px;
  color: var(--muted);
}
@media (min-width: 1500px) {
  .hero {
    gap: 80px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .header nav {
    gap: 17px;
    font-size: 11px;
  }
  .hero {
    gap: 30px;
  }
  .hero-art {
    height: 520px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .button {
    padding: 17px;
  }
  .about {
    gap: 50px;
  }
  .quick {
    gap: 16px;
  }
  .quick > a {
    gap: 9px;
    padding-right: 15px;
  }
  .login-layout {
    gap: 45px;
  }
  .results-banner {
    padding: 55px;
  }
}
@media (max-width: 800px) {
  .topbar {
    padding: 11px 24px;
  }
  .topbar > span {
    font-size: 8px;
  }
  .topbar a {
    font-size: 9px;
  }
  .header {
    height: 94px;
    position: relative;
  }
  .brand strong {
    font-size: 35px;
  }
  .brand-mark {
    font-size: 58px;
    width: 38px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 3px;
  }
  .menu-toggle {
    display: block;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px 11px;
    font-size: 22px;
    color: var(--green);
  }
  .header nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    z-index: 10;
    box-shadow: 0 15px 20px #163e3210;
  }
  .header nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-size: 14px;
    gap: 24px;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 23px;
    padding-top: 15px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .intro {
    font-size: 13px;
  }
  .desktop {
    display: none;
  }
  .hero-art {
    height: 470px;
    border-top-left-radius: 90px;
  }
  .hero-note {
    margin-top: 25px;
  }
  .image-label {
    left: 12px;
    bottom: 25px;
    padding: 12px;
    font-size: 10px;
    gap: 10px;
  }
  .image-label > span {
    font-size: 25px;
  }
  .quick {
    grid-template-columns: 1fr;
    padding-block: 5px;
    gap: 0;
  }
  .quick > a {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  .quick > a:last-child {
    padding: 20px 0;
  }
  .quick h2 {
    font-size: 14px;
  }
  .quick p {
    font-size: 12px;
  }
  .section {
    padding-block: 65px;
  }
  .about,
  .faq {
    gap: 35px;
  }
  h2 {
    font-size: 35px;
  }
  .steps {
    gap: 25px;
  }
  .section-symbol {
    font-size: 100px;
    margin: 0;
  }
  .results-banner {
    padding: 40px;
    gap: 20px;
  }
  .results-banner h2 {
    font-size: 39px;
  }
  .paper {
    width: 230px;
    padding: 20px;
  }
  .footer-main {
    gap: 20px;
  }
  .login-layout {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 15px;
  }
  .portal {
    padding-top: 30px;
  }
  .portal h1 {
    font-size: 42px;
  }
  .portal .intro {
    margin-bottom: 10px;
  }
  .portal-tag {
    margin: 15px 0;
  }
  .login-card {
    padding: 28px;
  }
}
@media (max-width: 580px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .topbar {
    padding: 10px 20px;
  }
  .topbar > span {
    letter-spacing: 0.7px;
  }
  .topbar a {
    font-size: 0;
  }
  .topbar a span {
    font-size: 13px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 30px;
  }
  .hero-copy {
    padding-top: 12px;
  }
  .hero h1 {
    font-size: 53px;
    letter-spacing: -2px;
  }
  .eyebrow {
    font-size: 8px;
    margin-bottom: 22px;
  }
  .intro {
    font-size: 14px;
  }
  .hero-actions {
    gap: 22px;
  }
  .hero-actions .button {
    font-size: 12px;
  }
  .hero-note {
    margin-top: 23px;
  }
  .hero-art {
    height: 365px;
    border-top-left-radius: 100px;
  }
  .hero-art > img {
    object-position: center 57%;
  }
  .image-label {
    font-size: 12px;
    left: 20px;
    bottom: 25px;
  }
  .about,
  .faq {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about-text {
    padding-top: 0;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 25px;
  }
  .steps article {
    position: relative;
    padding-left: 45px;
  }
  .steps article > span {
    position: absolute;
    left: 0;
    top: 26px;
  }
  .steps h3 {
    margin-top: 5px;
  }
  .section-symbol {
    display: none;
  }
  .results-banner {
    margin-top: 55px;
    padding: 35px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 35px;
  }
  .results-banner h2 {
    font-size: 40px;
  }
  .paper {
    margin: 0 auto 10px;
    width: 220px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding-block: 35px;
  }
  .footer-main p {
    margin: 0;
  }
  .footer-bottom {
    font-size: 9px;
  }
  .portal {
    padding-block: 25px 45px;
  }
  .portal h1 {
    font-size: 39px;
  }
  .portal-top {
    align-items: flex-start;
  }
  .portal-top h1 {
    font-size: 28px;
  }
  .result-item {
    flex-direction: column;
    align-items: stretch;
    padding: 21px;
  }
  .result-item .button {
    justify-content: center;
  }
  .login-card {
    padding: 23px;
  }
  .login-card .help {
    font-size: 12px;
  }
  .text-link {
    font-size: 12px;
  }
  .portal-top .button {
    padding: 10px 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.brand-logo {
  border-radius: 50%;
  width: 54px;
  height: 54px;
  object-fit: cover;
}
.locations {
  padding-bottom: 10px;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 30px;
}
.location {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 35px;
}
.location-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #648158;
}
.location h3 {
  font: 31px/1.15 Georgia;
  margin: 24px 0;
}
.location p {
  font-size: 13px;
  color: var(--muted);
}
.location > a {
  font-size: 18px;
}
.location-links {
  display: flex;
  gap: 23px;
  align-items: center;
  margin-top: 25px;
}
.new-location {
  background: #edf1e8;
}
.opening {
  border-left: 2px solid #b69745;
  padding-left: 15px;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.opening strong {
  font: 28px Georgia;
  color: #766122;
}
.opening span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.location .text-link {
  font-size: 12px;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 11px;
}
@media (max-width: 800px) {
  .header nav {
    gap: 19px;
  }
  .brand-logo {
    width: 45px;
    height: 45px;
  }
  .location {
    padding: 25px;
  }
  .footer-main {
    flex-wrap: wrap;
  }
  .locations .section-heading {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }
}
@media (max-width: 580px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-links {
    gap: 20px;
  }
  .social-links {
    flex-direction: row;
    gap: 25px;
  }
  .location h3 {
    font-size: 29px;
  }
}

/* 1.1 — tipografia acessível e interface contemporânea */
:root {
  --muted: #506157;
  --paper: #f7faf6;
  --line: #cddbd0;
  --reading-scale: 1;
}
body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: calc(18px * var(--reading-scale));
  line-height: 1.6;
}
h1,
h2,
h3,
.portal h1,
.portal-top h1,
.result-item h2,
.login-card h2,
.location h3,
.opening strong {
  font-family: inherit;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
h1,
.hero h1 {
  font-size: clamp(44px, 5vw, 72px);
}
h2 {
  font-size: clamp(32px, 3.5vw, 48px);
}
h1 em,
em {
  font-style: normal;
  font-weight: inherit;
  font-size: 1em;
  color: #467448;
}
p {
  line-height: 1.7;
}
.intro,
.about-text p,
.section-heading p:not(.eyebrow),
.steps p,
.questions p,
.location p,
.empty p,
.login-card > p {
  font-size: calc(18px * var(--reading-scale));
}
.topbar,
.topbar > span,
.topbar a {
  font-size: 14px;
  letter-spacing: 0.3px;
}
.topbar {
  padding-block: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.header {
  height: auto;
  min-height: 116px;
  padding-block: 20px;
}
.header nav {
  font-size: 17px;
  gap: 24px;
}
.brand strong {
  font-family: inherit;
  font-weight: 750;
  font-size: 38px;
  letter-spacing: -2px;
}
.brand small {
  font-size: 11px;
  letter-spacing: 3px;
}
.brand-logo {
  width: 58px;
  height: 58px;
}
.button,
.button.small,
.hero-actions .button {
  min-height: 56px;
  border-radius: 14px;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
  gap: 16px;
  line-height: 1.4;
  text-align: center;
  justify-content: center;
}
.button:hover {
  transform: none;
}
.button.secondary {
  background: white;
  color: var(--green);
  border-color: #9db5a4;
}
.button.secondary:hover {
  background: var(--sage);
}
.text-link,
.location .text-link,
.footer-main > a:last-child {
  font-size: 17px;
  min-height: 44px;
  align-items: center;
}
.eyebrow,
.location-label {
  font-size: 14px;
  letter-spacing: 1.3px;
  margin-bottom: 20px;
}
.hero {
  padding-block: 30px 56px;
  gap: 48px;
}
.hero-art {
  border-radius: 36px;
  height: 540px;
}
.hero-note p {
  font-size: 16px;
}
.outline-icon {
  min-width: 36px;
  min-height: 36px;
}
.image-label {
  font-size: 17px;
  border-radius: 18px;
}
.art-caption {
  font-size: 11px;
  letter-spacing: 0;
}
.quick {
  border: 0;
  gap: 18px;
  padding: 0;
}
.quick > a,
.quick > a:last-child {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  gap: 16px;
  box-shadow: 0 8px 28px #163e3205;
}
.quick h2 {
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.quick p {
  font-size: 16px;
}
.quick-icon {
  color: #467448;
}
.section {
  padding-block: 88px;
}
.specialties span {
  font-size: 16px;
  background: white;
}
.steps {
  gap: 24px;
}
.steps article {
  background: #ffffff85;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}
.steps article > span {
  font: 700 24px system-ui;
  color: #467448;
}
.steps h3 {
  font-size: 24px;
  font-weight: 700;
}
.results-banner {
  border-radius: 28px;
  padding: 56px;
  gap: 40px;
}
.results-banner h2 {
  font-size: clamp(34px, 4vw, 52px);
}
.results-banner p:not(.eyebrow) {
  font-size: 18px;
}
.paper {
  border-radius: 20px;
}
.paper > strong {
  font: 700 23px system-ui;
}
.paper > span:last-of-type {
  font-size: 14px;
}
.paper-bottom {
  font-size: 11px;
  letter-spacing: 0.5px;
}
.paper-top span {
  font-size: 11px;
  letter-spacing: 0.5px;
}
summary {
  font-size: 20px;
  font-weight: 650;
  padding-block: 24px;
}
.location {
  padding: 32px;
  background: white;
  border-radius: 24px;
}
.new-location {
  background: #edf1e8;
}
.location h3 {
  font-size: 32px;
}
.location > a {
  font-size: 24px;
}
.location-links {
  flex-wrap: wrap;
}
.opening span {
  font-size: 15px;
}
.opening strong {
  font-size: 32px;
}
.social-links,
.footer-main p,
.footer-bottom {
  font-size: 16px;
}
.footer-bottom {
  gap: 20px;
  flex-wrap: wrap;
}
.social-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.privacy-strip {
  font-size: 16px;
  padding-block: 0 28px;
}
.privacy-strip a,
.privacy-note a,
.privacy-page p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.login-layout {
  max-width: 1160px;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
}
.portal h1 {
  font-size: clamp(36px, 4vw, 58px);
}
.login-card {
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 18px 60px #163e3210;
}
.login-card h2 {
  font-size: 32px;
}
.portal-tag {
  font-size: 18px;
}
.login-card label {
  font-size: 20px;
}
input {
  min-height: 62px;
  font-size: 20px;
  padding: 17px;
  border-radius: 12px;
  border-color: #9eb4a5;
}
.password-field input {
  padding-right: 110px;
}
.password-field button {
  font-size: 16px;
  min-width: 92px;
  min-height: 48px;
  top: 7px;
  right: 6px;
  border-radius: 8px;
}
.login-card .help,
.login-card .privacy-note,
.privacy-note {
  font-size: 16px;
  line-height: 1.65;
}
.alert {
  font-size: 18px;
  border-radius: 12px;
}
.result-item {
  padding: 30px;
  border-radius: 22px;
  flex-wrap: wrap;
}
.result-item h2 {
  font-size: 26px;
}
.result-item p {
  font-size: 17px;
  overflow-wrap: anywhere;
}
.result-item > div:first-child {
  flex: 1 1 350px;
}
.status {
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 30px;
  color: #28532c;
}
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.portal-top .button {
  min-height: 56px;
  padding: 14px 24px;
}
.viewer-toolbar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.pdf-viewer {
  width: 100%;
  height: 78vh;
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #e9eee4;
}
.privacy-page {
  max-width: 840px;
  margin: auto;
}
.privacy-page h2 {
  font-size: 28px;
  margin-top: 40px;
}
.privacy-page p {
  font-size: calc(18px * var(--reading-scale));
}
.accessibility {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  padding-block: 0 12px;
}
.accessibility button {
  background: white;
  border: 1px solid #9eb4a5;
  color: var(--green);
  border-radius: 10px;
  min-height: 44px;
  padding: 8px 14px;
  font-size: 16px;
  cursor: pointer;
}
.accessibility button[aria-pressed="true"] {
  background: var(--green);
  color: white;
}
.accessibility span {
  font-size: 16px;
}
@media (max-width: 1100px) {
  .header nav {
    gap: 14px;
    font-size: 16px;
  }
  .header nav .button {
    padding: 14px;
    font-size: 16px;
  }
  .hero {
    gap: 28px;
  }
  .quick {
    grid-template-columns: 1fr;
  }
  .quick > a {
    border: 1px solid var(--line);
  }
  .login-layout {
    gap: 32px;
  }
  .wrap {
    width: calc(100% - 48px);
  }
}
@media (max-width: 800px) {
  .header nav.open {
    font-size: 18px;
    top: 100%;
    gap: 16px;
  }
  .menu-toggle {
    min-width: 48px;
    min-height: 48px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-art {
    height: 400px;
  }
  .hero h1 {
    max-width: 640px;
  }
  .login-layout {
    grid-template-columns: 1fr;
    max-width: 600px;
    gap: 28px;
  }
  .about,
  .faq {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps article {
    padding: 28px;
  }
  .steps article > span {
    position: static;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .section-heading {
    gap: 20px;
  }
  .results-banner {
    padding: 36px;
  }
  .footer-main {
    align-items: flex-start;
  }
  .topbar > span,
  .topbar a,
  .topbar a span {
    font-size: 14px;
  }
  .portal-top {
    flex-wrap: wrap;
  }
}
@media (max-width: 580px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .header {
    gap: 14px;
    min-height: 96px;
  }
  .brand strong {
    font-size: 32px;
  }
  .brand-logo {
    width: 46px;
    height: 46px;
  }
  .header > .text-link {
    max-width: 120px;
    font-size: 16px;
  }
  .hero h1 {
    font-size: 44px;
    letter-spacing: -0.04em;
  }
  .hero-art {
    height: 340px;
    border-radius: 24px;
  }
  .hero-actions {
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-note p {
    font-size: 16px;
  }
  .eyebrow {
    font-size: 14px;
  }
  .image-label {
    font-size: 16px;
    left: 16px;
    right: 16px;
    bottom: 30px;
  }
  .art-caption {
    font-size: 10px;
  }
  .section {
    padding-block: 56px;
  }
  .results-banner {
    padding: 28px;
  }
  .login-card {
    padding: 24px;
  }
  .login-card h2 {
    font-size: 28px;
  }
  .result-item {
    padding: 22px;
  }
  .result-item > div:first-child {
    flex-basis: auto;
  }
  .result-actions {
    flex-direction: column;
    width: 100%;
  }
  .portal h1,
  .portal-top h1 {
    font-size: 36px;
  }
  .portal-top {
    gap: 16px;
  }
  .viewer-toolbar {
    flex-direction: column;
  }
  .pdf-viewer {
    min-height: 420px;
  }
  .footer-bottom {
    font-size: 16px;
  }
  .accessibility {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .location-links {
    flex-direction: column;
    align-items: stretch;
  }
  .section-symbol {
    display: none;
  }
  .paper {
    transform: rotate(3deg);
  }
  .privacy-strip {
    padding-bottom: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
@media (min-width: 801px) and (max-width: 1100px) {
  .header {
    position: relative;
  }
  .menu-toggle {
    display: block;
    min-width: 48px;
    min-height: 48px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 24px;
    color: var(--green);
  }
  .header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    z-index: 10;
  }
  .header nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-size: 18px;
    gap: 16px;
  }
}

.ec7-credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}
.ec7-logo {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  border-radius: 10px;
  padding: 9px 14px;
}
.ec7-logo img {
  display: block;
  width: 88px;
  height: auto;
}
.ec7-credit:hover .ec7-logo {
  background: #285941;
}
.ec7-credit:hover > span:first-child {
  text-decoration: underline;
}
