:root {
  --green-950: #0b2c1a;
  --green-900: #123d25;
  --green-800: #18502e;
  --green-700: #266c37;
  --green-500: #66a51f;
  --green-300: #a8cc69;
  --gold: #d9a21b;
  --gold-light: #f3cc57;
  --cream: #f5f1e6;
  --cream-soft: #fbfaf6;
  --ink: #172019;
  --muted: #677068;
  --line: rgba(18, 61, 37, .18);
  --white: #fff;
  --nav-height: 82px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-soft);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
}

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

::selection {
  color: var(--white);
  background: var(--green-700);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 2000;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--green-950);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-space {
  padding: 110px 0;
}

.section-kicker,
.eyebrow,
.modal-kicker {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: 1rem;
  color: var(--green-700);
}

.section-title {
  max-width: 820px;
  margin: 0 0 1.5rem;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.section-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.btn {
  border-radius: 0;
  font-weight: 700;
  letter-spacing: .01em;
}

.btn-lg {
  padding: .9rem 1.35rem;
}

.btn-brand {
  color: var(--green-950);
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.btn-brand:hover,
.btn-brand:focus {
  color: var(--green-950);
  border-color: #ffd970;
  background: #ffd970;
}

.btn-dark-green {
  color: var(--white);
  border-color: var(--green-900);
  background: var(--green-900);
}

.btn-dark-green:hover,
.btn-dark-green:focus {
  color: var(--white);
  border-color: var(--green-700);
  background: var(--green-700);
}

.text-link {
  display: inline-flex;
  gap: .75rem;
  align-items: center;
  color: var(--green-800);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.text-link:hover {
  color: var(--gold);
}

/* Navigation */
.site-navbar {
  min-height: var(--nav-height);
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(to bottom, rgba(4, 23, 12, .75), rgba(4, 23, 12, .12));
  transition: min-height .25s ease, background-color .25s ease, border-color .25s ease;
}

.site-navbar.is-scrolled {
  min-height: 68px;
  border-bottom-color: var(--line);
  background: rgba(11, 44, 26, .96);
  backdrop-filter: blur(12px);
}

.brand-lockup {
  display: inline-flex;
  gap: .75rem;
  align-items: center;
  color: var(--white) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.05;
}

.brand-lockup img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.38);
}

.brand-lockup span {
  max-width: 155px;
}

.brand-lockup strong {
  display: block;
  font-size: .72em;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-navbar .nav-link {
  position: relative;
  padding: .75rem .7rem !important;
  color: rgba(255,255,255,.86) !important;
  font-size: .84rem;
  font-weight: 700;
}

.site-navbar .nav-link::after {
  position: absolute;
  right: .7rem;
  bottom: .45rem;
  left: .7rem;
  height: 1px;
  content: "";
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link:focus::after,
.site-navbar .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero-video,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: .78;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 27, 14, .92) 0%, rgba(4, 27, 14, .65) 45%, rgba(4, 27, 14, .18) 100%),
    linear-gradient(0deg, rgba(4, 27, 14, .62) 0%, transparent 50%);
}

.hero-grid {
  opacity: .1;
  background-image:
    linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, #000 35%, #000);
}

.hero-content {
  z-index: 2;
}

.hero-title {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 8.7rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.065em;
}

.hero-title span {
  display: block;
  color: var(--gold-light);
}

.hero-lead {
  max-width: 720px;
  margin: 1.8rem 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.7;
}

.hero-facts {
  border-top: 1px solid rgba(255,255,255,.45);
  border-bottom: 1px solid rgba(255,255,255,.45);
}

.hero-facts > div {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.hero-facts > div:last-child {
  border-bottom: 0;
}

.hero-facts span {
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-facts strong {
  margin-top: .25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.scroll-cue {
  position: absolute;
  right: 50%;
  bottom: 22px;
  z-index: 4;
  display: block;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 20px;
  transform: translateX(50%);
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 10px;
  background: var(--white);
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 16px); }
}

/* Ticker */
.news-ticker {
  overflow: hidden;
  color: var(--green-950);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--gold-light);
}

.news-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.news-ticker span {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-ticker span::before {
  width: 6px;
  height: 6px;
  margin-right: 2rem;
  content: "";
  border-radius: 50%;
  background: var(--green-800);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* Project */
.feature-list {
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--green-700);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-row h3 {
  margin: .1rem 0 .3rem;
  color: var(--green-950);
  font-size: 1rem;
  font-weight: 800;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
}

.media-frame::before {
  position: absolute;
  inset: 18px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(255,255,255,.65);
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.75,.25,1);
}

.media-frame:hover img {
  transform: scale(1.025);
}

.media-frame-tall {
  height: min(780px, 82vh);
}

.media-note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-width: 220px;
  padding: 1.1rem 1.4rem;
  color: var(--white);
  background: var(--green-900);
}

.media-note span {
  display: block;
  margin-bottom: .2rem;
  color: rgba(255,255,255,.65);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.media-note strong {
  font-size: 1.35rem;
}

/* Investment */
.investment-section {
  background: var(--cream);
}

.investment-grid {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.investment-item {
  min-height: 285px;
  padding: 2.3rem;
  border-right: 1px solid var(--line);
}

.investment-item:last-child {
  border-right: 0;
}

.investment-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.investment-item h3 {
  margin: 3.4rem 0 .8rem;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  font-weight: 400;
}

.investment-item p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.project-video {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--green-950);
}

.project-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-block {
  padding: 2.2rem;
  border-left: 4px solid var(--gold);
  background: var(--cream-soft);
}

.quote-block p {
  margin: 0 0 1.5rem;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.2;
}

.quote-block a {
  color: var(--green-800);
  font-weight: 800;
  text-decoration: none;
}

/* Giveaway */
.giveaway-section {
  background: var(--green-950);
}

.giveaway-shell {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  background: var(--green-900);
}

.giveaway-image {
  align-self: stretch;
  min-height: 740px;
  overflow: hidden;
}

.giveaway-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.giveaway-content {
  padding: clamp(2rem, 6vw, 5rem);
  color: rgba(255,255,255,.78);
}

.giveaway-content h2 {
  margin: 0 0 1.4rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
}

.giveaway-content > p:not(.eyebrow):not(.legal-note) {
  font-size: 1.08rem;
  line-height: 1.75;
}

.giveaway-details {
  margin: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.giveaway-details > div {
  display: grid;
  grid-template-columns: max-content;
  gap: 0rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.giveaway-details span {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.giveaway-details strong {
  color: var(--white);
  text-align: right;
}

.legal-note {
  max-width: 500px;
  margin: 1rem 0 0;
  color: rgba(255,255,255,.52);
  font-size: .75rem;
  line-height: 1.5;
}

/* Gallery */
.gallery-section {
  overflow: hidden;
}

.gallery-controls {
  gap: .5rem;
}

.gallery-button {
  width: 52px;
  height: 52px;
  color: var(--green-950);
  border: 1px solid var(--line);
  background: transparent;
  font-size: 1.3rem;
  transition: color .2s ease, background .2s ease;
}

.gallery-button:hover,
.gallery-button:focus {
  color: var(--white);
  background: var(--green-900);
}

.gallery-scroller {
  display: grid;
  grid-auto-columns: minmax(290px, 34vw);
  grid-auto-flow: column;
  gap: 1rem;
  padding: 0 max(1rem, calc((100vw - 1140px) / 2));
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--green-700) transparent;
}

.gallery-card {
  position: relative;
  min-height: 510px;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--green-950);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88;
  transition: opacity .3s ease, transform .7s ease;
}

.gallery-card:hover img {
  opacity: 1;
  transform: scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3rem 1.3rem 1.2rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  background: linear-gradient(transparent, rgba(5, 29, 15, .9));
}

/* Access */
.access-section {
  background: var(--white);
}

.landscape-frame {
  aspect-ratio: 16 / 11;
}

/* Location */
.location-section {
  color: var(--white);
  background: var(--green-950);
}

.map-wrap iframe {
  display: block;
  min-height: 620px;
  filter: saturate(.75) contrast(1.02);
}

.location-copy {
  position: relative;
  min-height: 620px;
  padding: clamp(3rem, 6vw, 6rem);
  overflow: hidden;
}

.location-copy h2 {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 0 1.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 1;
}

.location-copy > p,
.location-actions {
  position: relative;
  z-index: 2;
}

.location-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255,255,255,.68);
  font-size: 1.06rem;
  line-height: 1.75;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.location-plan {
  position: absolute;
  right: -70px;
  bottom: -320px;
  width: 300px;
  opacity: .12;
  transform: rotate(8deg);
  filter: invert(1);
}

/* CTA + Footer */
.contact-cta {
  padding: 85px 0;
  color: var(--green-950);
  background: var(--gold-light);
}

.contact-cta h2 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 1.05;
}

.site-footer {
  padding: 70px 0 25px;
  color: rgba(255,255,255,.72);
  background: #071f12;
}

.footer-brand {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.05;
  text-decoration: none;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.2);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem 1rem;
}

.footer-links a,
.footer-social,
.footer-phone {
  color: rgba(255,255,255,.7);
  text-decoration: none;
}

.footer-links a:hover,
.footer-social:hover,
.footer-phone:hover {
  color: var(--gold-light);
}

.footer-phone,
.footer-social {
  display: block;
}

.footer-phone {
  margin-bottom: .5rem;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 55px;
  padding-top: 22px;
  color: rgba(255,255,255,.46);
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .78rem;
}

/* Floating actions */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1090;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  align-items: flex-end;
}

.floating-menu {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  align-items: flex-end;
}

.floating-item,
.floating-toggle {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  background: var(--green-700);
  box-shadow: 0 8px 25px rgba(3, 24, 12, .22);
  text-decoration: none;
  cursor: pointer;
}

.floating-item {
  position: relative;
  opacity: 0;
  transform: translateY(12px) scale(.92);
  pointer-events: none;
  transition: opacity .2s ease, transform .25s ease, background .2s ease;
}

.floating-actions.is-open .floating-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-actions.is-open .floating-item:nth-child(1) { transition-delay: 100ms; }
.floating-actions.is-open .floating-item:nth-child(2) { transition-delay: 60ms; }
.floating-actions.is-open .floating-item:nth-child(3) { transition-delay: 20ms; }

.floating-item:hover,
.floating-item:focus {
  color: var(--white);
  background: var(--green-900);
}

.floating-toggle {
  width: 66px;
  height: 66px;
  border: 7px solid var(--white);
  background: var(--green-500);
}

.floating-item svg,
.floating-toggle svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-toggle .icon-close {
  display: none;
}

.floating-actions.is-open .icon-menu {
  display: none;
}

.floating-actions.is-open .icon-close {
  display: block;
}

.floating-label {
  position: absolute;
  right: 68px;
  padding: .4rem .65rem;
  color: var(--white);
  border-radius: 3px;
  background: rgba(7,31,18,.92);
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.floating-item:hover .floating-label,
.floating-item:focus .floating-label {
  opacity: 1;
  transform: translateX(0);
}

/* Simulator */
.simulator-modal {
  overflow: hidden;
  border: 0;
  border-radius: 0;
}

.simulator-modal .modal-header,
.simulator-modal .modal-body,
.simulator-modal .modal-footer {
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}

.simulator-modal .modal-header {
  padding-top: 1.5rem;
  padding-bottom: 1.2rem;
  color: var(--white);
  border-bottom: 0;
  background: var(--green-900);
}

.simulator-modal .btn-close {
  filter: invert(1);
}

.modal-kicker {
  color: var(--gold-light);
}

.simulator-modal .form-control,
.simulator-modal .input-group-text {
  min-height: 48px;
  border-radius: 0;
}

.simulator-result {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.result-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  color: var(--muted);
}

.result-row strong {
  color: var(--ink);
}

.result-total {
  margin-top: 1rem;
  padding: 1.2rem;
  color: var(--white);
  background: var(--green-900);
  text-align: center;
}

.result-total span,
.result-total strong {
  display: block;
}

.result-total span {
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.result-total strong {
  margin-top: .3rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  font-weight: 400;
}

.simulator-modal .modal-footer {
  justify-content: flex-start;
  color: var(--muted);
  border-top-color: var(--line);
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 991.98px) {
  :root { --nav-height: 72px; }

  .section-space { padding: 80px 0; }

  .site-navbar {
    min-height: 72px;
    background: rgba(11, 44, 26, .96);
  }

  .site-navbar .navbar-collapse {
    margin-top: .75rem;
    padding: .9rem 0 1.1rem;
    border-top: 1px solid rgba(255,255,255,.14);
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(4, 27, 14, .9) 0%, rgba(4, 27, 14, .48) 70%, rgba(4, 27, 14, .3) 100%);
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1rem;
  }

  .hero-facts > div {
    padding-right: .8rem;
    border-right: 1px solid rgba(255,255,255,.18);
    border-bottom: 0;
  }

  .hero-facts > div:last-child {
    border-right: 0;
  }

  .media-frame-tall {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .investment-item {
    border-bottom: 1px solid var(--line);
  }

  .investment-item:nth-child(2) {
    border-right: 0;
  }

  .investment-item:last-child {
    border-bottom: 0;
  }

  .giveaway-image {
    min-height: auto;
    aspect-ratio: 4 / 4.8;
  }

  .location-copy {
    min-height: 540px;
  }
}

@media (max-width: 767.98px) {
  .section-space { padding: 68px 0; }

  .brand-lockup span { display: none; }

  .hero {
    min-height: 690px;
  }

  .hero-title {
    font-size: clamp(3.8rem, 18vw, 6.1rem);
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

  .hero-facts strong {
    text-align: right;
  }

  .investment-item {
    min-height: auto;
    border-right: 0;
  }

  .investment-item h3 {
    margin-top: 1.8rem;
  }

  .giveaway-details > div {
    grid-template-columns: 1fr;
  }

  .giveaway-details strong {
    text-align: left;
  }

  .gallery-scroller {
    grid-auto-columns: 82vw;
  }

  .gallery-card {
    min-height: 430px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .floating-label {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .hero-content .btn {
    width: 100%;
  }

  .media-note {
    min-width: 0;
    width: 100%;
  }

  .quote-block {
    padding: 1.5rem;
  }

  .giveaway-content {
    padding: 2rem 1.25rem;
  }

  .location-actions .btn {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* VIDEO SECITON KOSKO */
.giveaway-shell {
  overflow: hidden;
  border-radius: 32px;
  background: #0b331d;
}

.giveaway-media,
.giveaway-info {
  display: flex;
}

.giveaway-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 780px;
  border: 0;
  background: #071c10;
  object-fit: cover;
  object-position: center;
}

.giveaway-content {
  display: flex;
  width: 100%;
  min-height: 780px;
  padding: clamp(40px, 5vw, 76px);
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  background: #343434;
}

.giveaway-content h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.giveaway-content > p:not(.eyebrow):not(.legal-note) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.giveaway-intro {
  margin-bottom: 8px;
  font-size: 1.2rem !important;
}

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

.giveaway-feature {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.giveaway-feature-icon {
  display: flex;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(244, 188, 37, 0.14);
  font-size: 1.3rem;
}

.giveaway-feature strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
}

.giveaway-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.45;
}

.giveaway-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.giveaway-details > div {
  padding: 20px 18px;
}

.giveaway-details > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.giveaway-details span,
.giveaway-details strong {
  display: block;
}

.giveaway-details span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.giveaway-details strong {
  color: #ffffff;
  font-size: 0.96rem;
  line-height: 1.4;
}

.giveaway-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.giveaway-phone {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.giveaway-phone:hover {
  color: #f4bc25;
}

.legal-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* Pantallas medianas */
@media (max-width: 1199.98px) {
  .giveaway-video,
  .giveaway-content {
    min-height: 720px;
  }

  .giveaway-content {
    padding: 45px;
  }
}

/* Tablet y móvil */
@media (max-width: 991.98px) {
  .giveaway-media,
  .giveaway-info {
    display: block;
  }

  .giveaway-video {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 760px;
    aspect-ratio: 9 / 16;
    object-fit: cover;
  }

  .giveaway-content {
    min-height: auto;
    padding: 48px 32px;
  }
}

@media (max-width: 767.98px) {
  .giveaway-shell {
    border-radius: 22px;
  }

  .giveaway-content {
    padding: 38px 22px;
  }

  .giveaway-features,
  .giveaway-details {
    grid-template-columns: 1fr;
  }

  .giveaway-details > div {
    padding: 17px 0;
  }

  .giveaway-details > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .giveaway-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .giveaway-actions .btn {
    width: 100%;
  }

  .giveaway-phone {
    text-align: center;
  }
}

/* PDF */

.plans-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(107, 176, 55, 0.2),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(230, 170, 25, 0.12),
      transparent 28%
    ),
    #062d1b;
  color: #ffffff;
}

.plans-section .container {
  z-index: 2;
}

.plans-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.2) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.2) 1px,
      transparent 1px
    );
  background-size: 60px 60px;
  transform: perspective(700px) rotateX(65deg) scale(1.5);
  transform-origin: center bottom;
}

.plans-heading {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.plans-description {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.8;
}

.plans-switcher {
  display: inline-flex;
  gap: 5px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.plans-tab {
  min-height: 48px;
  padding: 10px 22px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.plans-tab:hover {
  color: #ffffff;
}

.plans-tab.is-active {
  background: #e7b126;
  color: #092b1b;
}

.plans-stage {
  position: relative;
  display: grid;
  min-height: 660px;
  place-items: center;
  padding: clamp(35px, 6vw, 80px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  perspective: 1800px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    );
}

.plans-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.11;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.25) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.25) 1px,
      transparent 1px
    );
  background-size: 45px 45px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 30%,
    #000 80%,
    transparent
  );
}

.plans-board-motion {
  position: relative;
  z-index: 3;
  width: min(1080px, 92%);
  opacity: 0;
  transform: translateY(60px) scale(0.93);
}

.plans-stage.is-visible .plans-board-motion {
  animation:
    plansBoardEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    plansBoardFloat 6s ease-in-out 1.2s infinite;
}

.plans-board {
  --plans-rotate-x: 3deg;
  --plans-rotate-y: -5deg;

  position: relative;
  transform-style: preserve-3d;
  transform:
    rotateX(var(--plans-rotate-x))
    rotateY(var(--plans-rotate-y));
  transition:
    transform 0.18s ease-out,
    opacity 0.25s ease;
  will-change: transform;
}

.plans-board::before,
.plans-board::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: 26px;
  pointer-events: none;
}

.plans-board::before {
  z-index: -2;
  background: #b8c7bc;
  transform: translate3d(20px, 22px, -45px);
}

.plans-board::after {
  z-index: -1;
  background: #e0e7e2;
  transform: translate3d(10px, 11px, -22px);
}

.plans-sheet {
  position: relative;
  margin: 0;
  padding: clamp(12px, 1.8vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(5, 47, 28, 0.18);
  border-radius: 26px;
  background: #ffffff;
  color: #0c2e1d;
  transform: translateZ(30px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.plans-image-wrapper {
  display: flex;
  width: 100%;
  aspect-ratio: 1.9 / 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 17px;
  background: #f4f7f5;
}

.plans-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    opacity 0.25s ease,
    transform 0.5s ease;
}

.plans-board.is-switching .plans-image-wrapper img {
  opacity: 0;
  transform: scale(0.98);
}

.plans-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 8px 5px;
}

.plans-caption > div:first-child {
  max-width: 620px;
}

.plans-caption-label {
  display: block;
  margin-bottom: 7px;
  color: #728078;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plans-caption h3 {
  margin: 0 0 7px;
  color: #0b321e;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

.plans-caption p {
  margin: 0;
  color: #68736c;
  font-size: 0.92rem;
  line-height: 1.6;
}

.plans-caption-actions {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 auto;
}

.plans-scale {
  color: #748078;
  font-size: 0.78rem;
  font-weight: 700;
}

.plans-expand-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 0;
  border-radius: 100px;
  background: #0b3e25;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.plans-expand-button:hover {
  background: #17613a;
  transform: translateY(-2px);
}

.plans-floating-info {
  position: absolute;
  z-index: 5;
  display: flex;
  min-width: 210px;
  padding: 17px 20px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(3, 39, 23, 0.75);
  backdrop-filter: blur(15px);
}

.plans-floating-info span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plans-floating-info strong {
  font-size: 0.9rem;
}

.plans-floating-info--left {
  top: 38px;
  left: 34px;
  animation: plansFloatingInfo 5s ease-in-out infinite;
}

.plans-floating-info--right {
  right: 34px;
  bottom: 38px;
  animation: plansFloatingInfo 5s ease-in-out 1.5s infinite;
}

.plans-orbit {
  position: absolute;
  border: 1px solid rgba(231, 177, 38, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.plans-orbit--one {
  width: 420px;
  height: 420px;
  top: -250px;
  right: -170px;
}

.plans-orbit--two {
  width: 250px;
  height: 250px;
  bottom: -150px;
  left: -80px;
}

.plans-mobile-note {
  display: none;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  text-align: center;
}

/* Modal */
.plans-modal .modal-dialog {
  max-width: min(1400px, calc(100% - 30px));
}

.plans-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 25px;
  background: #f5f8f6;
}

.plans-modal .modal-header {
  padding: 22px 26px;
  border-bottom: 1px solid #dce4de;
}

.plans-modal-eyebrow {
  display: block;
  margin-bottom: 3px;
  color: #6d7b72;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plans-modal .modal-title {
  color: #0a321e;
  font-weight: 800;
}

.plans-modal .modal-body {
  padding: 18px;
}

.plans-modal-image-wrapper {
  max-height: 75vh;
  overflow: auto;
  border-radius: 16px;
  background: #ffffff;
}

.plans-modal-image-wrapper img {
  display: block;
  width: 100%;
  min-width: 1100px;
  height: auto;
}

/* Animaciones */
@keyframes plansBoardEntrance {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.93);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes plansBoardFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes plansFloatingInfo {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .plans-stage {
    min-height: 520px;
    padding: 65px 20px;
  }

  .plans-board-motion {
    width: 96%;
  }

  .plans-floating-info {
    display: none;
  }

  .plans-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .plans-caption-actions {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  .plans-mobile-note {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .plans-switcher {
    width: 100%;
  }

  .plans-tab {
    width: 50%;
    padding: 10px 12px;
  }

  .plans-stage {
    min-height: 390px;
    padding: 45px 10px;
    border-radius: 24px;
  }

  .plans-board::before {
    transform: translate3d(10px, 12px, -30px);
  }

  .plans-board::after {
    transform: translate3d(5px, 6px, -15px);
  }

  .plans-sheet {
    padding: 9px;
    border-radius: 18px;
  }

  .plans-image-wrapper {
    border-radius: 12px;
  }

  .plans-caption {
    padding: 18px 5px 5px;
  }

  .plans-caption p {
    display: none;
  }

  .plans-caption-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .plans-expand-button {
    width: 100%;
  }

  .plans-modal-image-wrapper img {
    min-width: 850px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plans-stage.is-visible .plans-board-motion,
  .plans-floating-info {
    animation: none;
  }

  .plans-board-motion {
    opacity: 1;
    transform: none;
  }

  .plans-board {
    transform: none !important;
  }
}

/* CONTADOR */


:root {
  --lots-counter-green: #073d24;
  --lots-counter-green-light: #176b3b;
  --lots-counter-yellow: #efb92f;
  --lots-counter-text: #ffffff;
}

/*
 * Evita que el contador cubra el último contenido de la página.
 */


.lots-counter {
  position: fixed;
  z-index: 1040;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.lots-counter.is-hidden {
  opacity: 0;
  transform: translateY(45px);
}

.lots-counter__content {
  position: relative;
  display: grid;
  width: min(940px, 100%);
  min-height: 92px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(
      110deg,
      #062f1c 0%,
      #0b4829 55%,
      #0d542f 100%
    );
  color: var(--lots-counter-text);
  pointer-events: auto;
  overflow: hidden;
}

.lots-counter__content::before {
  position: absolute;
  top: -60px;
  left: 35%;
  width: 240px;
  height: 150px;
  border-radius: 50%;
  background: rgba(239, 185, 47, 0.1);
  content: "";
  filter: blur(15px);
  pointer-events: none;
}

.lots-counter__icon {
  position: relative;
  display: flex;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 185, 47, 0.45);
  border-radius: 50%;
  background: rgba(239, 185, 47, 0.12);
  color: var(--lots-counter-yellow);
}

.lots-counter__information {
  position: relative;
  min-width: 0;
}

.lots-counter__heading {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
}

.lots-counter__number {
  color: var(--lots-counter-yellow);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.lots-counter__title {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.lots-counter__total {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.lots-counter__total strong {
  color: #ffffff;
}

.lots-counter__progress {
  width: 100%;
  max-width: 450px;
  height: 6px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
}

.lots-counter__progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      #e6a91e,
      #ffd967
    );
  transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lots-counter__message {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

.lots-counter__button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--lots-counter-yellow);
  color: #092f1d;
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
  animation: lotsButtonPulse 2.8s ease-in-out infinite;
}

.lots-counter__button:hover {
  background: #ffd65e;
  color: #092f1d;
  transform: translateY(-2px);
}

.lots-counter__close {
  position: absolute;
  top: 5px;
  right: 8px;
  display: flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.35rem;
  line-height: 1;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.lots-counter__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

@keyframes lotsButtonPulse {
  0%,
  100% {
    scale: 1;
  }

  50% {
    scale: 1.035;
  }
}

/* Tablet */
@media (max-width: 767.98px) {
  body {
    padding-bottom: 155px;
  }

  .lots-counter {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .lots-counter__content {
    min-height: auto;
    grid-template-columns: auto 1fr;
    gap: 13px;
    padding: 14px;
    border-radius: 20px;
  }

  .lots-counter__icon {
    width: 47px;
    height: 47px;
    flex-basis: 47px;
  }

  .lots-counter__button {
    width: 100%;
    min-height: 47px;
    grid-column: 1 / -1;
  }

  .lots-counter__message {
    display: none;
  }

  .lots-counter__progress {
    margin-top: 8px;
  }

  .lots-counter__close {
    top: 3px;
    right: 5px;
  }
}

/* Móviles pequeños */
@media (max-width: 420px) {
  .lots-counter__icon {
    display: none;
  }

  .lots-counter__content {
    grid-template-columns: 1fr;
  }

  .lots-counter__number {
    font-size: 2rem;
  }

  .lots-counter__title {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lots-counter,
  .lots-counter__progress span,
  .lots-counter__button {
    animation: none;
    transition: none;
  }
}
