:root {
  --bg: #f7f4ee;
  --paper: rgba(255,255,255,0.78);
  --paper-strong: rgba(255,255,255,0.92);
  --ink: #1f2933;
  --muted: #5f6c76;
  --line: rgba(31, 41, 51, 0.1);
  --navy: #20334a;
  --navy-2: #2f4b69;
  --gold: #c49a4a;
  --teal: #2e7a78;
  --rose: #b86c7d;
  --shadow: 0 18px 60px rgba(24, 36, 52, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(196,154,74,0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(46,122,120,0.14), transparent 32%),
    linear-gradient(180deg, #f8f6f1 0%, #f4efe6 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1,h2,h3,h4 {
  margin: 0 0 1rem;
  color: var(--navy);
  line-height: 1.08;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}
h1 { font-size: clamp(3.2rem, 8vw, 6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(247,244,238,0.82);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 78px;
}
.brand {
  display: flex; flex-direction: column; gap: 0.1rem;
}
.brand-mark { font-size: 0.82rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.brand-name { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.nav { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--navy); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.35rem; border-radius: 999px; font-weight: 700; transition: 180ms ease;
  border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: white; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--navy); border-color: rgba(32,51,74,0.16); }
.btn-secondary:hover { background: rgba(32,51,74,0.05); }
.hero { padding: 4.5rem 0 3rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: center;
}
.eyebrow {
  display: inline-flex; padding: 0.45rem 0.8rem; border-radius: 999px; background: rgba(196,154,74,0.12);
  color: var(--navy); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.2rem;
}
.hero-copy .lead { font-size: 1.18rem; max-width: 58ch; color: #42515d; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-card {
  position: relative; padding: 1rem; border-radius: 32px; background: linear-gradient(145deg, rgba(255,255,255,0.86), rgba(255,255,255,0.56));
  border: 1px solid rgba(255,255,255,0.6); box-shadow: var(--shadow);
}
.hero-photo {
  border-radius: 24px; aspect-ratio: 4 / 5; object-fit: cover; width: 100%;
}
.floating-note {
  position: absolute; left: -1rem; bottom: 2rem; max-width: 240px;
  padding: 1rem 1.1rem; border-radius: 18px; background: var(--paper-strong); box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.8);
}
.floating-note strong { display: block; color: var(--navy); margin-bottom: 0.25rem; }
.section { padding: 4rem 0; }
.section.alt { background: rgba(255,255,255,0.5); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: 2rem; }
.grid-3, .grid-2, .cards {
  display: grid; gap: 1.4rem;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cards { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card, .quote, .feature {
  background: var(--paper); border: 1px solid rgba(255,255,255,0.72); box-shadow: var(--shadow);
  border-radius: var(--radius); padding: 1.5rem;
}
.card h3, .feature h3 { margin-bottom: 0.6rem; }
.kicker { color: var(--gold); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.6rem; }
.split {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 2rem; align-items: center;
}
.portrait-frame {
  padding: 1rem; border-radius: 32px; background: linear-gradient(160deg, rgba(32,51,74,0.08), rgba(196,154,74,0.12));
  box-shadow: var(--shadow);
}
.portrait-frame img { border-radius: 24px; aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.stat-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.2rem; }
.stat {
  min-width: 170px; padding: 1rem 1.1rem; border-radius: 18px; background: rgba(255,255,255,0.7); border: 1px solid var(--line);
}
.stat strong { display: block; font-size: 1.6rem; color: var(--navy); }
.process {
  counter-reset: step;
}
.process .step {
  position: relative; padding-left: 4rem;
}
.process .step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0.1rem; width: 2.7rem; height: 2.7rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #d8b16a); color: white; display: grid; place-items: center; font-weight: 800;
}
.quote {
  font-size: 1.08rem; color: #3d4b56;
}
.quote strong { color: var(--navy); }
.cta-band {
  padding: 2rem; border-radius: 30px; background: linear-gradient(135deg, var(--navy), #243e5d 55%, var(--teal));
  color: white; box-shadow: var(--shadow);
}
.cta-band h2, .cta-band p { color: white; }
.footer {
  padding: 2.2rem 0 3rem; border-top: 1px solid var(--line); color: var(--muted);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
}
.lead-box {
  max-width: 720px; margin: 0 auto; text-align: center; padding: 2.2rem;
}
.input-shell {
  display: grid; gap: 0.9rem; grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 1.3rem;
}
.input-shell input {
  width: 100%; padding: 1rem 1.1rem; border-radius: 16px; border: 1px solid var(--line); background: white; font: inherit;
}
.input-shell .full { grid-column: 1 / -1; }
.small { font-size: 0.92rem; color: var(--muted); }
.badge-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }
.badge {
  padding: 0.55rem 0.8rem; border-radius: 999px; background: rgba(46,122,120,0.08); color: var(--navy); font-size: 0.92rem; font-weight: 600;
}
.blog-list { display: grid; gap: 1rem; }
.blog-item {
  display: grid; gap: 0.35rem; padding: 1.3rem 1.4rem; border-radius: 22px; background: var(--paper); border: 1px solid rgba(255,255,255,0.72); box-shadow: var(--shadow);
}
.blog-item span { color: var(--gold); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.notice {
  border-left: 4px solid var(--gold); padding: 1rem 1rem 1rem 1.1rem; background: rgba(196,154,74,0.08); border-radius: 14px;
}
:focus-visible {
  outline: 3px solid rgba(46,122,120,0.45);
  outline-offset: 3px;
}
@media (max-width: 960px) {
  .hero-grid, .split, .grid-2, .grid-3, .cards, .footer-grid, .input-shell { grid-template-columns: 1fr; }
  .header-inner { padding: 0.8rem 0; align-items: flex-start; }
  .nav { width: 100%; }
  .floating-note { position: static; margin-top: 1rem; max-width: none; }
}
@media (max-width: 640px) {
  .hero { padding-top: 2.5rem; }
  .section { padding: 3rem 0; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}
