/* Divine Global — public site styles */

:root {
  --orange: #F27A02;
  --orange-dark: #C05F00;
  --ink: #1F1F1F;
  --black: #141414;
  --black-2: #1C1C1C;
  --cream: #FAF7F2;
  --sand: #F3ECE2;
  --line: #DDD5CA;
  --line-soft: #ECE6DE;
  --muted: #5C5751;
  --muted-2: #8A8580;
  --on-dark: #C9C4BE;
  --on-dark-2: #B8B3AD;
  --on-dark-3: #E8E3DD;
  --dark-line: #2A2A2A;
  --dark-line-2: #333;
  --dark-line-3: #3A3A3A;
  --error: #B42318;
  --display: 'Inter Tight', 'Inter', Helvetica, Arial, sans-serif;
  --sans: 'Inter', Helvetica, Arial, sans-serif;
  --section-y: clamp(61px, 8.9vw, 110px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; line-height: 1.5; }
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
::placeholder { color: var(--muted-2); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

.skip-link { position: absolute; left: 16px; top: -60px; background: var(--orange); color: var(--ink); padding: 10px 16px; border-radius: 999px; font-weight: 700; z-index: 100; }
.skip-link:focus { top: 12px; }

/* ── Layout ─────────────────────────────────────────────── */
.wrap { max-width: 1240px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--dark { background: var(--ink); color: #fff; }
.section--sand { background: var(--sand); }
.section--tight-bottom { padding-bottom: clamp(33px, 4.8vw, 60px); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(var(--min, 280px), 100%), 1fr)); gap: 20px; }
.grid-auto > * { min-width: 0; }
.bg-grid { background-color: var(--black); background-image: linear-gradient(#222 1px, transparent 1px), linear-gradient(90deg, #222 1px, transparent 1px); background-size: 64px 64px; color: #fff; }
.bg-grid--sm { background-size: 48px 48px; }
.accent { color: var(--orange); }
.muted { color: var(--muted); }
.cover { width: 100%; height: 100%; object-fit: cover; }
.mb-20 { margin-bottom: 20px; } .mb-26 { margin-bottom: 26px; } .mb-32 { margin-bottom: 32px; }
.mb-44 { margin-bottom: 44px; } .mb-48 { margin-bottom: 48px; } .mb-56 { margin-bottom: 56px; }

/* Striped image placeholder, shown until a real image is uploaded */
.ph { width: 100%; height: 100%; min-height: inherit; }
.ph--dark { background: repeating-linear-gradient(135deg, #2A2A2A 0 14px, #232323 14px 28px); }
.ph--light { background: repeating-linear-gradient(135deg, var(--sand) 0 14px, var(--cream) 14px 28px); }

/* ── Type ───────────────────────────────────────────────── */
.eyebrow { font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-dark); margin-bottom: 16px; }
.eyebrow--on-dark { color: var(--orange); }
.eyebrow--ink { color: var(--ink); }
.h1 { font-family: var(--display); font-size: clamp(40px, 5.8vw, 72px); line-height: .98; font-weight: 900; letter-spacing: -.035em; text-wrap: balance; max-width: 900px; }
.h2 { font-family: var(--display); font-size: clamp(28px, 4vw, 50px); line-height: 1.02; font-weight: 900; letter-spacing: -.03em; text-wrap: balance; }
.h2--narrow { max-width: 640px; }
.h2--wide { max-width: 720px; }
.lead { font-size: 16.5px; line-height: 1.65; color: var(--muted); max-width: 460px; }

/* ── Buttons ────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 16px 26px; font-weight: 700; font-size: 15px; line-height: 1.2; border: 1.5px solid transparent; transition: background .2s, color .2s, border-color .2s; white-space: nowrap; }
.btn--sm { padding: 11px 18px; font-size: 13.5px; }
.btn--primary { background: var(--orange); color: var(--ink); }
.btn--primary:hover { background: #FF8A14; color: var(--ink); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: var(--dark-line-3); }
.btn--ghost-light:hover { border-color: var(--orange); color: var(--orange); }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: #fff; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.circle-btn { width: 44px; height: 44px; border-radius: 50%; font-size: 18px; display: inline-flex; align-items: center; justify-content: center; }
.circle-btn--outline { border: 1.5px solid var(--dark-line-3); background: transparent; color: #fff; }
.circle-btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.circle-btn--solid { border: none; background: var(--orange); color: var(--ink); }

/* ── Header ─────────────────────────────────────────────── */
.preview-bar { background: var(--orange); color: var(--ink); text-align: center; font-size: 13.5px; font-weight: 700; padding: 8px 16px; }
.preview-bar a { color: var(--ink); text-decoration: underline; }
.site-header { position: sticky; top: 0; z-index: 50; background: var(--black); border-bottom: 1px solid var(--dark-line); }
.site-header__bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 10px; flex: none; color: #fff; }
.brand:hover { color: #fff; }
.brand__mark { width: 34px; height: 34px; border-radius: 9px; background: var(--orange); display: flex; align-items: center; justify-content: center; color: var(--ink); font-family: var(--display); font-weight: 900; font-size: 17px; }
.brand__logo { height: 34px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 16px; letter-spacing: -.01em; }
.brand__sub { font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.site-nav { display: none; gap: 2px; align-items: center; }
.site-nav__link { color: var(--on-dark); font-weight: 600; font-size: 14px; padding: 9px 14px; border-radius: 999px; white-space: nowrap; }
.site-nav__link:hover { color: #fff; }
.site-nav__link.is-active { background: var(--dark-line); color: var(--orange); }
.site-header__cta { display: none; flex: none; }
.menu-btn { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--dark-line-2); background: var(--black-2); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; flex: none; }
.menu-btn span { width: 18px; height: 2px; border-radius: 2px; background: #fff; transition: transform .25s, opacity .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { border-top: 1px solid var(--dark-line); padding: 12px 24px 24px; display: flex; flex-direction: column; background: var(--black); }
.mobile-menu[hidden] { display: none; }
.mobile-menu__link { border-bottom: 1px solid #242424; padding: 16px 0; font-family: var(--display); font-size: 24px; font-weight: 800; letter-spacing: -.01em; color: #fff; }
.mobile-menu__link.is-active { color: var(--orange); }
.mobile-menu__cta { margin-top: 16px; }
@media (min-width: 900px) {
  .site-nav, .site-header__cta { display: flex; }
  .menu-btn, .mobile-menu { display: none !important; }
}

/* ── Hero slider ────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }
.hero__glow { position: absolute; right: -180px; top: -180px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(242,122,2,.35) 0%, rgba(242,122,2,0) 70%); pointer-events: none; }
.hero__stage { display: grid; position: relative; padding-top: clamp(48px, 7.1vw, 88px); padding-bottom: 36px; }
.hero__slide { grid-area: 1 / 1; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr)); gap: 56px; align-items: center; opacity: 0; transform: translateY(12px); visibility: hidden; transition: opacity .7s ease, transform .7s ease, visibility .7s; }
.hero__slide.is-active { opacity: 1; transform: none; visibility: visible; }
.hero__slide > * { min-width: 0; }
.chip-pill { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--dark-line-2); border-radius: 999px; padding: 6px 14px 6px 6px; margin-bottom: 28px; background: var(--black-2); max-width: 100%; }
.chip-pill__tag { background: var(--orange); color: var(--ink); font-size: 11px; font-weight: 800; padding: 4px 9px; border-radius: 999px; letter-spacing: .04em; flex: none; }
.chip-pill__text { font-size: 13px; color: var(--on-dark); }
.hero__title { font-family: var(--display); font-size: clamp(38px, 5.5vw, 68px); line-height: .98; font-weight: 900; letter-spacing: -.035em; margin-bottom: 24px; text-wrap: balance; }
.hero__body { font-size: 18px; line-height: 1.6; color: var(--on-dark-2); margin-bottom: 36px; max-width: 500px; }
.hero__media { min-height: clamp(240px, 40vw, 420px); height: 100%; border-radius: 18px; overflow: hidden; border: 1px solid var(--dark-line-2); }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
/* Built-in illustrations are shown whole on a matching background */
.hero__media--illus { background: #1C1C1C; display: flex; align-items: center; justify-content: center; }
.hero__media--illus .hero__img { object-fit: contain; max-height: 100%; }
.hero__controls { display: flex; align-items: center; gap: 20px; padding-bottom: 56px; position: relative; }
.hero__spacer { height: 56px; }
.hero__counter { font-family: var(--display); font-size: 14px; font-weight: 800; color: #fff; min-width: 64px; }
.hero__dots { display: flex; gap: 8px; align-items: center; flex: 1; }
.hero__dot { height: 6px; width: 14px; border: none; padding: 0; border-radius: 999px; background: var(--dark-line-3); transition: width .4s, background .4s; }
.hero__dot.is-active { width: 44px; background: var(--orange); }
.hero__arrows { display: flex; gap: 8px; }

/* ── Logo strip ─────────────────────────────────────────── */
.logos { background: var(--orange); padding: 22px 0; overflow: hidden; }
.logos__row { display: flex; gap: 18px 44px; flex-wrap: wrap; justify-content: center; align-items: center; }
.logos__label { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
.logos__name { font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--ink); letter-spacing: -.01em; white-space: nowrap; }
.logos__img { height: 32px; width: auto; filter: grayscale(1) contrast(1.2); mix-blend-mode: multiply; }

/* ── Split heading (heading left, intro right) ──────────── */
.split-head { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 40px; align-items: end; margin-bottom: 56px; }
.split-head > * { min-width: 0; }
.split-head--end { gap: 48px; margin-bottom: 0; }

/* ── Service rows (home) ────────────────────────────────── */
.svc-rows { border-top: 2px solid var(--ink); }
.svc-row { display: grid; grid-template-columns: 36px minmax(0, 1fr) 40px; gap: 8px 14px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); color: var(--ink); transition: background .2s; }
.svc-row:hover { background: var(--sand); color: var(--ink); }
.svc-row__num { font-family: var(--display); font-size: 15px; font-weight: 800; color: var(--orange-dark); padding-left: 8px; }
.svc-row__title { font-family: var(--display); font-size: clamp(22px, 2.3vw, 28px); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; }
.svc-row__desc { font-size: 14.5px; line-height: 1.55; color: var(--muted); grid-column: 2 / 3; grid-row: 2; }
.svc-row__arrow { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--ink); display: flex; align-items: center; justify-content: center; font-size: 16px; grid-column: 3; grid-row: 1; }
.svc-row:hover .svc-row__arrow { background: var(--orange); border-color: var(--orange); }
@media (min-width: 760px) {
  .svc-row { grid-template-columns: 80px minmax(0, 1.2fr) minmax(0, 1fr) 48px; gap: 24px; }
  .svc-row__desc { grid-column: auto; grid-row: auto; }
  .svc-row__arrow { grid-column: auto; grid-row: auto; }
}

/* ── Product cards (home) ───────────────────────────────── */
.prod-card { background: var(--black); border: 1px solid #2E2E2E; border-radius: 24px; padding: 16px; display: flex; flex-direction: column; gap: 20px; }
.prod-card__media { display: block; aspect-ratio: 16 / 10; border-radius: 14px; overflow: hidden; }
.prod-card__img { width: 100%; height: 100%; object-fit: cover; object-position: left top; }
.prod-card__foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 0 8px 8px; flex-wrap: wrap; }
.prod-card__num { font-family: var(--display); font-size: 13px; font-weight: 900; color: var(--orange); }
.prod-card__name { font-family: var(--display); font-size: 28px; font-weight: 900; letter-spacing: -.02em; margin-top: 4px; }
.prod-card__name a { color: #fff; }
.prod-card__tagline { font-size: 14px; color: var(--on-dark-2); margin-top: 4px; }

/* ── Sticky split (industries, principles) ──────────────── */
/* Stacks on phones/tablets; the intro column only sticks on wide screens.
   This fixes the mobile overlap seen in the design prototype. */
.sticky-split { display: grid; gap: 40px; align-items: start; }
.sticky-split > * { min-width: 0; }
@media (min-width: 900px) {
  .sticky-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; }
  .sticky-col { position: sticky; top: 100px; }
}
.ind-grid { gap: 14px; }
.ind-tile { display: flex; flex-direction: column; justify-content: space-between; gap: 36px; min-height: 150px; padding: 22px; border-radius: 20px; }
.ind-tile--orange { background: var(--orange); color: var(--ink); }
.ind-tile--dark { background: var(--ink); color: #fff; }
.ind-tile--light { background: #fff; color: var(--ink); border: 1px solid var(--line-soft); }
.ind-tile__num { font-family: var(--display); font-size: 13px; font-weight: 800; opacity: .7; }
.ind-tile__name { font-family: var(--display); font-size: 22px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }

/* ── Steps ──────────────────────────────────────────────── */
.steps { gap: 0; border-top: 2px solid var(--ink); }
.step { padding: 28px 24px 8px 0; }
.step__num { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--orange); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 900; font-size: 15px; margin-bottom: 18px; }
.step__title { font-family: var(--display); font-size: 22px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 10px; }
.step__desc { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ── CTA band ───────────────────────────────────────────── */
.cta-wrap { padding: 0 24px var(--section-y); }
.section--sand + .cta-wrap, .section--dark + .cta-wrap, .showcase--dark + .cta-wrap, .page-head + .cta-wrap { padding-top: var(--section-y); }
.wrap-inner { max-width: 1192px; margin: 0 auto; }
.cta { background: var(--orange); border-radius: 28px; padding: clamp(36px, 5.8vw, 72px) clamp(24px, 4.5vw, 56px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 32px; align-items: end; color: var(--ink); }
.cta > * { min-width: 0; }
.cta__title { font-family: var(--display); font-size: clamp(32px, 4.8vw, 60px); line-height: .98; font-weight: 900; letter-spacing: -.035em; text-wrap: balance; }
.cta__side { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.cta__body { font-size: 17px; line-height: 1.6; max-width: 420px; }

/* ── Page header ────────────────────────────────────────── */
.page-head { padding: clamp(50px, 7.3vw, 90px) 0 clamp(44px, 6.5vw, 80px); }
.page-head .eyebrow { margin-bottom: 18px; }
.page-head .h1 { margin-bottom: 22px; }
.page-head__intro { font-size: 18px; line-height: 1.6; color: var(--on-dark-2); max-width: 620px; }
.notfound .btn-row { margin-top: 32px; }

/* ── Service details ────────────────────────────────────── */
.svc-details { padding-top: 40px; padding-bottom: var(--section-y); }
.svc-detail { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 40px; padding: 56px 0; border-bottom: 1px solid var(--line); }
.svc-detail > * { min-width: 0; }
.svc-detail__main { display: flex; gap: 24px; }
.svc-detail__num { font-family: var(--display); font-size: clamp(36px, 5.2vw, 64px); line-height: .9; font-weight: 900; color: var(--orange); letter-spacing: -.04em; flex: none; }
.svc-detail__title { font-family: var(--display); font-size: clamp(26px, 2.6vw, 32px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 14px; line-height: 1.1; }
.svc-detail__desc { font-size: 16px; line-height: 1.65; color: var(--muted); }
.svc-detail__side { display: flex; flex-direction: column; gap: 16px; }
.svc-detail__img { aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; align-content: flex-start; }
.tag { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; font-size: 14px; font-weight: 600; }

/* ── Products page ──────────────────────────────────────── */
.prod-index { display: flex; flex-direction: column; border-top: 1px solid var(--dark-line-2); }
.prod-index__row { border-bottom: 1px solid var(--dark-line-2); color: #fff; padding: 20px 4px; display: flex; align-items: center; gap: 20px; }
.prod-index__row:hover { color: var(--orange); }
.prod-index__num { font-family: var(--display); font-size: 13px; font-weight: 800; color: var(--orange); width: 24px; }
.prod-index__name { flex: 1; font-family: var(--display); font-size: 28px; font-weight: 900; letter-spacing: -.02em; }
.prod-index__arrow { font-size: 18px; color: var(--muted-2); }
.showcase { padding: var(--section-y) 0; }
.showcase--dark { background: var(--black); color: #fff; }
.showcase__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 56px; align-items: center; }
.showcase__grid > * { min-width: 0; }
@media (min-width: 900px) { .showcase__grid--flip .browser { order: -1; } }
.showcase__copy { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.showcase__num { font-family: var(--display); font-size: clamp(67px, 9.7vw, 120px); line-height: .8; font-weight: 900; color: var(--orange); letter-spacing: -.06em; }
.showcase__name { font-family: var(--display); font-size: clamp(36px, 5.2vw, 64px); line-height: .95; font-weight: 900; letter-spacing: -.04em; }
.showcase__tagline { font-family: var(--display); font-size: 20px; font-weight: 800; letter-spacing: -.01em; }
.showcase__desc { font-size: 16.5px; line-height: 1.65; color: var(--muted); max-width: 520px; }
.showcase--dark .showcase__desc { color: var(--on-dark-2); }
.feature-list { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-list li { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 14px; font-size: 13.5px; font-weight: 600; }
.showcase--dark .feature-list li { background: var(--black-2); border-color: var(--dark-line-3); color: var(--on-dark-3); }
.browser { background: #fff; border: 1px solid var(--line-soft); border-radius: 28px; padding: 14px; box-shadow: 0 30px 60px -30px rgba(31,31,31,.25); }
.browser--dark { background: var(--ink); border-color: var(--dark-line-2); box-shadow: none; }
.browser__dots { display: flex; gap: 6px; padding: 4px 6px 12px; }
.browser__dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line-soft); }
.browser--dark .browser__dots span { background: var(--dark-line-3); }
.browser__screen { aspect-ratio: 16 / 10; border-radius: 16px; overflow: hidden; }
.browser__img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ── About ──────────────────────────────────────────────── */
.about-intro { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 56px; align-items: center; }
.about-intro > * { min-width: 0; }
.page-head--split .page-head__intro { font-size: 18px; line-height: 1.65; max-width: 540px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-dark { border: 1px solid var(--dark-line-3); background: var(--black-2); border-radius: 999px; padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--on-dark-3); display: flex; align-items: center; gap: 8px; }
.pill-dark .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.about-collage { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); grid-template-rows: repeat(2, clamp(160px, 18vw, 220px)); gap: 14px; }
.about-collage > div { border-radius: 20px; overflow: hidden; }
.about-collage__big { grid-row: span 2; border: 1px solid var(--dark-line-2); }
.about-collage__small { border: 1px solid var(--dark-line-2); }
.about-collage__badge { background: var(--orange); color: var(--ink); padding: 22px; display: flex; flex-direction: column; justify-content: space-between; gap: 12px; }
.about-collage__label { font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.about-collage__text { font-family: var(--display); font-size: clamp(20px, 2.1vw, 26px); font-weight: 900; line-height: 1.05; letter-spacing: -.02em; }
.drive-card { border-radius: 28px; padding: clamp(28px, 3.6vw, 44px); display: flex; flex-direction: column; gap: 40px; justify-content: space-between; min-height: 340px; }
.drive-card--orange { background: var(--orange); color: var(--ink); }
.drive-card--dark { background: var(--ink); color: #fff; }
.drive-card__label { font-family: var(--display); font-size: clamp(31px, 4.5vw, 56px); font-weight: 900; letter-spacing: -.04em; line-height: 1; }
.drive-card__text { font-family: var(--display); font-size: clamp(21px, 2.3vw, 28px); line-height: 1.2; font-weight: 800; letter-spacing: -.02em; }
.quote-section { padding-top: clamp(33px, 4.8vw, 60px); padding-bottom: clamp(33px, 4.8vw, 60px); }
.quote { border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: clamp(40px, 5vw, 64px) 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 32px; align-items: end; }
.quote > * { min-width: 0; }
.quote__text { font-family: var(--display); font-size: clamp(30px, 4.4vw, 54px); line-height: 1.02; font-weight: 900; letter-spacing: -.035em; text-wrap: balance; }
.quote__by { margin: 0; }

/* Accordion (uses native <details>) */
.accordion { border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc__head { list-style: none; cursor: pointer; padding: 22px 0; display: grid; grid-template-columns: 48px minmax(0, 1fr) 36px; gap: 14px; align-items: center; }
.acc__head::-webkit-details-marker { display: none; }
.acc__num { font-family: var(--display); font-size: 14px; font-weight: 900; color: var(--orange-dark); }
.acc__title { font-family: var(--display); font-size: clamp(18px, 1.8vw, 21px); font-weight: 800; letter-spacing: -.01em; line-height: 1.25; }
.acc__icon { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--ink); position: relative; transition: background .2s, border-color .2s; }
.acc__icon::before, .acc__icon::after { content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--ink); transform: translate(-50%, -50%); }
.acc__icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .2s; }
.acc[open] .acc__icon { background: var(--orange); border-color: var(--orange); }
.acc[open] .acc__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.acc__body { font-size: 15.5px; line-height: 1.65; color: var(--muted); padding: 0 50px 24px 62px; }
@media (max-width: 600px) { .acc__body { padding: 0 0 22px 62px; } }

/* Team */
.leader { background: var(--black); border: 1px solid #2E2E2E; border-radius: 24px; padding: 14px; }
.leader__photo { aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden; position: relative; background: repeating-linear-gradient(135deg, #2A2A2A 0 14px, #232323 14px 28px); display: flex; align-items: center; justify-content: center; }
.leader__initials { font-family: var(--display); font-size: 72px; font-weight: 900; color: var(--orange); letter-spacing: -.04em; }
.leader__badge { position: absolute; left: 16px; bottom: 16px; background: var(--orange); color: var(--ink); font-size: 11.5px; font-weight: 800; padding: 5px 10px; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
.leader__name { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -.01em; margin: 16px 6px 4px; }
.leader__role { font-size: 14px; color: var(--on-dark-2); margin: 0 6px 8px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr)); gap: 12px; }
.member { background: var(--black); border: 1px solid #2E2E2E; border-radius: 16px; padding: 14px; display: flex; align-items: center; gap: 14px; min-width: 0; }
.member__avatar { width: 46px; height: 46px; border-radius: 12px; flex: none; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 900; font-size: 15px; background: var(--orange); color: var(--ink); }
.member__avatar--alt { background: var(--dark-line); color: var(--orange); }
.member__avatar--img { object-fit: cover; }
.member__text { min-width: 0; }
.member__name { font-weight: 700; font-size: 14.5px; margin-bottom: 2px; }
.member__role { font-size: 12.5px; color: var(--on-dark-2); }

/* Clients */
.client-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr)); gap: 0 28px; border-top: 2px solid var(--ink); }
.client { padding: 16px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.client__name { font-family: var(--display); font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.client__loc { font-size: 13px; color: var(--muted); }

/* Credentials */
.cred { background: #fff; border: 1px solid var(--line-soft); border-radius: 22px; padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.cred--image { padding: 14px; gap: 0; }
.cred__img { aspect-ratio: 4 / 3; border-radius: 14px; overflow: hidden; border: 1px solid var(--line-soft); }
.cred__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: var(--orange); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 900; }
.cred__icon--orange { background: var(--orange); color: var(--ink); }
.cred__label { font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-dark); }
.cred__title { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -.01em; line-height: 1.2; }
.cred__title--pad { margin: 16px 8px 4px; font-size: 19px; }
.cred__text { font-size: 14px; line-height: 1.6; color: var(--muted); }
.cred__text--pad { margin: 0 8px 8px; }

/* ── Contact ────────────────────────────────────────────── */
.contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 24px; padding-top: clamp(40px, 5.8vw, 72px); padding-bottom: var(--section-y); }
.contact > * { min-width: 0; }
.contact__panel { border-radius: 28px; padding: clamp(28px, 3.9vw, 48px); display: flex; flex-direction: column; justify-content: space-between; gap: 48px; }
.contact__title { font-family: var(--display); font-size: clamp(31px, 4.5vw, 56px); line-height: .98; font-weight: 900; letter-spacing: -.035em; margin-bottom: 18px; text-wrap: balance; }
.contact__intro { font-size: 16.5px; line-height: 1.6; color: var(--on-dark-2); }
.contact__details { display: flex; flex-direction: column; gap: 20px; }
.contact__details dt { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px; }
.contact__details dd { font-size: 16px; line-height: 1.5; }
.contact__phones { display: flex; gap: 6px 16px; flex-wrap: wrap; }
.contact__card { background: #fff; border: 1px solid var(--line-soft); border-radius: 28px; padding: clamp(28px, 3.9vw, 48px); }
.contact__done { height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 14px; min-height: 320px; }
.contact__tick { width: 56px; height: 56px; border-radius: 50%; background: var(--orange); color: var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 22px; }
.contact__done-title { font-family: var(--display); font-size: 32px; font-weight: 900; letter-spacing: -.02em; }

.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); gap: 14px; }
.form__group { border: 0; padding: 0; margin: 0; min-width: 0; }
.form__label { font-size: 13px; font-weight: 700; display: block; margin-bottom: 7px; padding: 0; }
fieldset .form__label { margin-bottom: 10px; }
.input { width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 14px; font-size: 14.5px; background: var(--cream); outline: none; }
.input:focus { border-color: var(--orange); }
.input[aria-invalid="true"] { border-color: var(--error); }
textarea.input { resize: vertical; min-height: 120px; }
.form__error { color: var(--error); font-size: 12.5px; margin-top: 6px; }
.form__alert { background: #FDECEA; color: var(--error); border-radius: 12px; padding: 12px 14px; font-size: 14px; font-weight: 600; }
.form__submit { align-self: flex-start; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span { display: inline-block; background: var(--cream); color: var(--ink); border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 15px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.chip input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip input:focus-visible + span { outline: 2px solid var(--orange); outline-offset: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── Generic sections ───────────────────────────────────── */
.text-block__body { max-width: 760px; display: flex; flex-direction: column; gap: 16px; font-size: 17px; line-height: 1.7; color: var(--muted); }
.image-text { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 56px; align-items: center; }
.image-text > * { min-width: 0; }
.image-text__media { aspect-ratio: 4 / 3; border-radius: 24px; overflow: hidden; }
.gallery-item__img { aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden; }
.gallery-item__cap { font-size: 14px; color: var(--muted); margin-top: 10px; }
.card { background: #fff; border: 1px solid var(--line-soft); border-radius: 22px; padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.card__img { aspect-ratio: 16 / 10; border-radius: 14px; overflow: hidden; margin: -10px -10px 8px; }
.card__num { font-family: var(--display); font-size: 13px; font-weight: 900; color: var(--orange-dark); }
.card__title { font-family: var(--display); font-size: 22px; font-weight: 800; letter-spacing: -.01em; }
.card__desc { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--black); color: var(--on-dark-2); padding: clamp(44px, 6.5vw, 80px) 0 32px; }
.site-footer__word { font-family: var(--display); font-size: clamp(48px, 9vw, 128px); line-height: .9; font-weight: 900; letter-spacing: -.045em; color: #fff; margin-bottom: 56px; overflow-wrap: anywhere; }
.site-footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr)); gap: 36px; padding-bottom: 40px; border-bottom: 1px solid var(--dark-line); }
.site-footer__cols > * { min-width: 0; }
.site-footer__label { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.site-footer__links { display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a, .site-footer__text a { color: var(--on-dark-3); }
.site-footer__links a:hover, .site-footer__text a:hover { color: var(--orange); }
.site-footer__links a { font-size: 14.5px; }
.site-footer__text { font-size: 14.5px; line-height: 1.7; color: var(--on-dark-3); overflow-wrap: anywhere; }
.site-footer__bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted-2); }
