:root {
  --navy-950: #071522;
  --navy-900: #0b1f33;
  --navy-800: #123452;
  --blue: #1f4e79;

  --gold: #b89245;
  --gold-light: #d5bd82;

  --cream: #f7f4ec;
  --cream-dark: #ece6d9;
  --white: #ffffff;

  --text: #27313a;
  --text-muted: #66717c;

  --border: rgba(11, 31, 51, 0.12);
  --shadow: 0 18px 50px rgba(7, 21, 34, 0.10);

  --radius: 14px;
  --content-width: 1120px;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    "Segoe UI",
    Arial,
    sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
}

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

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy-900);
}

a:focus,
button:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

/* ---------- Typography ---------- */

h1,
h2,
h3,
.brand {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy-900);
}

h1,
h2,
h3 {
  line-height: 1.18;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin-top: 0;
}

.lead {
  font-size: 1.2rem;
  color: var(--text-muted);
}

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

.container {
  width: min(92%, var(--content-width));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--white);
}

.section-dark {
  background: var(--navy-900);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Skip link ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--white);
  color: var(--navy-900);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- Header ---------- */

.site-header {
  background: var(--navy-950);
  color: var(--white);
  border-bottom: 3px solid var(--gold);
}

.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-wrap {
  text-decoration: none;
  color: var(--white);
}

.brand {
  color: var(--white);
  font-size: 1.65rem;
  letter-spacing: 0.035em;
}

.brand-tagline {
  display: block;
  margin-top: 0.15rem;
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--gold-light);
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(184, 146, 69, 0.17),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--navy-950),
      var(--navy-800)
    );
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    );
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
}

.hero .lead {
  color: rgba(255,255,255,0.82);
  max-width: 720px;
}

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

/* ---------- Buttons ---------- */

.button {
  display: inline-block;
  padding: 0.9rem 1.35rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--navy-950);
}

.button-primary:hover {
  background: var(--gold-light);
  color: var(--navy-950);
}

.button-secondary {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* ---------- Cards ---------- */

.grid {
  display: grid;
  gap: 1.5rem;
}

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

.card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(7, 21, 34, 0.05);
}

.card-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: bold;
}

/* ---------- Five questions ---------- */

.questions {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.question {
  padding: 1.15rem 1.4rem;
  border-left: 4px solid var(--gold);
  background: var(--white);
  box-shadow: 0 5px 18px rgba(7, 21, 34, 0.04);
  font-size: 1.08rem;
  font-weight: 600;
}

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

.cta-box {
  padding: 3rem;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  color: var(--white);
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 2rem 0;
  background: var(--navy-950);
  color: rgba(255,255,255,0.65);
  text-align: center;
  font-size: 0.9rem;
}

/* =========================================================
   Digital business card
   ========================================================= */

.vcard-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  background:
    radial-gradient(
      circle at top,
      rgba(184,146,69,0.18),
      transparent 32%
    ),
    var(--navy-950);
}

.vcard {
  width: min(100%, 520px);
  padding: 3rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  text-align: center;
}

.vcard-mark {
  width: 74px;
  height: 74px;
  margin: 0 auto 1.4rem;
  display: grid;
  place-items: center;

  border: 2px solid var(--gold);
  border-radius: 50%;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: bold;
  color: var(--navy-900);
}

.vcard h1 {
  margin-bottom: 0.35rem;
  font-size: 2.25rem;
}

.vcard-role {
  margin-bottom: 0.25rem;
  font-weight: 700;
  color: var(--navy-800);
}

.vcard-company {
  margin-bottom: 1.6rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.vcard-divider {
  width: 70px;
  height: 2px;
  margin: 1.6rem auto;
  background: var(--gold);
}

.vcard-links {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.vcard-links a {
  display: block;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;

  color: var(--navy-900);
  text-decoration: none;
  font-weight: 700;
}

.vcard-links a:hover {
  border-color: var(--gold);
  background: var(--cream);
}

.vcard-tagline {
  margin-top: 1.75rem;
  color: var(--text-muted);
  font-style: italic;
}

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

@media (max-width: 760px) {

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.85rem 1.2rem;
  }

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

  .section {
    padding: 3.5rem 0;
  }

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

  .vcard {
    padding: 2rem 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
