:root {
  --ivory: #f7f2e9;
  --paper: #fffdfa;
  --ink: #16262c;
  --muted: #66746f;
  --deep: #113630;
  --deep-2: #0d2521;
  --jade: #194e46;
  --copper: #b88a4f;
  --champagne: #e5ca90;
  --brand: #143f39;
  --brand-dark: #0f312c;
  --whatsapp: #1fa463;
  --whatsapp-dark: #168751;
  --line: rgba(21, 58, 53, 0.14);
  --glass: rgba(255, 255, 255, 0.12);
  --shadow-lg: 0 38px 74px rgba(13, 37, 33, 0.18);
  --shadow-md: 0 20px 46px rgba(13, 37, 33, 0.12);
  --shadow-sm: 0 10px 24px rgba(13, 37, 33, 0.08);
  --radius-card: 10px;
  --radius-image: 20px;
  --container: min(1240px, calc(100vw - 40px));
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Poppins", "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #faf8f4;
  line-height: 1.64;
}

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

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

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--deep);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(84px, 9vw, 116px) 0;
  background: #fff;
}

.section-soft {
  background: linear-gradient(180deg, #fdfbf7 0%, #f6f1e8 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 900;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

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

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

.section-points li {
  position: relative;
  padding-left: 28px;
  color: rgba(21, 58, 53, 0.9);
  font-size: 1.02rem;
}

.section-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(167, 122, 75, 0.18);
  box-shadow: inset 0 0 0 3px rgba(167, 122, 75, 0.58);
}

.section-points-centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

h1,
h2,
h3,
.stat-number,
.fact-card strong,
.contact-card strong,
.travel-card span,
.layout-monthly {
  font-family: "DM Serif Display", "Playfair Display", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  letter-spacing: 0.01em;
}

h1 {
  margin: 0;
  font-size: clamp(3.8rem, 9vw, 7.4rem);
  line-height: 0.92;
  text-wrap: balance;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2.85rem, 5.5vw, 4.75rem);
  line-height: 1.08;
  text-wrap: balance;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.32rem;
}

p {
  margin: 0 0 16px;
  line-height: 1.72;
}

.button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-4px);
}

.button-primary {
  background: linear-gradient(135deg, #efd7a4, #ddb06c);
  color: #2c2417;
  border-color: rgba(146, 108, 50, 0.26);
  box-shadow: 0 18px 34px rgba(121, 89, 38, 0.22);
}

.button-primary:hover {
  background: linear-gradient(135deg, #f2dda9, #e1b56f);
  box-shadow:
    0 22px 38px rgba(121, 89, 38, 0.28),
    0 0 0 1px rgba(218, 183, 111, 0.46);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(17, 54, 48, 0.14);
  color: var(--deep);
  box-shadow: 0 10px 22px rgba(13, 37, 33, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 252, 246, 0.9);
  border-bottom: 1px solid rgba(22, 43, 54, 0.08);
  color: var(--ink);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled,
.site-header:has(.site-nav.is-open) {
  background: rgba(255, 253, 249, 0.96);
  border-color: rgba(22, 43, 54, 0.08);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(22, 43, 54, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  width: clamp(96px, 9.2vw, 128px);
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.site-nav a {
  color: currentColor;
  opacity: 0.78;
  font-size: 0.9rem;
  transition: opacity 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
  color: var(--champagne);
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a.is-active {
  color: var(--jade);
}

.header-cta {
  min-height: 46px;
  padding: 0 18px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(22, 43, 54, 0.08);
}

.site-header.scrolled .menu-toggle,
.site-header:has(.site-nav.is-open) .menu-toggle {
  background: rgba(22, 43, 54, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto 4px;
  background: currentColor;
  border-radius: 2px;
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: clamp(20px, 3.4vh, 34px) 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbf8f2 0%, #fffdf9 56%, #ffffff 100%),
    radial-gradient(circle at 8% 18%, rgba(25, 78, 70, 0.06), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(229, 202, 144, 0.08), transparent 28%);
}

.hero-shell {
  width: 100%;
  height: 100%;
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  padding-inline: clamp(4px, 1.2vw, 18px);
}

.hero-copy {
  max-width: 650px;
  display: grid;
  align-content: center;
  align-self: center;
  padding-left: 0;
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 900;
  font-size: 0.78rem;
}

.hero-display-title,
.hero-price-line,
.hero-monthly-line {
  font-family: "DM Serif Display", "Playfair Display", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.title-line {
  display: inline;
}

.hero-display-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(3.5rem, 7.4vw, 6.4rem);
  line-height: 0.92;
}

.hero-price-line {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
}

.hero-monthly-line {
  margin: 0 0 20px;
  color: var(--deep);
  font-size: clamp(1.34rem, 2.2vw, 1.9rem);
  line-height: 1.2;
}

.hero-actions {
  margin-top: 10px;
}

.hero-support-line {
  max-width: 530px;
  margin: 0 0 34px;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(17, 42, 54, 0.76);
  line-height: 1.6;
}

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

.hero-points li {
  position: relative;
  padding: 0 16px;
  color: var(--deep);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.15;
}

.hero-points li:first-child {
  padding-left: 0;
}

.hero-points li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(22, 43, 54, 0.22);
  transform: translateY(-50%);
}

.route-pill,
.info-chip,
.facility-chip,
.trust-badges span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
}

.hero-actions,
.contact-actions,
.route-pill-row,
.info-chip-row,
.facility-chip-grid,
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  color: rgba(22, 43, 54, 0.76);
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.hero-trust strong {
  color: var(--deep);
}

.hero-visual {
  align-self: stretch;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 0;
  min-width: 0;
}

.hero-frame {
  overflow: hidden;
  width: min(100%, 600px);
  aspect-ratio: 0.95 / 1.03;
  border-radius: 24px;
  padding: 0;
  display: grid;
  align-items: center;
  background: linear-gradient(180deg, #f6f4ef 0%, #ece6db 100%);
  box-shadow:
    0 42px 80px rgba(13, 37, 33, 0.22),
    0 12px 32px rgba(13, 37, 33, 0.14);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 54% 24%;
  transform: scale(1.06);
  filter: brightness(1.14) contrast(1.08) saturate(1.08) hue-rotate(-4deg);
}

.highlight-grid,
.travel-grid,
.fact-grid,
.layout-grid,
.gallery-grid,
.contact-meta {
  display: grid;
  gap: 18px;
}

.highlight-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.highlight-card,
.travel-card,
.fact-card,
.layout-card,
.contact-card,
.contact-form-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.highlight-card {
  min-height: 180px;
  padding: 24px 20px;
  display: grid;
  align-content: end;
}

.stat-number {
  display: block;
  margin-bottom: 16px;
  color: var(--copper);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.9;
}

.highlight-card h3,
.travel-card strong,
.fact-card strong,
.contact-card h3 {
  color: var(--deep);
}

.highlight-card p,
.travel-card p,
.fact-card span,
.section-heading p:last-child,
.layout-fit,
.map-link-inline,
.contact-copy p,
.form-note {
  color: var(--muted);
}

.section-cta {
  margin-top: 26px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: var(--radius-card);
  background: var(--deep);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.section-cta span {
  font-weight: 800;
}

.why-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.why-copy {
  display: grid;
  align-content: center;
  gap: 24px;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.why-list li {
  position: relative;
  padding-left: 28px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.42;
  color: rgba(21, 58, 53, 0.9);
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(167, 122, 75, 0.18);
  box-shadow: inset 0 0 0 3px rgba(167, 122, 75, 0.58);
}

.why-image img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.05) saturate(1.05);
}

.demand-meter {
  padding: 18px 20px 20px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(214, 185, 128, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 232, 0.96));
  border: 1px solid rgba(176, 133, 83, 0.2);
  box-shadow:
    0 16px 30px rgba(13, 37, 33, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.demand-meter-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.demand-meter-copy {
  display: grid;
  gap: 8px;
}

.demand-meter-chip {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(191, 82, 55, 0.1);
  color: #b44c33;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demand-meter-head strong {
  color: var(--deep);
  font-size: 1.1rem;
  line-height: 1.2;
}

.demand-meter-tag {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(176, 133, 83, 0.14);
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demand-meter-bar {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(22, 43, 54, 0.08);
  box-shadow: inset 0 1px 2px rgba(22, 43, 54, 0.08);
}

.demand-meter-bar span {
  position: relative;
  display: block;
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, #d7b46d 0%, #c58c4d 52%, #b44c33 100%);
  box-shadow: 0 0 18px rgba(196, 130, 71, 0.3);
}

.demand-meter-bar span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.32) 46%, transparent 68%);
  transform: translateX(-120%);
  animation: demandSweep 2.4s ease-in-out infinite;
}

.demand-meter-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.demand-meter-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c25639;
  box-shadow: 0 0 0 8px rgba(194, 86, 57, 0.12);
  flex: 0 0 auto;
}

.demand-meter p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.location-shell,
.info-shell,
.package-shell,
.facilities-shell,
.contact-shell {
  display: grid;
  gap: 28px;
}

.travel-card,
.fact-card,
.contact-card {
  padding: 22px;
}

.route-pill,
.info-chip,
.facility-chip {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 43, 54, 0.08);
  color: var(--deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.plan-card,
.image-card,
.feature-image,
.mini-image-card {
  overflow: hidden;
  border-radius: var(--radius-image);
  box-shadow: var(--shadow-lg);
}

.plan-card img,
.image-card img,
.feature-image img,
.mini-image-card img {
  width: 100%;
  height: 100%;
}

.location-map-wrap {
  display: grid;
  gap: 10px;
  align-content: center;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  justify-items: stretch;
}

.location-map-wrap .plan-card {
  padding: 16px;
  background: #faf6ef;
  border: 1px solid rgba(21, 58, 53, 0.1);
}

.location-map-wrap .plan-card img {
  aspect-ratio: 1.16 / 1;
  object-fit: contain;
  background: #faf6ef;
}

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

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 13px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(21, 58, 53, 0.1);
}

.location-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(21, 58, 53, 0.12);
  box-shadow: inset 0 0 0 5px rgba(21, 58, 53, 0.46);
  flex: 0 0 auto;
  margin-top: 1px;
}

.location-item strong {
  display: block;
  color: var(--deep);
  margin-bottom: 4px;
}

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

.location-copy .button {
  margin-top: 18px;
}

.split-heading {
  max-width: 460px;
}

.package-copy {
  display: grid;
  align-content: center;
  gap: 20px;
}

.package-card {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(219, 197, 155, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 236, 0.96));
  border: 1px solid rgba(21, 58, 53, 0.1);
  box-shadow: 0 22px 48px rgba(13, 37, 33, 0.1);
  display: grid;
  gap: 18px;
}

.package-badge {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(176, 133, 83, 0.12);
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
}

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

.package-feature {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 58, 53, 0.08);
  box-shadow: 0 10px 22px rgba(12, 36, 31, 0.06);
}

.package-feature span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-feature strong {
  display: block;
  color: var(--deep);
  font-size: 1.06rem;
  line-height: 1.28;
}

.info-panel,
.facilities-copy {
  display: grid;
  align-content: start;
  gap: 20px;
}

.project-info-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(24px, 3vw, 34px);
  align-items: start;
}

.project-summary-card {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(18, 48, 45, 0.96), rgba(24, 63, 57, 0.92)),
    radial-gradient(circle at top right, rgba(217, 190, 140, 0.18), transparent 30%);
  color: #f8f3ea;
  box-shadow: 0 24px 42px rgba(12, 36, 31, 0.18);
  display: grid;
  gap: 20px;
}

.project-summary-kicker {
  color: rgba(233, 216, 183, 0.9);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-summary-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.02;
}

.project-summary-card p {
  margin: 0;
  color: rgba(248, 243, 234, 0.8);
  font-size: 1rem;
  line-height: 1.62;
}

.project-summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-summary-pills span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.project-summary-card .button {
  justify-self: start;
}

.project-visual-panel {
  display: grid;
  gap: 18px;
}

.project-feature-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  border: 1px solid rgba(21, 58, 53, 0.08);
  background: #fff;
  box-shadow: 0 18px 34px rgba(12, 36, 31, 0.1);
}

.project-feature-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.project-feature-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(17, 42, 54, 0.7);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.project-fact-grid {
  gap: 14px;
}

.fact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fact-card {
  padding: 20px 18px;
}

.fact-card strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.28;
}

.fact-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes demandSweep {
  0% {
    transform: translateX(-120%);
  }

  60%,
  100% {
    transform: translateX(140%);
  }
}

.layout-grid {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 4px 0 10px;
}

.layout-browser {
  overflow: hidden;
  padding: clamp(18px, 2.8vw, 30px);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(219, 197, 155, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 236, 0.96));
  border: 1px solid rgba(21, 58, 53, 0.1);
  box-shadow: 0 22px 48px rgba(13, 37, 33, 0.1);
}

.layout-browser-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.layout-browser-pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(21, 58, 53, 0.09);
  color: var(--deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.layout-tab-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.layout-tab {
  appearance: none;
  border: 1px solid rgba(21, 58, 53, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  padding: 14px 14px 13px;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.layout-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 133, 83, 0.22);
}

.layout-tab.is-active {
  background: linear-gradient(180deg, rgba(234, 220, 194, 0.82), rgba(255, 255, 255, 0.98));
  border-color: rgba(176, 133, 83, 0.26);
  box-shadow: 0 10px 24px rgba(107, 82, 45, 0.12);
}

.layout-tab span,
.layout-tab small {
  display: block;
}

.layout-tab span {
  margin-bottom: 4px;
  color: var(--deep);
  font-weight: 900;
}

.layout-tab small {
  color: var(--muted);
  font-size: 0.84rem;
}

.layout-stage {
  min-height: 0;
}

.layout-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(22px, 2.8vw, 34px);
  align-items: center;
}

.layout-stage-visual {
  display: grid;
}

.layout-stage-frame {
  min-height: 490px;
  margin: 0;
  padding: 10px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(21, 58, 53, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 12px 28px rgba(13, 37, 33, 0.08);
}

.layout-stage-frame img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 468px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.layout-stage-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.layout-stage-kicker {
  margin: 0;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.layout-stage-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.layout-stage-title-row h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.layout-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.layout-top h3 {
  margin: 0;
}

.layout-size {
  color: var(--copper);
  font-weight: 900;
  font-size: 1.05rem;
  white-space: nowrap;
  text-align: right;
}

.layout-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.layout-spec {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(22, 43, 54, 0.06);
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.layout-spec::before {
  content: "";
  width: 13px;
  height: 13px;
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.layout-spec-bath::before {
  border-radius: 50%;
}

.layout-price-block {
  display: grid;
  gap: 5px;
  padding: 12px 13px 11px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(217, 190, 140, 0.12), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(176, 133, 83, 0.16);
}

.layout-offer-pill {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(176, 133, 83, 0.12);
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.layout-discount-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.layout-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.layout-price-original {
  color: rgba(17, 42, 54, 0.46);
  font-size: 0.96rem;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.layout-price-arrow {
  color: rgba(17, 42, 54, 0.46);
  font-size: 1rem;
  line-height: 1;
}

.layout-price-nett {
  color: var(--copper);
  font-size: clamp(1.28rem, 1.9vw, 1.58rem);
  line-height: 1.05;
}

.layout-monthly {
  color: var(--jade);
  font-size: 1.08rem;
}

.layout-fit {
  margin: 0;
  min-height: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.layout-stage-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
}

.layout-stage-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.layout-stage .button {
  width: auto;
  margin-top: 0;
  min-height: 46px;
  padding: 0 18px;
}

.facilities-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.facility-visual-stack {
  display: grid;
  gap: 14px;
}

.facility-plan-visual {
  margin: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(21, 58, 53, 0.09);
  box-shadow:
    0 20px 40px rgba(12, 36, 31, 0.1),
    0 8px 18px rgba(12, 36, 31, 0.08);
}

.facility-plan-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.facility-groups {
  display: grid;
  gap: 14px;
}

.facility-group-card {
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(21, 58, 53, 0.09);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(12, 36, 31, 0.08);
}

.facility-group-card h3 {
  margin: 0 0 12px;
  color: var(--deep);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

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

.facility-items li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.32;
}

.facility-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(140deg, #b08553, #d9be8c);
  box-shadow: 0 0 0 1px rgba(176, 133, 83, 0.2);
}

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

.facility-mini-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(21, 58, 53, 0.08);
  background: #fff;
  box-shadow: 0 10px 22px rgba(12, 36, 31, 0.08);
}

.facility-mini-card img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
}

.facility-mini-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(17, 42, 54, 0.72);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(10px);
}

.gallery-grid {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 118px;
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-image);
  box-shadow: var(--shadow-sm);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 340ms ease;
}

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

.gallery-card--wide {
  grid-column: span 8;
  grid-row: span 4;
}

.gallery-card--standard {
  grid-column: span 4;
  grid-row: span 3;
}

.final-cta {
  color: #f8f3ea;
  background:
    linear-gradient(135deg, rgba(13, 37, 33, 0.96), rgba(21, 58, 53, 0.94)),
    url("assets/site/front-view.webp") center / cover no-repeat;
}

.final-cta .eyebrow {
  color: var(--champagne);
}

.final-cta h2,
.final-cta h3 {
  color: #fff;
}

.final-cta p,
.final-cta .form-note,
.final-cta .contact-card span {
  color: rgba(248, 243, 234, 0.76);
}

.trust-badges {
  margin: 18px 0 28px;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 800;
}

.trust-badges span::before {
  content: "";
  width: 10px;
  height: 6px;
  margin-right: 9px;
  border-left: 2px solid var(--champagne);
  border-bottom: 2px solid var(--champagne);
  transform: rotate(-45deg);
}

.final-cta .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.contact-center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 22px;
}

.contact-center p {
  max-width: 600px;
  margin-inline: auto;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.contact-card span {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.contact-card strong a {
  color: #fff;
}

.contact-form-card {
  padding: 30px;
}

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

.lead-form-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: left;
}

.contact-lead-form {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin-inline: auto;
}

.lead-form-compact label:last-of-type,
.lead-form-compact button {
  grid-column: 1 / -1;
}

.lead-form-compact button {
  margin-top: 6px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.lead-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 52px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none'%3E%3Cpath d='M2 2.25L7 7.25L12 2.25' stroke='%23E9D5A8' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, calc(100% - 18px) 50%;
  background-size: auto, 14px 10px;
  cursor: pointer;
}

.lead-form select option {
  color: var(--ink);
  background: #fff;
}

.select-field {
  position: relative;
}

.select-field::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(248, 243, 234, 0.58);
}

.lead-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
}

.contact-inline {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(248, 243, 234, 0.82);
  font-weight: 700;
}

.site-footer {
  padding: 24px 0 108px;
  background: var(--deep-2);
  color: rgba(248, 243, 234, 0.68);
}

.footer-inner {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  min-width: 148px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ead8b7, #d9bf92);
  color: #2d2a24;
  font-weight: 900;
  box-shadow: 0 20px 36px rgba(107, 82, 45, 0.32);
}

.floating-whatsapp::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 5px #8d744b;
}

.mobile-cta-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 900px) {
  .hero-display-title .title-line,
  .split-heading .title-line {
    display: block;
    width: fit-content;
    white-space: nowrap;
  }

  .hero-display-title {
    width: max-content;
    max-width: none;
    font-size: clamp(2.72rem, 5vw, 4.95rem);
  }

  .hero-shell {
    max-width: 1220px;
    margin-inline: auto;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    justify-content: center;
    gap: clamp(48px, 5vw, 72px);
    padding-inline: clamp(10px, 1.4vw, 22px);
  }

  .hero-copy {
    max-width: 560px;
    justify-self: start;
  }

  .hero-visual {
    justify-items: start;
  }

  .hero-frame {
    width: min(100%, 620px);
    aspect-ratio: 0.97 / 1.02;
    background: #e7dece;
    box-shadow:
      0 38px 68px rgba(13, 37, 33, 0.22),
      0 14px 28px rgba(13, 37, 33, 0.14);
  }

  .hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 24%;
    transform: scale(1.07);
  }

  .location-shell,
  .package-shell,
  .contact-shell,
  .why-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .project-summary-card {
    min-height: 100%;
  }

  .location-shell {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .package-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

}

@media (max-width: 1100px) {
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border-radius: 8px;
    background: rgba(255, 250, 242, 0.96);
    border: 1px solid rgba(22, 43, 54, 0.1);
    color: var(--ink);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .why-shell {
    gap: 28px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 86px;
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: clamp(90px, 24vw, 112px);
  }

  .hero {
    min-height: calc(100svh - 68px);
    height: auto;
    padding: 18px 0 26px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 18px;
    align-content: start;
    padding-inline: 0;
  }

  .hero-copy {
    max-width: none;
    padding-left: 0;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 0.74rem;
  }

  .hero-display-title {
    margin-bottom: 14px;
    font-size: clamp(2.72rem, 11vw, 3.95rem);
  }

  .hero-price-line {
    margin-bottom: 12px;
    font-size: clamp(1.78rem, 7.2vw, 2.34rem);
  }

  .hero-monthly-line {
    margin-bottom: 14px;
    font-size: clamp(1.1rem, 5vw, 1.42rem);
  }

  .hero-points {
    margin-bottom: 24px;
    gap: 8px 0;
  }

  .hero-points li {
    padding: 0 9px;
    font-size: 0.82rem;
  }

  .hero-visual {
    justify-items: stretch;
  }

  .hero-frame {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    max-height: min(30vh, 248px);
    border-radius: 18px;
    padding: 10px 8px 0;
  }

  .hero-frame img {
    min-height: 0;
    width: 108%;
    object-position: 58% bottom;
    transform: translateY(2px) scale(1.01);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero-trust {
    margin-top: 12px;
    font-size: 0.72rem;
    gap: 6px;
  }

  .why-shell,
  .location-shell,
  .package-shell,
  .facilities-shell,
  .project-info-shell,
  .lead-form-compact {
    grid-template-columns: 1fr;
  }

  .project-fact-grid,
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .facility-plan-visual {
    padding: 12px;
  }

  .facility-items {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .facility-mini-gallery {
    grid-template-columns: 1fr;
  }

  .why-list li,
  .section-points li,
  .location-item strong {
    font-size: 1rem;
  }

  .why-list li {
    line-height: 1.4;
  }

  .demand-meter {
    padding: 14px 15px 16px;
  }

  .demand-meter-head {
    display: grid;
    gap: 4px;
  }

  .demand-meter-tag {
    width: fit-content;
  }

  .package-feature-grid {
    grid-template-columns: 1fr;
  }

  .layout-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4px 0 10px;
  }

  .layout-browser {
    padding: 16px 14px;
  }

  .layout-browser-top {
    gap: 8px;
    margin-bottom: 14px;
  }

  .layout-browser-pill {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .layout-tab-row {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin: 0 -2px 16px;
    padding: 0 2px 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .layout-tab-row::-webkit-scrollbar {
    display: none;
  }

  .layout-tab {
    flex: 0 0 136px;
    min-width: 136px;
    padding: 12px 14px;
    border-radius: 16px;
    scroll-snap-align: start;
  }

  .layout-tab span {
    margin-bottom: 3px;
    font-size: 0.98rem;
  }

  .layout-tab small {
    font-size: 0.78rem;
  }

  .layout-panel {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .layout-stage-frame {
    min-height: 0;
    padding: 8px;
  }

  .layout-stage-frame img {
    max-height: 408px;
  }

  .project-summary-card {
    padding: 22px 20px;
    gap: 16px;
  }

  .project-summary-card h3 {
    font-size: 2rem;
  }

  .project-summary-card .button {
    justify-self: stretch;
  }

  .project-feature-card figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 0.84rem;
  }

  .layout-stage-title-row {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
  }

  .layout-stage-actions {
    align-items: stretch;
  }

  .layout-stage .button {
    width: 100%;
  }

  .layout-image {
    aspect-ratio: 1.18 / 1;
    min-height: 0;
    padding: 16px;
    margin: 0;
  }

  .mobile-cta-bar .button-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-card,
  .gallery-card--wide,
  .gallery-card--standard {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }

  .contact-center {
    gap: 18px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px 14px;
    background: rgba(17, 42, 54, 0.92);
    box-shadow: 0 -18px 40px rgba(11, 27, 36, 0.22);
    backdrop-filter: blur(18px);
  }

  .mobile-cta-bar .button {
    min-height: 54px;
    padding: 0 12px;
    font-size: 0.8rem;
  }
}

@media (min-width: 761px) and (max-width: 899px) {
  .hero {
    min-height: calc(100svh - var(--header-height));
    height: auto;
    padding: 28px 0 34px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 24px;
    align-content: start;
    padding-inline: 0;
  }

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

  .hero-display-title {
    font-size: clamp(3.2rem, 8vw, 4.7rem);
  }

  .hero-price-line {
    font-size: clamp(2rem, 4.6vw, 2.8rem);
  }

  .hero-monthly-line {
    font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  }

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

  .hero-visual {
    justify-items: center;
  }

  .hero-frame {
    width: min(100%, 560px);
    max-height: 340px;
    aspect-ratio: 1.12 / 0.88;
    border-radius: 22px;
  }

  .hero-frame img {
    object-position: 55% 26%;
    transform: scale(1.04);
  }

  .contact-shell,
  .why-shell,
  .location-shell,
  .package-shell {
    grid-template-columns: 1fr;
  }
}
