:root {
  --paper: #f6f4ef;
  --paper-2: #ece8df;
  --ink: #111820;
  --ink-soft: #4b5963;
  --navy: #123b5a;
  --navy-deep: #0c273b;
  --line: rgba(17, 24, 32, .14);
  --white: #fff;
  --shadow: 0 20px 55px rgba(17, 24, 32, .08);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: rgba(18, 59, 90, .16); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy);
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }
.kicker { color: var(--navy); font-size: .86rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.serif { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.muted { color: var(--ink-soft); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: max-content; }
.brand-mark {
  width: 39px; height: 39px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: var(--paper); font-size: .75rem; letter-spacing: .06em; font-weight: 800;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: .88rem; letter-spacing: .03em; }
.brand-copy span { margin-top: 5px; font-size: .68rem; color: var(--ink-soft); letter-spacing: .07em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 27px; font-size: .88rem; font-weight: 650; }
.nav-links a { position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--ink); transition: right .2s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle span { width: 22px; height: 1.5px; background: var(--ink); display: block; margin: 5px 0; }

.btn {
  min-height: 46px; padding: 0 20px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid var(--ink); font-weight: 700; font-size: .88rem; transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-light { background: transparent; color: var(--ink); }
.btn-link { border-color: var(--line); background: rgba(255,255,255,.38); }
.arrow { font-size: 1.08em; }

.hero { padding: 84px 0 68px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 64px; align-items: end; }
.hero h1 {
  margin: 18px 0 25px; max-width: 890px;
  font-size: clamp(3.5rem, 7.2vw, 7.7rem); line-height: .93; letter-spacing: -.052em;
}
.hero h1 em { color: var(--navy); font-style: normal; }
.hero-lead { max-width: 700px; font-size: clamp(1.14rem, 1.7vw, 1.43rem); color: #2c3942; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-aside { padding-bottom: 10px; }
.hero-profile { align-self: stretch; display: flex; flex-direction: column; justify-content: flex-end; }
.profile-flip {
  width: 100%; aspect-ratio: 4 / 5; margin: 0 0 20px; padding: 0; border: 0; border-radius: 28px;
  background: transparent; color: inherit; cursor: pointer; perspective: 1400px; text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.profile-flip:focus-visible { outline: 3px solid rgba(18,59,90,.34); outline-offset: 5px; }
.profile-flip-inner {
  position: relative; display: block; width: 100%; height: 100%; border-radius: inherit;
  transform-style: preserve-3d; transition: transform .72s cubic-bezier(.2,.72,.18,1);
  box-shadow: var(--shadow);
}
.profile-flip.is-flipped .profile-flip-inner { transform: rotateY(180deg); }
.profile-face {
  position: absolute; inset: 0; display: flex; overflow: hidden; border-radius: inherit;
  backface-visibility: hidden; -webkit-backface-visibility: hidden; border: 1px solid rgba(17,24,32,.08);
}
.profile-front { background: var(--paper-2); }
.profile-front img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.flip-hint {
  position: absolute; right: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: 999px; color: #fff; background: rgba(12,39,59,.72);
  backdrop-filter: blur(10px); font-size: .73rem; font-weight: 750; letter-spacing: .035em;
}
.profile-back {
  transform: rotateY(180deg); flex-direction: column; justify-content: space-between; padding: clamp(26px, 3.2vw, 42px);
  background: var(--navy-deep); color: var(--paper); border-color: rgba(246,244,239,.14);
}
.card-top, .card-bottom { display: flex; flex-direction: column; align-items: flex-start; }
.card-top { gap: 14px; }
.card-monogram {
  width: 50px; height: 50px; border: 1px solid rgba(246,244,239,.44); border-radius: 50%; display: grid; place-items: center;
  font-size: .78rem; font-weight: 850; letter-spacing: .09em;
}
.card-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(246,244,239,.58); }
.card-body { display: flex; flex-direction: column; gap: 18px; }
.card-body strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4.2vw, 3.7rem); line-height: .94; letter-spacing: -.045em; font-weight: 400; }
.card-body > span { max-width: 330px; color: rgba(246,244,239,.74); font-size: clamp(.85rem, 1.2vw, 1rem); line-height: 1.45; }
.card-bottom { gap: 5px; font-size: .76rem; color: rgba(246,244,239,.72); }
.flip-back-hint { margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; color: var(--paper); font-weight: 750; }
.portrait-note { padding-right: 8px; }
.aside-card { border-top: 1px solid var(--ink); padding-top: 19px; }
.aside-card p { margin: 8px 0 0; color: var(--ink-soft); }
.status { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 700; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #398456; box-shadow: 0 0 0 5px rgba(57,132,86,.11); }

.proofbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof { padding: 27px 24px 28px 0; border-right: 1px solid var(--line); }
.proof:not(:first-child) { padding-left: 24px; }
.proof:last-child { border-right: 0; }
.proof strong { display: block; font-size: clamp(1.9rem, 3vw, 3rem); letter-spacing: -.045em; line-height: 1; }
.proof span { display: block; max-width: 220px; margin-top: 9px; color: var(--ink-soft); font-size: .86rem; }

.section { padding: 104px 0; }
.section-tight { padding: 76px 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-navy { background: var(--navy-deep); color: var(--paper); }
.section-head { display: grid; grid-template-columns: .78fr 1.22fr; gap: 60px; margin-bottom: 54px; }
.section-head h2 { margin: 0; font-size: clamp(2.5rem, 4.5vw, 4.9rem); line-height: 1; letter-spacing: -.045em; }
.section-head p { margin: 2px 0 0; font-size: 1.08rem; color: var(--ink-soft); max-width: 720px; }
.section-dark .section-head p, .section-navy .section-head p { color: rgba(246,244,239,.72); }
.section-dark .eyebrow, .section-navy .eyebrow { color: #bed3e2; }

.solve-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.solve-card { padding: 30px 28px 34px 0; border-right: 1px solid var(--line); }
.solve-card + .solve-card { padding-left: 28px; }
.solve-card:last-child { border-right: 0; }
.solve-num { color: var(--navy); font-size: .8rem; font-weight: 800; letter-spacing: .12em; }
.solve-card h3 { margin: 42px 0 15px; font-size: 1.45rem; letter-spacing: -.025em; }
.solve-card p { color: var(--ink-soft); margin: 0 0 25px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 750; border-bottom: 1px solid var(--line); padding-bottom: 4px; }

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-card {
  min-height: 430px; padding: 30px; border: 1px solid rgba(246,244,239,.18); border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: space-between; background: rgba(255,255,255,.02);
}
.case-tag { font-size: .77rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; color: #bed3e2; }
.case-card h3 { margin: 18px 0 14px; font-size: 1.8rem; line-height: 1.12; letter-spacing: -.03em; }
.case-card p { color: rgba(246,244,239,.69); }
.case-result { padding-top: 24px; border-top: 1px solid rgba(246,244,239,.16); }
.case-result strong { display: block; font-size: 1.72rem; letter-spacing: -.03em; }
.case-result span { color: rgba(246,244,239,.64); font-size: .82rem; }

.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.story-panel { position: sticky; top: 110px; }
.story-year { font-size: clamp(6.4rem, 14vw, 12.5rem); line-height: .8; letter-spacing: -.07em; color: var(--navy); opacity: .13; font-weight: 800; }
.story-copy h2 { font-size: clamp(2.6rem, 5vw, 5.6rem); line-height: .97; letter-spacing: -.05em; margin: 12px 0 28px; }
.story-copy p { font-size: 1.08rem; color: var(--ink-soft); }
.quote { margin: 34px 0; padding: 24px 0 24px 28px; border-left: 2px solid var(--navy); font-size: 1.35rem; }

.now-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.project-card { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.34); padding: 34px; min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; }
.project-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.project-card h3 { font-size: 2rem; margin: 18px 0 12px; letter-spacing: -.03em; }
.project-card p { color: var(--ink-soft); max-width: 560px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.pill { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; font-size: .73rem; color: var(--ink-soft); }

.cta { padding: 90px 0; }
.cta-box { background: var(--navy); color: white; border-radius: 30px; padding: clamp(34px, 7vw, 84px); display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 40px; box-shadow: var(--shadow); }
.cta-box h2 { margin: 0; max-width: 780px; font-size: clamp(2.6rem, 5vw, 5.7rem); line-height: .95; letter-spacing: -.05em; }
.cta-box p { color: rgba(255,255,255,.72); margin-bottom: 24px; }
.cta-box .btn { border-color: white; color: var(--navy); background: white; }

.page-hero { padding: 88px 0 56px; border-bottom: 1px solid var(--line); }
.page-hero h1 { margin: 18px 0 22px; font-size: clamp(3.7rem, 7vw, 7rem); line-height: .94; letter-spacing: -.055em; max-width: 1000px; }
.page-hero p { max-width: 780px; font-size: 1.2rem; color: var(--ink-soft); }

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.offer { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.32); min-height: 440px; display: flex; flex-direction: column; }
.offer .number { color: var(--navy); font-weight: 800; letter-spacing: .1em; font-size: .8rem; }
.offer h2 { margin: 22px 0 14px; font-size: 1.75rem; letter-spacing: -.03em; }
.offer p { color: var(--ink-soft); }
.offer ul { padding-left: 20px; margin-top: 20px; color: var(--ink-soft); }
.offer li { margin: 7px 0; }
.offer .text-link { margin-top: auto; align-self: flex-start; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-step { padding: 26px 25px 0 0; border-right: 1px solid var(--line); }
.process-step + .process-step { padding-left: 25px; }
.process-step:last-child { border-right: 0; }
.process-step strong { display: block; font-size: .78rem; color: var(--navy); letter-spacing: .1em; }
.process-step h3 { margin: 33px 0 10px; font-size: 1.18rem; }
.process-step p { color: var(--ink-soft); font-size: .9rem; }

.timeline { border-top: 1px solid var(--line); }
.timeline-row { display: grid; grid-template-columns: 180px 1fr; gap: 40px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.timeline-row .date { font-weight: 800; color: var(--navy); }
.timeline-row h3 { margin: 0 0 9px; font-size: 1.45rem; letter-spacing: -.02em; }
.timeline-row p { margin: 0; color: var(--ink-soft); max-width: 780px; }

.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.credential-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.28); }
.credential-card h3 { margin-top: 0; }
.credential-card ul { padding-left: 18px; color: var(--ink-soft); }
.credential-card li { margin: 10px 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-card { padding: 34px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.contact-row { padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row small { display: block; color: var(--ink-soft); margin-bottom: 5px; }
.contact-row a { font-weight: 750; }

.footer { border-top: 1px solid var(--line); padding: 34px 0 45px; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; }
.footer p { margin: 0; color: var(--ink-soft); font-size: .83rem; }
.footer-links { display: flex; gap: 18px; font-size: .83rem; font-weight: 650; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 940px) {
  .nav-links { position: fixed; inset: 78px 0 auto; background: var(--paper); border-bottom: 1px solid var(--line); padding: 24px 20px 30px; display: none; flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-actions .btn { display: none; }
  .hero-grid, .section-head, .story-grid, .cta-box, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; }
  .hero-aside { max-width: 560px; width: 100%; }
  .profile-flip { aspect-ratio: 5 / 4; max-height: 520px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof:nth-child(2) { border-right: 0; }
  .proof:nth-child(3), .proof:nth-child(4) { border-top: 1px solid var(--line); }
  .solve-grid, .case-grid, .offer-grid, .process, .credentials { grid-template-columns: 1fr 1fr; }
  .solve-card:nth-child(2) { border-right: 0; }
  .solve-card:nth-child(3) { border-top: 1px solid var(--line); padding-left: 0; grid-column: 1 / -1; }
  .case-card { min-height: 360px; }
  .story-panel { position: static; }
  .now-grid { grid-template-columns: 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(3), .process-step:nth-child(4) { border-top: 1px solid var(--line); padding-top: 26px; margin-top: 24px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 70px; }
  .nav-links { inset: 70px 0 auto; }
  .brand-copy span { display: none; }
  .hero { padding: 50px 0 50px; }
  .hero h1 { font-size: clamp(3.2rem, 17vw, 5.3rem); }
  .hero-lead { font-size: 1.08rem; }
  .hero-actions .btn { width: 100%; }
  .profile-flip { aspect-ratio: 4 / 5; max-height: none; border-radius: 22px; }
  .proof-grid, .solve-grid, .case-grid, .offer-grid, .process, .credentials { grid-template-columns: 1fr; }
  .proof { border-right: 0 !important; border-top: 1px solid var(--line); padding: 22px 0 !important; }
  .proof:first-child { border-top: 0; }
  .solve-card { border-right: 0; border-top: 1px solid var(--line); padding: 28px 0 !important; }
  .solve-card:first-child { border-top: 0; }
  .solve-card h3 { margin-top: 28px; }
  .section { padding: 78px 0; }
  .section-head { gap: 22px; margin-bottom: 36px; }
  .page-hero { padding-top: 58px; }
  .page-hero h1 { font-size: clamp(3.25rem, 16vw, 5rem); }
  .process-step { border-right: 0; border-top: 1px solid var(--line); padding: 24px 0 !important; margin: 0 !important; }
  .process-step:first-child { border-top: 0; }
  .timeline-row { grid-template-columns: 1fr; gap: 12px; }
  .cta { padding: 58px 0; }
  .cta-box { padding: 35px 25px; border-radius: 22px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}

/* v7: accessible flip card controls + Work With Me refinements */
.profile-front { padding: 0; cursor: pointer; appearance: none; -webkit-appearance: none; color: inherit; font: inherit; }
.card-email { color: var(--paper); font-weight: 750; text-decoration: none; border-bottom: 1px solid rgba(246,244,239,.35); padding-bottom: 2px; }
.card-email:hover, .card-email:focus-visible { border-bottom-color: var(--paper); }
.flip-return { appearance: none; -webkit-appearance: none; border: 0; padding: 0; background: transparent; font: inherit; cursor: pointer; }
.flip-trigger:focus-visible, .flip-return:focus-visible, .card-email:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.problem-card { padding: 30px 30px 34px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 250px; }
.problem-card:nth-child(3n+2), .problem-card:nth-child(3n+3) { padding-left: 30px; }
.problem-card:nth-child(3n) { border-right: 0; }
.problem-card > span { color: var(--navy); font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.problem-card h3 { margin: 38px 0 14px; max-width: 330px; font-size: 1.35rem; line-height: 1.16; letter-spacing: -.025em; }
.problem-card p { margin: 0; color: var(--ink-soft); font-size: .93rem; }
.process-dark { border-top-color: rgba(246,244,239,.18); }
.process-dark .process-step { border-right-color: rgba(246,244,239,.18); }
.process-dark .process-step strong { color: #bed3e2; }
.process-dark .process-step p { color: rgba(246,244,239,.68); }
.fit-strip { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; padding: 38px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fit-strip h2 { margin: 16px 0 0; font-size: clamp(2.4rem,4vw,4.7rem); line-height: 1; letter-spacing: -.045em; }
.fit-strip p { margin-top: 0; font-size: 1.05rem; }

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .problem-card, .problem-card:nth-child(3n+2), .problem-card:nth-child(3n+3) { padding-left: 0; padding-right: 22px; }
  .problem-card:nth-child(odd) { border-right: 1px solid var(--line); }
  .problem-card:nth-child(even) { border-right: 0; padding-left: 22px; }
  .fit-strip { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 620px) {
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card, .problem-card:nth-child(3n+2), .problem-card:nth-child(3n+3), .problem-card:nth-child(even) { border-right: 0; padding-left: 0; padding-right: 0; min-height: 0; }
  .problem-card h3 { margin-top: 26px; max-width: none; }
}


/* v8: refined monogram identity + black contact card */
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px; background: #111214;
  display: grid; place-items: center; overflow: hidden; flex: 0 0 36px;
  border: 1px solid rgba(17,24,32,.12);
}
.brand-mark img { display: block; width: 23px; height: 22px; object-fit: contain; }

.profile-back {
  padding: clamp(24px, 3vw, 36px);
  background:
    radial-gradient(circle at 88% 8%, rgba(255,255,255,.065), transparent 26%),
    linear-gradient(145deg, #090a0b 0%, #111214 58%, #08090a 100%);
  color: #f3f1ec;
  border-color: rgba(255,255,255,.13);
}
.card-top-modern { flex-direction: row; align-items: flex-start; justify-content: space-between; width: 100%; gap: 18px; }
.card-logo { width: clamp(40px, 5.2vw, 58px); height: auto; object-fit: contain; opacity: .96; }
.card-edition { padding-top: 3px; color: rgba(243,241,236,.42); font-size: .62rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.card-body-modern { gap: 10px; margin-top: auto; margin-bottom: auto; }
.card-kicker { color: rgba(243,241,236,.48) !important; font-size: .64rem !important; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; max-width: none !important; }
.card-body-modern strong {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.5rem); line-height: 1.02; letter-spacing: -.025em; font-weight: 500;
  max-width: 390px;
}
.card-role { color: rgba(243,241,236,.72) !important; font-size: clamp(.72rem, 1vw, .86rem) !important; line-height: 1.5 !important; max-width: 370px !important; }
.card-proof {
  display: grid; grid-template-columns: repeat(3, 1fr); width: 100%;
  border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13);
  margin: 0 0 16px;
}
.card-proof > div { padding: 13px 12px 12px 0; }
.card-proof > div + div { padding-left: 12px; border-left: 1px solid rgba(255,255,255,.11); }
.card-proof strong { display: block; font-size: clamp(.92rem, 1.25vw, 1.08rem); line-height: 1; letter-spacing: -.01em; color: #f3f1ec; }
.card-proof span { display: block; margin-top: 6px; color: rgba(243,241,236,.43); font-size: clamp(.55rem, .75vw, .66rem); line-height: 1.28; }
.card-bottom-modern { gap: 4px; font-size: .7rem; color: rgba(243,241,236,.48); }
.card-email { color: #f3f1ec; font-size: clamp(.72rem, 1vw, .82rem); font-weight: 650; border-bottom-color: rgba(243,241,236,.3); }
.flip-back-hint { margin-top: 9px; color: rgba(243,241,236,.62); font-size: .67rem; font-weight: 650; letter-spacing: .025em; }

@media (max-width: 640px) {
  .profile-back { padding: 24px; }
  .card-body-modern strong { font-size: 1.85rem; }
  .card-proof > div { padding-top: 12px; padding-bottom: 11px; }
  .card-proof span { font-size: .56rem; }
  .card-edition { font-size: .56rem; }
}

/* v9: full-site premium dark direction */
:root {
  --paper: #090a0c;
  --paper-2: #111318;
  --ink: #f1eee8;
  --ink-soft: #aaa69f;
  --navy: #c7ad7b;
  --navy-deep: #0d0f13;
  --line: rgba(241, 238, 232, .12);
  --white: #f7f4ee;
  --shadow: 0 28px 90px rgba(0,0,0,.34);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1160px;
}

html { background: #090a0c; }
body {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 3%, rgba(199,173,123,.055), transparent 25rem),
    radial-gradient(circle at 4% 36%, rgba(109,132,151,.045), transparent 30rem),
    #090a0c;
}
::selection { background: rgba(199,173,123,.24); color: #fff; }

.serif { font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", Palatino, Georgia, serif; }
.eyebrow, .kicker { color: #c7ad7b; }
.eyebrow { font-size: .68rem; letter-spacing: .17em; }
.eyebrow::before { width: 22px; opacity: .75; }
.kicker { font-size: .74rem; letter-spacing: .14em; }
.muted { color: var(--ink-soft); }

.site-header {
  background: rgba(9,10,12,.78);
  border-bottom-color: rgba(241,238,232,.055);
  backdrop-filter: blur(20px) saturate(120%);
}
.site-header.scrolled { background: rgba(9,10,12,.92); border-bottom-color: var(--line); }
.nav { min-height: 72px; }
.brand { gap: 12px; }
.brand-mark {
  width: 33px; height: 33px; flex-basis: 33px; border-radius: 8px;
  background: transparent; border: 1px solid rgba(241,238,232,.13);
}
.brand-mark img { width: 22px; height: 21px; opacity: .92; }
.brand-copy strong { font-size: .82rem; font-weight: 650; letter-spacing: .045em; }
.brand-copy span { margin-top: 4px; color: #817e79; font-size: .61rem; letter-spacing: .12em; }
.nav-links { gap: 25px; color: #c3beb7; font-size: .78rem; font-weight: 570; letter-spacing: .015em; }
.nav-links a:hover { color: #fff; }
.nav-links a::after { background: #c7ad7b; bottom: -8px; }
.menu-toggle span { background: #f1eee8; }

.btn {
  min-height: 43px; padding: 0 17px; border-radius: 9px;
  border-color: rgba(241,238,232,.16); font-size: .78rem; font-weight: 650; letter-spacing: .02em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(241,238,232,.3); }
.btn-dark { background: #f1eee8; color: #0a0b0d; border-color: #f1eee8; }
.btn-dark:hover { background: #fff; border-color: #fff; }
.btn-light { background: rgba(255,255,255,.015); color: #f1eee8; }
.btn-link { background: rgba(255,255,255,.025); border-color: var(--line); }

.hero { padding: 86px 0 74px; }
.hero-grid { grid-template-columns: 1.1fr .72fr; gap: 78px; align-items: center; }
.hero h1 {
  margin: 17px 0 24px; max-width: 760px;
  font-size: clamp(3.2rem, 5.9vw, 6.05rem); line-height: .98; letter-spacing: -.048em;
}
.hero h1 em { color: #c7ad7b; }
.hero-lead { max-width: 660px; font-size: clamp(1.02rem, 1.35vw, 1.19rem); color: #b9b4ad; line-height: 1.7; }
.hero-actions { margin-top: 31px; }
.profile-flip { border-radius: 18px; }
.profile-flip-inner { box-shadow: 0 30px 100px rgba(0,0,0,.42); }
.profile-face { border-color: rgba(241,238,232,.13); }
.profile-front { background: #111318; }
.profile-front::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.025); }
.flip-hint {
  right: 13px; bottom: 13px; padding: 8px 10px; color: #e8e3dc;
  background: rgba(8,9,11,.72); border: 1px solid rgba(255,255,255,.12); font-size: .65rem;
}
.profile-flip:focus-visible { outline-color: rgba(199,173,123,.55); }
.aside-card { border-top-color: rgba(241,238,232,.14); }
.aside-card p { color: #8e8983; font-size: .81rem; }
.status { color: #d9d4cc; font-size: .75rem; font-weight: 590; }
.status::before { width: 7px; height: 7px; background: #7da789; box-shadow: 0 0 0 4px rgba(125,167,137,.10); }

.proofbar { border-color: rgba(241,238,232,.10); background: rgba(255,255,255,.012); }
.proof { padding-top: 24px; padding-bottom: 25px; border-color: rgba(241,238,232,.09); }
.proof strong { font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(1.65rem, 2.4vw, 2.35rem); font-weight: 500; color: #ece7df; }
.proof span { margin-top: 8px; color: #8f8b85; font-size: .74rem; line-height: 1.45; }

.section { padding: 92px 0; }
.section-tight { padding: 72px 0; }
.section-dark, .section-navy { background: #0d0f12; color: var(--ink); border-top: 1px solid rgba(241,238,232,.065); border-bottom: 1px solid rgba(241,238,232,.065); }
.section-navy { background: #0b0d10; }
.section-head { grid-template-columns: .7fr 1.3fr; gap: 68px; margin-bottom: 46px; }
.section-head h2 {
  font-size: clamp(2.25rem, 3.65vw, 3.85rem); line-height: 1.06; letter-spacing: -.038em; color: #f3efe8;
}
.section-head p { margin-top: 5px; font-size: .97rem; line-height: 1.72; color: #9e9992; max-width: 680px; }
.section-dark .section-head p, .section-navy .section-head p { color: #99948d; }
.section-dark .eyebrow, .section-navy .eyebrow { color: #c7ad7b; }

.solve-grid, .problem-grid, .process, .timeline { border-color: var(--line); }
.solve-card, .problem-card, .process-step, .timeline-row { border-color: var(--line); }
.solve-num, .problem-card > span, .process-step strong, .timeline-row .date, .offer .number { color: #c7ad7b; }
.solve-card h3 { margin-top: 34px; font-size: 1.26rem; font-weight: 620; }
.solve-card p, .problem-card p, .process-step p, .timeline-row p { color: #96918a; }
.text-link { color: #ddd7cf; border-bottom-color: rgba(199,173,123,.32); font-size: .77rem; font-weight: 600; }
.text-link:hover { color: #fff; border-bottom-color: #c7ad7b; }

.case-grid, .offer-grid, .credentials, .now-grid { gap: 14px; }
.case-card, .offer, .credential-card, .project-card, .contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.015));
  border: 1px solid rgba(241,238,232,.10); border-radius: 15px; box-shadow: none;
}
.case-card { min-height: 390px; padding: 27px; }
.case-tag { color: #bca779; font-size: .68rem; letter-spacing: .14em; }
.case-card h3 { font-family: "Iowan Old Style", Georgia, serif; font-size: 1.55rem; line-height: 1.18; font-weight: 500; }
.case-card p { color: #96918a; font-size: .9rem; line-height: 1.65; }
.case-result { border-top-color: rgba(241,238,232,.10); }
.case-result strong { color: #ece7df; font-size: 1.42rem; font-weight: 560; }
.case-result span { color: #85817b; }

.story-grid { gap: 76px; }
.story-year { color: #c7ad7b; opacity: .10; font-size: clamp(5.7rem, 12vw, 10rem); }
.story-copy h2 { font-size: clamp(2.35rem, 4.3vw, 4.45rem); line-height: 1.03; color: #f3efe8; }
.story-copy p { color: #a09b94; font-size: .98rem; line-height: 1.75; }
.quote { border-left-color: #c7ad7b; color: #d9d3ca; font-size: 1.18rem; line-height: 1.55; }

.project-card { min-height: 310px; padding: 29px; }
.project-card h3 { color: #f0ebe4; font-size: 1.7rem; }
.project-card p { color: #98938c; font-size: .91rem; line-height: 1.68; }
.project-top { color: #aaa59e; }
.pill { border-color: rgba(241,238,232,.10); background: rgba(255,255,255,.018); color: #98938c; }

.cta { padding: 74px 0 88px; }
.cta-box {
  padding: clamp(32px, 6vw, 68px); border-radius: 18px;
  background:
    radial-gradient(circle at 84% 12%, rgba(199,173,123,.08), transparent 20rem),
    #101216;
  color: #f3efe8; border: 1px solid rgba(241,238,232,.12); box-shadow: 0 28px 90px rgba(0,0,0,.26);
}
.cta-box h2 { max-width: 700px; font-size: clamp(2.3rem, 4vw, 4.3rem); line-height: 1.04; }
.cta-box p { color: #9c9790; }
.cta-box .btn { border-color: #f1eee8; color: #0a0b0d; background: #f1eee8; }

.page-hero { padding: 82px 0 52px; border-bottom-color: var(--line); }
.page-hero h1 { max-width: 920px; font-size: clamp(3rem, 5.5vw, 5.5rem); line-height: .99; letter-spacing: -.047em; color: #f3efe8; }
.page-hero p { font-size: 1.05rem; line-height: 1.72; color: #9f9a93; }

.offer { min-height: 410px; padding: 29px; }
.offer h2 { font-family: "Iowan Old Style", Georgia, serif; color: #f0ebe4; font-size: 1.5rem; font-weight: 500; }
.offer p, .offer ul { color: #96918a; font-size: .9rem; line-height: 1.65; }
.problem-card { min-height: 230px; }
.problem-card h3 { color: #e9e4dd; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.22rem; font-weight: 500; }
.process-dark { border-color: rgba(241,238,232,.10); }
.process-dark .process-step { border-color: rgba(241,238,232,.10); }
.process-dark .process-step strong { color: #c7ad7b; }
.process-dark .process-step p { color: #918c85; }
.fit-strip { border-color: var(--line); }
.fit-strip h2 { font-size: clamp(2.2rem, 3.6vw, 3.6rem); color: #f0ebe4; }
.fit-strip p { color: #9c9790; }

.credential-card h3, .timeline-row h3 { color: #ebe6df; }
.credential-card ul { color: #96918a; }
.contact-card { padding: 30px; }
.contact-row { border-color: var(--line); }
.contact-row small { color: #85817b; }
.contact-row a { color: #ebe6df; font-weight: 620; }

.footer { border-top-color: var(--line); }
.footer p { color: #77736e; }
.footer-links { color: #aaa59e; font-weight: 560; }
.footer-links a:hover { color: #fff; }

/* premium dark contact-card face */
.profile-back {
  background:
    radial-gradient(circle at 88% 8%, rgba(199,173,123,.10), transparent 24%),
    linear-gradient(145deg, #08090a 0%, #111318 60%, #08090b 100%);
  border-color: rgba(241,238,232,.13);
}
.card-kicker { color: rgba(199,173,123,.72) !important; }
.card-edition { color: rgba(241,238,232,.36); }
.card-body-modern strong { color: #f5f1ea; }
.card-role { color: rgba(241,238,232,.63) !important; }
.card-proof { border-color: rgba(241,238,232,.11); }
.card-proof > div + div { border-left-color: rgba(241,238,232,.09); }
.card-proof strong { color: #f1eee8; }
.card-proof span, .card-bottom-modern { color: rgba(241,238,232,.42); }
.card-email { color: #f1eee8; border-bottom-color: rgba(199,173,123,.42); }
.flip-back-hint { color: rgba(241,238,232,.55); }

@media (max-width: 940px) {
  .nav-links { background: rgba(9,10,12,.985); border-bottom-color: var(--line); }
  .hero-grid { gap: 48px; }
  .section-head { gap: 30px; }
}

@media (max-width: 640px) {
  .hero { padding: 48px 0 54px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.55rem); line-height: 1; }
  .hero-lead { font-size: 1rem; }
  .section { padding: 70px 0; }
  .section-head h2 { font-size: clamp(2.08rem, 10vw, 3.15rem); }
  .page-hero h1 { font-size: clamp(2.7rem, 13vw, 4.45rem); }
  .story-copy h2 { font-size: clamp(2.2rem, 10vw, 3.4rem); }
  .cta-box h2 { font-size: clamp(2.1rem, 10vw, 3.25rem); }
  .brand-copy strong { font-size: .76rem; }
}

/* v14 — compact contact form inside the flip card */
.profile-back { position: absolute; padding: 0; }
.card-info-view, .card-form-view {
  position: absolute; inset: 0; padding: clamp(24px, 3vw, 38px);
  transition: opacity .32s ease, transform .36s cubic-bezier(.2,.72,.18,1), visibility .32s ease;
}
.card-info-view { display: flex; flex-direction: column; justify-content: space-between; opacity: 1; transform: translateX(0); visibility: visible; }
.card-form-view { display: flex; flex-direction: column; opacity: 0; transform: translateX(18px); visibility: hidden; pointer-events: none; }
.profile-back.is-form-open .card-info-view { opacity: 0; transform: translateX(-18px); visibility: hidden; pointer-events: none; }
.profile-back.is-form-open .card-form-view { opacity: 1; transform: translateX(0); visibility: visible; pointer-events: auto; }

.card-message-open {
  appearance: none; border: 1px solid rgba(241,238,232,.18); background: rgba(255,255,255,.045); color: #f1eee8;
  width: 100%; min-height: 38px; border-radius: 999px; margin: 0 0 12px; padding: 0 14px;
  display: flex; align-items: center; justify-content: space-between; cursor: pointer;
  font-size: .73rem; font-weight: 650; letter-spacing: .025em; transition: background .18s ease, border-color .18s ease;
}
.card-message-open:hover, .card-message-open:focus-visible { background: rgba(255,255,255,.075); border-color: rgba(199,173,123,.42); }

.card-form-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.card-form-logo { width: 38px; height: auto; }
.card-form-close {
  appearance: none; border: 0; background: transparent; color: rgba(241,238,232,.58); cursor: pointer; padding: 5px 0;
  display: inline-flex; align-items: center; gap: 7px; font-size: .7rem; font-weight: 650; letter-spacing: .04em;
}
.card-form-close:hover, .card-form-close:focus-visible { color: #f1eee8; }
.card-form-copy { margin-bottom: 14px; }
.card-form-copy .card-kicker { display: block; margin-bottom: 7px; font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.card-form-copy strong { display: block; color: #f5f1ea; font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(1.28rem, 2.3vw, 1.7rem); font-weight: 500; line-height: 1.05; }
.card-form-copy p { margin: 7px 0 0; color: rgba(241,238,232,.48); font-size: .68rem; line-height: 1.45; }
.mini-contact-form { display: flex; flex-direction: column; gap: 9px; min-height: 0; }
.mini-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.mini-field { display: flex; flex-direction: column; gap: 4px; color: rgba(241,238,232,.56); font-size: .58rem; letter-spacing: .04em; }
.mini-field input, .mini-field textarea {
  width: 100%; border: 1px solid rgba(241,238,232,.13); border-radius: 9px; outline: 0;
  background: rgba(255,255,255,.035); color: #f4f0e9; padding: 8px 9px; font-size: .72rem; line-height: 1.35;
  transition: border-color .16s ease, background .16s ease;
}
.mini-field input { height: 34px; }
.mini-field textarea { min-height: 68px; resize: vertical; max-height: 106px; }
.mini-field input:focus, .mini-field textarea:focus { border-color: rgba(199,173,123,.58); background: rgba(255,255,255,.055); }
.mini-form-actions { display: flex; align-items: center; gap: 10px; min-height: 34px; }
.mini-submit {
  appearance: none; border: 0; border-radius: 999px; min-height: 34px; padding: 0 13px; cursor: pointer;
  background: #f1eee8; color: #0a0b0d; display: inline-flex; align-items: center; gap: 8px;
  font-size: .66rem; font-weight: 720; white-space: nowrap;
}
.mini-submit:hover, .mini-submit:focus-visible { background: #fff; }
.mini-submit:disabled { opacity: .62; cursor: wait; }
.mini-form-status { color: rgba(241,238,232,.63); font-size: .61rem; line-height: 1.3; }
.mini-form-status.is-success { color: #b7d1bc; }
.mini-form-status.is-error { color: #e1b2aa; }
.mini-privacy { margin: 0; color: rgba(241,238,232,.34); font-size: .54rem; line-height: 1.35; }
.mini-privacy a { color: rgba(241,238,232,.64); border-bottom: 1px solid rgba(199,173,123,.28); }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.privacy-layout { display: grid; grid-template-columns: .58fr 1.42fr; gap: clamp(42px, 7vw, 100px); align-items: start; }
.privacy-meta { position: sticky; top: 116px; padding-top: 5px; }
.privacy-meta strong { display: block; margin: 14px 0 18px; color: #eee9e2; font-size: 1.05rem; font-weight: 560; }
.privacy-meta p, .privacy-meta a { color: #8f8a83; font-size: .86rem; line-height: 1.65; }
.privacy-meta a { color: #c8b88f; border-bottom: 1px solid rgba(199,173,123,.28); }
.privacy-copy { max-width: 760px; }
.privacy-copy h2 { margin: 0 0 11px; padding-top: 34px; color: #eee9e2; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.55rem; font-weight: 500; }
.privacy-copy h2:first-child { padding-top: 0; }
.privacy-copy p { margin: 0; color: #99948d; font-size: .95rem; line-height: 1.76; }
.privacy-copy a { color: #d7c8a4; border-bottom: 1px solid rgba(199,173,123,.3); }

@media (max-width: 940px) {
  .privacy-layout { grid-template-columns: 1fr; gap: 36px; }
  .privacy-meta { position: static; }
}

@media (max-width: 640px) {
  .card-info-view, .card-form-view { padding: 23px; }
  .card-form-head { margin-bottom: 12px; }
  .card-form-copy { margin-bottom: 10px; }
  .card-form-copy strong { font-size: 1.32rem; }
  .mini-field-row { grid-template-columns: 1fr 1fr; }
  .mini-field input { height: 32px; }
  .mini-field textarea { min-height: 62px; }
  .mini-privacy { font-size: .51rem; }
}
