:root {
  --bg: #f4f0e8;
  --paper: #fffdfa;
  --paper-soft: #f8f4ee;
  --ink: #17202a;
  --muted: #5d6673;
  --line: rgba(23, 32, 42, 0.1);
  --navy: #213142;
  --navy-soft: #31475f;
  --gold: #9a7545;
  --gold-soft: #d3b58c;
  --shadow: 0 18px 40px rgba(20, 28, 38, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8f4ee 0%, #f1ebe2 100%);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--navy);
  color: #f8f2e7;
  font-size: 0.94rem;
}
.topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 250, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-logo {
  width: 82px;
  height: auto;
}
.brand-text {
  display: grid;
  gap: 3px;
}
.brand-text strong,
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--navy);
}
.brand-text strong {
  font-size: 1.45rem;
  line-height: 1;
}
.brand-text small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 700;
  color: var(--navy);
}

.hero {
  padding: 56px 0 36px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
  gap: 34px;
  align-items: start;
}
.hero-copy,
.portrait-card,
.trust-card,
.intro-card,
.services-grid article,
.process-list article,
.contact-box {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: 40px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.75rem;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.9rem, 5.2vw, 4.7rem);
  line-height: 0.95;
  max-width: 11ch;
}
.lead {
  margin: 22px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.11rem;
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--navy);
  color: #fff;
}
.button-secondary {
  border: 1px solid rgba(33, 49, 66, 0.18);
  color: var(--navy);
  background: rgba(255,255,255,0.72);
}
.hero-points {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hero-points div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(248, 244, 238, 0.9);
  border: 1px solid rgba(33, 49, 66, 0.08);
}
.hero-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}
.hero-points span {
  color: var(--muted);
  font-size: 0.96rem;
}
.hero-side {
  display: grid;
  gap: 20px;
}
.portrait-card {
  overflow: hidden;
}
.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.portrait-meta {
  padding: 18px 22px 22px;
  display: grid;
  gap: 2px;
}
.portrait-meta strong {
  font-size: 1.22rem;
  color: var(--navy);
}
.portrait-meta span {
  color: var(--muted);
}
.trust-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(33,49,66,0.97), rgba(49,71,95,0.95));
  color: #f3f6fa;
}
.trust-card .eyebrow { color: var(--gold-soft); }
.trust-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.trust-card li {
  position: relative;
  padding-left: 18px;
}
.trust-card li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  position: absolute;
  top: 0.72em;
  left: 0;
}

.section {
  padding: 72px 0;
}
.section-alt {
  background: rgba(255, 255, 255, 0.28);
  border-top: 1px solid rgba(33, 49, 66, 0.06);
  border-bottom: 1px solid rgba(33, 49, 66, 0.06);
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
}
.intro-card {
  padding: 34px;
}
.intro-highlight {
  background: linear-gradient(180deg, #223246, #2c4259);
  color: #eef2f6;
}
.intro-highlight h2,
.intro-highlight p,
.intro-highlight .eyebrow {
  color: inherit;
}
.intro-highlight .eyebrow {
  color: var(--gold-soft);
}
.section-heading {
  max-width: 760px;
}
.section-heading h2,
.process-grid h2,
.contact-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.02;
}
.section-heading p,
.intro-card p,
.process-list p,
.contact-panel p,
.contact-box p,
.footer-grid p {
  color: var(--muted);
}
.services-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.services-grid article {
  padding: 26px;
}
.services-grid h3,
.process-list h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1;
}
.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: start;
}
.process-list {
  display: grid;
  gap: 16px;
}
.process-list article {
  padding: 24px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}
.process-list span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(33, 49, 66, 0.07);
  color: var(--navy);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}
.contact-section {
  padding-top: 28px;
}
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 30px;
  align-items: start;
}
.contact-box {
  padding: 28px;
}
.muted-note {
  font-size: 0.97rem;
}
.site-footer {
  background: var(--navy);
  color: #f7f1e7;
}
.footer-grid {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .intro-grid,
  .process-grid,
  .contact-panel,
  .services-grid,
  .hero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 18px 0;
  }
  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-copy,
  .trust-card,
  .intro-card,
  .services-grid article,
  .process-list article,
  .contact-box {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar-inner,
  .topbar-links,
  .footer-grid {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 10px 0;
  }
  .nav-links { display: none; }
  .hero-copy h1 { max-width: none; }
  .process-list article {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 54px 0;
  }
}
