:root {
  --navy: #14213d;
  --navy-2: #1d2d50;
  --gold: #b8955a;
  --gold-2: #a2804a;
  --stone: #efece6;
  --paper: #fbfaf7;
  --text: #1f2430;
  --muted: #5f6675;
  --line: #ddd7cc;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--text); font-family: var(--sans); line-height: 1.65; font-size: 17px; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .45em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; }
.wrap { max-width: 1120px; margin: 0 auto; padding-inline: 20px; }
.section { padding-block: clamp(56px, 8vw, 100px); }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 700; color: var(--gold-2); margin: 0 0 12px; }

.concept { background: #0e141b; color: #cfd6dd; font-size: .85rem; text-align: center; padding: 8px 16px; }
.concept a { color: #ff7a45; font-weight: 700; }

.top { background: var(--navy); color: #fff; position: sticky; top: env(safe-area-inset-top, 0px); z-index: 10; }
.top__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.brand svg { width: 32px; height: 32px; flex: none; }
.brand em { color: var(--gold); font-style: normal; }
.links { display: flex; gap: 26px; font-size: .93rem; }
.links a { text-decoration: none; color: #c6cedd; }
.links a:hover { color: #fff; }
@media (max-width: 900px) { .links { display: none; } }

.btn { display: inline-flex; align-items: center; justify-content: center; font: inherit; font-weight: 700; font-size: .98rem; text-decoration: none; padding: 13px 22px; border-radius: 4px; border: 2px solid transparent; cursor: pointer; }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: #c9a66a; }
.btn--line { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--line:hover { border-color: #fff; }
.top .btn { padding: 9px 14px; font-size: .9rem; }
@media (max-width: 520px) { .top .btn { display: none; } }

.hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; padding-block: clamp(56px, 9vw, 110px); }
.hero__grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; gap: 36px; } }
.kicker { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; margin: 0 0 16px; }
.lede { font-size: 1.18rem; color: #d3d9e6; max-width: 600px; }
.ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 18px; }
.hero__small { color: #aab4c8; font-size: .92rem; margin: 0; }
.hero__card { background: rgba(255,255,255,.06); border: 1px solid rgba(184,149,90,.5); border-radius: 6px; padding: 28px; }
.hero__card p { color: #cfd6e3; margin: 0 0 12px; }
.hero__card-label { text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; color: var(--gold) !important; font-weight: 700; }
.hero__card-big { font-family: var(--serif); font-size: 2.1rem; color: #fff !important; line-height: 1.1; }
.text-link { color: var(--gold); font-weight: 700; text-decoration: none; }

.areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 32px; }
@media (max-width: 880px) { .areas { grid-template-columns: 1fr; } }
.area { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--gold); padding: 30px 28px; }
.area p { color: var(--muted); }
.area ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.area li { padding: 9px 0; border-bottom: 1px solid var(--line); font-weight: 600; font-size: .95rem; }
.area li::before { content: "§ "; color: var(--gold); }

.section--navy { background: var(--navy); color: #fff; }
.section--navy .eyebrow { color: var(--gold); }
.steps { list-style: none; counter-reset: s; padding: 0; margin: 32px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.steps li { counter-increment: s; border-top: 1px solid rgba(184,149,90,.6); padding-top: 20px; }
.steps li::before { content: "0" counter(s); font-family: var(--serif); color: var(--gold); font-size: 1.6rem; display: block; margin-bottom: 6px; }
.steps b { display: block; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 6px; }
.steps span { color: #c6cedd; }

.team { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
@media (max-width: 780px) { .team { grid-template-columns: 1fr; } }
.person { display: grid; grid-template-columns: 110px 1fr; gap: 22px; align-items: start; background: #fff; border: 1px solid var(--line); padding: 26px; }
.person__photo { width: 110px; height: 130px; background: linear-gradient(160deg, var(--navy-2), var(--navy)); color: var(--gold); display: grid; place-items: center; font-family: var(--serif); font-size: 2rem; }
.person__role { color: var(--gold-2); font-weight: 700; font-size: .9rem; margin: 0 0 8px; }
.person p:last-child { color: var(--muted); margin: 0; }

.section--stone { background: var(--stone); }
.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 820px) { .contact { grid-template-columns: 1fr; gap: 28px; } }
.contact p { color: var(--muted); }
.addr { font-weight: 600; color: var(--text) !important; }
.phone { font-family: var(--serif); font-size: 2rem; text-decoration: none; color: var(--navy); }
.contact__box { background: var(--navy); color: #fff; padding: 32px; border-radius: 6px; }
.contact__box p { color: #c6cedd; }
.contact__box .fine { font-size: .82rem; color: #8f9ab0; margin: 16px 0 0; }

.foot { background: #0d1628; color: #8f9ab0; font-size: .85rem; padding: 30px 0 96px; }
.foot p { margin: 0 0 8px; max-width: 820px; }
.foot b { color: #c6cedd; }

/* Chat assistant */
.chat-launch { position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); z-index: 30; display: flex; align-items: center; gap: 8px; background: var(--gold); color: var(--navy); border: 0; border-radius: 999px; padding: 13px 18px; font: inherit; font-weight: 700; cursor: pointer; box-shadow: 0 10px 30px rgba(13, 22, 40, .35); }
.chat-launch svg { width: 20px; height: 20px; }
.chat { position: fixed; right: 18px; bottom: calc(84px + env(safe-area-inset-bottom, 0px)); z-index: 40; width: min(380px, calc(100vw - 36px)); height: min(560px, calc(100vh - 120px)); background: #fff; border-radius: 12px; box-shadow: 0 24px 60px rgba(13, 22, 40, .35); display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); }
.chat[hidden] { display: none; }
.chat__head { background: var(--navy); color: #fff; padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.chat__head b { display: block; font-family: var(--serif); font-weight: 600; font-size: 1.05rem; }
.chat__head small { color: #aab4c8; font-size: .78rem; }
.chat__close { background: none; border: 0; color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; padding: 4px 8px; }
.chat__demo { background: #fff4df; color: #7a5a1e; font-size: .74rem; padding: 7px 14px; border-bottom: 1px solid #f0dfbd; }
.chat__log { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--paper); }
.msg { max-width: 85%; padding: 10px 13px; border-radius: 12px; font-size: .92rem; line-height: 1.5; }
.msg--bot { background: #fff; border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 3px; }
.msg--user { background: var(--navy); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.msg--typing { color: var(--muted); letter-spacing: .2em; }
.chat__chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px; background: var(--paper); }
.chat__chips:not(:empty) { padding-bottom: 12px; }
.chat__chips button { font: inherit; font-size: .82rem; background: #fff; border: 1px solid var(--gold); color: var(--navy); border-radius: 999px; padding: 6px 11px; cursor: pointer; }
.chat__chips button:hover { background: #faf3e6; }
.chat__form { display: flex; border-top: 1px solid var(--line); }
.chat__form input { flex: 1; border: 0; padding: 14px; font: inherit; font-size: .95rem; outline: none; min-width: 0; }
.chat__form button { border: 0; background: var(--gold); color: var(--navy); font-size: 1.2rem; font-weight: 800; padding: 0 18px; cursor: pointer; }
