/* ===== Alpha Route Plus — Coming Soon ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: #06120C; }

.page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% -10%, #103725 0%, #0A2417 38%, #06120C 100%);
  font-family: 'Jost', sans-serif;
  color: #EDE7D6;
}

/* ---- ambient orbs ---- */
.orb { position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.orb--gold  { top: -120px; left: -80px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(201,162,39,.16), transparent 70%); animation: arpFloat 16s ease-in-out infinite; }
.orb--green { bottom: -140px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(46,155,99,.18), transparent 70%); animation: arpFloat2 20s ease-in-out infinite; }
.orb--soft  { top: 30%; right: 12%; width: 240px; height: 240px; background: radial-gradient(circle, rgba(232,206,122,.10), transparent 70%); filter: blur(6px); animation: arpFloat 22s ease-in-out infinite; }

/* ---- top bar ---- */
.topbar { position: relative; z-index: 3; display: flex; align-items: center; justify-content: flex-end; padding: 28px clamp(20px, 5vw, 64px); animation: arpFadeIn 1s ease both; }
.topbar__est { font-size: 12px; letter-spacing: .32em; color: #7E9285; text-transform: uppercase; }

/* ---- hero ---- */
.hero { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; text-align: center; padding: clamp(24px, 5vh, 60px) clamp(20px, 5vw, 64px) 80px; }

.logo-card {
  animation: arpBob 7s ease-in-out infinite;
  width: clamp(248px, 33vw, 332px);
  margin: 0 auto;
  padding: 28px 32px;
  background: linear-gradient(180deg, #FFFFFF, #FBF7EC);
  border: 1.5px solid #C9A227;
  border-radius: 24px;
  box-shadow: 0 28px 64px rgba(0,0,0,.5), inset 0 0 0 5px rgba(201,162,39,.10);
}
.logo-card img { display: block; width: 100%; height: auto; }

.eyebrow { margin-top: 36px; display: flex; align-items: center; gap: 14px; }
.eyebrow__rule { display: block; width: 34px; height: 1px; }
.eyebrow__rule--left  { background: linear-gradient(90deg, transparent, #C9A227); }
.eyebrow__rule--right { background: linear-gradient(90deg, #C9A227, transparent); }
.eyebrow__text { font-size: 13px; letter-spacing: .42em; text-transform: uppercase; color: #C9A227; }

.headline {
  margin: 26px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.06;
  letter-spacing: .01em;
  color: #F5F0E2;
  max-width: 16ch;
}
.headline__shimmer {
  background: linear-gradient(90deg, #F3DD93, #C9A227, #F3DD93);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: arpShimmer 6s linear infinite;
}

.lede { margin: 26px 0 0; max-width: 54ch; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7; color: #AFC0B4; font-weight: 300; }
.lede em { font-style: normal; color: #E8CE7A; }

.cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #E8CE7A, #C9A227);
  color: #0A2417;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .06em;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(201,162,39,.32);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cta:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(201,162,39,.45); }
.cta:hover .cta__arrow { transform: translateY(3px); }
.cta__arrow { display: inline-block; transition: transform .25s ease; }

.whisper { margin-top: 54px; display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: #6E8276; }
.whisper__dot { width: 7px; height: 7px; border-radius: 50%; background: #2E9B63; animation: arpDot 1.6s ease-in-out infinite; }

/* ---- enquiry card ---- */
.enquire { position: relative; z-index: 3; padding: 20px clamp(20px, 5vw, 64px) clamp(60px, 9vh, 110px); }
.card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(20,52,36,.72), rgba(10,30,20,.72));
  border: 1px solid rgba(201,162,39,.28);
  border-radius: 26px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
}
.card__head { text-align: center; margin-bottom: 30px; }
.card__kicker { font-size: 12px; letter-spacing: .4em; text-transform: uppercase; color: #C9A227; }
.card__title { margin: 12px 0 0; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(28px, 4.4vw, 44px); color: #F5F0E2; }
.card__sub { margin: 12px auto 0; max-width: 44ch; color: #9DB0A4; font-weight: 300; font-size: 15px; }

form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: span 2; }
.field__label { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #8AA093; }

.field input,
.field select,
.field textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(201,162,39,.25);
  background: rgba(6,18,12,.6);
  color: #EDE7D6;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  transition: border-color .2s ease;
  width: 100%;
}
.field textarea { resize: vertical; }
.field select { appearance: none; cursor: pointer; }
.field select option { background: #0A2417; }
.field input::placeholder,
.field textarea::placeholder { color: #5E7567; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: #C9A227; }

.form-error { grid-column: span 2; color: #E89A8A; font-size: 14px; }

.submit {
  grid-column: span 2;
  margin-top: 6px;
  padding: 17px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(180deg, #E8CE7A, #C9A227);
  color: #0A2417;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .05em;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(201,162,39,.3);
  transition: transform .2s ease, box-shadow .2s ease;
}
.submit:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(201,162,39,.45); }

/* ---- thank you ---- */
.thanks { text-align: center; padding: 24px 0; }
.thanks__check { width: 74px; height: 74px; margin: 0 auto 22px; border-radius: 50%; border: 2px solid #C9A227; display: flex; align-items: center; justify-content: center; }
.thanks__check span { font-size: 34px; color: #E8CE7A; }
.thanks__title { margin: 0; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(28px, 4vw, 40px); color: #F5F0E2; }
.thanks__text { margin: 16px auto 0; max-width: 46ch; color: #AFC0B4; font-weight: 300; line-height: 1.7; }
.ghost { margin-top: 28px; padding: 13px 28px; border-radius: 999px; background: transparent; border: 1px solid rgba(201,162,39,.5); color: #E8CE7A; font-family: 'Jost', sans-serif; font-size: 14px; letter-spacing: .05em; cursor: pointer; }

/* ---- footer ---- */
.footer { max-width: 720px; margin: 38px auto 0; text-align: center; color: #5E7567; font-size: 13px; letter-spacing: .04em; }
.footer__services { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.footer__services span { color: #8AA093; }
.footer__dot { color: #3D5448 !important; }

/* ---- entrance animations ---- */
.fade-up { opacity: 0; animation: arpFadeUp 1s ease var(--delay, 0s) both; }
.fade-in { opacity: 0; animation: arpFadeIn 1.4s ease var(--delay, 0s) both; }

@media (max-width: 560px) {
  form { grid-template-columns: 1fr; }
  .field--full, .form-error, .submit { grid-column: span 1; }
}

@keyframes arpFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes arpFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes arpFloat  { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(18px,-26px) scale(1.08); } 100% { transform: translate(0,0) scale(1); } }
@keyframes arpFloat2 { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(-22px,20px) scale(1.12); } 100% { transform: translate(0,0) scale(1); } }
@keyframes arpShimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes arpBob { 0% { transform: translateY(0); } 50% { transform: translateY(-6px); } 100% { transform: translateY(0); } }
@keyframes arpDot { 0%,100% { opacity: .25; } 50% { opacity: 1; } }
