:root {
  --midnight: #051e38;
  --deep-blue: #0f3052;
  --blue: #25477c;
  --mist-blue: #3c6492;
  --gold: #efb252;
  --gold-deep: #aa7220;
  --ivory: #ffdfa0;
  --soft-white: #fff7e8;
  --muted: #cadced;
  --line: rgba(255, 223, 160, 0.26);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--soft-white);
  background:
    radial-gradient(circle at 50% 12%, rgba(60, 100, 146, 0.34), transparent 34rem),
    radial-gradient(circle at 18% 42%, rgba(239, 178, 82, 0.13), transparent 26rem),
    linear-gradient(180deg, #020916 0%, var(--midnight) 50%, #020916 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    radial-gradient(circle, rgba(255, 247, 232, 0.74) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(239, 178, 82, 0.48) 0 1px, transparent 1.5px);
  background-position: 0 0, 42px 63px;
  background-size: 150px 150px, 230px 230px;
}

a {
  color: inherit;
}

.site-header,
main,
footer {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.site-header p {
  margin: 0;
  color: rgba(255, 247, 232, 0.62);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  gap: 52px;
  align-items: center;
  padding: 48px 0 76px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 11vw, 7.5rem);
  line-height: 0.86;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1;
}

p {
  color: rgba(255, 247, 232, 0.78);
  line-height: 1.68;
}

.subtitle {
  margin: 16px 0 28px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4vw, 2.6rem);
}

.opening {
  color: var(--soft-white);
  font-size: clamp(1.12rem, 2.5vw, 1.34rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  color: var(--midnight);
  background: var(--ivory);
  border-color: var(--ivory);
}

.button.secondary {
  color: var(--ivory);
  background: rgba(15, 48, 82, 0.48);
}

.preview-visual {
  margin: 0;
}

.preview-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
}

.insight-section,
.reflection-section,
.invitation-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.insight-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 48px;
}

.insight-copy p:first-child {
  margin-top: 0;
  color: var(--soft-white);
  font-size: 1.18rem;
}

.reflection-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 1fr);
  gap: 42px;
  align-items: start;
}

.reflection-intro p:last-child {
  margin-bottom: 0;
}

blockquote {
  margin: 0;
  padding: 28px;
  border-left: 2px solid var(--gold);
  background: rgba(15, 48, 82, 0.5);
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 4vw, 2.3rem);
  line-height: 1.22;
}

.practice-note {
  grid-column: 2;
  margin: 0;
}

.invitation-section {
  max-width: 820px;
  text-align: left;
}

.invitation-section p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 28px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

footer a {
  color: var(--gold);
}

footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .hero,
  .insight-section,
  .reflection-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 38px;
    padding-top: 34px;
  }

  .preview-visual {
    max-width: 560px;
  }

  .practice-note {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .site-header p {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 54px;
  }

  .insight-section,
  .reflection-section,
  .invitation-section {
    padding: 58px 0;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
