:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-2: #ece9e1;
  --text: #131820;
  --muted: #606874;
  --line: #d9d5cd;
  --navy: #10243d;
  --navy-2: #183653;
  --accent: #b88944;
  --accent-soft: #ead9bc;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(18, 28, 42, .08);
}

* { box-sizing: border-box; }
html {
    /*scroll-snap-type: y mandatory;*/
    scroll-behavior: smooth;
}
body {
    /*scroll-snap-type: y mandatory;*/
    scroll-behavior: smooth; 
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 104px 0; }

/*main > section {*/
/*  scroll-snap-align: start;*/
/*}*/

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(246, 244, 239, .88);
  border-bottom: 1px solid rgba(217, 213, 205, .72);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { 
    /*display: inline-flex;*/
    display: block;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    padding-top: 21px;
}
.brand-mark {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy); color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 14px; letter-spacing: .06em;
}
.brand-text { font-family: 'Manrope', sans-serif; font-size: 25px; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.nav a { color: #33404d; }
.nav a:hover { color: var(--navy); }
.nav-cta { padding: 10px 16px; border: 1px solid var(--navy); border-radius: 999px; }
.menu-toggle { display: none; background: none; border: 0; font-size: 26px; cursor: pointer; }

.hero { padding-top: 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 72px; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow.light { color: #d9bd8a; }
h1, h2, h3 { font-family: 'Manrope', sans-serif; line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(46px, 6vw, 78px); letter-spacing: -.045em; margin-bottom: 26px; }
h2 { font-size: clamp(34px, 4.2vw, 54px); letter-spacing: -.035em; margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 12px; }
p { margin-top: 0; }
.hero-lead { max-width: 720px; font-size: 21px; color: var(--muted); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--navy-2); transform: translateY(-1px); }
.btn-secondary { border-color: #bcb7ae; background: transparent; }
.btn-secondary:hover { background: white; }
.full { width: 100%; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hero-proof div { border-top: 1px solid var(--line); padding-top: 15px; }
.hero-proof strong { display: block; font-family: 'Manrope', sans-serif; margin-bottom: 3px; }
.hero-proof span { display: block; font-size: 13px; color: var(--muted); line-height: 1.4; }

.hero-visual { position: relative; }
.photo-placeholder {
  border: 1px dashed #bdb5a8;
  background:
    linear-gradient(135deg, rgba(255,255,255,.7), rgba(234,231,223,.75)),
    repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(16,36,61,.03) 18px, rgba(16,36,61,.03) 36px);
  color: #6f766f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}
.photo-placeholder span { font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: .12em; font-size: 12px; }
/*.photo-placeholder small { margin-top: 10px; max-width: 220px; }*/
.portrait.large { min-height: 620px; border-radius: 0; border-style: none; padding: 0; box-shadow: var(--shadow); }
.landscape { min-height: 520px; 
/*border-radius: 28px;*/
border-radius: 0; border-style: none; padding: 0; }
.floating-card {
  position: absolute;
  right: -24px;
  bottom: 32px;
  width: 240px;
  padding: 20px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 38px rgba(16,36,61,.15);
}
.mini-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 6px; font-weight: 700; }
.floating-card strong { font-family: 'Manrope', sans-serif; font-size: 18px; line-height: 1.25; }

.problem-strip { background: var(--navy); color: white; padding: 70px 0; }
.strip-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.strip-copy h2 { font-size: clamp(30px, 3.5vw, 46px); margin-bottom: 0; }
.strip-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.strip-list span { padding: 18px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(255,255,255,.05); }

.section-heading { max-width: 820px; margin-bottom: 48px; }
.section-heading.narrow { max-width: 760px; }
.section-heading p { color: var(--muted); font-size: 18px; }
.cards { display: grid; gap: 24px; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.two-col { grid-template-columns: repeat(2, 1fr); }
.service-card, .outcome-card {
  background: var(--surface);
  border: 1px solid #e4e0d8;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 12px 30px rgba(18, 28, 42, .04);
}
.service-card.featured { background: var(--navy); color: white; border-color: var(--navy); }
.service-card.featured p, .service-card.featured li { color: #dfe6ee; }
.service-number { display: block; color: var(--accent); font-weight: 800; font-size: 12px; letter-spacing: .12em; margin-bottom: 28px; }
.service-card p { color: var(--muted); }
ul { padding-left: 18px; margin-bottom: 0; }
li + li { margin-top: 8px; }

.alt-bg { background: var(--surface-2); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 74px; align-items: center; }
.about-copy p { color: #4f5965; font-size: 18px; }
.about-callout { padding-left: 22px; border-left: 3px solid var(--accent); color: var(--text) !important; font-weight: 600; }

.compact-cards .outcome-card { padding: 28px; }
.outcome-card p { color: var(--muted); margin-bottom: 0; }
.dark-section { background: #0d1a2b; color: white; }
.engagement-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.dark-section p { color: #c7d0dc; font-size: 18px; }
.engagement-list { border-top: 1px solid rgba(255,255,255,.15); }
.engagement-item { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.engagement-item strong { font-family: 'Manrope', sans-serif; font-size: 19px; }
.engagement-item span { color: #c7d0dc; }

.philosophy { text-align: center; }
.quote-wrap { max-width: 930px; }
.quote-mark { font-size: 78px; line-height: .6; color: var(--accent); margin-bottom: 16px; font-family: Georgia, serif; }
blockquote { margin: 0 auto 18px; font-family: 'Manrope', sans-serif; font-size: clamp(30px, 4vw, 52px); line-height: 1.14; letter-spacing: -.025em; }
.quote-wrap p { color: var(--muted); }

.contact-section { background: #f0ede6; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }

.contact-options {
  margin-top: 2rem;
}

.contact-option {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.65;
}

.phone-cta {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  /*font-size: clamp(1rem, 3vw, 2.6rem);*/
  font-weight: 700;
  text-decoration: none;
  color: inherit;
  line-height: 1.1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.phone-cta:hover {
  opacity: 0.7;
  transform: translateX(4px);
}

.contact-note {
  font-size: 0.9rem;
  opacity: 0.65;
}

.contact-copy p { font-size: 18px; color: var(--muted); }
.contact-links { display: flex; flex-direction: column; gap: 6px; margin-top: 28px; font-weight: 700; }
.contact-form { background: white; padding: 32px; border-radius: 24px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
input, textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #d8d3cb;
  border-radius: 12px;
  padding: 13px 14px;
  background: #fcfbf8;
  color: var(--text);
}
textarea { resize: vertical; }
.form-note { display: block; color: #7a8189; margin-top: 12px; line-height: 1.4; }

.site-footer { background: #08111d; color: white; padding: 30px 0; }
.footer-wrap { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.footer-wrap > div:first-child { display: flex; flex-direction: column; }
.footer-wrap span { color: #aeb8c3; font-size: 13px; }
.footer-right { display: flex; gap: 18px; align-items: center; }
.footer-right a { font-size: 13px; font-weight: 700; }

@media (max-width: 960px) {
  .hero-grid, .strip-grid, .about-grid, .engagement-grid, .contact-grid { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .hero-grid { gap: 44px; }
  .portrait.large { min-height: 520px; }
  .floating-card { right: 20px; }
  .about-grid { gap: 40px; }
  .engagement-grid { gap: 34px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section-pad { padding: 74px 0; }
  .nav {
    display: none;
    position: absolute;
    left: 14px; right: 14px; top: 70px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 6px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .menu-toggle { display: block; }
  .hero { padding-top: 58px; }
  .hero-proof { grid-template-columns: 1fr; }
  .two-col, .strip-list, .form-row { grid-template-columns: 1fr; }
  .engagement-item { grid-template-columns: 1fr; gap: 8px; }
  .portrait.large { min-height: 430px; }
  .landscape { min-height: 360px; }
  .floating-card { position: static; width: 100%; margin-top: 14px; }
  .footer-wrap, .footer-right { flex-direction: column; align-items: flex-start; }
}
