/* ---------- Design tokens ---------- */
:root {
  --navy: #142B4B;
  --navy-deep: #0D1F38;
  --steel: #5C7A99;
  --steel-light: #A9BFD4;
  --mist: #EEF3F7;
  --bg: #FBFCFD;
  --white: #FFFFFF;
  --text: #24303E;
  --text-soft: #5B6B7C;
  --border: #E1E8EE;
  --radius: 14px;
  --shadow: 0 20px 40px -20px rgba(20, 43, 75, 0.25);
  --shadow-sm: 0 8px 20px -12px rgba(20, 43, 75, 0.2);
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: white;
  padding: 12px 20px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.15;
  font-weight: 600;
}

p { margin: 0 0 16px; }

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

ul { padding: 0; margin: 0; list-style: none; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--steel);
  margin: 0 0 10px;
}
.eyebrow.center { text-align: center; }

.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-title.center { text-align: center; }

.section-lede {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 640px;
}
.section-lede.center { text-align: center; margin-left: auto; margin-right: auto; }

.section { padding: 96px 0; }
.section-alt { background: var(--mist); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--navy-deep); }

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

.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); }

.btn-small { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 252, 253, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark { height: 40px; width: auto; }
.brand-text {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.1;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  color: var(--steel);
}

.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  position: relative;
  padding: 6px 2px;
}
.main-nav a:hover { color: var(--navy); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  overflow: hidden;
  padding-bottom: 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

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

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-bottom: 20px;
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 520px;
}

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

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-badges li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 14px;
  border-radius: 999px;
}

.hero-media { display: flex; flex-direction: column; align-items: center; }

.hero-photo-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow);
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; }

.hero-signature {
  margin-top: 16px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--steel-light);
}

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; display: block; }
.hero-wave path { fill: var(--bg); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel);
  text-align: center;
}
.trust-inner .dot { color: var(--border); }

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card > p { color: var(--text-soft); font-size: 0.96rem; }

.feature-list { margin-top: 16px; }
.feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--text);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: var(--steel);
  border-radius: 50%;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card-featured {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: scale(1.03);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin: 0;
}

.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-desc { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 18px; }
.price-value {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 22px;
}
.price-value span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
}

.check-list { flex-grow: 1; margin-bottom: 26px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.92rem;
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  color: var(--steel);
  font-weight: 700;
}

.pricing-footnote {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-top: 40px;
}

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

.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.about-copy p { color: var(--text-soft); }

.about-credentials {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.about-credentials li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.94rem;
}
.about-credentials li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  color: var(--steel);
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 10px 18px 10px 10px;
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.credential-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.credential-badge img { height: 44px; width: auto; }
.credential-badge span {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}

/* ---------- Service area ---------- */
.area-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}
.area-tags span {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}
.area-note { color: var(--text-soft); font-size: 0.92rem; }
.area-graphic {
  display: flex;
  justify-content: center;
  opacity: 0.9;
}
.area-graphic img { max-width: 260px; }

/* ---------- CTA / Contact ---------- */
.cta-section {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0;
}
.cta-section .eyebrow { color: var(--steel-light); }
.cta-section .section-title { color: var(--white); }
.cta-section .section-lede { color: rgba(255,255,255,0.78); }

.contact-form {
  max-width: 560px;
  margin: 48px auto 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 36px;
}

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--steel-light);
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,0.5); }
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--steel-light);
  background: rgba(255,255,255,0.12);
}

.form-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin: 14px 0 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand .brand-mark {
  height: 44px;
  width: 44px;
  padding: 6px;
  background: var(--white);
  border-radius: 10px;
  object-fit: contain;
}
.footer-name {
  font-family: var(--font-head);
  color: var(--white);
  font-weight: 600;
  margin: 0;
}
.footer-tagline { margin: 2px 0 0; font-size: 0.85rem; }

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a:hover { color: var(--white); }

.footer-contact a { font-weight: 600; color: var(--white); }
.footer-contact p { margin: 8px 0 0; font-size: 0.9rem; }

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

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-media { order: -1; }
  .hero-photo-frame { max-width: 220px; }
  .card-grid, .pricing-grid { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; }
  .about-inner, .area-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 320px; margin: 0 auto; }
  .area-graphic { order: -1; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
}

@media (max-width: 800px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav a {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
  }
  .nav-toggle { display: flex; }
  .header-actions .btn-small { display: none; }
  .section { padding: 64px 0; }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
