:root {
  --bg: #f4f0ea;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --surface-soft: #f8f3ed;
  --text: #122033;
  --muted: #4d5b6d;
  --line: rgba(18, 32, 51, 0.12);
  --accent: #0f2742;
  --accent-soft: #c8a96a;
  --shadow: 0 24px 60px rgba(15, 39, 66, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 169, 106, 0.18), transparent 28%),
    linear-gradient(180deg, #fcfaf7 0%, var(--bg) 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(252, 250, 247, 0.88);
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
  gap: 0.15rem;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.brand-text span:last-child {
  font-size: 0.84rem;
  color: var(--muted);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.96rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid,
.split-grid,
.profile-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-soft);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.1rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.2rem, 3vw, 3.25rem);
  max-width: 16ch;
}

h3 {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  margin-top: 1.35rem;
  font-size: 1.08rem;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 18px 30px rgba(15, 39, 66, 0.18);
}

.button-secondary {
  background: transparent;
  border-color: rgba(15, 39, 66, 0.18);
  color: var(--accent);
}

.button-block {
  width: 100%;
}

.hero-points,
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points {
  display: grid;
  gap: 0.8rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent-soft);
}

.hero-card,
.stat-card,
.info-card,
.profile-panel,
.credentials-panel,
.contact-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
  align-self: start;
}

.card-label,
.contact-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-card p + .credential-list {
  margin-top: 1.8rem;
}

.credential-list {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.credential-list div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.credential-list dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.credential-list dd {
  margin: 0.35rem 0 0;
  color: var(--text);
  font-weight: 600;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(255, 253, 249, 0.72);
  border-top: 1px solid rgba(18, 32, 51, 0.04);
  border-bottom: 1px solid rgba(18, 32, 51, 0.04);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.2rem;
}

.section-heading p:last-child {
  margin-top: 1rem;
}

.stats-grid,
.cards-grid {
  display: grid;
  gap: 1.35rem;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.info-card {
  padding: 1.6rem;
}

.stat-value {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.15rem;
}

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.step:first-child {
  padding-top: 0;
  border-top: 0;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 700;
}

.profile-panel,
.credentials-panel,
.contact-card {
  padding: 2rem;
}

.profile-panel p + p {
  margin-top: 1rem;
}

.detail-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.detail-list li {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.detail-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-section {
  padding-bottom: 6rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-link {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.contact-link strong {
  display: block;
  color: var(--text);
  font-size: 1.15rem;
}

.contact-note {
  font-size: 0.92rem;
}

.site-footer {
  padding: 1.8rem 0 2.5rem;
  background: var(--accent);
  color: rgba(255, 255, 255, 0.9);
}

.footer-wrap {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 2fr;
  align-items: start;
}

.site-footer p,
.site-footer strong {
  color: inherit;
}

.disclaimer {
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .profile-grid,
  .contact-grid,
  .stats-grid,
  .cards-grid,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .site-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .hero-card,
  .stat-card,
  .info-card,
  .profile-panel,
  .credentials-panel,
  .contact-card {
    padding: 1.4rem;
    border-radius: 22px;
  }

  .button {
    width: 100%;
  }

  h1 {
    max-width: 100%;
  }
}
