:root {
  --brand: #f17a23;
  --brand-hover: #e06a15;
  --brand-dark: #d24417;
  --brand-2: #ff5a2c;
  --brand-tint: #fdf0e4;
  --grad: linear-gradient(120deg, #f79325 0%, #f17a23 45%, #ea4f22 100%);
  --grad-soft: linear-gradient(135deg, #fff3e6, #ffe7d6);
  --ink: #221a14;
  --ink-soft: #5c5147;
  --ink-faint: #8b7f74;
  --bg: #faf7f3;
  --surface: #ffffff;
  --line: #efe6db;
  --footer-bg: #241a12;
  --footer-fg: #d8ccc0;
  --footer-faint: #a08d7c;
  --r: 18px;
  --r-sm: 11px;
  --shadow-sm: 0 1px 2px rgba(60, 38, 20, .06), 0 2px 10px rgba(60, 38, 20, .05);
  --shadow: 0 6px 16px rgba(60, 38, 20, .08), 0 22px 48px rgba(80, 45, 20, .10);
  --maxw: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -.01em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
figure { margin: 0; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-hover); }
img { max-width: 100%; height: auto; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.icon { width: 1.25em; height: 1.25em; display: inline-block; vertical-align: -.15em; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 86px; }
.logo {
  font-size: 1.45rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink);
}
.logo span { color: var(--brand); }
.logo:hover { color: var(--ink); }
.logo img { display: block; height: 50px; width: auto; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: inline-block; padding: 9px 14px; border-radius: var(--r-sm);
  color: var(--ink-soft); font-weight: 600; font-size: .98rem;
}
.site-nav a:hover { color: var(--ink); background: var(--brand-tint); }
.site-nav a.active { color: var(--brand); }
.site-nav a.nav-cta {
  background: var(--brand); color: #fff; padding: 9px 18px;
}
.site-nav a.nav-cta:hover { background: var(--brand-hover); color: #fff; }
.site-nav a.nav-cta.active { color: #fff; }

.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px;
  background: none; border: 1px solid var(--line); border-radius: var(--r-sm);
  cursor: pointer; padding: 0; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 13px 24px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  border: 1px solid transparent; text-decoration: none; transition: .15s ease;
}
.btn .icon { width: 1.1em; height: 1.1em; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-hover); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { color: var(--ink); border-color: #c9d5e3; background: #fff; }
.btn-light { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .25); }
.btn-light:hover { background: rgba(255, 255, 255, .2); color: #fff; }

.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-head { margin: 0 0 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 12px;
}
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 68ch; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

.hero {
  position: relative; overflow: hidden; padding: 88px 0 80px;
  background:
    radial-gradient(680px 520px at 92% -10%, #ffe1c8, transparent 60%),
    radial-gradient(560px 460px at -8% 118%, #ffeee0, transparent 58%),
    linear-gradient(180deg, #fff, var(--bg));
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center; }
.hero-copy h1 { max-width: 16ch; }
.hero-copy h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy .lead { max-width: 46ch; margin-top: 4px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note { margin-top: 20px; color: var(--ink-faint); font-size: .95rem; }

.hero-art { position: relative; min-height: 400px; display: grid; place-items: center; }
.hero-art .glow {
  position: absolute; right: 0; top: 4%; width: 80%; height: 80%;
  background: var(--grad); filter: blur(64px); opacity: .22; border-radius: 50%;
}
.hero-art .stage { position: relative; width: 100%; max-width: 430px; }
.window {
  width: 100%; background: #fff;
  border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden;
}
.window .bar { display: flex; align-items: center; gap: 8px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.window .bar i { width: 11px; height: 11px; border-radius: 50%; background: #ecdcca; display: block; }
.window .bar .addr { margin-left: 8px; height: 16px; flex: 1; border-radius: 8px; background: var(--bg); }
.window .body { padding: 20px; }
.window .banner { height: 92px; border-radius: 12px; background: var(--grad); margin-bottom: 18px; }
.window .line { height: 12px; border-radius: 6px; background: #efe6da; margin-bottom: 10px; }
.window .line.short { width: 52%; }
.window .tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.window .tiles span { height: 54px; border-radius: 10px; background: var(--bg); border: 1px solid var(--line); }
.window .banner, .window .line, .window .tiles span { animation: rise-in .5s ease-out both; }
.window .banner { animation-delay: .25s; }
.window .line:nth-child(2) { animation-delay: .5s; }
.window .line:nth-child(3) { animation-delay: .56s; }
.window .line:nth-child(4) { animation-delay: .62s; }
.window .tiles span:nth-child(1) { animation-delay: .75s; }
.window .tiles span:nth-child(2) { animation-delay: .83s; }
.window .tiles span:nth-child(3) { animation-delay: .91s; }
@keyframes rise-in { 0% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: translateY(0); } }
.hero-art .mini {
  position: absolute; width: 150px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow); padding: 14px; transform: rotate(-3deg);
}
.hero-art .mini-chart { right: -26px; bottom: -24px; }
.hero-art .mini-list { left: -30px; top: -18px; width: 156px; }
.hero-art .mini .cap { height: 10px; width: 62%; border-radius: 5px; background: #efe6da; margin-bottom: 12px; }
.hero-art .mini .chart { display: flex; align-items: flex-end; gap: 7px; height: 58px; }
.hero-art .mini .chart b { flex: 1; border-radius: 4px 4px 0 0; background: var(--grad); display: block; transform-origin: bottom; animation: grow-up .45s ease-out both; }
.hero-art .mini-chart .chart b:nth-child(1) { animation-delay: .5s; }
.hero-art .mini-chart .chart b:nth-child(2) { animation-delay: .6s; }
.hero-art .mini-chart .chart b:nth-child(3) { animation-delay: .7s; }
.hero-art .mini-chart .chart b:nth-child(4) { animation-delay: .8s; }
.hero-art .mini-chart .chart b:nth-child(5) { animation-delay: .9s; }
@keyframes grow-up { 0% { transform: scaleY(0); } 100% { transform: scaleY(1); } }
.hero-art .mini-list .li { display: flex; align-items: center; gap: 10px; }
.hero-art .mini-list .li + .li { margin-top: 12px; }
.hero-art .mini-list .li i {
  width: 24px; height: 24px; border-radius: 8px; background: var(--brand-tint); flex: none;
  display: grid; place-items: center;
}
.hero-art .mini-list .li i .icon {
  width: 15px; height: 15px; color: var(--brand); stroke-width: 2.4;
  animation: tick-in .5s ease-out both;
}
.hero-art .mini-list .li:nth-child(1) i .icon { animation-delay: .3s; }
.hero-art .mini-list .li:nth-child(2) i .icon { animation-delay: .55s; }
.hero-art .mini-list .li:nth-child(3) i .icon { animation-delay: .8s; }
@keyframes tick-in {
  0%   { opacity: 0; transform: scale(.3); }
  60%  { opacity: 1; transform: scale(1.18); }
  100% { opacity: 1; transform: scale(1); }
}
.hero-art .mini-list .li b { flex: 1; height: 9px; border-radius: 5px; background: #efe6da; display: block; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-sm);
}
.card.pad { padding: 28px; }

.service-card { padding: 28px; display: flex; flex-direction: column; transition: .18s ease; }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #d7e1ee; }
.service-icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad); color: #fff; margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(226, 90, 30, .28);
}
.service-icon .icon { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 6px; }
.card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.card-head .service-icon { margin-bottom: 0; flex: none; }
.card-head h3 { margin: 0; }
.service-card p { color: var(--ink-soft); font-size: .98rem; margin: 0; }
.service-card .more { margin-top: 16px; font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: 6px; }

.svc-list { display: grid; }
.svc { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; padding: 46px 0; }
.svc-rev .svc-text { order: 2; }
.svc-head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.svc-head .service-icon { margin-bottom: 0; flex: none; }
.svc-head h2 { margin: 0; font-size: 1.35rem; }
.svc-text .lead { margin: 0; }
.svc-divider { height: 1px; background: var(--line); }

.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.feature-list .icon { color: var(--brand); flex: none; margin-top: .2em; }
.feature-list strong { color: var(--ink); display: block; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-size: 2.4rem; font-weight: 800; color: var(--brand); letter-spacing: -.02em; }
.stat .label { color: var(--ink-soft); font-size: .98rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.step .num {
  width: 44px; height: 44px; border-radius: 12px; background: var(--grad); color: #fff;
  font-weight: 800; font-size: 1.15rem; display: grid; place-items: center; flex: none;
  box-shadow: 0 8px 20px rgba(226, 90, 30, .28);
}
.step-head h3 { margin: 0; }
.step p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.logo-tile {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  min-height: 104px; display: grid; place-items: center; padding: 20px; text-align: center;
  font-weight: 700; color: var(--ink); font-size: 1.05rem; transition: .18s ease;
}
.logo-tile:hover { box-shadow: var(--shadow-sm); border-color: #f0d8c2; }
.logo-tile small { display: block; font-weight: 500; color: var(--ink-faint); font-size: .82rem; margin-top: 4px; }
.logo-tile img { max-width: 100%; max-height: 58px; width: auto; height: auto; object-fit: contain; filter: grayscale(1); opacity: .72; transition: .2s ease; }
.logo-tile:hover img { filter: none; opacity: 1; }

.quote-list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; }
.quote {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 190px 1fr; gap: 32px; align-items: center;
  padding: 30px 36px 30px 40px; transition: box-shadow .18s ease, transform .18s ease;
}
.quote::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--grad); }
.quote:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.quote .who { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.quote .who img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; flex: none; }
.quote cite { font-style: normal; font-weight: 700; line-height: 1.3; }
.quote cite span { display: block; font-weight: 500; color: var(--ink-faint); font-size: .9rem; }
.quote blockquote { position: relative; margin: 0; font-size: 1.12rem; color: var(--ink); line-height: 1.6; }
.quote blockquote .mark-open { position: absolute; left: -.66em; top: .06em; color: var(--brand); font-weight: 800; font-size: 1.7em; line-height: 1; }
.quote blockquote .mark-close { color: var(--brand); font-weight: 800; font-size: 1.7em; line-height: 0; vertical-align: -.32em; margin-left: 3px; }

.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-group > .reveal:nth-child(2) { transition-delay: .07s; }
.js .reveal-group > .reveal:nth-child(3) { transition-delay: .14s; }
.js .reveal-group > .reveal:nth-child(4) { transition-delay: .21s; }
.js .reveal-group > .reveal:nth-child(5) { transition-delay: .28s; }
.js .reveal-group > .reveal:nth-child(6) { transition-delay: .35s; }
.js .reveal-group > .reveal:nth-child(7) { transition-delay: .42s; }
.js .reveal-group > .reveal:nth-child(8) { transition-delay: .49s; }
.js .reveal-group > .reveal:nth-child(n+9) { transition-delay: .56s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

.cta-band {
  position: relative; overflow: hidden;
  background: var(--grad);
  color: #fff; border-radius: 28px; padding: 60px; text-align: center;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; border: 52px solid rgba(255, 255, 255, .16);
}
.cta-band::before { width: 300px; height: 300px; top: -110px; right: -60px; border-width: 66px; animation: cta-donut-a 9s ease-in-out infinite; }
.cta-band::after { width: 190px; height: 190px; bottom: -100px; left: -46px; border-width: 38px; border-color: rgba(255, 255, 255, .14); animation: cta-donut-b 11s ease-in-out infinite; }
@keyframes cta-donut-a {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .9; }
  50%      { transform: translate(-24px, 18px) scale(1.09); opacity: .45; }
}
@keyframes cta-donut-b {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .7; }
  50%      { transform: translate(20px, -14px) scale(.9); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .cta-band::before, .cta-band::after, .hero-art .mini-list .li i .icon,
  .window .banner, .window .line, .window .tiles span,
  .hero-art .mini .chart b { animation: none; opacity: 1; transform: none; }
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .9); max-width: 46ch; margin: 0 auto 28px; }
.cta-band .btn-primary { background: #fff; color: var(--brand-dark); }
.cta-band .btn-primary:hover { background: #fff5ee; color: var(--brand-dark); }

.team-photo { max-width: 760px; margin: 0 auto; text-align: center; }
.team-photo img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center 38%;
  border-radius: var(--r); box-shadow: var(--shadow); display: block;
}
.team-photo figcaption { margin-top: 16px; color: var(--ink-faint); font-size: .95rem; }

.prose { max-width: 720px; }
.prose-full { max-width: none; }
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }

.page-head { padding: 64px 0 8px; }
.page-head .eyebrow { margin-bottom: 14px; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.contact-info { display: grid; gap: 22px; }
.contact-info .row { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .row .icon { color: var(--brand); width: 22px; height: 22px; flex: none; margin-top: 2px; }
.contact-info .row a { font-weight: 600; }
.contact-info .row .k { color: var(--ink-faint); font-size: .85rem; display: block; }

.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 6px; }
.form-row input, .form-row textarea {
  width: 100%; padding: 12px 14px; font: inherit; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-tint);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { color: var(--ink-faint); font-size: .88rem; margin-top: 14px; }

.notice { padding: 16px 18px; border-radius: var(--r-sm); margin-bottom: 24px; font-size: .98rem; }
.notice-ok { background: #e8f6ee; border: 1px solid #bfe3cc; color: #17643a; }
.notice-err { background: #fdecec; border: 1px solid #f3c4c4; color: #8f2020; }
.field-err input, .field-err textarea { border-color: #d64545; }

.footer-curve { display: block; width: 100%; height: 54px; color: var(--footer-bg); margin-bottom: -1px; }
.site-footer { background: var(--footer-bg); color: var(--footer-fg); }
.site-footer .container { padding-top: 56px; padding-bottom: 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-brand .logo { color: #fff; }
.footer-brand .logo img.logo-mark { display: inline-block; height: 26px; width: 26px; vertical-align: middle; position: relative; top: -2px; margin-right: 6px; }
.footer-brand .logo span { color: #f79a4e; }
.footer-brand p { color: var(--footer-faint); margin-top: 10px; max-width: 30ch; }
.footer-col h2 { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--footer-fg); }
.footer-col a:hover { color: #fff; }
.footer-contact li { color: var(--footer-faint); }
.footer-legal {
  margin: 40px 0 0; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1);
  color: var(--footer-faint); font-size: .88rem;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .site-nav.open { max-height: 340px; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: 12px; gap: 4px; }
  .site-nav a, .site-nav a.nav-cta { display: block; text-align: left; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .hero-actions { justify-content: center; }
  .lead, .hero-copy h1, .hero-copy .lead { max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .grid-2, .grid-3, .stats, .steps { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .svc-rev .svc-text { order: 0; }
  .quote { grid-template-columns: 1fr; gap: 18px; padding: 26px 24px 26px 28px; }
  .quote .who { flex-direction: row; align-items: center; }
  .quote .who img { width: 56px; height: 56px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 40px 24px; }
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
}

@media (min-width: 861px) and (max-width: 1040px) {
  .grid-3, .steps { grid-template-columns: repeat(2, 1fr); }
}
