:root {
  --navy: #262c38;
  --navy-soft: #3a4152;
  --gold: #cdc099;
  --gold-soft: #e4dcc4;
  --gold-deep: #c2a25e;
  --cream: #f4f0e8;
  --peach: #f0e2cd;
  --sage: #93a29b;
  --white: #ffffff;
  --text: #2b2b2b;
  --text-muted: #5b5b5b;
  --border: #e4dfd2;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(38, 44, 56, 0.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Karla', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.15rem; }

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

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

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold-deep) 50%, var(--sage) 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}

.logo span { color: var(--gold); font-style: italic; }

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-size: 0.95rem;
  color: var(--navy);
  opacity: 0.8;
}

.main-nav a:hover { opacity: 1; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn::after {
  content: "→";
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn-outline::after, .btn-outline-light::after { display: none; }

.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translateX(3px); }
.btn:active { transform: translateY(0); }

.btn-small { padding: 10px 20px; font-size: 0.88rem; }

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(38, 44, 56, 0.22);
}
.btn-dark:hover { background: var(--navy-soft); box-shadow: 0 10px 26px rgba(38, 44, 56, 0.3); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.btn-light:hover { background: var(--peach); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* Hero */
.hero {
  position: relative;
  padding: 110px 0 100px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 340px;
  height: 340px;
  background-image: radial-gradient(var(--gold-deep) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.22;
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205,192,153,0.14) 0%, transparent 70%);
}

.hero h1 { color: var(--white); }

.hero .wrap { position: relative; z-index: 1; }

.hero-inner { max-width: 540px; }

.hero-photo {
  position: absolute;
  right: 4%;
  bottom: 0;
  top: 24px;
  z-index: 1;
  pointer-events: none;
  transform: scale(0.8);
  transform-origin: bottom right;
}

.hero-photo img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}

.lead { font-size: 1.15rem; max-width: 620px; color: rgba(255,255,255,0.78); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0 0;
}

/* Sections */
.section { padding: 80px 0; }

.section-alt { background: var(--peach); }

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.eyebrow-light { color: var(--gold); }

.section-lead { max-width: 640px; font-size: 1.05rem; }

/* Cards */
.card-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-deep);
}

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

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--peach) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--navy);
  box-shadow: 0 0 0 3px rgba(194, 162, 94, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover .icon-circle { transform: scale(1.08); box-shadow: 0 0 0 4px rgba(194, 162, 94, 0.3); }

.card-grid-4 .icon-circle { color: var(--gold-deep); }

.icon-circle svg { width: 22px; height: 22px; }

.card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.card p { margin: 0; font-size: 0.95rem; }

.services-note {
  margin-top: 32px;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--sage);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.step { position: relative; padding-left: 8px; }

.step-number {
  display: block;
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 8px;
}

.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.95rem; margin: 0; }

/* Magnet */
.magnet-box {
  position: relative;
  background: var(--navy);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}

.magnet-box::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(var(--gold-deep) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.18;
}

.magnet-box .eyebrow { color: var(--gold); }
.magnet-box h2 { color: var(--white); }
.magnet-box p { color: rgba(255,255,255,0.78); }
.magnet-desc { font-size: 0.95rem; }

.magnet-card-mock {
  background: var(--peach);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.magnet-card-mock h4 {
  font-family: 'Lora', serif;
  color: var(--navy);
  font-size: 1.3rem;
  margin: 10px 0 8px;
}

.magnet-card-mock p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.mock-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--gold-soft);
  margin-bottom: 8px;
}

.mock-bar.short { width: 60%; }

/* Journey map */
.journey-map {
  position: relative;
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.journey-node {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  text-align: center;
  min-width: 140px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.journey-node:hover { transform: translateY(-3px); }

.journey-node span {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.journey-node-dark {
  background: var(--navy);
  color: var(--white);
}

.journey-node-dark span { color: rgba(255,255,255,0.7); }

.journey-arrow {
  color: var(--gold-deep);
  font-size: 1.3rem;
}

/* Fit grid */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.fit-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: box-shadow 0.25s ease;
}

.fit-col:hover { box-shadow: var(--shadow); }

.fit-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.fit-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text);
}

.fit-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.fit-yes li::before {
  content: "✓";
  background: var(--navy);
  color: var(--white);
}

.fit-no li::before {
  content: "✕";
  background: var(--gold-soft);
  color: var(--sage);
}

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 56px;
  align-items: center;
}

.about-photo img {
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(38, 44, 56, 0.16);
}

.about-tags {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
  margin-top: 20px;
}

/* CTA panel */
.cta-panel {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 260px;
  height: 260px;
  background-image: radial-gradient(var(--gold-deep) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.18;
  border-radius: 50%;
}

.cta-panel .wrap { position: relative; z-index: 1; }

.cta-panel h2 { color: var(--white); max-width: 620px; margin: 0 auto 16px; }
.cta-panel p { color: rgba(255,255,255,0.78); max-width: 520px; margin: 0 auto 32px; }

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo { color: var(--white); margin-bottom: 8px; }
.footer-tagline { font-size: 0.85rem; margin: 0; }

.footer-contact a, .footer-social a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover, .footer-social a:hover { color: var(--gold); }
.footer-contact p, .footer-social p { margin: 0 0 6px; font-size: 0.9rem; }

.footer-bottom {
  padding: 20px 0;
  font-size: 0.8rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .magnet-box { grid-template-columns: 1fr; padding: 36px 28px; }
  .fit-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .journey-map { flex-direction: column; }
  .journey-arrow { transform: rotate(90deg); }
  .hero { display: flex; flex-direction: column; }
  .hero-inner { max-width: 100%; }
  .hero-photo {
    position: static;
    order: -1;
    height: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
  }
  .hero-photo img { height: auto; max-height: 300px; }
}

@media (max-width: 560px) {
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
  .section { padding: 56px 0; }
}
