/* Atlas Patrimonial — Quaresma Henriques */

:root {
  --atlas-petroleum: #123c4a;
  --atlas-deep: #102f39;
  --atlas-ink: #17303a;
  --atlas-mineral: #f4f2ed;
  --atlas-stone: #e9e8e2;
  --atlas-muted: #657479;
  --atlas-gold: #d6ad62;
  --atlas-gold-dark: #a27e43;
  --atlas-line: #c8d0cb;
  --atlas-paper: #fbfaf6;
  --atlas-error: #8a2b2b;
  --atlas-ok: #2f5b45;
  --header-h: 4.75rem;
  --max: 76rem;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--atlas-ink);
  background: var(--atlas-mineral);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: var(--atlas-petroleum);
}

a:hover {
  color: var(--atlas-gold-dark);
}

:focus-visible {
  outline: 2px solid var(--atlas-gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 100;
  background: var(--atlas-petroleum);
  color: var(--atlas-mineral);
  padding: 0.6rem 1rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(calc(100% - 2.25rem), var(--max));
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--atlas-gold-dark);
}

.kicker::before {
  content: "";
  width: 1px;
  height: 0.95rem;
  background: var(--atlas-gold);
}

h1,
h2,
.serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--atlas-ink);
}

h1 {
  font-size: clamp(2rem, 3.1vw, 3.35rem);
  line-height: 1.08;
  margin: 0 0 1.2rem;
  max-width: 22ch;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4.25rem);
  line-height: 0.98;
  margin: 0 0 1.1rem;
  max-width: 16ch;
}

h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.45rem;
  color: var(--atlas-ink);
}

p {
  margin: 0 0 1rem;
  color: var(--atlas-muted);
}

.lede {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 38rem;
}

.editorial {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: inherit;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 242, 237, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(244, 242, 237, 0.97);
  border-bottom-color: var(--atlas-line);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0.2rem 0.45rem;
}

.logo img {
  width: 196px;
  height: 85px;
  object-fit: contain;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.45rem;
}

.nav a {
  color: var(--atlas-ink);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--atlas-gold-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--atlas-line);
  background: transparent;
  color: var(--atlas-ink);
  cursor: pointer;
}

.nav-toggle[aria-expanded="true"] {
  background: var(--atlas-petroleum);
  color: var(--atlas-mineral);
  border-color: var(--atlas-petroleum);
}

@media (min-width: 1080px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

.nav-panel {
  display: none;
  border-top: 1px solid var(--atlas-line);
  padding: 0.5rem 0 1.1rem;
}

.nav-panel.is-open {
  display: block;
}

.nav-panel a {
  display: block;
  padding: 0.85rem 0;
  color: var(--atlas-ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--atlas-stone);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

.btn::after {
  content: "→";
  font-weight: 500;
  font-size: 0.85rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary,
.btn-whatsapp {
  background: var(--atlas-gold);
  color: var(--atlas-petroleum);
  border-color: var(--atlas-gold);
}

.btn-primary:hover,
.btn-whatsapp:hover {
  background: #c49a52;
  color: var(--atlas-deep);
  border-color: #c49a52;
}

.btn-secondary,
.btn-ghost {
  background: transparent;
  color: var(--atlas-ink);
  border: 0;
  border-bottom: 1px solid var(--atlas-gold);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.btn-secondary:hover,
.btn-ghost:hover {
  color: var(--atlas-gold-dark);
}

.btn-on-ink {
  color: var(--atlas-mineral);
  border-bottom-color: var(--atlas-gold);
}

.btn-on-ink:hover {
  color: var(--atlas-gold);
}

.btn-full {
  width: 100%;
}

/* Hero */

.hero-band {
  background: var(--atlas-petroleum);
  color: #d8e0dc;
  padding: 1.25rem 0 4.5rem;
}

.hero-band .breadcrumb,
.hero-band .breadcrumb a,
.hero-band .breadcrumb li {
  color: #9aada8;
}

.hero-band .breadcrumb li:not(:last-child)::after {
  color: #6d8180;
}

.hero-grid {
  display: grid;
  gap: 2.25rem;
  padding-top: 1.5rem;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(18rem, 0.9fr) 1.2fr;
    gap: 2.75rem;
    align-items: stretch;
  }
}

.hero-copy .kicker {
  color: var(--atlas-gold);
}

.hero-copy h1 {
  color: #f4f2ed;
  max-width: 20ch;
}

.hero-copy p {
  max-width: 34rem;
  color: #c3d0cb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin: 1.7rem 0 1.8rem;
}

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.2rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(200, 208, 203, 0.22);
}

.proof p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93a39e;
}

.proof strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--atlas-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-media {
  display: flex;
  flex-direction: column;
  min-height: 22rem;
}

.media-frame {
  position: relative;
  flex: 1 1 auto;
  min-height: 22rem;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 47, 57, 0.06), rgba(16, 47, 57, 0.22));
  pointer-events: none;
}

.media-coord {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 1;
  margin: 0;
  padding: 0.4rem 0.6rem;
  background: rgba(16, 47, 57, 0.72);
  color: var(--atlas-gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-caption {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--atlas-muted);
}

.hero-band .hero-caption {
  color: #93a39e;
}

/* Sections */

.section {
  padding: 5.5rem 0;
}

.section-split {
  background: var(--atlas-stone);
}

.section-ink {
  position: relative;
  background: var(--atlas-petroleum);
  color: #d8e0dc;
}

.section-ink::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(214, 173, 98, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 173, 98, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.section-ink > .wrap {
  position: relative;
  z-index: 1;
}

.section-ink h2,
.section-ink h3 {
  color: #f4f2ed;
}

.section-ink p,
.section-ink li,
.section-ink .lede {
  color: #b7c4bf;
}

.section-ink .kicker {
  color: var(--atlas-gold);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.6rem;
}

/* Profiles */

.profiles {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--atlas-line);
}

@media (min-width: 860px) {
  .profiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.profile {
  background: transparent;
  padding: 1.8rem 1.3rem 1.6rem 0;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--atlas-line);
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: background 0.2s ease;
}

@media (min-width: 860px) {
  .profile {
    padding-right: 1.6rem;
    border-bottom: 0;
    border-right: 1px solid var(--atlas-line);
  }

  .profile:last-child {
    border-right: 0;
    padding-right: 0;
  }
}

.profile:hover,
.profile:focus-visible {
  background: rgba(255, 255, 255, 0.35);
}

.profile .num {
  display: block;
  margin-bottom: 1rem;
}

.profile span.label {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--atlas-gold-dark);
  margin-bottom: 0.7rem;
}

.profile strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--atlas-ink);
  margin-bottom: 0.7rem;
}

.profile p {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
}

.profile em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--atlas-gold-dark);
}

/* Education */

.edu-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .edu-grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4.5rem;
    align-items: start;
  }
}

.terms {
  display: grid;
  gap: 0;
}

.terms article {
  padding: 1.15rem 0 1.15rem 1rem;
  border-top: 1px solid var(--atlas-line);
  border-left: 1px solid var(--atlas-gold);
}

.terms h3 {
  font-size: 0.95rem;
}

/* Criteria */

.criteria-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 980px) {
  .criteria-layout {
    grid-template-columns: minmax(16rem, 0.72fr) 1.28fr;
    gap: 4rem;
    align-items: start;
  }

  .criteria-layout .section-head {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    margin-bottom: 0;
  }
}

.criteria {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--atlas-line);
}

.criterion {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--atlas-line);
}

@media (min-width: 760px) {
  .criterion {
    grid-template-columns: 3.2rem minmax(12rem, 16rem) 1fr;
    gap: 1.4rem;
    align-items: baseline;
  }
}

.num {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--atlas-gold);
}

.criterion h3 {
  margin: 0;
  font-size: 0.98rem;
}

.criterion p {
  margin: 0;
  font-size: 0.92rem;
}

/* Media slab */

.media-slab {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .media-slab {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 3rem;
    align-items: end;
  }
}

.media-slab figure {
  position: relative;
}

.media-slab img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.highlights ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.highlights li {
  list-style: none;
  padding: 1rem 0 1rem 1rem;
  border-top: 1px solid var(--atlas-line);
  border-left: 1px solid var(--atlas-gold);
}

.highlights h3 {
  font-size: 0.95rem;
}

/* Location */

.location-grid {
  display: grid;
  gap: 2.4rem;
}

@media (min-width: 860px) {
  .location-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
  }
}

.note {
  padding: 1rem 0 1rem 1rem;
  border-left: 1px solid var(--atlas-gold);
  color: var(--atlas-muted);
  font-size: 0.92rem;
}

.map-fallback {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--atlas-line);
}

.map-fallback h3 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--atlas-gold-dark);
}

/* CELOG */

.celog-intro {
  max-width: 42rem;
}

.facts {
  display: grid;
  gap: 0;
  margin: 2.4rem 0;
  border-top: 1px solid rgba(200, 208, 203, 0.2);
}

@media (min-width: 760px) {
  .facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fact {
  padding: 1.2rem 1.1rem 1.2rem 0;
  border-bottom: 1px solid rgba(200, 208, 203, 0.2);
}

@media (min-width: 760px) {
  .fact {
    padding-right: 1.4rem;
    border-right: 1px solid rgba(200, 208, 203, 0.2);
  }

  .fact:nth-child(3n) {
    border-right: 0;
    padding-right: 0;
  }
}

.fact strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 500;
  color: var(--atlas-gold);
  margin-bottom: 0.3rem;
  line-height: 1;
}

.fact span {
  font-size: 0.82rem;
  color: #b7c4bf;
}

.disclaimer {
  padding: 1rem 0 1rem 1rem;
  border-left: 1px solid var(--atlas-gold);
  font-size: 0.88rem;
  color: #c3d0cb;
  margin: 0 0 1.6rem;
}

.celog-visual {
  margin-top: 2.4rem;
}

.celog-visual .media-frame {
  min-height: 0;
  overflow: visible;
  flex: none;
}

.celog-visual .media-frame::after {
  display: none;
}

.celog-visual img {
  width: 100%;
  height: auto;
  max-height: none;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.celog-visual figcaption {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  color: #93a39e;
}

/* Authority */

.authority-grid {
  display: grid;
  gap: 2.4rem;
}

@media (min-width: 900px) {
  .authority-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: end;
  }
}

.authority-grid img {
  width: 100%;
  aspect-ratio: 429 / 393;
}

.stats {
  display: flex;
  gap: 2.4rem;
  margin: 1.7rem 0 1.8rem;
}

.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 0.9;
  color: var(--atlas-gold-dark);
}

.stats span {
  color: var(--atlas-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Form */

.form-layout {
  display: grid;
  gap: 2.4rem;
}

@media (min-width: 900px) {
  .form-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: start;
  }
}

.form {
  display: grid;
  gap: 1rem;
  padding: 1.6rem 0 0;
  background: transparent;
  border-top: 1px solid var(--atlas-line);
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--atlas-gold-dark);
}

input,
select,
textarea {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.6rem 0;
  border: 0;
  border-bottom: 1px solid var(--atlas-line);
  border-radius: 0;
  background: transparent;
  color: var(--atlas-ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-bottom-color: var(--atlas-gold);
}

textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--atlas-muted);
}

.consent input {
  width: 1.1rem;
  min-height: 1.1rem;
  margin-top: 0.25rem;
  accent-color: var(--atlas-gold-dark);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.3rem;
  font-size: 0.85rem;
}

.form-status[data-state="error"] {
  color: var(--atlas-error);
}

.form-status[data-state="ok"] {
  color: var(--atlas-ok);
}

.form-status[data-state="loading"] {
  color: var(--atlas-muted);
}

/* FAQ */

.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--atlas-line);
}

.faq details {
  border-bottom: 1px solid var(--atlas-line);
  padding: 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--atlas-ink);
  padding: 1.05rem 1.6rem 1.05rem 0;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.05rem;
  color: var(--atlas-gold);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0 0 1.15rem;
  max-width: 46rem;
}

/* Final CTA */

.final-cta h2 {
  max-width: 14ch;
}

/* Footer */

.site-footer {
  padding: 3.6rem 0 2rem;
  background: var(--atlas-deep);
  color: #b7c4bf;
}

.footer-grid {
  display: grid;
  gap: 2.4rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
  }
}

.site-footer a {
  color: #e7ece9;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--atlas-gold);
}

.site-footer h2 {
  color: var(--atlas-gold);
  font-size: 0.625rem;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  max-width: none;
  margin-bottom: 1rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
}

.footer-note {
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(200, 208, 203, 0.16);
  font-size: 0.75rem;
  color: #80918d;
}

.logo-light {
  background: #fff;
  padding: 0.4rem 0.55rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.logo-light img {
  width: 170px;
  height: 74px;
  object-fit: contain;
}

/* Breadcrumb */

.breadcrumb {
  padding: 0.4rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--atlas-muted);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  color: var(--atlas-line);
}

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

/* Float */

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: var(--atlas-gold);
  color: var(--atlas-petroleum);
  border: 1px solid var(--atlas-gold);
  transition: transform 0.2s var(--ease);
}

.wa-float:hover {
  transform: translateY(-2px);
  color: var(--atlas-deep);
}

.wa-float svg {
  width: 1.35rem;
  height: 1.35rem;
}

/* Inner pages */

.page-main {
  padding: 2rem 0 5rem;
}

.prose {
  max-width: 44rem;
}

.prose h1 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.prose h2 {
  margin-top: 2.4rem;
  max-width: 18ch;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 719px) {
  h1 {
    max-width: 18ch;
  }

  .hero-media img {
    min-height: 16rem;
  }

  .media-frame {
    min-height: 16rem;
  }

  .logo img {
    width: 156px;
    height: 68px;
  }

  .hero-band {
    padding-bottom: 3.2rem;
  }

  .section {
    padding: 3.8rem 0;
  }

  .btn {
    min-height: 3.1rem;
  }
}
