@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/outfit-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/outfit-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/outfit-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/outfit-latin.woff2") format("woff2");
}

:root {
  --ink: #172019;
  --ink-soft: #4b554e;
  --green: #173f2d;
  --green-deep: #0b2b20;
  --green-soft: #dce8df;
  --cream: #f7f3e9;
  --paper: #fffdf8;
  --gold: #e8b94f;
  --gold-light: #f3d27f;
  --line: rgba(23, 63, 45, 0.17);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 18px 50px rgba(23, 63, 45, 0.1);
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: 64px;
  line-height: 1.02;
}

h2 {
  font-size: 44px;
  line-height: 1.08;
}

h3 {
  font-size: 21px;
  line-height: 1.22;
}

p {
  color: var(--ink-soft);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  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 {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--green);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-solid,
.inner-page .site-header {
  border-bottom-color: var(--line);
  background: rgba(255, 253, 248, 0.98);
  color: var(--ink);
}

.nav {
  width: min(1320px, calc(100% - 40px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
}

.logo {
  width: 178px;
}

.logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-header.is-solid .logo img,
.inner-page .logo img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

.nav-links a {
  position: relative;
  padding-block: 26px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-links .menu-booking-link {
  display: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-icon {
  width: 18px;
  display: grid;
  gap: 4px;
}

.menu-icon span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-btn[aria-expanded="true"] .menu-icon span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

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

.menu-btn[aria-expanded="true"] .menu-icon span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 88;
  visibility: hidden;
  background: rgba(7, 24, 17, 0.5);
  opacity: 0;
  transition: opacity 160ms ease, visibility 0s linear 160ms;
}

.menu-backdrop.is-visible {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.btn {
  min-height: 48px;
  padding: 12px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

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

.btn:focus-visible,
.menu-btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--gold);
  color: #171208;
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover {
  background: var(--green-deep);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
}

.btn-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--green);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-deep);
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 24, 16, 0.92) 0%, rgba(5, 24, 16, 0.78) 44%, rgba(5, 24, 16, 0.2) 72%, rgba(5, 24, 16, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 24, 16, 0.48) 0%, transparent 40%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 64px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.86);
}

.hero h1 {
  max-width: 710px;
  color: #fff;
}

.hero .lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
  line-height: 1.6;
}

.cta-row {
  margin-top: 29px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.hero-facts li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.section {
  padding: 86px 0;
  scroll-margin-top: var(--header-height);
}

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

.section-green {
  background: var(--green-deep);
  color: #fff;
}

.section-green p,
.section-green .source-link {
  color: rgba(255, 255, 255, 0.86);
}

.section-green h2,
.section-green h3 {
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head p {
  max-width: 690px;
  margin: 20px 0 0;
  font-size: 17px;
}

.booking {
  position: relative;
  padding: 70px 0;
  background: var(--paper);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: 56px;
  align-items: start;
}

.booking-copy {
  padding-top: 17px;
}

.booking-copy p {
  margin: 20px 0 0;
  font-size: 17px;
}

.booking-facts {
  margin: 25px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.booking-facts li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
}

.booking-facts li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.calendly-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.calendar-status {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 32px;
  background: #fff;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: opacity 160ms ease;
}

.calendly-frame {
  width: 100%;
  height: 680px;
  display: block;
  border: 0;
  opacity: 0;
  transition: opacity 160ms ease;
}

.calendly-panel.is-ready .calendar-status {
  opacity: 0;
  pointer-events: none;
}

.calendly-panel.is-ready .calendly-frame {
  opacity: 1;
}

.three-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.point {
  min-height: 220px;
  padding: 25px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-content: start;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.point img,
.service-card img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.point p,
.service-card p {
  margin: 10px 0 0;
  font-size: 15px;
}

.point > div:only-child {
  grid-column: 1 / -1;
}

.strategy-note {
  margin-top: 26px;
  padding: 24px 26px;
  border-left: 4px solid var(--gold);
  background: var(--green);
  color: #fff;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.35;
}

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

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-soft);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-landscape {
  aspect-ratio: 4 / 3;
}

.media-portrait {
  min-height: 580px;
  aspect-ratio: 0.78;
}

.text-block p {
  margin: 21px 0 0;
  font-size: 17px;
}

.simple-list {
  margin: 27px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.simple-list li {
  padding-left: 24px;
  position: relative;
  color: var(--ink-soft);
}

.simple-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.source-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.source-link::after {
  content: "↗";
}

.consorcio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 68px;
  align-items: start;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.step {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.step-number {
  margin-bottom: 29px;
  display: block;
  color: var(--gold-light);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.section-green .step-number {
  font-size: 17px;
  font-weight: 700;
}

.step p {
  margin: 10px 0 0;
  font-size: 14px;
}

.person-panel {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
}

.person-panel .media-frame {
  min-height: 660px;
  border-radius: 0;
}

.person-panel .media-frame img {
  object-position: center 24%;
}

.person-copy {
  padding: 62px;
  align-self: center;
}

.person-copy h2,
.person-copy h3 {
  color: #fff;
}

.person-copy p {
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.person-proof {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.person-proof li {
  padding: 12px 14px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  font-size: 13px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-card h3 {
  margin-top: 22px;
}

.guide-links {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.guide-link {
  padding: 19px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 600;
}

.guide-link::after {
  content: "→";
  font-size: 20px;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq summary {
  padding: 21px 42px 21px 0;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 19px;
  font-weight: 600;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 5px;
  font-size: 25px;
  font-weight: 400;
  transition: transform 150ms ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 850px;
  margin: -2px 0 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
}

.contact-visual {
  min-height: 650px;
  position: relative;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 28, 20, 0.8), transparent 64%);
}

.contact-copy {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  z-index: 2;
  color: #fff;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy p {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-form {
  padding: 48px;
  display: grid;
  align-content: center;
  gap: 18px;
  background: var(--paper);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  font-weight: 400;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

.form-note {
  margin: -4px 0 0;
  font-size: 11px;
  line-height: 1.5;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(5, 25, 16, 0.24);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.mobile-booking {
  display: none;
}

.footer {
  padding: 58px 0 24px;
  background: var(--green-deep);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 0.7fr 0.8fr;
  gap: 60px;
}

.footer-brand img {
  width: 200px;
}

.footer-brand p {
  max-width: 490px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer h3 {
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 15px;
}

.footer ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.studio-credit {
  grid-column: 1 / -1;
  justify-self: end;
}

.studio-credit a {
  color: #fff;
  font-weight: 600;
}

.page-hero {
  padding: 145px 0 80px;
  background: var(--paper);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.page-hero h1 {
  font-size: 54px;
}

.page-hero .lead {
  margin: 22px 0 0;
  font-size: 18px;
}

.page-hero-media {
  width: 100%;
  min-height: 0;
}

.page-hero-media-landscape {
  aspect-ratio: 3 / 2;
}

.page-hero-media-portrait {
  width: min(100%, 460px);
  aspect-ratio: 3 / 4;
  justify-self: end;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 58px;
  align-items: center;
}

.ademicon-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 68px;
  align-items: center;
}

.partner-name {
  margin: 20px 0 13px;
  display: block;
  color: var(--green);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.ademicon-intro p {
  margin: 20px 0 0;
  font-size: 16px;
}

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

.ademicon-fact {
  min-height: 154px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(23, 63, 45, 0.07);
}

.ademicon-fact strong {
  color: var(--green);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 24px;
  line-height: 1.1;
}

.ademicon-fact span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.ademicon-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.ademicon-links .source-link {
  margin-top: 0;
}

.steps-cards {
  gap: 16px;
  border: 0;
}

.steps-cards .step {
  min-height: 232px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(23, 63, 45, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.steps-cards .step-number {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
}

.steps-cards .step:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 63, 45, 0.34);
  box-shadow: 0 18px 44px rgba(23, 63, 45, 0.15);
}

.reference-box {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-soft);
}

.reference-box p:last-child {
  margin-bottom: 0;
}

.section-green .reference-box h3 {
  color: var(--ink);
}

.section-green .reference-box p,
.section-green .reference-box li {
  color: var(--ink-soft);
}

.legal-page {
  min-height: 70vh;
  padding: 145px 0 90px;
  background: var(--paper);
}

.legal-content {
  max-width: 860px;
}

.legal-content h1 {
  margin-bottom: 45px;
}

.legal-content h2 {
  margin: 38px 0 14px;
  font-size: 28px;
}

.legal-content p {
  margin-bottom: 15px;
}

.legal-content a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 39px;
  }

  .nav {
    grid-template-columns: 175px 1fr auto;
    gap: 18px;
  }

  .nav-links {
    gap: 17px;
  }

  .booking-grid {
    grid-template-columns: minmax(0, 0.74fr) minmax(520px, 1.26fr);
    gap: 38px;
  }

  .person-copy {
    padding: 45px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  .nav {
    width: calc(100% - 28px);
    min-height: var(--header-height);
    grid-template-columns: 1fr auto;
  }

  .logo {
    width: 164px;
  }

  .menu-btn {
    display: flex;
  }

  .nav > .btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 95;
    display: grid;
    gap: 0;
    padding: 12px 18px 20px;
    transform: translateY(-115%);
    visibility: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    transition: transform 180ms ease, visibility 0s linear 180ms;
  }

  .nav-links.open {
    transform: none;
    visibility: visible;
    transition-delay: 0s;
  }

  .nav-links a {
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .menu-booking-link {
    display: flex;
    margin-top: 14px;
    padding: 13px 18px;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    text-align: center;
  }

  .booking-grid,
  .split,
  .consorcio-grid,
  .page-hero-grid,
  .article-grid,
  .ademicon-proof {
    grid-template-columns: 1fr;
  }

  .booking-grid {
    gap: 30px;
  }

  .three-points,
  .services {
    grid-template-columns: 1fr;
  }

  .point {
    min-height: 0;
  }

  .person-panel {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .person-copy {
    padding: 38px;
  }

  .person-panel .media-frame {
    min-height: 100%;
  }

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

  .contact-visual {
    min-height: 520px;
  }

  .page-hero-media-portrait {
    justify-self: center;
  }
}

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

  h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  h3 {
    font-size: 19px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    object-position: 36% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 24, 16, 0.9) 0%, rgba(5, 24, 16, 0.6) 68%, rgba(5, 24, 16, 0.28) 100%),
      linear-gradient(0deg, rgba(5, 24, 16, 0.82) 0%, rgba(5, 24, 16, 0.05) 74%);
  }

  .hero-inner {
    padding-top: 124px;
    padding-bottom: 42px;
  }

  .hero .lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .cta-row {
    margin-top: 22px;
    display: grid;
  }

  .hero .btn {
    width: 100%;
  }

  .hero-facts {
    margin-top: 20px;
  }

  .hero-facts li {
    font-size: 12px;
  }

  .section {
    padding: 60px 0;
  }

  .booking {
    padding: 50px 0 58px;
  }

  .booking-copy {
    padding-top: 0;
  }

  .booking-copy p {
    font-size: 15px;
  }

  .booking-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 14px;
  }

  .booking-facts li {
    grid-template-columns: 19px 1fr;
    font-size: 12px;
  }

  .booking-facts li::before {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .calendly-frame {
    height: 670px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head p,
  .text-block p {
    font-size: 15px;
  }

  .three-points {
    gap: 10px;
  }

  .point {
    padding: 19px;
    grid-template-columns: 42px 1fr;
  }

  .point img {
    width: 40px;
    height: 40px;
  }

  .strategy-note {
    padding: 20px;
    font-size: 19px;
  }

  .split {
    gap: 31px;
  }

  .media-landscape {
    aspect-ratio: 1 / 0.78;
  }

  .consorcio-grid {
    gap: 36px;
  }

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

  .step {
    min-height: 0;
    padding: 21px;
  }

  .step-number {
    margin-bottom: 16px;
  }

  .steps-cards {
    gap: 12px;
  }

  .steps-cards .step {
    min-height: 0;
    padding: 22px;
  }

  .steps-cards .step-number {
    margin-bottom: 18px;
  }

  .ademicon-proof {
    gap: 34px;
  }

  .partner-name {
    font-size: 21px;
  }

  .ademicon-intro p {
    font-size: 15px;
  }

  .ademicon-facts {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ademicon-fact {
    min-height: 132px;
    padding: 18px;
  }

  .ademicon-fact strong {
    font-size: 20px;
  }

  .ademicon-links {
    display: grid;
    gap: 12px;
  }

  .person-panel {
    grid-template-columns: 1fr;
  }

  .person-panel .media-frame {
    min-height: 440px;
    aspect-ratio: 0.88;
  }

  .person-copy {
    padding: 30px 22px 34px;
  }

  .person-proof {
    grid-template-columns: 1fr 1fr;
  }

  .person-proof li {
    padding: 10px;
    font-size: 11px;
  }

  .services,
  .guide-links {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 22px;
  }

  .faq summary {
    padding: 18px 38px 18px 0;
    font-size: 17px;
  }

  .faq summary::after {
    top: 15px;
  }

  .contact-visual {
    min-height: 500px;
  }

  .contact-copy {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-booking {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 82;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    box-shadow: 0 14px 34px rgba(5, 25, 16, 0.28);
    font-weight: 600;
    opacity: 1;
    transform: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .mobile-booking.is-hidden {
    pointer-events: none;
    opacity: 0;
    transform: translateY(80px);
  }

  .footer {
    padding-bottom: 84px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .studio-credit {
    justify-self: start;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .page-hero-grid {
    gap: 34px;
  }

  .page-hero-media-landscape {
    aspect-ratio: 4 / 3;
  }

  .page-hero-media-portrait {
    width: 100%;
  }

  .legal-page {
    padding: 120px 0 70px;
  }

  .legal-content h1 {
    margin-bottom: 34px;
  }
}

@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;
  }
}
