/* ===========================
   RESET & BASE
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  /* Exact: hsl(220 40% 10%) */
  background-color: #101826;
  color: #e0e6eb;
  /* hsl(210 20% 90%) */
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1,
h2,
h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.15;
  color: #e0e6eb;
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===========================
   BLUE GLOW OVERLAY
   Built to match original: inset box-shadow + radial bg gradient
   =========================== */
.glow-overlay {
  display: none;
}

/* ===========================
   LOGO MARK
   =========================== */
.logo-mark,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e0e6eb;
}

.logo-icon {
  color: #e0e6eb;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #e0e6eb;
}

.logo-image {
  filter: brightness(0) saturate(100%) invert(97%) sepia(3%) saturate(150%) hue-rotate(190deg) brightness(98%) contrast(90%);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 100px;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .logo-mark {
  margin-bottom: 64px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
  color: #e0e6eb;
  margin-bottom: 32px;
  letter-spacing: -0.025em;
}

/* "buy gold" in blue italic */
.headline-accent {
  font-style: italic;
  font-weight: 700;
  color: #478cd1;
  /* hsl(210 60% 55%) */
}

.hero-body {
  font-size: 1.125rem;
  color: #6c7c93;
  /* hsl(215 15% 50%) muted-foreground */
  max-width: 672px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.125rem;
  color: #6c7c93;
  max-width: 576px;
  line-height: 1.55;
  margin-bottom: 52px;
}

/* ===========================
   CTA LINK — line + text style
   =========================== */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #478cd1;
  /* primary */
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, gap 0.2s ease;
}

.cta-link:hover {
  color: #6ba8e0;
  gap: 20px;
}

.cta-line {
  display: block;
  height: 1px;
  width: 36px;
  background-color: currentColor;
  flex-shrink: 0;
  transition: width 0.25s ease;
}

.cta-link:hover .cta-line {
  width: 50px;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
  padding: 100px 0 80px;
  position: relative;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #478cd1;
  margin-bottom: 20px;
}

.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #e0e6eb;
  margin-bottom: 20px;
}

.section-description {
  font-size: 0.975rem;
  color: #6c7c93;
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* ===========================
   CONTACT FORM
   =========================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #e0e6eb;
  letter-spacing: 0.01em;
}

input[type="text"],
input[type="email"],
textarea {
  background: #20293b;
  border: 1px solid #263140;
  border-radius: 6px;
  color: #e1e5ea;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: #465266;
}

input:focus,
textarea:focus {
  border-color: rgba(71, 140, 209, 0.5);
  box-shadow: 0 0 0 2px rgba(71, 140, 209, 0.1);
}

textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

/* Select */
.select-wrapper {
  position: relative;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background: #20293b;
  border: 1px solid #263140;
  border-radius: 6px;
  color: #e1e5ea;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 11px 40px 11px 14px;
  outline: none;
  cursor: pointer;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select:focus {
  border-color: rgba(71, 140, 209, 0.5);
  box-shadow: 0 0 0 2px rgba(71, 140, 209, 0.1);
}

select option {
  background: #1d2535;
  color: #e0e6eb;
}

.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c7c93;
  pointer-events: none;
}

/* Submit button */
.form-actions {
  margin-top: 4px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #478cd1;
  /* hsl(210 60% 55%) */
  color: #0f1624;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, gap 0.2s ease;
}

.submit-btn:hover {
  background: #5fa0e0;
  box-shadow: 0 4px 20px rgba(71, 140, 209, 0.4);
  gap: 12px;
}

.submit-btn:hover .arrow-icon {
  transform: translateX(2px);
}

.submit-btn:active {
  transform: scale(0.98);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.submit-btn .arrow-icon {
  transition: transform 0.2s ease;
}

/* Form feedback message */
.form-message {
  font-size: 0.875rem;
  margin-top: 4px;
  min-height: 20px;
  transition: opacity 0.3s ease;
}

.form-message.success {
  color: #4ade80;
}

.form-message.error {
  color: #f87171;
}

/* ===========================
   ADVISORY CALLOUT
   =========================== */
.advisory-callout {
  margin-top: 56px;
  padding-left: 20px;
  border-left: 2px solid rgba(71, 140, 209, 0.4);
}

.advisory-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e0e6eb;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.advisory-body {
  font-size: 0.9rem;
  color: #6c7c93;
  line-height: 1.75;
  max-width: 560px;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  border-top: 1px solid #263140;
  /* hsl(215 25% 20%) */
  padding: 48px 0 40px;
  margin-top: 80px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #6c7c93;
  font-family: 'Playfair Display', Georgia, serif;
}

.footer-address {
  font-size: 0.8rem;
  color: #6c7c93;
}

.footer-right {
  text-align: right;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: #6c7c93;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #3a4a5e;
  line-height: 1.7;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .hero .logo-mark {
    margin-bottom: 48px;
  }

  .hero-headline {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 60px 0 60px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-right {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.9rem;
  }

  .section-headline {
    font-size: 1.9rem;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}