/* ==========================================================================
   DPS — Coming Soon page
   ========================================================================== */

:root {
  --color-ink: #21414a;        /* headings, button background, icons        */
  --color-body: #4b5760;       /* paragraph text                            */
  --color-surface: #ffffff;    /* page background                           */
  --color-arrow-bg: #cfe2dd;   /* light sage circle inside the CTA button   */
  --color-icon-border: rgba(33, 65, 74, 0.45);

  --font-sans: "Poppins", "Segoe UI", Arial, sans-serif;
  --container-width: 1180px;
}

/* --- Reset -------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-surface);
  color: var(--color-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Layout ------------------------------------------------------------- */

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  padding: 2.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* --- Hero illustration -------------------------------------------------- */

.hero {
  width: min(30rem, 100%);
  margin-bottom: 1.5rem;
}

.hero__image {
  width: 100%;
}

/* --- Headings & copy ---------------------------------------------------- */

.title {
  color: var(--color-ink);
  font-size: clamp(2.25rem, 1rem + 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.subtitle {
  color: var(--color-ink);
  font-size: clamp(1.125rem, 1rem + 0.7vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  margin-top: 0.75rem;
}

.intro {
  max-width: 70.5rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
}

.visit-note {
  margin-top: 3rem;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
}

/* --- CTA button --------------------------------------------------------- */

.cta {
  margin-top: 1.75rem;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background-color: var(--color-ink);
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.625rem 0.75rem 0.625rem 1.875rem;
  font-size: 1.0625rem;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta__button:hover {
  background-color: #2c5560;
}

.cta__arrow {
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  background-color: var(--color-arrow-bg);
  color: var(--color-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta__arrow svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* --- Footer / social icons ---------------------------------------------- */

.footer {
  margin-top: 6.5rem;
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.socials__link {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-icon-border);
  border-radius: 50%;
  color: var(--color-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.socials__link:hover {
  background-color: rgba(33, 65, 74, 0.06);
  border-color: var(--color-ink);
}

.socials__link svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* --- Responsive adjustments --------------------------------------------- */

@media (max-width: 768px) {
  .container {
    padding: 2rem 1.25rem 2.5rem;
  }

  .intro {
    margin-top: 1.75rem;
    gap: 1.25rem;
  }

  .visit-note {
    margin-top: 2.25rem;
  }

  .footer {
    margin-top: 4rem;
  }
}

@media (max-width: 480px) {
  .hero {
    margin-bottom: 1rem;
  }

  .footer {
    margin-top: 3rem;
  }

  .socials {
    gap: 0.625rem;
  }

  .socials__link {
    width: 2.5rem;
    height: 2.5rem;
  }
}
