:root {
  --launch-green: #0b2721;
  --launch-green-soft: #12382f;
  --launch-cream: #fffaf0;
  --launch-paper: #fffdf8;
  --launch-wheat: #dec58f;
  --launch-lime: #aef32e;
  --launch-rust: #ad452a;
}

.launch-page {
  min-height: 100vh;
  color: var(--launch-green);
  background: var(--launch-cream);
}

.launch-page::selection {
  color: var(--launch-green);
  background: var(--launch-lime);
}

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

.launch-header {
  position: relative;
  z-index: 20;
  color: var(--launch-green);
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(11, 39, 33, 0.12);
  backdrop-filter: blur(16px);
}

.launch-header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.launch-brand {
  width: 210px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.launch-brand-mark,
.launch-brand-wordmark {
  width: 100%;
  height: auto;
}

.launch-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--launch-green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.launch-back span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 39, 33, 0.18);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.launch-back:hover span {
  color: var(--launch-paper);
  background: var(--launch-green);
  transform: translateX(-2px);
}

.launch-hero {
  position: relative;
  overflow: hidden;
  color: var(--launch-paper);
  background:
    radial-gradient(circle at 8% 22%, rgba(222, 197, 143, 0.12), transparent 25%),
    linear-gradient(115deg, #071e19 0%, var(--launch-green) 58%, #123b31 100%);
  border-bottom: 1px solid rgba(222, 197, 143, 0.3);
}

.launch-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 253, 248, 0.45) 0.55px, transparent 0.55px);
  background-size: 9px 9px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 48%);
}

.launch-hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: stretch;
  gap: clamp(48px, 6vw, 92px);
  padding-block: clamp(64px, 7vw, 104px);
}

.launch-intro {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 650px;
}

.launch-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--launch-wheat);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.launch-eyebrow > span {
  width: 34px;
  height: 1px;
  flex: 0 0 34px;
  background: currentColor;
}

.launch-intro h1 {
  max-width: 640px;
  margin: 0;
  color: var(--launch-paper);
  font: 500 clamp(4rem, 5.4vw, 6rem)/0.88 var(--serif);
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.launch-intro h1 em {
  display: block;
  color: var(--launch-wheat);
  font-weight: 400;
}

.launch-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.launch-offer-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 36px 0 0;
  border-block: 1px solid rgba(255, 253, 248, 0.17);
}

.launch-offer-summary div {
  padding: 18px 16px 18px 0;
}

.launch-offer-summary div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 253, 248, 0.17);
}

.launch-offer-summary dt {
  margin-bottom: 4px;
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-offer-summary dd {
  margin: 0;
  color: var(--launch-paper);
  font-size: 0.82rem;
  font-weight: 700;
}

.launch-counter-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 15px;
  color: rgba(255, 253, 248, 0.86);
  background: rgba(255, 253, 248, 0.055);
  border: 1px solid rgba(255, 253, 248, 0.15);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.launch-counter-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--launch-lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(174, 243, 46, 0.12);
}

.launch-jump {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  color: var(--launch-wheat);
  border-bottom: 1px solid rgba(222, 197, 143, 0.45);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.launch-jump span { font-size: 1rem; }

.launch-visual {
  position: relative;
  min-height: 500px;
  align-self: stretch;
  overflow: hidden;
  background: #0c1f19;
  border: 1px solid rgba(222, 197, 143, 0.28);
  border-radius: 320px 320px 3px 3px;
  box-shadow: 0 34px 80px rgba(2, 14, 11, 0.34);
}

.launch-visual::before {
  position: absolute;
  z-index: 3;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: inherit;
  content: "";
}

.launch-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.85) contrast(1.05);
}

.launch-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(5, 25, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 25, 20, 0.35), transparent 48%);
}

.launch-visual-copy {
  position: absolute;
  z-index: 4;
  left: clamp(28px, 4vw, 52px);
  bottom: clamp(30px, 4vw, 52px);
  display: grid;
  gap: 7px;
}

.launch-visual-copy span {
  color: var(--launch-wheat);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.launch-visual-copy strong {
  max-width: 360px;
  color: var(--launch-paper);
  font: 500 clamp(2rem, 3vw, 3.25rem)/0.96 var(--serif);
  letter-spacing: -0.04em;
}

.launch-seal {
  position: absolute;
  z-index: 5;
  top: clamp(26px, 4vw, 52px);
  right: clamp(24px, 3vw, 42px);
  width: 132px;
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--launch-green);
  background: linear-gradient(145deg, #f6e8c5, var(--launch-wheat));
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(2, 14, 11, 0.28);
  transform: rotate(4deg);
}

.launch-seal::before {
  position: absolute;
  inset: 8px;
  border: 1px dotted rgba(11, 39, 33, 0.32);
  border-radius: inherit;
  content: "";
}

.launch-seal span,
.launch-seal small {
  position: relative;
  z-index: 1;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.launch-seal strong {
  position: relative;
  z-index: 1;
  font: 500 1.3rem/1 var(--serif);
}

.launch-seal small { margin-top: 6px; }

.launch-reservation {
  position: relative;
  padding: clamp(80px, 9vw, 132px) 0;
  background:
    linear-gradient(rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0.98)),
    url("images/atulyash-village.webp") center top / cover no-repeat;
}

.launch-reservation-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
}

.launch-guide {
  position: sticky;
  top: 36px;
  padding-top: 22px;
}

.launch-guide .launch-eyebrow { color: var(--launch-rust); }

.launch-guide h2 {
  max-width: 450px;
  margin: 0;
  color: var(--launch-green);
  font: 500 clamp(2.8rem, 4.3vw, 4.5rem)/0.94 var(--serif);
  letter-spacing: -0.045em;
}

.launch-guide ol {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid rgba(11, 39, 33, 0.15);
  list-style: none;
}

.launch-guide li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(11, 39, 33, 0.15);
}

.launch-guide li > span {
  color: var(--launch-rust);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.launch-guide li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--launch-green);
  font-size: 0.9rem;
}

.launch-guide li p {
  margin: 0;
  color: #66716c;
  font-size: 0.8rem;
  line-height: 1.55;
}

.launch-guide-note {
  margin: 20px 0 0;
  color: #7b847f;
  font-size: 0.7rem;
  line-height: 1.6;
}

.launch-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(11, 39, 33, 0.16);
  box-shadow: 0 28px 80px rgba(11, 39, 33, 0.13);
}

.launch-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--launch-rust), var(--launch-wheat) 50%, var(--launch-lime));
  content: "";
}

.launch-card-kicker,
.launch-card .section-label {
  margin: 0 0 10px;
  color: var(--launch-rust);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.launch-card h2 {
  max-width: 620px;
  margin: 0;
  color: var(--launch-green);
  font: 500 clamp(2.5rem, 4.2vw, 4rem)/0.97 var(--serif);
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.launch-form-copy,
.launch-card p:not(.launch-card-kicker):not(.section-label) {
  color: #64716b;
  line-height: 1.65;
}

.launch-form-copy {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: 0.92rem;
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.launch-grid label {
  display: grid;
  gap: 8px;
  color: #405149;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-grid input,
.launch-grid select,
.launch-grid textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 16px;
  color: var(--launch-green);
  background: #fffefa;
  border: 1px solid #c8d1ca;
  border-radius: 0;
  font: 500 0.96rem/1.4 var(--sans);
  letter-spacing: normal;
  text-transform: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.launch-grid input::placeholder,
.launch-grid textarea::placeholder { color: #929c97; }

.launch-grid input:hover,
.launch-grid select:hover,
.launch-grid textarea:hover { border-color: #9aaa9f; }

.launch-grid input:focus,
.launch-grid select:focus,
.launch-grid textarea:focus {
  outline: 0;
  background: #fff;
  border-color: var(--launch-green);
  box-shadow: 0 0 0 3px rgba(174, 243, 46, 0.2);
}

.launch-grid select:disabled {
  color: #89928e;
  background: #f1f0ea;
  cursor: not-allowed;
}

.launch-grid textarea { resize: vertical; }
.launch-span-two { grid-column: 1 / -1; }

.launch-field-note {
  min-height: 24px;
  margin: 12px 0 0;
  color: #176348 !important;
  font-size: 0.78rem;
  font-weight: 700;
}

.launch-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
  padding: 17px 18px;
  color: #46544e;
  background: #f4f0e6;
  border-left: 3px solid var(--launch-wheat);
  font-size: 0.79rem;
  line-height: 1.55;
}

.launch-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 2px;
  accent-color: var(--launch-green);
}

.launch-submit {
  width: 100%;
  min-height: 66px;
  justify-content: space-between;
  padding-inline: 25px;
  color: var(--launch-green);
  background: var(--launch-lime);
  border-color: var(--launch-lime);
}

.launch-submit:hover {
  color: var(--launch-green);
  background: #c5ff5b;
  border-color: #c5ff5b;
}

.launch-submit:disabled {
  opacity: 0.58;
  cursor: wait;
  transform: none;
}

.launch-form-footnote {
  margin: 13px 0 0;
  color: #838c87 !important;
  font-size: 0.67rem;
  text-align: center;
}

.launch-notice {
  margin-bottom: 18px;
  padding: 13px 15px;
  color: #8f321e;
  background: #fff0e9;
  border-left: 3px solid var(--launch-rust);
  font-size: 0.8rem;
  font-weight: 700;
}

.launch-notice:empty { display: none; }

.launch-notice.success {
  color: #165a45;
  background: #eff8e8;
  border-left-color: #4a8a50;
}

.launch-state {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.launch-state[hidden] { display: none; }

.launch-state-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--launch-green);
  background: var(--launch-wheat);
  border: 1px solid rgba(11, 39, 33, 0.12);
  border-radius: 50%;
  font: 500 1.6rem/1 var(--serif);
}

.launch-state-icon-success {
  color: #fff;
  background: #397544;
}

.launch-login-prompt > p:not(.launch-card-kicker),
.launch-success > p:not(.section-label) {
  max-width: 560px;
  margin: 18px 0 28px;
}

.launch-login-prompt .launch-submit { max-width: 430px; }

.launch-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.launch-login-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  color: #6f7b75;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.launch-login-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.launch-login-assurance span:not(:first-child)::before {
  width: 3px;
  height: 3px;
  background: var(--launch-rust);
  border-radius: 50%;
  content: "";
}

.launch-existing { max-width: 100%; }

.launch-existing dl {
  width: 100%;
  display: grid;
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid #d9e0da;
}

.launch-existing dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid #d9e0da;
}

.launch-existing dt {
  color: #64716b;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.launch-existing dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.button-secondary {
  color: #165a45;
  background: transparent;
  border: 1px solid rgba(11, 39, 33, 0.25);
}

.button-secondary:hover {
  color: var(--launch-paper);
  background: var(--launch-green);
}

.launch-footer {
  color: rgba(255, 253, 248, 0.66);
  background: var(--launch-green);
  border-top: 1px solid rgba(222, 197, 143, 0.25);
}

.launch-footer .launch-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.72rem;
}

.launch-footer p { margin: 0; color: var(--launch-paper); font-weight: 700; }
.launch-footer span { letter-spacing: 0.04em; }

@media (max-width: 1060px) {
  .launch-hero-grid {
    min-height: 590px;
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    gap: 42px;
  }

  .launch-intro h1 { font-size: clamp(3.5rem, 6vw, 5rem); }
  .launch-visual { min-height: 470px; }
  .launch-offer-summary div { padding-right: 10px; }
  .launch-offer-summary div + div { padding-left: 10px; }
  .launch-offer-summary dd { font-size: 0.73rem; }
}

@media (max-width: 820px) {
  .launch-hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-block: 70px;
  }

  .launch-intro { max-width: 690px; }
  .launch-intro h1 { max-width: 680px; font-size: clamp(4rem, 10vw, 6.4rem); }
  .launch-visual { min-height: 540px; border-radius: 340px 340px 3px 3px; }

  .launch-reservation-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .launch-guide { position: static; max-width: 640px; padding-top: 0; }
  .launch-guide h2 { max-width: 620px; }
}

@media (max-width: 620px) {
  .launch-container { width: min(calc(100% - 28px), 1320px); }
  .launch-header-inner { min-height: 74px; }
  .launch-brand { width: 160px; grid-template-columns: 28px minmax(0, 1fr); gap: 7px; }
  .launch-back { font-size: 0; gap: 0; }
  .launch-back span { font-size: 0.86rem; }

  .launch-hero-grid { gap: 38px; padding-block: 52px 58px; }
  .launch-eyebrow { margin-bottom: 18px; font-size: 0.59rem; }
  .launch-intro h1 { font-size: clamp(3.35rem, 17vw, 5.25rem); }
  .launch-lead { margin-top: 22px; font-size: 0.94rem; }

  .launch-offer-summary { grid-template-columns: 1fr; margin-top: 28px; }
  .launch-offer-summary div { padding: 13px 0; }
  .launch-offer-summary div + div { padding-left: 0; border-top: 1px solid rgba(255, 253, 248, 0.13); border-left: 0; }
  .launch-offer-summary div { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
  .launch-offer-summary dt { margin: 0; }

  .launch-counter-wrap { margin-top: 20px; font-size: 0.68rem; }
  .launch-jump { font-size: 0.64rem; }

  .launch-visual { min-height: 430px; border-radius: 240px 240px 3px 3px; }
  .launch-visual img { object-position: 68% center; }
  .launch-visual::before { inset: 11px; }
  .launch-visual-copy { left: 27px; bottom: 28px; }
  .launch-visual-copy strong { max-width: 250px; font-size: 2.35rem; }
  .launch-seal { top: 26px; right: 22px; width: 106px; }
  .launch-seal strong { font-size: 1.05rem; }

  .launch-reservation { padding-block: 70px; }
  .launch-guide h2 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .launch-card { padding: 34px 22px; }
  .launch-card h2 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .launch-grid { grid-template-columns: 1fr; gap: 17px; margin-top: 28px; }
  .launch-span-two { grid-column: auto; }
  .launch-submit { min-height: 62px; padding-inline: 17px; font-size: 0.68rem; }
  .launch-state { min-height: 350px; }

  .launch-footer .launch-container { align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; padding-block: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .launch-back span,
  .launch-grid input,
  .launch-grid select,
  .launch-grid textarea { transition: none; }
}
