:root {
  --ink: #172026;
  --muted: #64717c;
  --line: #dfe7ec;
  --paper: #fbfcfa;
  --white: #ffffff;
  --teal: #0b7f82;
  --teal-dark: #07585a;
  --coral: #e05d44;
  --gold: #d6a63d;
  --forest: #2f6f4e;
  --blue: #315d8c;
  --navy: #0b1820;
  --shadow: 0 18px 55px rgba(23, 32, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

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

main {
  min-height: 70vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(251, 252, 250, 0.94);
  border-bottom: 1px solid rgba(223, 231, 236, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.main-nav a,
.language-options a,
.admin-nav a {
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
}

.main-nav a {
  padding: 10px 14px;
}

.main-nav a.active,
.main-nav a:hover,
.language-options a.active,
.language-options a:hover,
.admin-nav a.active,
.admin-nav a:hover {
  color: var(--ink);
  background: #eef5f4;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-menu {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(14, 34, 42, 0.08);
}

.language-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.7;
}

.language-flag {
  display: inline-grid;
  position: relative;
  overflow: hidden;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(14, 34, 42, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
  flex: 0 0 auto;
}

.language-flag-es {
  background: linear-gradient(180deg, #c60b1e 0 27%, #ffc400 27% 73%, #c60b1e 73% 100%);
}

.language-flag-us {
  background: repeating-linear-gradient(180deg, #b22234 0 2px, #ffffff 2px 4px);
}

.language-flag-us::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 48%;
  height: 55%;
  background: #3c3b6e;
}

.language-flag-br {
  background: #009b3a;
}

.language-flag-br::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: #ffdf00;
  transform: rotate(45deg);
}

.language-flag-br::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #002776;
}

.language-options {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 40;
  display: grid;
  min-width: 168px;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(14, 34, 42, 0.18);
  padding: 6px;
  backdrop-filter: blur(16px);
}

.language-options a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  font-size: 0.9rem;
}

.language-options[hidden] {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(11, 127, 130, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11, 127, 130, 0.22);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.button-ghost {
  background: var(--white);
  color: var(--teal-dark);
}

.button-small,
.compact {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: end;
  padding: 96px max(24px, calc((100vw - 1180px) / 2)) 110px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 22, 29, 0.92), rgba(7, 22, 29, 0.58), rgba(7, 22, 29, 0.22)),
    linear-gradient(0deg, rgba(7, 22, 29, 0.58), rgba(7, 22, 29, 0.04) 48%),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1900&q=82") center/cover;
}

.hero-content {
  max-width: 820px;
  padding-bottom: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2c76f;
}

.hero-kicker {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

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

h1 {
  margin-bottom: 18px;
  font-size: 4.35rem;
  line-height: 1.02;
}

h2 {
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1.14;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-deal {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 82px;
  display: grid;
  width: min(320px, calc(100% - 48px));
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.hero-deal span {
  color: #f2c76f;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-deal strong {
  font-size: 1.18rem;
  line-height: 1.12;
}

.hero-deal small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.section,
.package-grid,
.destination-grid,
.travel-search,
.agency-strip,
.filters-bar,
.detail-hero,
.detail-layout,
.success-page,
.admin-login,
.admin-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 72px 0 26px;
}

.travel-search {
  position: relative;
  z-index: 2;
  margin-top: -62px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 248, 0.96)),
    var(--white);
  box-shadow: 0 22px 70px rgba(23, 32, 38, 0.18);
}

.travel-search-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 240px auto;
  align-items: end;
  gap: 12px;
}

.agency-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 26px 0 4px;
}

.agency-strip a {
  display: grid;
  min-height: 124px;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f4fbf8);
  box-shadow: 0 8px 28px rgba(23, 32, 38, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.agency-strip a:hover {
  border-color: rgba(11, 127, 130, 0.4);
  box-shadow: 0 18px 46px rgba(23, 32, 38, 0.1);
  transform: translateY(-3px);
}

.agency-strip span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
}

.agency-strip strong {
  font-size: 1.05rem;
}

.showcase-intro {
  padding-top: 62px;
}

.section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-intro h2,
.section-heading h2 {
  max-width: 760px;
}

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

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 16px;
  padding: 12px 0 34px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  isolation: isolate;
  box-shadow: 0 18px 52px rgba(23, 32, 38, 0.16);
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 25, 31, 0.08), rgba(10, 25, 31, 0.78));
}

.destination-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.destination-card span,
.destination-card strong,
.destination-card small {
  position: absolute;
  left: 18px;
  right: 18px;
}

.destination-card span {
  bottom: 92px;
  color: #f2c76f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.destination-card strong {
  bottom: 44px;
  font-size: 1.12rem;
  line-height: 1.15;
}

.destination-card small {
  bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.destination-card-large strong {
  max-width: 420px;
  font-size: 1.65rem;
}

.packages-intro {
  padding-top: 36px;
}

.home-package-grid {
  padding-bottom: 54px;
}

.promo-lane {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  margin: 14px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.promo-lane article {
  display: grid;
  min-height: 152px;
  align-content: space-between;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 37, 43, 0.92), rgba(11, 127, 130, 0.62)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.promo-lane article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(24, 54, 39, 0.9), rgba(214, 166, 61, 0.62)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.promo-lane article:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(37, 28, 56, 0.9), rgba(224, 93, 68, 0.58)),
    url("https://images.unsplash.com/photo-1526392060635-9d6019884377?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.promo-lane span {
  color: #f2c76f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-lane strong {
  font-size: 1.18rem;
  line-height: 1.14;
}

.package-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 42px rgba(23, 32, 38, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.package-card:hover {
  box-shadow: 0 22px 60px rgba(23, 32, 38, 0.15);
  transform: translateY(-4px);
}

.package-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #dce8e9;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.04);
}

.package-image-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.package-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.package-card-body p {
  min-height: 72px;
  color: var(--muted);
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.package-meta span {
  padding: 5px 8px;
  border-radius: 8px;
  background: #f3f7f4;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.package-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.booking-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  padding: 70px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(16, 37, 43, 0.97), rgba(11, 127, 130, 0.72)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}

.booking-band h2 {
  max-width: 760px;
  color: var(--white);
}

.booking-band p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.page-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 34px;
}

.compact-hero p {
  max-width: 680px;
  color: var(--muted);
}

.editorial-hero,
.hotel-hero,
.contact-hero {
  padding-top: 96px;
}

.editorial-hero h1,
.hotel-hero h1,
.contact-hero h1 {
  max-width: 1040px;
  font-size: clamp(2.65rem, 6vw, 4.35rem);
}

.contact-hero h1 {
  max-width: 980px;
}

.editorial-hero p,
.hotel-hero p,
.contact-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-layout,
.feature-grid,
.hotel-layout,
.contact-layout {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 16px 0 54px;
}

.about-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 74px;
}

.feature-grid article,
.hotel-form,
.contact-form,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(14, 34, 42, 0.08);
}

.feature-grid article {
  padding: 24px;
}

.feature-grid span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-grid p {
  color: var(--muted);
}

.hotel-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 26px;
  padding: 12px 0 78px;
}

.hotel-form,
.contact-form,
.contact-card {
  padding: 24px;
}

.hotel-showcase {
  display: grid;
  align-self: start;
  gap: 14px;
}

.hotel-showcase article {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(14, 34, 42, 0.1);
}

.hotel-showcase img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hotel-showcase article div {
  padding: 18px;
}

.hotel-showcase p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-card {
  align-self: start;
}

.contact-card dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.contact-card dl div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-card dd {
  text-align: left;
}

.filters-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.filters-bar p {
  margin: 0;
  color: var(--muted);
  white-space: nowrap;
}

.filters-form {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(220px, 1fr) 220px auto;
  align-items: end;
  gap: 12px;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11, 127, 130, 0.12);
}

.listing-grid {
  padding-top: 28px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--white);
}

.detail-hero {
  padding: 32px 0 28px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-weight: 800;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.detail-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.detail-copy .lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.price-line {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff4ec;
  color: var(--coral);
}

.price-line strong {
  font-size: 1.35rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  padding-bottom: 72px;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.content-panel,
.booking-panel,
.success-card,
.login-card,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(23, 32, 38, 0.06);
}

.content-panel,
.booking-panel,
.success-card,
.login-card,
.admin-panel {
  padding: 24px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--forest);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.timeline article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #eef5f4;
  color: var(--teal-dark);
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.booking-panel {
  position: sticky;
  top: 92px;
  align-self: start;
}

.stacked-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 12px;
}

.date-picker-field {
  position: relative;
}

.calendar-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 8px;
}

.calendar-control input {
  cursor: pointer;
}

.calendar-open {
  display: grid;
  width: 48px;
  min-height: 46px;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  cursor: pointer;
}

.calendar-open span {
  display: grid;
  width: 26px;
  height: 28px;
  place-items: center;
  border: 2px solid currentColor;
  border-top-width: 7px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 900;
}

.calendar-readable {
  display: block;
  min-height: 20px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.calendar-popover {
  position: absolute;
  left: 0;
  right: auto;
  top: calc(100% + 10px);
  z-index: 18;
  width: min(330px, calc(100vw - 44px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 14px;
}

.calendar-head {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.calendar-head strong {
  text-align: center;
  text-transform: capitalize;
}

.calendar-head button,
.calendar-day {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.calendar-head button {
  min-height: 38px;
  font-weight: 900;
}

.calendar-head button:disabled,
.calendar-day:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  aspect-ratio: 1;
  min-width: 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 800;
}

.calendar-day:hover:not(:disabled) {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.calendar-day.today {
  border-color: var(--gold);
  background: #fff7df;
}

.calendar-day.selected {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.whatsapp-card {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.whatsapp-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 10px;
  border: 1px solid #128c5d;
  border-radius: 8px;
  background: #128c5d;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.whatsapp-button:hover {
  background: #0f764f;
}

.whatsapp-button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.74rem;
}

.alert {
  margin-bottom: 16px;
  border: 1px solid #f1b4a6;
  border-radius: 8px;
  background: #fff1ed;
  color: #8c2d1d;
  padding: 12px;
}

.alert p {
  margin: 0;
}

.success-page,
.admin-login {
  display: grid;
  min-height: 62vh;
  place-items: center;
  padding: 70px 0;
}

.success-card,
.login-card {
  width: min(560px, 100%);
}

.success-card dl {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.success-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 800;
}

dd {
  margin: 0;
  text-align: right;
}

.admin-page {
  background: #f3f6f4;
}

.admin-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 0 72px;
}

.admin-nav {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
}

.admin-nav strong {
  margin-bottom: 8px;
}

.admin-nav a {
  padding: 10px 12px;
}

.admin-content {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.admin-title,
.panel-heading,
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-title h1 {
  margin-bottom: 0;
  font-size: 2.2rem;
}

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

.metric-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.metric-grid span {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 900;
}

.metric-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}

td small {
  display: block;
  color: var(--muted);
}

.status {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.78rem;
  font-weight: 900;
}

.status-new {
  background: #fff4d6;
  color: #7a5700;
}

.status-contacted {
  background: #e8f0ff;
  color: #234b82;
}

.status-confirmed {
  background: #e5f5ed;
  color: #225b3d;
}

.status-cancelled {
  background: #ffe9e5;
  color: #8b2b1f;
}

.inline-form,
.actions-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.inline-form select {
  min-width: 140px;
}

.admin-form {
  display: grid;
  gap: 20px;
}

.form-section h2 {
  font-size: 1.25rem;
}

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

.wide {
  grid-column: 1 / -1;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.checkbox-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.checkbox-row input {
  width: auto;
}

.tabs {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 18px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf8;
}

.tabs button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  padding: 9px 12px;
  font-weight: 900;
  cursor: pointer;
}

.tabs button.active {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 2px 10px rgba(23, 32, 38, 0.08);
}

.translation-pane {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.translation-pane.active {
  display: block;
}

.translation-pane legend {
  margin-bottom: 12px;
  font-weight: 900;
}

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

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    flex-wrap: wrap;
  }

  .main-nav.open {
    display: flex;
  }

  .header-actions {
    grid-column: 1 / -1;
  }

  .package-grid,
  .destination-grid,
  .agency-strip,
  .promo-lane,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-deal {
    position: static;
    margin-top: 24px;
  }

  .hero {
    align-content: end;
  }

  .detail-grid,
  .detail-layout,
  .about-layout,
  .hotel-layout,
  .contact-layout,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .booking-panel,
  .admin-nav {
    position: static;
  }

  .filters-bar,
  .booking-band,
  .section-intro,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .filters-form,
  .travel-search-form {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}

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

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero {
    min-height: 560px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section,
  .package-grid,
  .destination-grid,
  .travel-search,
  .agency-strip,
  .about-layout,
  .feature-grid,
  .hotel-layout,
  .contact-layout,
  .filters-bar,
  .detail-hero,
  .detail-layout,
  .success-page,
  .admin-login,
  .admin-shell,
  .page-hero {
    width: min(100% - 28px, 1180px);
  }

  .package-grid,
  .destination-grid,
  .agency-strip,
  .feature-grid,
  .promo-lane,
  .metric-grid,
  .form-grid,
  .check-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .destination-grid {
    grid-auto-rows: 250px;
  }

  .destination-card,
  .destination-card-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .destination-card-large strong {
    font-size: 1.22rem;
  }

  .hero-deal {
    width: 100%;
    padding: 14px;
  }

  .package-card-footer,
  .admin-title,
  .panel-heading,
  .form-actions,
  .booking-band,
  .success-card dl div,
  .inline-form,
  .actions-cell {
    align-items: stretch;
    flex-direction: column;
  }

  .package-card-footer .button,
  .actions-cell .button,
  .actions-cell form {
    width: 100%;
  }

  dd {
    text-align: left;
  }
}

/* Premium public home polish */
.home-page {
  background: #f7f8f5;
}

.home-page .site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(5, 18, 24, 0.72), rgba(5, 18, 24, 0));
  border-bottom: 0;
  color: var(--white);
  backdrop-filter: none;
}

.home-page .brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.home-page .brand small,
.home-page .main-nav a,
.home-page .language-trigger,
.home-page .language-options a {
  color: rgba(255, 255, 255, 0.76);
}

.home-page .brand strong {
  color: var(--white);
}

.home-page .main-nav a.active,
.home-page .main-nav a:hover,
.home-page .language-options a.active,
.home-page .language-options a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.home-page .language-trigger {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: none;
}

.home-page .language-options {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(10, 27, 35, 0.88);
}

.home-page .language-flag {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.home-page .nav-toggle {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
}

.home-page .nav-toggle span {
  background: var(--white);
}

.home-page .hero {
  min-height: 720px;
  padding-top: 154px;
  padding-bottom: 150px;
  background:
    linear-gradient(90deg, rgba(5, 18, 24, 0.96), rgba(5, 18, 24, 0.62) 46%, rgba(5, 18, 24, 0.16)),
    linear-gradient(0deg, rgba(5, 18, 24, 0.66), rgba(5, 18, 24, 0) 48%),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=86") center/cover;
}

.home-page .hero-content {
  max-width: 780px;
}

.home-page .hero-kicker {
  border-color: rgba(242, 199, 111, 0.36);
  background: rgba(242, 199, 111, 0.12);
  color: #f2c76f;
}

.home-page .hero h1 {
  max-width: 760px;
  font-size: 5.25rem;
}

.home-page .hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
}

.home-page .hero .button {
  min-height: 50px;
  padding-inline: 22px;
}

.home-page .hero-deal {
  position: static;
  width: fit-content;
  max-width: min(520px, 100%);
  margin-top: 26px;
  padding: 0 0 0 18px;
  border: 0;
  border-left: 3px solid #f2c76f;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .hero-deal strong {
  font-size: 1.28rem;
}

.home-page .travel-search {
  margin-top: -86px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(14, 34, 42, 0.22);
}

.home-page .travel-search-form {
  grid-template-columns: minmax(260px, 1fr) 260px 190px;
  gap: 0;
}

.home-page .travel-search label {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.home-page .travel-search input,
.home-page .travel-search select {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  font-size: 1.04rem;
}

.home-page .travel-search input:focus,
.home-page .travel-search select:focus {
  box-shadow: none;
}

.home-page .travel-search .button {
  align-self: stretch;
  min-height: 74px;
  margin: 10px;
}

.home-page .agency-strip {
  gap: 0;
  padding-top: 44px;
}

.home-page .agency-strip a {
  min-height: 116px;
  padding: 0 24px 22px 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 32, 38, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .agency-strip a:hover {
  border-color: var(--teal);
  box-shadow: none;
  transform: translateY(-2px);
}

.home-page .agency-strip strong {
  max-width: 220px;
  font-size: 1.35rem;
  line-height: 1.08;
}

.home-page .showcase-intro {
  padding-top: 76px;
}

.home-page .section-intro h2 {
  max-width: 820px;
  font-size: 2.35rem;
}

.home-page .destination-grid {
  grid-auto-rows: 230px;
  gap: 20px;
  padding-bottom: 48px;
}

.home-page .destination-card {
  box-shadow: 0 20px 60px rgba(14, 34, 42, 0.18);
}

.home-page .destination-card::after {
  background: linear-gradient(180deg, rgba(5, 18, 24, 0.06), rgba(5, 18, 24, 0.82));
}

.home-page .destination-card strong {
  font-size: 1.2rem;
}

.home-page .destination-card-large strong {
  font-size: 1.82rem;
}

.home-page .promo-lane article {
  min-height: 188px;
  padding: 26px;
}

.home-page .promo-lane strong {
  max-width: 320px;
  font-size: 1.36rem;
}

.home-page .packages-intro {
  padding-top: 60px;
}

.home-page .package-card {
  border: 0;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(14, 34, 42, 0.1);
}

.home-page .package-card-body {
  padding: 20px;
}

.home-page .package-card h3 {
  font-size: 1.26rem;
}

.home-page .package-card-footer strong {
  color: var(--coral);
}

.home-page .booking-band {
  padding-block: 86px;
}

.home-page .booking-band h2 {
  font-size: 2.5rem;
}

@media (max-width: 980px) {
  .home-page .site-header {
    background: rgba(5, 18, 24, 0.82);
  }

  .home-page .main-nav.open {
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
  }

  .home-page .hero {
    min-height: 680px;
  }

  .home-page .hero h1 {
    font-size: 4rem;
  }

  .home-page .travel-search-form,
  .home-page .promo-lane {
    grid-template-columns: 1fr;
  }

  .home-page .travel-search label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-page .travel-search .button {
    min-height: 54px;
  }
}

@media (max-width: 640px) {
  .home-page .hero {
    min-height: 600px;
    padding-top: 176px;
    padding-bottom: 88px;
  }

  .home-page .hero h1 {
    font-size: 3rem;
  }

  .home-page .hero p {
    font-size: 1.06rem;
  }

  .home-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .home-page .hero .button {
    min-width: 0;
    padding-inline: 12px;
    font-size: 0.92rem;
  }

  .home-page .hero-deal {
    max-width: 100%;
    margin-top: 20px;
  }

  .home-page .travel-search {
    margin-top: -58px;
  }

  .home-page .agency-strip {
    gap: 14px;
  }

  .home-page .agency-strip a {
    min-height: auto;
    padding: 16px 0;
  }

  .home-page .agency-strip strong {
    font-size: 1.2rem;
  }

  .home-page .section-intro h2,
  .home-page .booking-band h2 {
    font-size: 1.75rem;
  }

  .home-page .destination-grid {
    grid-auto-rows: 255px;
  }

  .home-page .destination-card-large strong,
  .home-page .destination-card strong {
    font-size: 1.22rem;
  }
}

/* Public inner pages visual pass */
.public-page:not(.home-page) {
  background:
    linear-gradient(180deg, #ffffff 0, #f6f8f5 420px, #f7f8f5 100%);
}

.public-page:not(.home-page) .site-header {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(14, 34, 42, 0.06);
}

.public-page:not(.home-page) .page-hero {
  width: 100%;
  max-width: none;
  min-height: 360px;
  display: grid;
  align-items: end;
  margin: 0;
  padding: 116px max(24px, calc((100vw - 1180px) / 2)) 54px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 22, 29, 0.9), rgba(7, 22, 29, 0.55), rgba(7, 22, 29, 0.18)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=84") center/cover;
}

.public-page:not(.home-page) .page-hero h1 {
  color: var(--white);
}

.public-page:not(.home-page) .page-hero p {
  color: rgba(255, 255, 255, 0.84);
}

.public-page:not(.home-page) .page-hero .eyebrow {
  color: #f2c76f;
}

.public-page:not(.home-page) .hotel-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 29, 0.9), rgba(7, 22, 29, 0.52), rgba(7, 22, 29, 0.12)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=84") center/cover;
}

.public-page:not(.home-page) .contact-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 29, 0.9), rgba(7, 22, 29, 0.55), rgba(7, 22, 29, 0.16)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1800&q=84") center/cover;
}

.public-page:not(.home-page) .compact-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 29, 0.9), rgba(7, 22, 29, 0.55), rgba(7, 22, 29, 0.14)),
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1800&q=84") center/cover;
}

.public-page:not(.home-page) .filters-bar,
.public-page:not(.home-page) .hotel-layout,
.public-page:not(.home-page) .contact-layout,
.public-page:not(.home-page) .about-layout {
  margin-top: 34px;
}

.public-page:not(.home-page) .hotel-form,
.public-page:not(.home-page) .contact-form,
.public-page:not(.home-page) .contact-card,
.public-page:not(.home-page) .content-panel,
.public-page:not(.home-page) .booking-panel,
.public-page:not(.home-page) .success-card {
  border: 0;
  box-shadow: 0 22px 70px rgba(14, 34, 42, 0.1);
}

.public-page:not(.home-page) .feature-grid article,
.public-page:not(.home-page) .hotel-showcase article,
.public-page:not(.home-page) .package-card {
  border: 0;
  box-shadow: 0 18px 55px rgba(14, 34, 42, 0.1);
}

.public-page:not(.home-page) .package-card h3,
.public-page:not(.home-page) .hotel-showcase h3 {
  font-size: 1.22rem;
}

.public-page:not(.home-page) .button {
  box-shadow: 0 10px 24px rgba(11, 127, 130, 0.18);
}

.public-page:not(.home-page) input,
.public-page:not(.home-page) select,
.public-page:not(.home-page) textarea {
  background: #fbfcfa;
}

/* Commercial polish pass */
.language-trigger:hover {
  border-color: rgba(11, 127, 130, 0.34);
  box-shadow: 0 12px 30px rgba(14, 34, 42, 0.12);
}

.language-options a {
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.language-options a:hover {
  transform: translateX(2px);
}

.public-page:not(.home-page) .main-nav a.active,
.public-page:not(.home-page) .main-nav a:hover {
  background: #eaf4ef;
  color: var(--teal-dark);
}

.package-card,
.feature-grid article,
.hotel-form,
.contact-form,
.contact-card,
.booking-panel,
.content-panel {
  position: relative;
}

.package-card::before,
.feature-grid article::before,
.hotel-form::before,
.contact-form::before,
.booking-panel::before,
.content-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--teal));
}

.package-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(7, 22, 29, 0), rgba(7, 22, 29, 0.34));
  pointer-events: none;
}

.package-card-footer {
  padding-top: 14px;
  border-top: 1px solid rgba(223, 231, 236, 0.74);
}

.package-card-footer strong {
  color: var(--coral);
  font-size: 1.04rem;
}

.public-page:not(.home-page) .filters-bar {
  position: relative;
  z-index: 5;
  margin-top: -28px;
  border: 0;
  box-shadow: 0 24px 70px rgba(14, 34, 42, 0.14);
}

.public-page:not(.home-page) .listing-grid {
  padding-top: 28px;
}

.public-page:not(.home-page) .hotel-form,
.public-page:not(.home-page) .contact-form,
.public-page:not(.home-page) .booking-panel,
.public-page:not(.home-page) .content-panel {
  overflow: hidden;
}

.hotel-showcase article {
  border: 1px solid rgba(223, 231, 236, 0.9);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hotel-showcase article:hover {
  box-shadow: 0 24px 66px rgba(14, 34, 42, 0.14);
  transform: translateY(-3px);
}

.contact-card {
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(7, 22, 29, 0.96), rgba(11, 127, 130, 0.86)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1000&q=80") center/cover;
  color: var(--white);
}

.contact-card .eyebrow {
  color: #f2c76f;
}

.contact-card h2,
.contact-card a,
.contact-card dd {
  color: var(--white);
}

.contact-card dt {
  color: rgba(255, 255, 255, 0.66);
}

.contact-card dl div {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.calendar-popover {
  border: 0;
  box-shadow: 0 26px 72px rgba(14, 34, 42, 0.18);
}

.calendar-head button:hover:not(:disabled),
.calendar-day:hover:not(:disabled) {
  background: #eef7f2;
}

@media (max-width: 640px) {
  .language-options {
    left: 0;
    right: auto;
  }

  .public-page:not(.home-page) .page-hero {
    min-height: 320px;
    padding-top: 118px;
    padding-bottom: 40px;
  }

  .public-page:not(.home-page) .page-hero h1 {
    font-size: 2.35rem;
  }
}
