@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+FEFF, U+FFFD;
}

:root {
  /* Brand design system */
  --primary: #c51f1f;
  --primary-hover: #a91818;
  --secondary: #242424;
  --secondary-soft: #3a3735;
  --accent: #ad6848;
  --accent-dark: #865039;
  --signal: #0f766e;
  --signal-soft: #e2f3ef;
  --background: #fbfaf8;
  --surface: #ffffff;
  --surface-muted: #f7f2ef;
  --border: rgba(134, 80, 57, .22);
  --white: #fff;
  --ink: var(--secondary);
  --ink-soft: #5f5a56;
  --navy: var(--secondary);
  --navy-2: var(--secondary-soft);
  --blue: var(--accent);
  --cyan: var(--accent);
  --aqua: #f3e5de;
  --mist: var(--surface-muted);
  --line: var(--border);
  --shadow-sm: 0 12px 32px rgba(45, 34, 29, .08);
  --shadow: 0 28px 70px rgba(45, 34, 29, .12);
  --shadow-hover: 0 32px 80px rgba(45, 34, 29, .18);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
::selection { color: var(--white); background: var(--primary); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1ece8; }
::-webkit-scrollbar-thumb { border: 2px solid #f1ece8; border-radius: 20px; background: linear-gradient(var(--accent), var(--accent-dark)); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(197, 31, 31, .34);
  outline-offset: 3px;
}
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 120px 0; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; padding: 10px 16px; border-radius: var(--radius-sm); background: white; box-shadow: var(--shadow-sm); transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding: 16px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { padding: 9px 0; background: rgba(251, 250, 248, .9); box-shadow: var(--shadow-sm); backdrop-filter: blur(18px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 218px; }
.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.04em;
}
.brand-mark span { position: absolute; bottom: -5px; width: 50px; height: 12px; border-radius: 50%; background: var(--cyan); opacity: .65; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-size: 14px; font-weight: 800; }
.brand-copy small { margin-top: 4px; color: #716a66; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav { display: flex; gap: 22px; margin-left: auto; }
.desktop-nav a { position: relative; padding: 10px 0; color: #403c39; font-size: 13px; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 5px; left: 0; height: 1px; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
body.inner-page .site-header:not(.is-scrolled) .brand-copy strong { color: #fff; }
body.inner-page .site-header:not(.is-scrolled) .brand-copy small { color: rgba(255,255,255,.66); }
body.inner-page .site-header:not(.is-scrolled) .desktop-nav a { color: rgba(255,255,255,.8); }
body.inner-page .site-header:not(.is-scrolled) .desktop-nav a:hover,
body.inner-page .site-header:not(.is-scrolled) .desktop-nav a.is-active { color: #fff; }
body.inner-page .site-header:not(.is-scrolled) .desktop-nav a::after { background: var(--cyan); }
body.inner-page .site-header:not(.is-scrolled) .menu-toggle { color: #fff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); }
.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.button svg { transition: transform .25s ease; }
.button:hover { transform: translateY(-3px); }
.button:hover svg { transform: translateX(4px); }
.button--small, .button--small:visited { min-height: 46px; padding-inline: 19px; border-radius: var(--radius-sm); color: #fff; background: var(--primary); text-decoration: none; }
.button--small:hover { background: var(--primary-hover); box-shadow: 0 14px 30px rgba(197,31,31,.2); }
.menu-toggle { display: none; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.76); cursor: pointer; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 850px;
  padding: 150px 0 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(173,104,72,.24), transparent 30%),
    radial-gradient(circle at 72% 74%, rgba(173,104,72,.06), transparent 28%),
    linear-gradient(110deg, #fff 0%, #fbf9f7 48%, #f2e6df 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .75;
  background: linear-gradient(125deg, transparent 67%, rgba(173,104,72,.08) 67.1%, transparent 67.3%);
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero::after {
  content: "";
  position: absolute;
  top: 11%;
  right: -10%;
  width: 52vw;
  aspect-ratio: 1;
  border: 1px solid rgba(173,104,72,.15);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(173,104,72,.035), 0 0 0 140px rgba(173,104,72,.018);
  pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-glow--one { top: -160px; right: -170px; width: 500px; height: 500px; background: rgba(173,104,72,.13); }
.hero-glow--two { bottom: -150px; left: 30%; width: 340px; height: 340px; background: rgba(173,104,72,.055); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 78px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 26px; font-size: clamp(45px, 5.05vw, 76px); line-height: 1.05; letter-spacing: -.055em; }
h1 em, h2 em { color: var(--blue); font-style: normal; }
.hero-lead { max-width: 690px; margin-bottom: 34px; color: var(--ink-soft); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-contact-links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 18px; color: var(--secondary-soft); font-size: 12px; font-weight: 800; }
.hero-contact-links a { display: inline-flex; align-items: center; gap: 8px; min-height: 34px; }
.hero-contact-links svg { width: 17px; height: 17px; color: var(--primary); }
.button--primary, .button--primary:visited { color: #fff; text-decoration: none; background: linear-gradient(135deg, var(--primary), var(--primary-hover)); box-shadow: 0 16px 34px rgba(197,31,31,.2); }
.button--primary::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.24), transparent 70%); transform: translateX(-120%); transition: transform .55s ease; }
.button--primary:hover::before { transform: translateX(120%); }
.button--primary > * { position: relative; z-index: 1; }
.button--ghost, .button--ghost:visited { border: 1px solid var(--line); text-decoration: none; background: rgba(255,255,255,.65); backdrop-filter: blur(10px); }
.button--ghost:hover { border-color: var(--accent); background: #fff; box-shadow: var(--shadow-sm); }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 670px; margin-top: 38px; border-top: 1px solid var(--line); }
.hero-facts div { display: flex; min-width: 0; flex-direction: column; padding: 19px 20px 0 0; }
.hero-facts div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.hero-facts strong { font-size: 13px; font-weight: 800; letter-spacing: -.02em; }
.hero-facts span { margin-top: 3px; color: #716a66; font-size: 11px; }
.hero-visual { position: relative; width: min(100%, 500px); margin-left: auto; padding: 40px 28px 58px; }
.portrait-stage { position: relative; z-index: 2; display: grid; width: 100%; aspect-ratio: 1; place-items: center; }
.portrait-shell {
  position: relative;
  z-index: 2;
  display: block;
  width: 92%;
  aspect-ratio: 1;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  box-shadow: 0 36px 80px rgba(45,34,29,.17), inset 0 0 0 1px rgba(173,104,72,.12);
  backdrop-filter: blur(12px);
}
.portrait-shell img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: 50% 48%; filter: saturate(.94) contrast(1.015); transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.portrait-shell:hover img { transform: scale(1.025); }
.portrait-orbit { position: absolute; inset: -1%; border: 1px solid rgba(173,104,72,.34); border-radius: 50%; animation: rotate 30s linear infinite; }
.portrait-orbit::before, .portrait-orbit::after { content: ""; position: absolute; border-radius: 50%; }
.portrait-orbit::before { inset: 8%; border: 1px solid rgba(173,104,72,.18); }
.portrait-orbit::after { display: none; }
.portrait-orbit span { display: none; }
.portrait-orbit span:nth-child(1) { top: 28%; left: -1%; width: 9px; height: 9px; }
.portrait-orbit span:nth-child(2) { right: 3%; bottom: 18%; width: 7px; height: 7px; background: var(--navy); }
.portrait-orbit span:nth-child(3) { bottom: 1%; left: 27%; width: 12px; height: 12px; }
.portrait-label { position: absolute; z-index: 3; top: 11%; right: -4%; padding: 8px 12px; border-radius: 999px; color: var(--accent-dark); background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.portrait-caption { position: absolute; z-index: 4; right: 52px; bottom: 17px; left: 52px; display: flex; align-items: center; gap: 13px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.86); border-radius: var(--radius-md); background: rgba(255,255,255,.86); box-shadow: var(--shadow-sm); backdrop-filter: blur(14px); }
.status-dot { position: relative; display: block; width: 10px; height: 10px; flex: 0 0 10px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 6px rgba(197,31,31,.1); }
.status-dot::after { content: ""; position: absolute; inset: -5px; border: 1px solid rgba(197,31,31,.35); border-radius: 50%; animation: pulse 2s infinite; }
.portrait-caption div, .order-note div { display: flex; flex-direction: column; }
.portrait-caption strong { font-size: 12px; }
.portrait-caption small { color: #716a66; font-size: 10px; }
.floating-note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.86); border-radius: var(--radius-md); background: rgba(255,255,255,.84); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); animation: float 5s ease-in-out infinite; }
.floating-note svg { width: 30px; height: 30px; padding: 6px; border-radius: 9px; color: white; background: var(--blue); }
.floating-note span:not(.note-value) { display: flex; flex-direction: column; line-height: 1.35; }
.floating-note strong { font-size: 11px; }
.floating-note small { color: #716a66; font-size: 10px; }
.floating-note--top { top: 99px; left: -23px; }
.floating-note--bottom { right: -15px; bottom: 106px; animation-delay: -2.5s; }
.note-value { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px; color: var(--navy); background: var(--cyan); font-size: 10px; font-weight: 800; }
.hero-marquee { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; overflow: hidden; border-top: 1px solid var(--line); background: rgba(255,255,255,.34); }
.hero-marquee > div { display: flex; width: max-content; align-items: center; gap: 34px; padding: 19px 0; color: #6f6762; animation: marquee 30s linear infinite; }
.hero-marquee span { font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero-marquee i { width: 1px; height: 16px; border-radius: 0; background: var(--accent); }

.rush-strip { padding: 64px 0; background: #fff; }
.rush-panel { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: 26px; padding: 34px; border: 1px solid rgba(15,118,110,.18); border-radius: var(--radius-lg); background: linear-gradient(135deg, #ffffff 0%, #f7fbfa 48%, #eef8f5 100%); box-shadow: var(--shadow-sm); }
.rush-intro h2 { margin-bottom: 16px; font-size: 40px; line-height: 1.16; letter-spacing: -.03em; }
.rush-intro p:last-child { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }
.rush-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.rush-card { min-height: 210px; padding: 22px; border: 1px solid rgba(15,118,110,.16); border-radius: var(--radius-md); background: rgba(255,255,255,.86); }
.rush-card b { display: inline-grid; width: 35px; height: 35px; margin-bottom: 20px; place-items: center; border-radius: 12px; color: #fff; background: var(--signal); font-size: 10px; }
.rush-card h3 { margin-bottom: 9px; font-size: 16px; line-height: 1.25; }
.rush-card p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }

.section-head { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 80px; margin-bottom: 58px; }
.section-head h2, .tech-intro h2, .order-copy h2, .contact-heading h2 { margin-bottom: 0; font-size: clamp(36px, 4vw, 58px); line-height: 1.13; letter-spacing: -.045em; }
.section-head > p, .tech-intro > p, .contact-heading > p { margin-bottom: 5px; color: var(--ink-soft); font-size: 14px; line-height: 1.8; }
.benefits { background: #fff; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.benefit-card { position: relative; min-height: 246px; padding: 27px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(145deg, #fff, #fcfaf8); transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.benefit-card::before { content: ""; position: absolute; inset: auto -50px -70px auto; width: 150px; height: 150px; border-radius: 50%; background: rgba(173,104,72,.08); transition: transform .4s ease; }
.benefit-card:hover { z-index: 2; border-color: rgba(173,104,72,.46); box-shadow: var(--shadow); transform: translateY(-8px); }
.benefit-card:hover::before { transform: scale(1.7); }
.icon-box { display: grid; width: 48px; height: 48px; margin-bottom: 28px; place-items: center; border: 1px solid var(--border); border-radius: 15px; color: var(--accent); background: var(--surface-muted); }
.benefit-card h3 { margin-bottom: 9px; font-size: 16px; letter-spacing: -.02em; }
.benefit-card p { position: relative; z-index: 1; margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }
.benefit-card b { position: absolute; top: 29px; right: 25px; color: var(--accent); font-size: 10px; letter-spacing: .12em; }

.portfolio { overflow: hidden; background: var(--navy); }
.portfolio::before { content: ""; position: absolute; top: -300px; left: -200px; width: 600px; height: 600px; border: 1px solid rgba(173,104,72,.2); border-radius: 50%; box-shadow: 0 0 0 90px rgba(173,104,72,.025); }
.section-head--light h2 { color: #fff; }
.section-head--light h2 em { color: var(--cyan); }
.section-head--light > p { color: #c6bfba; }
.section-head--light .eyebrow { color: var(--cyan); }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.project-card { overflow: hidden; border: 1px solid rgba(173,104,72,.34); border-radius: var(--radius-lg); background: var(--surface); box-shadow: 0 20px 60px rgba(0,0,0,.12); transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .4s ease; }
.project-card:hover { z-index: 2; border-color: var(--accent); box-shadow: 0 40px 90px rgba(0,0,0,.24); transform: translateY(-10px) scale(1.012); }
.project-image { position: relative; display: block; margin: 10px 10px 0; overflow: hidden; border-radius: var(--radius-md); background: var(--surface-muted); aspect-ratio: 16/9; }
.project-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(36,36,36,.42), transparent 45%); opacity: 0; transition: opacity .35s ease; }
.project-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .7s ease, filter .35s ease; }
.project-card:hover .project-image img { transform: scale(1.035); filter: saturate(1.08); }
.project-card:hover .project-image::after { opacity: 1; }
.project-image > span { position: absolute; z-index: 2; right: 18px; bottom: 18px; display: grid; width: 44px; height: 44px; place-items: center; border-radius: 14px; color: var(--navy); background: #fff; opacity: 0; transform: translateY(10px); transition: opacity .3s ease, transform .3s ease; }
.project-card:hover .project-image > span { opacity: 1; transform: none; }
.project-body { padding: 25px 28px 29px; }
.project-domain { margin-bottom: 8px; color: var(--accent-dark); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.project-body h3 { margin-bottom: 9px; color: var(--secondary); font-size: 23px; letter-spacing: -.03em; }
.project-body > p:not(.project-domain) { min-height: 46px; margin-bottom: 19px; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.project-brief { display: grid; gap: 8px; margin: -2px 0 18px; padding: 14px; border: 1px solid rgba(15,118,110,.14); border-radius: var(--radius-sm); background: var(--signal-soft); }
.project-brief p { margin: 0; color: #315b56; font-size: 11px; line-height: 1.55; }
.project-brief strong { color: var(--secondary); }
.project-body ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 22px; padding: 0; list-style: none; }
.project-body li { padding: 7px 11px; border: 1px solid var(--border); border-radius: 999px; color: var(--secondary-soft); background: var(--surface-muted); font-size: 10px; font-weight: 700; }
.project-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 2px; }
.project-detail { min-height: 40px; padding: 0 15px; border: 1px solid var(--accent); border-radius: var(--radius-sm); color: var(--secondary); background: #fff; cursor: pointer; font-size: 11px; font-weight: 800; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease; }
.project-detail:hover { color: #fff; border-color: var(--primary); background: var(--primary); transform: translateY(-2px); }
.project-link { display: inline-flex; align-items: center; gap: 10px; color: var(--primary); font-size: 12px; font-weight: 800; white-space: nowrap; }
.project-link svg { color: var(--accent); transition: transform .25s ease; }
.project-link:hover svg { transform: translateX(5px); }

.case-modal[hidden] { display: none; }
.case-modal { position: fixed; z-index: 300; inset: 0; display: grid; place-items: center; padding: 20px; }
.case-modal__backdrop { position: absolute; inset: 0; background: rgba(36,36,36,.76); backdrop-filter: blur(10px); animation: modal-fade .22s ease both; }
.case-modal__dialog { position: relative; z-index: 1; width: min(100%, 680px); max-height: min(760px, calc(100vh - 40px)); padding: 42px; overflow-y: auto; border: 1px solid rgba(173,104,72,.45); border-radius: var(--radius-xl); background: rgba(255,255,255,.98); box-shadow: 0 44px 120px rgba(0,0,0,.32); animation: modal-in .28s cubic-bezier(.2,.8,.2,1) both; }
.case-modal__close { position: absolute; top: 18px; right: 18px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; cursor: pointer; transition: color .2s ease, background .2s ease, transform .2s ease; }
.case-modal__close:hover { color: #fff; background: var(--navy); transform: rotate(5deg); }
.case-modal__domain { margin: 0 0 7px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.case-modal__dialog h2 { max-width: 540px; margin: 0 0 16px; font-size: clamp(32px, 5vw, 48px); line-height: 1.1; letter-spacing: -.045em; }
.case-modal__description { max-width: 560px; margin-bottom: 30px; color: var(--ink-soft); font-size: 15px; line-height: 1.75; }
.case-modal__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.case-modal__meta > div { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-muted); }
.case-modal__meta small { color: var(--accent-dark); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.case-modal__meta p { margin: 9px 0 0; font-size: 13px; font-weight: 700; line-height: 1.7; }
.case-modal__meta ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 0; padding: 0; list-style: none; }
.case-modal__meta li { padding: 6px 9px; border-radius: 999px; color: var(--accent-dark); background: #f3e7e1; font-size: 10px; font-weight: 800; }
body.modal-open { overflow: hidden; }

.technologies { overflow: hidden; background: linear-gradient(135deg, #f7f2ef 0%, #fff 45%, #f1e6e0 100%); }
.tech-layout { display: grid; grid-template-columns: .76fr 1.24fr; align-items: center; gap: 90px; }
.tech-intro > p { max-width: 460px; margin-top: 25px; }
.tech-orbit { position: relative; width: 185px; height: 185px; margin: 42px 0 0 35px; border: 1px solid rgba(173,104,72,.3); border-radius: 50%; animation: rotate 22s linear infinite; }
.tech-orbit::before, .tech-orbit::after { content: ""; position: absolute; border: 1px solid rgba(173,104,72,.16); border-radius: 50%; }
.tech-orbit::before { inset: 26px; }
.tech-orbit::after { inset: -18px; }
.orbit-center { position: absolute; inset: 50% auto auto 50%; display: grid; width: 58px; height: 58px; place-items: center; border-radius: 19px; color: #fff; background: var(--accent); box-shadow: 0 15px 32px rgba(173,104,72,.22); transform: translate(-50%,-50%) rotate(0); }
.orbit-center svg { width: 27px; height: 27px; }
.orbit-dot { display: none; }
.orbit-dot--1 { top: 6px; left: 39px; width: 18px; height: 18px; }
.orbit-dot--2 { right: -5px; bottom: 48px; width: 25px; height: 25px; background: var(--blue); }
.orbit-dot--3 { bottom: 0; left: 22px; width: 13px; height: 13px; background: var(--navy); }
.tech-groups { display: grid; gap: 14px; }
.tech-group { padding: 25px 27px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); transition: transform .3s ease, box-shadow .3s ease; }
.tech-group:hover { box-shadow: var(--shadow); transform: translateX(7px); }
.tech-group > p { margin: 0 0 14px; color: var(--accent-dark); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.tech-group > div { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-group span { padding: 8px 12px; border: 1px solid var(--border); border-radius: 10px; color: var(--secondary-soft); background: #fff; font-size: 11px; font-weight: 700; transition: color .2s ease, background .2s ease, transform .2s ease; }
.tech-group span:hover { color: #fff; background: var(--blue); transform: translateY(-2px); }

.process { background: #fff; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; top: 25px; right: 16.66%; left: 16.66%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), var(--cyan), transparent); }
.timeline li { position: relative; min-height: 230px; padding: 0 28px 30px; text-align: center; }
.timeline li > span { position: relative; z-index: 1; display: grid; width: 51px; height: 51px; margin: 0 auto 24px; place-items: center; border: 8px solid #fff; border-radius: 50%; color: #fff; background: var(--secondary); box-shadow: 0 0 0 1px var(--border); font-size: 10px; font-weight: 800; }
.timeline li:hover > span { background: var(--blue); transform: scale(1.08); }
.timeline small { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.timeline h3 { margin: 7px 0 10px; font-size: 17px; letter-spacing: -.02em; }
.timeline p { max-width: 290px; margin: 0 auto; color: var(--ink-soft); font-size: 11px; line-height: 1.75; }

.order { padding-top: 40px; background: #fff; }
.order-panel { position: relative; display: grid; grid-template-columns: .83fr 1.17fr; gap: 65px; padding: 68px; overflow: hidden; border-radius: var(--radius-xl); background: linear-gradient(135deg, #202020, #34302e); box-shadow: 0 40px 90px rgba(36,36,36,.22); }
.order-panel::before { content: ""; position: absolute; left: -150px; bottom: -190px; width: 430px; height: 430px; border: 1px solid rgba(173,104,72,.28); border-radius: 50%; box-shadow: 0 0 0 70px rgba(173,104,72,.035), 0 0 0 140px rgba(173,104,72,.018); }
.order-copy { position: relative; z-index: 1; padding-top: 12px; color: white; }
.eyebrow--light { color: var(--cyan); }
.order-copy h2 { margin-bottom: 24px; font-size: clamp(34px, 3.7vw, 53px); }
.order-copy h2 em { color: var(--cyan); }
.order-copy > p { color: #c8c1bc; font-size: 13px; line-height: 1.8; }
.order-note { display: flex; align-items: center; gap: 15px; margin-top: 35px; padding: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-md); background: rgba(255,255,255,.045); }
.order-note strong { font-size: 11px; }
.order-note small { color: #b8aea7; font-size: 10px; }
.mini-wave { display: flex; align-items: center; gap: 10px; margin-top: 70px; color: #b8a092; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.mini-wave svg { width: 40px; color: var(--cyan); }
.order-form { position: relative; z-index: 1; padding: 35px; border: 1px solid rgba(255,255,255,.58); border-radius: var(--radius-lg); background: rgba(255,255,255,.97); box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.field { margin-bottom: 17px; }
.field label { display: block; margin: 0 0 7px 2px; font-size: 11px; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #d8ceca;
  border-radius: var(--radius-sm);
  outline: 0;
  color: var(--ink);
  background: #faf8f6;
  font-size: 12px;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input, .field select { height: 51px; padding: 0 14px; }
.field textarea { min-height: 116px; padding: 14px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #958b86; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(197,31,31,.5); background: #fff; box-shadow: 0 0 0 4px rgba(197,31,31,.07); }
.field.is-invalid input, .field.is-invalid select { border-color: #df5362; box-shadow: 0 0 0 4px rgba(223,83,98,.07); }
.field--trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.field-error { display: block; min-height: 16px; margin: 5px 0 0 2px; color: #a92535; font-size: 11px; }
.consent { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 5px; cursor: pointer; }
.consent input { position: absolute; opacity: 0; pointer-events: none; }
.consent > span { display: grid; width: 18px; height: 18px; flex: 0 0 18px; place-items: center; border: 1px solid #cdbdb6; border-radius: 5px; color: transparent; background: #faf8f6; transition: all .2s ease; }
.consent > span, .consent svg { pointer-events: none; }
.consent svg { width: 12px; height: 12px; stroke-width: 3; }
.consent input:checked + span { color: #fff; border-color: var(--primary); background: var(--primary); }
.consent input:focus-visible + span { outline: 3px solid rgba(197, 31, 31, .34); outline-offset: 3px; }
.consent em { color: var(--ink-soft); font-size: 11px; font-style: normal; line-height: 1.55; }
.consent a { color: var(--primary); font-weight: 800; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.consent-error { margin-bottom: 8px; }
.button--submit { width: 100%; margin-top: 4px; color: #fff; text-decoration: none; background: linear-gradient(135deg, var(--primary), var(--primary-hover)); box-shadow: 0 13px 30px rgba(197,31,31,.2); }
.button--submit.is-loading { pointer-events: none; }
.button-loader { display: none; width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: rotate .7s linear infinite; }
.is-loading .button-loader { display: block; }
.is-loading .button-label, .is-loading.button--submit > svg { display: none; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: var(--radius-sm); font-size: 11px; font-weight: 700; text-align: center; }
.form-status.is-success { display: block; color: var(--accent-dark); background: #f4e9e4; }
.form-status.is-error { display: block; color: #9d2c39; background: #fcecef; }
.form-status.is-info { display: block; color: #255f59; background: var(--signal-soft); }
.form-direct { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 16px; margin-top: 14px; font-size: 11px; font-weight: 900; }
.form-direct a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

.contact { background: var(--surface-muted); }
.contact-heading { max-width: 700px; margin: 0 auto 50px; text-align: center; }
.contact-heading .eyebrow { justify-content: center; }
.contact-heading > p { max-width: 470px; margin: 22px auto 0; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.contact-card { position: relative; display: flex; min-height: 195px; flex-direction: column; align-items: flex-start; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.85); transition: transform .3s ease, box-shadow .3s ease, color .3s ease; }
.contact-card:hover { color: #fff; background: var(--navy); box-shadow: var(--shadow-hover); transform: translateY(-7px); }
.contact-icon { display: grid; width: 43px; height: 43px; margin-bottom: 26px; place-items: center; border-radius: 13px; color: var(--blue); background: var(--mist); font-size: 12px; font-weight: 800; }
.contact-card:hover .contact-icon { color: var(--navy); background: var(--cyan); }
.contact-card small { color: #746b66; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { margin-top: 5px; font-size: 13px; }
.contact-card i { position: absolute; right: 22px; bottom: 22px; display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); transition: transform .25s ease; }
.contact-card:hover i { color: var(--navy); border-color: var(--cyan); background: var(--cyan); transform: rotate(-45deg); }
.contact-card i svg { width: 14px; height: 14px; }

.site-footer { color: #d3ccc7; background: #1f1f1f; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 40px; padding-block: 54px; border-bottom: 1px solid rgba(255,255,255,.08); }
.brand--footer { color: white; }
.brand--footer .brand-mark { color: var(--secondary); border: 1px solid var(--accent); background: #fff; }
.brand--footer .brand-copy small { color: #bca89e; }
.footer-main > p { max-width: 410px; margin: 0; color: #aaa19b; font-size: 11px; }
.footer-up { display: inline-flex; align-items: center; gap: 10px; color: white; font-size: 11px; font-weight: 800; }
.footer-up svg { color: var(--cyan); transform: rotate(-90deg); }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 23px; color: #958a84; font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.footer-bottom span:last-child { display: flex; align-items: center; gap: 9px; }
.footer-bottom svg { width: 23px; color: var(--cyan); }
.scroll-top { position: fixed; z-index: 50; right: 25px; bottom: 25px; display: grid; width: 47px; height: 47px; place-items: center; border: 0; border-radius: 15px; color: #fff; background: var(--primary); box-shadow: 0 15px 35px rgba(197,31,31,.22); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(15px); transition: .3s ease; }
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.scroll-top svg { width: 24px; height: 24px; transform: none; stroke: currentColor; stroke-width: 2; fill: none; }
.mobile-quick-actions { display: none; }

.footer-main--wide { grid-template-columns: minmax(220px, .8fr) 1.6fr auto; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 10px 18px; color: #bfb7b1; font-size: 11px; font-weight: 800; }
.footer-nav a { transition: color .2s ease; }
.footer-nav a:hover { color: #fff; }

.page-main { background: var(--background); }
.inner-hero { position: relative; overflow: hidden; padding: 150px 0 92px; color: #fff; background: linear-gradient(135deg, #202020, #34302e); }
.inner-hero::before { content: ""; position: absolute; top: -220px; right: -180px; width: 520px; height: 520px; border: 1px solid rgba(173,104,72,.3); border-radius: 50%; box-shadow: 0 0 0 86px rgba(173,104,72,.05), 0 0 0 170px rgba(173,104,72,.025); }
.inner-hero::after { content: ""; position: absolute; bottom: -170px; left: 10%; width: 360px; height: 360px; border-radius: 50%; background: rgba(173,104,72,.08); }
.inner-hero__grid { position: relative; z-index: 1; }
.inner-hero h1 { max-width: 960px; margin: 0 0 24px; color: #fff; letter-spacing: 0; overflow-wrap: anywhere; }
.inner-lead { max-width: 820px; margin: 0; color: #d6cfca; font-size: 17px; line-height: 1.8; }
.inner-hero-actions { margin-top: 30px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 28px; color: #c9b7ad; font-size: 12px; font-weight: 800; }
.breadcrumbs a { color: #fff; opacity: .82; }
.breadcrumbs a::after { content: "/"; margin-left: 9px; color: var(--accent); }
.breadcrumbs span { color: #c9b7ad; }

.page-section { padding: 95px 0; }
.page-section--muted { background: var(--surface-muted); }
.page-section--dark { color: #fff; background: var(--navy); }
.page-section--dark .check-list li { border-color: rgba(255,255,255,.1); color: #e8ded8; background: rgba(255,255,255,.055); }
.page-section--dark h2 { color: #fff; }
.service-intro-section + .page-section { padding-top: 0; }
.soft-text { color: var(--ink-soft); line-height: 1.8; }
.narrow { max-width: 860px; }
.center-block { text-align: center; }
.hero-actions--center { justify-content: center; }
.section-actions { display: flex; justify-content: center; margin-top: 34px; }
.portfolio .section-actions .button--ghost { color: #fff; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); }
.portfolio .section-actions .button--ghost:hover { border-color: var(--accent); background: rgba(255,255,255,.12); }

.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.content-panel { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: rgba(255,255,255,.88); box-shadow: var(--shadow-sm); }
.content-panel--large { padding: 42px; }
.content-panel--on-dark { border-color: rgba(255,255,255,.12); color: #e8ded8; background: rgba(255,255,255,.07); }
.content-panel h2, .service-card h2, .article-card h2, .feature-card h2, .case-summary h2, .related-box h2 { margin: 0 0 14px; font-size: 24px; line-height: 1.25; letter-spacing: 0; }
.content-panel p { color: var(--ink-soft); line-height: 1.8; }
.content-panel--on-dark p { color: #e8ded8; }
.split-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: start; gap: 58px; }
.split-layout h2 { margin: 0 0 20px; font-size: clamp(32px, 4vw, 52px); line-height: 1.16; letter-spacing: 0; }

.service-overview { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); align-items: center; gap: 34px; }
.service-visual { margin: 0; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.service-visual img { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: top; }
.service-summary h2 { margin-bottom: 16px; font-size: clamp(28px, 3vw, 42px); line-height: 1.18; letter-spacing: 0; }
.service-price { margin: 0 0 12px; color: var(--primary); font-size: clamp(30px, 4vw, 48px); line-height: 1.1; font-weight: 900; letter-spacing: 0; }
.service-summary .hero-actions { margin-top: 25px; }

.check-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 14px 16px 14px 42px; border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--secondary-soft); background: #fff; font-size: 14px; line-height: 1.65; }
.check-list li::before { content: ""; position: absolute; top: 20px; left: 18px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 5px rgba(197,31,31,.1); }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.service-card { position: relative; display: flex; min-height: 310px; flex-direction: column; padding: 27px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(145deg, #fff, #fcfaf8); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-card:hover { border-color: rgba(173,104,72,.48); box-shadow: var(--shadow); transform: translateY(-7px); }
.service-card p { position: relative; z-index: 1; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.service-card__price { position: relative; z-index: 1; margin: 6px 0 18px; color: var(--secondary); font-size: 15px; line-height: 1.35; font-weight: 900; }
.service-card .text-link { margin-top: auto; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--primary); font-size: 12px; font-weight: 900; }
.text-link svg { color: var(--accent); transition: transform .25s ease; }
.text-link:hover svg { transform: translateX(4px); }

.mini-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.mini-timeline li { min-height: 190px; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.mini-timeline span { display: grid; width: 42px; height: 42px; margin-bottom: 22px; place-items: center; border-radius: 50%; color: #fff; background: var(--secondary); font-size: 10px; font-weight: 900; }
.mini-timeline p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }

.page-portfolio { padding: 95px 0; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.faq-list summary { cursor: pointer; padding: 20px 24px; color: var(--secondary); font-size: 15px; font-weight: 900; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 0; padding: 0 24px 22px; color: var(--ink-soft); line-height: 1.8; }
.faq-list--large summary { font-size: 17px; }
.link-stack { display: grid; gap: 10px; }
.link-stack a { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 18px; border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--secondary); background: #fff; font-size: 14px; font-weight: 900; transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.link-stack a:hover { color: var(--primary); border-color: var(--accent); transform: translateY(-2px); }
.link-stack svg { flex: 0 0 auto; color: var(--accent); }

.case-layout { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr); align-items: center; gap: 38px; }
.case-visual { margin: 0; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.case-visual img { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: top; }
.case-summary { padding: 34px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.case-summary p:not(.project-domain) { color: var(--ink-soft); line-height: 1.8; }
.case-summary .button { margin: 7px 8px 0 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list span, .category-row span { padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; color: var(--accent-dark); background: #fff; font-size: 11px; font-weight: 900; }

.about-layout { display: grid; grid-template-columns: minmax(300px, 430px) minmax(0, 1fr); align-items: center; gap: 54px; }
.about-photo { display: block; overflow: hidden; border: 1px solid var(--border); border-radius: 10px; background: #fff; box-shadow: none; align-self: start; }
.about-photo img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; object-position: 50% 48%; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { min-height: 180px; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.feature-card b { display: block; margin-bottom: 28px; color: var(--accent-dark); font-size: 11px; letter-spacing: .12em; }

.category-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.article-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.article-card { display: flex; min-height: 280px; flex-direction: column; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.article-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.article-card__meta, .article-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 18px; color: var(--accent-dark); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.article-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.article-card .text-link { margin-top: auto; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: 34px; }
.article-meta { grid-column: 1 / -1; margin-bottom: 0; }
.article-content { padding: 42px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.article-content h2 { margin: 38px 0 14px; font-size: 30px; line-height: 1.25; letter-spacing: 0; }
.article-content h2:first-child { margin-top: 0; }
.article-content p, .article-content li { color: var(--ink-soft); line-height: 1.9; }
.article-content a, .legal-content a { color: var(--primary); font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.article-content a.button, .article-content a.button:visited, .legal-content a.button, .legal-content a.button:visited { text-decoration: none; }
.article-content a.button--primary, .article-content a.button--primary:visited, .legal-content a.button--primary, .legal-content a.button--primary:visited { color: #fff; }
.article-content a.button--ghost, .article-content a.button--ghost:visited, .legal-content a.button--ghost, .legal-content a.button--ghost:visited { color: var(--secondary); }
.article-content ul { display: grid; gap: 10px; padding-left: 22px; }
.article-intro { font-size: 18px; }
.article-cta { margin-top: 38px; padding: 28px; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(135deg, #202020, #34302e); }
.article-cta h2, .article-cta p { color: #fff; }
.related-box { position: sticky; top: 110px; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface-muted); box-shadow: var(--shadow-sm); }

.sitemap-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.sitemap-grid ul { display: grid; gap: 9px; margin: 0; padding-left: 20px; }
.sitemap-grid a { color: var(--primary); font-weight: 800; }
.legal-content { max-width: 860px; }
.legal-content h2 { margin: 36px 0 12px; font-size: 28px; letter-spacing: 0; }
.legal-content p { color: var(--ink-soft); line-height: 1.9; }
.page-contacts { padding-top: 95px; }
.order--compact { padding-top: 25px; }

.home-services, .home-insights, .home-faq { background: #fff; }
.home-services .service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.home-insights { border-top: 1px solid var(--line); }
.home-faq { padding-top: 20px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes pulse { 0% { transform: scale(.7); opacity: 1; } 100% { transform: scale(1.7); opacity: 0; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes modal-fade { from { opacity: 0; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(18px) scale(.985); } }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .header-cta { margin-left: auto; }
  .mobile-menu { display: block; position: fixed; inset: 78px 20px auto; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.96); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-14px); backdrop-filter: blur(18px); transition: .25s ease; }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-menu nav { display: grid; }
  .mobile-menu a { padding: 12px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 700; }
  .mobile-menu a:last-child { border: 0; }
  .hero-grid { gap: 35px; }
  .hero-visual { max-width: 420px; }
  .floating-note--top { left: -30px; }
  .floating-note--bottom { right: -20px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .rush-panel { grid-template-columns: 1fr; }
  .rush-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-grid, .home-services .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-timeline { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .related-box { position: static; }
  .tech-layout { gap: 50px; }
  .order-panel { gap: 38px; padding: 48px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .section { padding: 85px 0; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-cta { display: none; }
  .brand { min-width: 0; }
  .hero { min-height: auto; padding: 128px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero .eyebrow, .hero-actions, .hero-contact-links { justify-content: center; }
  h1 { margin-inline: auto; font-size: clamp(42px, 11vw, 64px); }
  .hero-lead { margin-inline: auto; font-size: 15px; }
  .hero-facts { margin-inline: auto; text-align: left; }
  .hero-visual { display: none; }
  .rush-strip { padding: 38px 0; }
  .rush-panel { padding: 24px; }
  .rush-intro h2 { font-size: 31px; }
  .rush-grid { grid-template-columns: 1fr; }
  .rush-card { min-height: auto; }
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 42px; }
  .section-head > p { max-width: 560px; }
  .project-grid { grid-template-columns: 1fr; }
  .inner-hero { padding: 125px 0 74px; }
  .inner-hero h1 { font-size: clamp(38px, 8vw, 58px); }
  .content-grid, .split-layout, .service-overview, .case-layout, .about-layout, .sitemap-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .footer-main--wide { grid-template-columns: 1fr auto; }
  .footer-nav { grid-column: 1 / -1; }
  .tech-layout { grid-template-columns: 1fr; }
  .tech-intro { text-align: center; }
  .tech-intro .eyebrow { justify-content: center; }
  .tech-intro > p { margin-inline: auto; }
  .tech-orbit { margin-inline: auto; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .order { padding-top: 20px; }
  .order-panel { grid-template-columns: 1fr; padding: 38px; }
  .order-copy { text-align: center; }
  .order-copy .eyebrow { justify-content: center; }
  .order-note { max-width: 470px; margin-inline: auto; text-align: left; }
  .mini-wave { justify-content: center; margin-top: 30px; }
  .footer-main { grid-template-columns: 1fr auto; }
  .footer-main > p { grid-column: 1 / -1; grid-row: 2; }
  .case-modal__dialog { padding: 36px 28px 30px; border-radius: var(--radius-lg); }
  body { padding-bottom: 76px; }
  .mobile-quick-actions { position: fixed; z-index: 220; right: 12px; bottom: 10px; left: 12px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 8px; border: 1px solid rgba(134,80,57,.2); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 16px 38px rgba(45,34,29,.16); backdrop-filter: blur(18px); }
  .mobile-quick-actions a { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; border-radius: 13px; color: #fff; background: var(--secondary); font-size: 12px; font-weight: 900; }
  .mobile-quick-actions a:first-child { background: var(--primary); }
  .mobile-quick-actions svg { width: 18px; height: 18px; }
  .scroll-top { bottom: 88px; }
  #order, .button--submit { scroll-margin-bottom: 110px; }
}

@media (max-width: 540px) {
  .site-header { padding-block: 10px; }
  .brand-copy strong { font-size: 12px; }
  .brand-copy small { font-size: 8px; }
  .brand--footer .brand-copy small { font-size: 9px; }
  .brand-mark { width: 42px; height: 42px; flex-basis: 42px; }
  .mobile-menu { inset: 70px 14px auto; }
  .hero { padding: 105px 0 78px; }
  .hero-marquee { display: none; }
  h1 { font-size: clamp(36px, 10.5vw, 40px); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-contact-links { display: grid; justify-items: center; }
  .hero-facts { display: none; }
  .hero-facts div { padding-right: 8px; }
  .hero-facts div + div { padding-left: 8px; }
  .hero-facts strong { font-size: 11px; }
  .hero-facts span { font-size: 9px; line-height: 1.45; }
  .hero-visual { width: 96%; padding: 24px 0 58px; }
  .portrait-shell { width: 90%; padding: 7px; }
  .portrait-caption { right: 22px; bottom: 5px; left: 22px; padding: 12px 14px; }
  .portrait-label { top: 8%; right: 0; font-size: 8px; }
  .floating-note { padding: 10px; }
  .floating-note--top { top: 75px; left: -2px; }
  .floating-note--bottom { display: none; }
  .floating-note small { display: none; }
  .section-head h2, .tech-intro h2, .contact-heading h2 { font-size: 36px; }
  .benefit-grid, .timeline, .contact-grid, .service-grid, .home-services .service-grid, .mini-timeline, .feature-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 218px; }
  .page-section { padding: 70px 0; }
  .inner-lead { font-size: 15px; }
  .inner-hero h1 { font-size: 34px; }
  .content-panel, .content-panel--large, .article-content, .related-box { padding: 22px; }
  .service-card, .article-card { min-height: auto; padding: 22px; }
  .case-summary { padding: 24px; }
  .article-content h2 { font-size: 25px; }
  .case-summary .button { width: 100%; margin-right: 0; justify-content: center; }
  .footer-nav { display: grid; gap: 10px; }
  .timeline li { min-height: 205px; padding-inline: 14px; }
  .project-body { padding: 21px; }
  .project-body > p:not(.project-domain) { min-height: auto; }
  .tech-group { padding: 20px; }
  .tech-group span { font-size: 10px; }
  .order-panel { width: calc(100% - 16px); padding: 29px 14px 14px; border-radius: var(--radius-lg); }
  .order-copy { padding-inline: 9px; }
  .order-copy h2 { font-size: 35px; }
  .order-form { padding: 23px 17px; border-radius: var(--radius-md); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-card { min-height: 170px; }
  .footer-main { gap: 25px; }
  .footer-up { font-size: 0; }
  .footer-up svg { width: 22px; height: 22px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .case-modal { padding: 10px; }
  .case-modal__dialog { max-height: calc(100vh - 20px); padding: 34px 20px 22px; border-radius: var(--radius-lg); }
  .case-modal__meta { grid-template-columns: 1fr; }
  .case-modal__close { top: 12px; right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.form-mail-note { margin: 14px 0; color: #59524e; font-size: 14px; line-height: 1.6; }

/* HODWEB: graphite, warm paper and a clear lime signal. */
:root{--primary:#d5fa65;--primary-hover:#c2ec45;--secondary:#17201b;--secondary-soft:#26352b;--accent:#456435;--accent-dark:#304823;--background:#f7f8f2;--surface-muted:#eef1e8;--border:#dce1d6;--ink-soft:#5e685d;--cyan:#d5fa65;--blue:#456435;--line:#dce1d6;--mist:#eef1e8;--container:1280px;--shadow:0 24px 64px #17201b12;--shadow-hover:0 26px 65px #17201b20}
body{background:#f7f8f2;color:#17201b}::selection{background:#d5fa65;color:#17201b}a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible,summary:focus-visible{outline:3px solid #739338;outline-offset:5px}
.container{width:min(calc(100% - 80px),1280px)}.site-header,.site-header.is-scrolled{padding:15px 0;background:#f7f8f2f5;border-bottom:1px solid #dce1d6;backdrop-filter:blur(16px);box-shadow:none}.brand{min-width:190px;gap:9px}.brand-mark{border-radius:0;background:#17201b;color:#d5fa65;font-size:30px;width:36px;height:36px;flex-basis:36px}.brand-mark span{display:none}.brand-copy strong{font-size:32px;letter-spacing:-1.5px;font-weight:800;line-height:1.1}.brand-copy small{font-size:8px;letter-spacing:1.35px;color:#5e685d;margin-top:2px}.desktop-nav{gap:25px}.desktop-nav a{color:#374334;font-size:12px}.button--small,.button--small:visited{background:#17201b;color:#fff;border-radius:6px;box-shadow:none;font-size:12px;min-height:42px}.button--small:hover{background:#2b3d2d;box-shadow:none}.menu-toggle{border-radius:6px;background:transparent;border-color:#c8d0c0}.inner-page .site-header:not(.is-scrolled) .brand-copy strong{color:#17201b}.inner-page .site-header:not(.is-scrolled) .brand-copy small{color:#5e685d}.inner-page .site-header:not(.is-scrolled) .desktop-nav a{color:#374334}.inner-page .site-header:not(.is-scrolled) .menu-toggle{color:#17201b;background:transparent;border-color:#c8d0c0}.mobile-menu{background:#f7f8f2}.mobile-menu a{color:#17201b!important}.button--primary,.button--submit{color:#17201b;background:#d5fa65;border-radius:6px;box-shadow:none}.button--primary:hover,.button--submit:hover{background:#c2ec45;box-shadow:none}.button--ghost{border-radius:6px}.service-price,.consent a,.form-direct a{color:#456435}.consent input:checked+span{color:#17201b}.inner-hero{padding:140px 0 65px;background:#17201b}.inner-hero::before{border-color:#d5fa6526;box-shadow:0 0 0 86px #d5fa6505,0 0 0 170px #d5fa6503}.inner-hero::after{background:#d5fa6505}.inner-hero h1{letter-spacing:-.035em;line-height:1.1;font-size:clamp(34px,4.5vw,62px)}.inner-lead{color:#c3cdbf}.inner-hero .eyebrow,.breadcrumbs,.breadcrumbs span{color:#c1d4b7}.inner-hero .eyebrow>span{background:#d5fa65}.page-section{padding:75px 0}.content-panel,.service-card,.case-summary,.feature-card,.article-card,.service-visual,.case-visual{border-radius:10px;box-shadow:none}.service-card:hover{box-shadow:none;border-color:#456435}.site-footer{background:#111912;color:#c1cbbb}.footer-main{padding-block:48px}.brand--footer .brand-mark{background:#d5fa65;color:#17201b;border:0}.brand--footer .brand-copy small{color:#a9b4a2}.footer-nav{font-weight:500;font-size:12px;color:#bac5b5}.footer-bottom{font-size:11px;color:#97a58f}.scroll-top{border-radius:8px;color:#17201b;box-shadow:0 6px 20px #0001}.mobile-quick-actions{border-color:#cfd8c5;background:#f7f8f2f5;border-radius:12px;box-shadow:0 4px 25px #10181020}.mobile-quick-actions a{border-radius:6px}.mobile-quick-actions a:first-child{color:#17201b}.mobile-quick-actions a:last-child{background:#17201b;color:#d5fa65}.contact-card{border-radius:10px}.contact-card:hover{color:#fff}.contact-card:hover small{color:#d5fa65}.reveal{opacity:1!important;transform:none!important}
.hw-home h1,.hw-home h2,.hw-home h3,.hw-home p{margin-top:0}.hw-home h2{font-size:clamp(36px,4.2vw,58px);letter-spacing:-.055em;line-height:1.08;font-weight:700;margin-bottom:24px}.hw-home h2>span{color:#687760}.hw-home h3{letter-spacing:-.025em}.hw-kicker{display:flex;align-items:center;gap:10px;font-size:10px;font-weight:700;letter-spacing:1.6px;line-height:1.6;margin-bottom:28px;text-transform:uppercase}.hw-status{width:7px;height:7px;border-radius:50%;background:#d5fa65;box-shadow:0 0 0 4px #d5fa6512;flex-shrink:0}.hw-small-label{font-size:12px;color:#6b7764}.hw-section{padding:100px 0}.hw-section-top{display:flex;justify-content:space-between;gap:20px;align-items:center;margin-bottom:16px}.hw-section-top .hw-kicker{margin-bottom:0}.hw-section-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:36px;margin-bottom:46px}.hw-section-heading h2{margin-bottom:0}.hw-section-heading>p{color:#62705b;font-size:14px;line-height:1.8;max-width:340px;margin-bottom:0}.hw-button{display:inline-flex;align-items:center;justify-content:space-between;gap:28px;padding:18px 24px;min-height:58px;background:#d5fa65;color:#17201b;font-size:14px;font-weight:800;border:1px solid transparent;border-radius:6px;transition:background .2s,transform .2s;line-height:1.4}.hw-button:hover{background:#c3ed48;transform:translateY(-2px)}.hw-button>span{font-size:22px;font-weight:400}.hw-text-link{display:inline-flex;gap:12px;align-items:center;font-size:13px;font-weight:700;border-bottom:1px solid currentColor;padding-bottom:6px}.hw-text-link:hover{opacity:.72}.hw-round-link{display:flex;align-items:center;gap:20px;font-size:13px;font-weight:700;white-space:nowrap}.hw-round-link>span{display:grid;place-items:center;border:1px solid #cad2c2;border-radius:50%;width:45px;height:45px;font-size:24px;transition:background .2s}.hw-round-link:hover>span{background:#d5fa65;border-color:#d5fa65}
.hw-hero{background:#17201b;color:#f6f8ee;padding:145px 0 0;position:relative;overflow:hidden}.hw-hero-grid{display:grid;grid-template-columns:1.08fr 1fr;gap:50px;align-items:center}.hw-hero .hw-kicker{color:#bec9b8;font-size:9px;letter-spacing:1.4px;margin-bottom:28px}.hw-hero h1{font-size:clamp(48px,5.5vw,79px);line-height:1.04;font-weight:700;letter-spacing:-.06em;max-width:720px;margin-bottom:26px}.hw-hero h1>span{color:#d5fa65}.hw-lead{max-width:460px;font-size:15px;line-height:1.85;color:#c0cbbc;margin-bottom:28px}.hw-actions{display:flex;align-items:center;flex-wrap:wrap;gap:26px}.hw-actions .hw-text-link{color:#e8ecdf}.hw-hero-foot{display:flex;gap:40px;margin-top:32px;padding-top:22px;border-top:1px solid #ffffff20;max-width:490px}.hw-hero-foot>span{font-size:11px;line-height:1.8;color:#aab9a4}.hw-hero-foot strong{display:block;color:#e4ebdf;font-size:13px;font-weight:600}.hw-hero-foot br{display:none}.hw-hero-bottom{display:flex;justify-content:space-between;align-items:center;padding-block:24px;margin-top:48px;border-top:1px solid #ffffff20;font-size:9px;letter-spacing:1.5px;color:#94a68d}.hw-hero-bottom a{font-size:10px;letter-spacing:0;color:#b4c2ac}.hw-hero-bottom a span{margin-left:25px;font-size:20px;color:#d5fa65}
.hw-stage{height:490px;position:relative;min-width:0}.hw-stage-grid{position:absolute;inset:0;background-image:linear-gradient(#c7f27b0b 1px,transparent 1px),linear-gradient(90deg,#c7f27b0b 1px,transparent 1px);background-size:42px 42px;mask-image:radial-gradient(ellipse,black 20%,transparent 73%)}.hw-stage-caption{position:absolute;top:0;left:20px;font-size:8px;letter-spacing:1.7px;color:#83957c}.hw-big-arrow{position:absolute;right:15px;top:18px;width:230px;height:230px;fill:#d5fa65;stroke:none;filter:drop-shadow(-12px 16px 0 #637c37);transform:rotate(-9deg)}.hw-window{position:absolute;display:block;border:1px solid #67705f;overflow:hidden;border-radius:8px;background:#202820;box-shadow:0 25px 45px #0005;transition:transform .35s}.hw-window img{width:100%;height:auto}.hw-window-main{left:0;top:135px;width:94%;transform:rotate(-6deg)}.hw-window-main:hover{transform:rotate(-3deg) translateY(-6px)}.hw-window-small{width:58%;right:-5px;bottom:5px;transform:rotate(8deg);border:4px solid #f4f4e8;background:#f4f4e8}.hw-window-small:hover{transform:rotate(5deg) translateY(-6px)}.hw-window-bar{display:flex;align-items:center;gap:4px;padding:10px 12px;color:#bcc5b4;font-size:7px}.hw-window-bar i{width:4px;height:4px;border-radius:50%;background:#85937c}.hw-window-bar span{margin:auto;letter-spacing:.5px}.hw-window-bar b{font-size:10px}.hw-window-small .hw-window-bar{color:#465b38;padding:5px 8px}.hw-stage-stamp{position:absolute;display:flex;align-items:center;gap:12px;left:7px;bottom:9px;color:#d5fa65;transform:rotate(-5deg);font-size:9px;line-height:1.7}.hw-stage-stamp>span{font-size:45px;line-height:1}.hw-stage-stamp strong{font-weight:600;color:#e1ead9}.hw-stage-index{position:absolute;right:0;bottom:-32px;color:#83957c;letter-spacing:1px;font-size:7px}
.hw-process-strip{background:#d5fa65;color:#26371f;padding:24px 0}.hw-process-strip>.container{display:flex;align-items:center;justify-content:space-between;gap:16px}.hw-process-strip span{font-size:15px;font-weight:700;letter-spacing:-.4px}.hw-process-strip b{font-size:24px;font-weight:400}
.hw-projects{display:grid;grid-template-columns:1.1fr 1fr;gap:42px 28px}.hw-project{display:block;min-width:0}.hw-project-art{position:relative;overflow:hidden;min-height:0;padding:52px 30px 30px;border-radius:8px;background:#e9e9df}.hw-project-number{position:absolute;top:20px;left:25px;font-size:9px;font-weight:700;letter-spacing:1.6px}.hw-project-art img{width:100%;height:auto;aspect-ratio:16/10;object-fit:cover;object-position:top;border-radius:4px;box-shadow:0 18px 28px #0002;transition:transform .5s}.hw-project:hover img{transform:translateY(-5px) scale(1.02)}.hw-art-warm{background:#e2ddce}.hw-art-dark{background:#28382d;color:#d4dfcc}.hw-art-lilac{background:#e3e0ec}.hw-art-green{background:#e1eab9}.hw-project-open{position:absolute;right:15px;bottom:15px;display:grid;place-items:center;width:43px;height:43px;border-radius:50%;background:#f7f8f2;color:#17201b;font-size:23px;transition:background .2s}.hw-project:hover .hw-project-open{background:#d5fa65}.hw-project-info{display:flex;justify-content:space-between;align-items:flex-start;gap:15px;padding-top:20px}.hw-project-info h3{font-size:19px;line-height:1.35;margin-bottom:7px;font-weight:700}.hw-project-info p{font-size:11px;color:#63735e;line-height:1.7;margin-bottom:0}.hw-project-info>span{font-size:9px;border:1px solid #cdd6c5;padding:5px 8px;border-radius:4px;white-space:nowrap;margin-top:4px}
.hw-purpose{background:#eaf0e0}.hw-purpose-grid{display:grid;grid-template-columns:1fr 1fr;gap:90px}.hw-purpose h2>span{color:#4c643c}.hw-purpose-note{max-width:390px;font-size:14px;color:#5a6a51;line-height:1.85;margin-bottom:0}.hw-principles{padding-top:15px}.hw-principles article{display:flex;gap:24px;padding:26px 0;border-bottom:1px solid #cad5be}.hw-principles article:first-child{padding-top:0}.hw-principles article>span{color:#718363;font-size:11px;padding-top:4px}.hw-principles h3{font-size:20px;line-height:1.3;margin-bottom:10px}.hw-principles p{font-size:13px;color:#56654f;line-height:1.8;margin-bottom:0}
.hw-tabs{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border-bottom:1px solid #cdd6c4;margin-top:30px;gap:8px}.hw-tabs button{min-width:0;min-height:48px;padding:19px 16px;border:1px solid #d5dccd;border-bottom:0;border-radius:8px 8px 0 0;background:transparent;font-weight:700;font-size:13px;cursor:pointer;flex:1;text-align:left;display:flex;justify-content:space-between;gap:10px;transition:background .2s}.hw-tabs button:hover{background:#eaf0df}.hw-tabs button[aria-selected="true"]{background:#17201b;color:#d5fa65;border-color:#17201b}.hw-tabs button>span{font-size:17px}.hw-format-panel{display:grid;grid-template-columns:1.2fr 1fr;gap:70px;padding:55px 0 40px;align-items:center}.hw-format-panel[hidden]{display:none}.hw-format-type{display:block;font-size:9px;font-weight:700;letter-spacing:1.5px;margin-bottom:22px;color:#637456}.hw-format-description h3{font-size:40px;letter-spacing:-1.5px;line-height:1.15;margin-bottom:20px}.hw-format-description p{font-size:14px;color:#617159;line-height:1.85;max-width:440px;margin-bottom:30px}.hw-price-card{border-radius:8px;padding:35px;background:#edf2e4;border:1px solid #dce3d1}.hw-price-card>span{font-size:12px;color:#596d4e}.hw-price{font-size:48px;font-weight:700;letter-spacing:-2px;line-height:1.3;margin:10px 0 24px!important}.hw-price small{font-size:30px}.hw-price-card ul{list-style:none;padding:0;margin:0 0 28px}.hw-price-card li{font-size:12px;padding:8px 0 8px 23px;position:relative;color:#4d6042}.hw-price-card li::before{content:'✓';position:absolute;left:0;color:#476930;font-weight:800}.hw-price-card .hw-button{width:100%;background:#17201b;color:#d5fa65}.hw-price-card .hw-button:hover{background:#2c4229}.hw-price-card>small{display:block;margin-top:14px;font-size:10px;line-height:1.6;color:#69755f}.hw-more-services{display:flex;align-items:center;flex-wrap:wrap;gap:24px;padding-top:22px;border-top:1px solid #d5ddce;font-size:12px}.hw-more-services p{margin:0 auto 0 0;color:#64745c}.hw-more-services a{font-weight:700}
.hw-person{background:#edf0e8}.hw-person-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:100px;align-items:center}.hw-person-photo{position:relative;max-width:430px;padding:22px 22px 0;background:#dce7cb;border-radius:8px;overflow:hidden}.hw-person-photo img{width:100%;border-radius:4px;mix-blend-mode:multiply}.hw-person-photo>span{display:block;font-size:9px;font-weight:700;letter-spacing:1.4px;padding:20px 0}.hw-person-copy h3{font-size:20px;margin:28px 0 15px}.hw-person-copy>p:not(.hw-kicker){font-size:14px;line-height:1.9;color:#57674f}.hw-person-copy .hw-text-link{margin-top:12px}.hw-step-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;margin-top:50px}.hw-step-grid article{border-top:1px solid #cbd6c3;padding-top:20px}.hw-step-grid b{display:flex;justify-content:space-between;font-size:13px;font-weight:500;color:#637b50;margin-bottom:35px}.hw-step-grid b span{font-size:23px}.hw-step-grid h3{font-size:18px;line-height:1.35;margin-bottom:15px}.hw-step-grid p{font-size:12px;line-height:1.8;color:#607256;margin-bottom:0}
.hw-faq{background:#edf0e8}.hw-faq-grid{display:grid;grid-template-columns:1fr 1.25fr;gap:70px}.hw-faq .hw-text-link{margin-top:10px}.hw-questions details{border-bottom:1px solid #cdd6c4}.hw-questions details:first-child{border-top:1px solid #cdd6c4}.hw-questions summary{display:flex;align-items:center;justify-content:space-between;gap:20px;list-style:none;cursor:pointer;font-size:15px;font-weight:700;line-height:1.6;padding:22px 0}.hw-questions summary::-webkit-details-marker{display:none}.hw-questions summary span{font-size:26px;font-weight:400;transition:transform .2s}.hw-questions details[open] summary span{transform:rotate(45deg)}.hw-questions p{font-size:13px;line-height:1.85;color:#586b4d;padding:0 30px 22px 0;margin-bottom:0}
.hw-contact{background:#17201b;color:#f7f8f2}.hw-contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:85px;align-items:start}.hw-contact h2{font-size:clamp(40px,4.5vw,62px)}.hw-contact h2>span{color:#d5fa65}.hw-contact-copy>p:not(.hw-kicker){font-size:14px;line-height:1.85;color:#b9c9af;max-width:380px;margin-bottom:30px}.hw-contact .hw-kicker{color:#aebfa4}.hw-contact-alternatives{display:flex;flex-direction:column;align-items:flex-start;gap:9px;margin-top:25px;color:#d4dfca;font-size:14px}.hw-contact-alternatives a:hover{color:#d5fa65}.hw-contact-person{display:flex;align-items:center;gap:13px;margin-top:45px;font-size:11px;color:#a5b59b;line-height:1.8}.hw-contact-person img{border-radius:50%}.hw-contact-person strong{color:#eff5e8;font-weight:600}.hw-brief{padding:35px;background:#f7f8f2;border-radius:8px;color:#17201b}.hw-brief h3{font-size:23px;line-height:1.3;margin-bottom:25px}.hw-brief .hw-format-type{margin-bottom:12px}.hw-brief .order-form{padding:0;border:0;border-radius:0;box-shadow:none;background:transparent}.hw-brief .form-row{gap:14px}.hw-brief .field label{font-size:11px;color:#45583b}.hw-brief input,.hw-brief select,.hw-brief textarea{font-size:14px;background:#fff;border:1px solid #d4dccb;border-radius:5px;min-height:46px;padding:12px;color:#17201b}.hw-brief textarea{min-height:100px}.hw-brief .field-error{font-size:10px;min-height:14px}.hw-brief .consent em{font-size:10px}.hw-brief .form-mail-note{font-size:10px;line-height:1.7;color:#64735c;margin:12px 0}.hw-brief .form-direct{font-size:11px}.hw-brief .button--submit{min-height:52px;font-size:13px}.hw-brief .consent>span{border-color:#b6c5a9;background:#fff}.hw-brief .consent input:checked+span{background:#d5fa65;border-color:#a7c657}.hw-brief .form-status{font-size:12px}
@media(min-width:1600px){.hw-hero{padding-top:160px}.hw-stage{height:540px}.hw-big-arrow{width:260px;height:260px}.hw-window-main{top:150px}}
@media(max-width:1100px){.container{width:calc(100% - 56px)}.desktop-nav{gap:15px}.brand{min-width:170px}.brand-copy strong{font-size:22px}.hw-hero-grid{gap:25px}.hw-hero h1{font-size:64px}.hw-stage{height:440px}.hw-window-main{top:120px}.hw-window-small{bottom:30px}.hw-stage-stamp{bottom:10px}.hw-big-arrow{width:200px;height:200px}.hw-purpose-grid,.hw-person-grid,.hw-contact-grid{gap:45px}.hw-format-panel{gap:40px}.hw-project-info{flex-direction:column;gap:5px}.hw-project-info>span{margin-top:0}.hw-faq-grid{gap:40px}.hw-brief{padding:25px}.hw-hero-foot{gap:28px}}
@media(max-width:900px){.desktop-nav{display:none}.menu-toggle{display:grid}.header-cta{margin-left:auto}.hw-hero h1{font-size:56px}.hw-hero .hw-kicker{font-size:8px}.hw-stage{height:380px}.hw-window-main{top:100px}.hw-window-small{bottom:20px}.hw-stage-stamp{font-size:8px;bottom:-15px}.hw-stage-stamp>span{font-size:32px}.hw-stage-index{bottom:-42px}.hw-big-arrow{width:170px;height:170px}.hw-lead{font-size:14px}.hw-actions{gap:18px}.hw-actions .hw-button{padding:16px 18px;font-size:12px}.hw-hero-foot{gap:20px}.hw-section{padding:75px 0}.hw-format-description h3{font-size:34px}.hw-price-card{padding:25px}.hw-price{font-size:40px}.hw-project-art{padding:45px 20px 20px}.hw-step-grid{grid-template-columns:repeat(2,1fr);gap:35px}.hw-contact-grid{grid-template-columns:1fr 1.1fr;gap:30px}.hw-brief .form-row{grid-template-columns:1fr}.hw-tabs button{padding:16px 12px;font-size:11px}.hw-person-grid{gap:35px}.hw-person-copy>p:not(.hw-kicker){font-size:13px}}
@media(max-width:700px){.container{width:calc(100% - 36px)}.site-header,.site-header.is-scrolled{padding:12px 0}.brand{min-width:150px}.brand-copy strong{font-size:28px}.brand-copy small{font-size:7px}.brand-mark{width:32px;height:32px;flex-basis:32px;font-size:26px}.header-cta{display:none}.menu-toggle{width:44px;height:44px}.mobile-menu{top:65px}.hw-hero{padding-top:105px}.hw-hero-grid{grid-template-columns:1fr;gap:30px}.hw-hero h1{font-size:clamp(44px,9.7vw,66px);letter-spacing:-.055em}.hw-hero .hw-kicker{font-size:8px;letter-spacing:.85px;margin-bottom:22px}.hw-lead{max-width:460px;font-size:14px;line-height:1.8;margin-bottom:25px}.hw-actions{gap:20px}.hw-actions .hw-button{padding:16px 19px;font-size:13px}.hw-actions .hw-text-link{font-size:11px}.hw-hero-foot{margin-top:25px;padding-top:17px;gap:38px}.hw-hero-foot>span{font-size:10px}.hw-hero-foot strong{font-size:12px}.hw-stage{height:355px;width:min(100%,450px);justify-self:center;margin-top:10px}.hw-stage-caption{left:0;font-size:7px}.hw-big-arrow{width:175px;height:175px;right:8px;top:15px}.hw-window-main{width:89%;left:4px;top:94px}.hw-window-small{right:3px;bottom:0;width:55%}.hw-stage-stamp{left:0;bottom:5px;font-size:8px;gap:8px}.hw-stage-index{display:none}.hw-hero-bottom{margin-top:35px;padding-block:20px}.hw-hero-bottom>span{font-size:7px;letter-spacing:.8px}.hw-hero-bottom a{font-size:0}.hw-hero-bottom a span{font-size:20px}.hw-process-strip{padding:18px 0}.hw-process-strip span{font-size:10px;letter-spacing:-.2px}.hw-process-strip b{font-size:16px}.hw-process-strip>.container{gap:7px}.hw-section{padding:60px 0}.hw-home h2{font-size:38px;letter-spacing:-.045em;line-height:1.12}.hw-kicker{font-size:9px;letter-spacing:1px;margin-bottom:22px}.hw-small-label{display:none}.hw-section-heading{align-items:flex-start;flex-direction:column;gap:22px;margin-bottom:30px}.hw-round-link{font-size:12px;gap:15px}.hw-round-link>span{height:35px;width:35px;font-size:20px}.hw-projects{grid-template-columns:1fr;gap:30px}.hw-project-art{padding:45px 22px 24px}.hw-project-info{flex-direction:row;padding-top:15px}.hw-project-info h3{font-size:18px}.hw-project-info p{font-size:11px}.hw-project-info>span{font-size:8px;white-space:normal;flex:0 0 auto;max-width:95px}.hw-purpose-grid,.hw-person-grid,.hw-faq-grid,.hw-contact-grid{grid-template-columns:1fr;gap:35px}.hw-purpose-note{font-size:14px;max-width:none}.hw-principles article{gap:18px;padding:20px 0}.hw-principles h3{font-size:19px}.hw-principles p{font-size:13px}.hw-section-heading>p{font-size:13px}.hw-tabs{grid-template-columns:repeat(2,minmax(0,1fr));gap:4px;margin-top:20px}.hw-tabs button{font-size:10px;padding:14px 9px;line-height:1.5;min-height:66px}.hw-tabs button>span{display:none}.hw-format-panel{grid-template-columns:1fr;gap:25px;padding:30px 0}.hw-format-description h3{font-size:32px}.hw-format-description p{font-size:13px;margin-bottom:20px}.hw-format-type{font-size:8px;margin-bottom:16px}.hw-price-card{padding:25px}.hw-price{font-size:44px}.hw-more-services{gap:15px;font-size:11px}.hw-more-services p{width:100%;margin-bottom:3px}.hw-person-photo{max-width:360px;width:90%;justify-self:center}.hw-person-copy h2{margin-bottom:20px}.hw-person-copy>p:not(.hw-kicker){font-size:14px}.hw-step-grid{gap:32px 22px;margin-top:30px}.hw-step-grid b{margin-bottom:20px}.hw-step-grid h3{font-size:17px}.hw-step-grid p{font-size:12px}.hw-questions summary{font-size:14px;padding:18px 0}.hw-questions p{font-size:13px;padding-right:10px}.hw-contact h2{font-size:44px}.hw-contact-copy>p:not(.hw-kicker){font-size:14px}.hw-contact-person{margin-top:25px}.hw-brief{padding:25px 20px}.hw-brief .form-row{grid-template-columns:1fr 1fr;gap:12px}.hw-brief input,.hw-brief select,.hw-brief textarea{font-size:16px;max-width:100%}.hw-brief .field{min-width:0}.hw-brief .field label{font-size:11px}.hw-brief h3{font-size:22px}.hw-brief .form-mail-note,.hw-brief .consent em{font-size:11px}.hw-brief .form-direct{font-size:12px}.site-footer{padding-bottom:85px}.footer-main--wide{grid-template-columns:1fr;gap:25px}.footer-nav{font-size:11px}.footer-bottom{gap:15px;align-items:flex-start}.footer-bottom span:last-child{max-width:150px}.inner-hero{padding:105px 0 42px}.inner-hero h1{font-size:36px;overflow-wrap:normal}.inner-lead{font-size:14px;line-height:1.8}.page-section{padding:50px 0}.mobile-quick-actions{bottom:9px;right:10px;left:10px;padding:6px}.scroll-top{bottom:88px;right:16px}.hw-faq .hw-text-link{font-size:12px}}
@media(max-width:370px){.hw-hero h1{font-size:43px}.hw-actions{gap:15px}.hw-actions .hw-button{font-size:12px;padding-inline:15px;gap:15px}.hw-actions .hw-text-link{font-size:10px}.hw-stage{height:320px}.hw-big-arrow{width:150px;height:150px}.hw-window-main{top:87px}.hw-brief .form-row{grid-template-columns:1fr}.hw-home h2{font-size:34px}.hw-project-info{flex-direction:column}.hw-contact h2{font-size:39px}.hw-step-grid{grid-template-columns:1fr}.hw-process-strip span{font-size:9px}}
body.inner-page .site-header:not(.is-scrolled) .brand-copy strong{color:#17201b}body.inner-page .site-header:not(.is-scrolled) .brand-copy small{color:#5e685d}body.inner-page .site-header:not(.is-scrolled) .desktop-nav a{color:#374334}body.inner-page .site-header:not(.is-scrolled) .desktop-nav a:hover,body.inner-page .site-header:not(.is-scrolled) .desktop-nav a.is-active{color:#17201b}body.inner-page .site-header:not(.is-scrolled) .menu-toggle{color:#17201b;background:transparent;border-color:#c8d0c0}
.hw-person-photo img{height:auto;mix-blend-mode:normal}.hw-contact-person img{height:52px;object-fit:cover}
@media(max-width:700px){.hw-brief .form-row{grid-template-columns:1fr}.hw-brief .field label{font-size:12px}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation:none!important;transition:none!important}}
/* Full screenshots keep their original proportions in cards and case studies. */
.project-image{aspect-ratio:16/10;display:flex;align-items:center;background:#e9ece4}.project-image img{height:100%;width:100%;object-fit:contain;object-position:center}.project-card:hover .project-image img{transform:none;filter:none}.case-visual{align-self:start}.case-visual img,.service-visual img{width:100%;height:auto;aspect-ratio:auto;object-fit:contain;display:block}.case-visual figcaption{padding:14px 20px;font-size:12px;color:#456435;border-top:1px solid #dce1d6}.hw-project-art img{aspect-ratio:16/10;object-fit:contain;background:#f7f8f2;box-shadow:0 12px 24px #0002}.hw-project:hover img{transform:none}.hw-project-open{bottom:8px;right:8px;width:30px;height:30px;font-size:18px}
.hw-showcase{min-width:0;width:100%;align-self:center;background:#263029;border:1px solid #4e5c49;border-radius:12px;padding:20px;box-shadow:0 30px 70px #0003;transform:rotate(-2deg)}.hw-showcase-top{display:flex;justify-content:space-between;gap:10px;color:#b2c4a3;font-size:8px;letter-spacing:1.3px;margin-bottom:17px}.hw-slides{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;overscroll-behavior-x:contain;border-radius:6px;outline-offset:5px}.hw-slides::-webkit-scrollbar{display:none}.hw-slide{flex:0 0 100%;width:100%;min-width:0;scroll-snap-align:start;scroll-snap-stop:always}.hw-screen{display:block;border-radius:6px;overflow:hidden;background:#f7f8f2}.hw-screen .hw-window-bar{background:#17201b;padding:10px 12px}.hw-screen img{display:block;width:100%;height:auto;aspect-ratio:1.44;object-fit:contain;background:#f4f4ef}.hw-slide-copy{padding:20px 2px 0;min-height:146px}.hw-slide-copy>span{font-size:9px;letter-spacing:.5px;color:#b6c3ad}.hw-home .hw-slide-copy h2{font-size:24px;letter-spacing:-.6px;line-height:1.2;margin:8px 0;color:#fff}.hw-slide-copy p{font-size:12px;line-height:1.65;color:#bdc9b6;margin:0;max-width:460px}.hw-carousel-controls{display:flex;align-items:center;gap:20px;border-top:1px solid #475540;padding-top:15px;margin-top:15px;color:#c1cdb9;font-size:10px}.hw-carousel-controls[hidden]{display:none}.hw-carousel-controls>div{display:flex;gap:8px}.hw-carousel-controls button{display:grid;place-items:center;width:44px;height:44px;border:1px solid #6e7b61;border-radius:50%;background:transparent;color:#e5f6d7;font:inherit;font-size:21px;cursor:pointer}.hw-carousel-controls button:hover{background:#d5fa65;color:#17201b;border-color:#d5fa65}.hw-carousel-controls>a{margin-left:auto}.hw-carousel-controls button:focus-visible,.hw-showcase a:focus-visible{outline:2px solid #d5fa65;outline-offset:3px}
@media(max-width:900px){.hw-showcase{padding:13px;transform:none}.hw-home .hw-slide-copy h2{font-size:21px}.hw-slide-copy{min-height:160px}.hw-showcase-top{font-size:7px;letter-spacing:.4px}}
@media(max-width:700px){.hw-showcase{max-width:500px;justify-self:center;margin-top:8px}.hw-slide-copy{min-height:145px}.hw-carousel-controls{gap:16px}.hw-screen img{aspect-ratio:1.44}.hw-home .hw-slide-copy h2{font-size:24px}.hw-showcase-top{font-size:8px}.hw-project-art{padding:44px 14px 22px}}
@media(prefers-reduced-motion:reduce){.hw-slides{scroll-behavior:auto}}
/* Layered browser previews: a fan behind an unobstructed, full-size screenshot. */
.hw-showcase{position:relative;isolation:isolate;transform:none;background:transparent;border:0;box-shadow:none;padding:20px 16px 0;margin-top:35px}.hw-showcase-top{position:relative;z-index:4;margin-bottom:68px}.hw-fan-back{position:absolute;top:80px;width:86%;border:7px solid #344338;border-top-width:22px;border-radius:10px;box-shadow:0 15px 35px #0005;overflow:hidden;pointer-events:none;z-index:-1}.hw-fan-back img{width:100%;height:auto;display:block}.hw-fan-back-left{left:0;transform:rotate(-11deg);transform-origin:50% 85%}.hw-fan-back-right{right:0;transform:rotate(10deg);transform-origin:50% 85%;border-color:#60744c}.hw-slides{position:relative;z-index:2;border-radius:9px;align-items:flex-start}.hw-screen{border:1px solid #64715a;box-shadow:0 15px 35px #0003}.hw-screen img{width:100%;height:auto;aspect-ratio:auto;background:transparent;object-fit:initial}.hw-screen .hw-window-bar{padding:12px;background:#263029}.hw-slide-copy{background:#17201b;min-height:145px;padding:24px 0 0}.hw-carousel-controls{position:relative;z-index:3;background:#17201b;margin-top:0}.hw-project-art img{height:auto;aspect-ratio:auto;background:transparent}.project-image{aspect-ratio:auto;display:block}.project-image img{height:auto;object-fit:initial}.hw-project-art{padding:42px 18px 20px}
@media(max-width:700px){.hw-showcase{width:calc(100% - 18px);padding:0;margin-top:25px}.hw-showcase-top{margin-bottom:62px;font-size:7px}.hw-fan-back{top:42px;border-width:4px;border-top-width:14px}.hw-slide-copy{min-height:155px}.hw-screen img{aspect-ratio:auto}.hw-project-art{padding:40px 12px 16px}}
.hw-fan-back{pointer-events:auto;cursor:pointer;padding:0;background:#263029;transition:filter .2s;appearance:none}.hw-fan-back:hover{filter:brightness(1.15)}.hw-fan-back:focus-visible{outline:3px solid #d5fa65;outline-offset:5px}
/* Cards fly between layers instead of scrolling horizontally. */
.hw-flight-ready .hw-slides{display:grid;overflow:visible;scroll-snap-type:none;perspective:1200px}.hw-flight-ready .hw-slide{grid-area:1/1;width:100%;visibility:hidden;pointer-events:none;z-index:0}.hw-flight-ready .hw-slide.is-active{visibility:visible;pointer-events:auto;z-index:2}.hw-flight-ready .hw-slide.is-leaving{visibility:visible;pointer-events:none;z-index:1}.hw-flight-ready .hw-screen{transform-origin:50% 70%;backface-visibility:hidden}.hw-flight-ready .hw-slide-copy{position:relative}.hw-flight-ready .hw-slide:not(.is-active) .hw-slide-copy{pointer-events:none}
.service-card .text-link,.article-card .text-link,.article-card .text-link:visited{color:#345326;font-size:14px;text-decoration:underline;text-underline-offset:4px;text-decoration-thickness:1px}.article-card .text-link svg{color:currentColor}.service-card:hover .text-link,.service-card:focus-visible .text-link,.article-card .text-link:hover{color:#17201b;text-decoration-thickness:2px}.article-card .text-link:focus-visible{outline:2px solid #345326;outline-offset:5px;border-radius:2px}
.order-launch{align-self:center}.order-launch p{font-size:15px;line-height:1.7;margin-bottom:24px}.order-panel .order-launch p{color:#e4ebdf}.order-launch .button{white-space:normal;text-align:center}.order-dialog:not([open]){display:none}.order-dialog{position:fixed;inset:0;margin:auto;width:min(620px,calc(100% - 28px));max-height:calc(100dvh - 36px);padding:28px;border:1px solid #cdd6c5;border-radius:16px;background:#f7f8f2;color:#17201b;overflow-y:auto;overscroll-behavior:contain;box-shadow:0 30px 100px #0006}.order-dialog::backdrop{background:#101910b8;backdrop-filter:blur(5px)}.order-dialog-open{overflow:hidden}.order-dialog-head{display:flex;align-items:flex-start;gap:16px;justify-content:space-between;margin-bottom:20px}.order-dialog-head p{font-size:10px;letter-spacing:1.5px;margin:0 0 9px;color:#456435}.order-dialog-head h2{font-size:27px;line-height:1.15;margin:0;letter-spacing:-.7px}.order-dialog-close{flex:0 0 44px;width:44px;height:44px;display:grid;place-items:center;font-size:30px;line-height:1;border:1px solid #cdd6c5;border-radius:50%;background:#fff;color:#17201b;cursor:pointer}.order-dialog .order-form{padding:0;background:transparent;border:0;box-shadow:none;max-width:none;color:#17201b}.order-dialog .field label{color:#17201b;font-size:12px}.order-dialog input,.order-dialog select,.order-dialog textarea{color:#17201b;background:#fff;border:1px solid #cdd6c5;font-size:16px;max-width:100%}.order-dialog .consent em,.order-dialog .form-mail-note{color:#52614c;font-size:12px}.order-dialog .form-direct a{color:#345326}.order-dialog .form-row{gap:16px}.order-dialog .field{min-width:0}.order-dialog textarea{min-height:100px}.order-dialog .button--submit{color:#17201b}.order-dialog-close:focus-visible{outline:2px solid #456435;outline-offset:3px}
@media(max-width:600px){.order-dialog{padding:22px 18px;max-height:calc(100dvh - 24px)}.order-dialog .form-row{grid-template-columns:1fr}.order-dialog-head h2{font-size:24px}.order-dialog .button{white-space:normal}}

.hw-project-tags{display:flex;flex-wrap:wrap;gap:6px;list-style:none;padding:0;margin:14px 0 0}.hw-project-tags li{border:1px solid #cdd6c5;border-radius:4px;padding:5px 8px;font-size:11px;color:#456435}.hw-hero-foot>span{color:#c0cbbc}.hw-questions summary{min-height:48px}.hw-home section[id]{scroll-margin-top:95px}.order-dialog input:focus,.order-dialog select:focus,.order-dialog textarea:focus{border-color:#456435;box-shadow:none}.order-dialog [aria-invalid="true"]{border-color:#a33131}.order-dialog .button:disabled{opacity:.65;cursor:wait}.order-dialog .field-error{color:#a33131}.order-dialog .consent input:focus-visible+span{outline:3px solid #739338;outline-offset:3px}.hw-format-panel:focus-visible{outline:2px solid #456435;outline-offset:5px}

.brand-mark svg{stroke:none;display:block;width:100%;height:100%;flex:none}.scroll-top{width:54px;font-size:10px;font-weight:700}.hw-more-services{flex-wrap:wrap}

.service-card .icon-box svg{width:28px;height:28px;stroke-width:1.5}



.brand-logo{display:block;width:166px;height:42px;flex:none}.brand-logo img{display:block;width:100%;height:100%;object-fit:contain;object-position:left center}@media(max-width:700px){.brand-logo{width:145px;height:36px}}

.assistant-launch{position:fixed;left:24px;bottom:24px;z-index:85;min-height:46px;padding:12px 18px;border:1px solid #637456;border-radius:6px;background:#17201b;color:#d5fa65;font:inherit;font-size:13px;font-weight:700;cursor:pointer}.assistant-launch:hover{background:#2c4229}.assistant-open{overflow:hidden}.assistant-dialog:not([open]){display:none}.assistant-dialog{position:fixed;inset:0;width:min(540px,calc(100% - 28px));max-height:calc(100dvh - 32px);margin:auto;padding:26px;border:1px solid #cdd6c5;border-radius:10px;background:#f7f8f2;color:#17201b;overflow-y:auto;overscroll-behavior:contain}.assistant-dialog::backdrop{background:#101910b8}.assistant-head{display:flex;justify-content:space-between;gap:16px;align-items:flex-start}.assistant-head span{font-size:10px;letter-spacing:1.3px;color:#456435}.assistant-head h2{font-size:30px;letter-spacing:-1px;margin:10px 0 16px}.assistant-head button{width:44px;height:44px;flex:0 0 44px;border:1px solid #cdd6c5;border-radius:50%;background:transparent;font-size:28px;cursor:pointer}.assistant-intro,.assistant-status{font-size:13px;line-height:1.7}.assistant-status{padding:12px;background:#edf2e4;border-radius:6px}.assistant-log:empty{display:none}.assistant-log{max-height:280px;overflow-y:auto;overscroll-behavior:contain;margin:18px 0}.assistant-message{padding:14px;border:1px solid #cdd6c5;border-radius:6px;line-height:1.65;font-size:13px;overflow-wrap:anywhere}.assistant-message strong{display:block;font-size:10px;margin-bottom:6px;color:#456435}.assistant-message span{white-space:pre-wrap}.assistant-message--user{background:#edf2e4;margin-left:24px}.assistant-prompts{display:flex;gap:8px;flex-wrap:wrap;margin:14px 0}.assistant-prompts button,.assistant-actions button,.assistant-actions a{min-height:44px;padding:10px;border:1px solid #cdd6c5;border-radius:4px;font:inherit;font-size:12px;background:transparent;color:#345326;cursor:pointer}.assistant-form>label:first-child{display:block;font-size:12px;font-weight:700;margin:18px 0 8px}.assistant-form textarea{display:block;width:100%;max-width:100%;min-height:90px;padding:12px;border:1px solid #cdd6c5;border-radius:6px;background:white;color:#17201b;font:inherit;font-size:16px;resize:vertical}.assistant-consent{display:flex;align-items:flex-start;gap:8px;margin:14px 0;font-size:11px;line-height:1.6}.assistant-consent input{flex:0 0 18px;width:18px;height:18px;accent-color:#345326}.assistant-consent a{text-decoration:underline}.assistant-form .hw-button{width:100%;cursor:pointer}.assistant-dialog button:disabled,.assistant-dialog textarea:disabled{opacity:.55;cursor:not-allowed}.assistant-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px;padding-top:14px;border-top:1px solid #cdd6c5}.assistant-actions a{display:inline-flex;align-items:center}.assistant-actions [data-chat-clear]{border-color:transparent}.assistant-dialog :focus-visible{outline:2px solid #456435;outline-offset:3px}@media(max-width:800px){.assistant-launch{left:12px;bottom:88px;font-size:12px;max-width:calc(100% - 85px)}.assistant-dialog{padding:20px 16px;max-height:calc(100dvh - 20px)}.assistant-head h2{font-size:26px}}
