/* Coming soon page */

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 70% 20%, rgba(200, 157, 78, 0.08), transparent 55%),
    linear-gradient(160deg, #0b1d2d 0%, #071625 48%, #0a1824 100%);
}

.page__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  pointer-events: none;
}

.page__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  padding-block: 48px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: clamp(48px, 8vh, 88px);
}

.brand-logo {
  width: clamp(180px, 22vw, 220px);
}

.header-contact {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dark-muted);
}

.header-contact a {
  color: var(--ivory-50);
}

.header-contact a:hover {
  color: var(--gold-500);
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 820px;
  animation: fadeUp 600ms var(--ease) both;
}

.eyebrow {
  margin-bottom: var(--space-sm);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.hero__title {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--white);
  max-width: 14ch;
}

.hero__title .gold {
  color: var(--gold-500);
}

.divider {
  width: 72px;
  height: 1px;
  margin: 28px 0;
  background: var(--gold-500);
  border: 0;
}

.tagline {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ivory-50);
  margin-bottom: var(--space-md);
}

.intro {
  max-width: 62ch;
  color: var(--dark-muted);
  font-size: clamp(16px, 1.6vw, 18px);
  margin-bottom: var(--space-xl);
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: var(--space-xl);
}

.service {
  border: 1px solid rgba(226, 229, 233, 0.12);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 20px 18px;
  transition:
    border-color 300ms var(--ease),
    background 300ms var(--ease),
    transform 300ms var(--ease);
}

.service:hover {
  border-color: rgba(200, 157, 78, 0.55);
  background: rgba(200, 157, 78, 0.05);
  transform: translateY(-1px);
}

.service__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  color: var(--gold-500);
}

.service__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service__label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ivory-50);
  line-height: 1.35;
}

/* Notify */
.notify {
  border-top: 1px solid rgba(226, 229, 233, 0.1);
  padding-top: var(--space-lg);
  max-width: 560px;
}

.notify__title {
  font-size: 22px;
  margin-bottom: 8px;
}

.notify__text {
  color: var(--dark-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.form-row input[type="email"] {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(226, 229, 233, 0.2);
  border-right: 0;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: rgba(7, 22, 37, 0.5);
  color: var(--white);
}

.form-row input::placeholder {
  color: rgba(184, 192, 200, 0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 250ms var(--ease),
    transform 250ms var(--ease);
}

.btn:hover {
  background: var(--gold-600);
  transform: translateY(-1px);
}

.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gold-500);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(226, 229, 233, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(184, 192, 200, 0.85);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  color: var(--dark-muted);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--gold-500);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page__inner {
    width: min(100% - 32px, var(--container));
    padding-block: 32px 28px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 48px;
  }

  .brand-logo {
    width: 190px;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row input[type="email"],
  .btn {
    width: 100%;
    border-radius: var(--radius-md);
  }

  .form-row input[type="email"] {
    border-right: 1px solid rgba(226, 229, 233, 0.2);
    margin-bottom: 10px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
