/* ============================================================
   Made with Wisej.NET — site styles
   Visual language aligned with Wisej.NET / Ice Tea Group:
   light canvas, purple accents, generous whitespace, soft depth.
   Supports light / dark / auto color themes.
   ============================================================ */

:root {
  --purple: #9700fd;
  --purple-600: #7a00d4;
  --purple-400: #b347ff;
  --purple-300: #cd86ff;
  --purple-50: #f6edff;

  --ink: #14171f;          /* off-black headings */
  --slate: #515a68;        /* body text */
  --slate-300: #8a93a3;    /* muted */
  --line: #ececf1;
  --bg: #ffffff;
  --bg-tint: #fbf9f7;
  --card: #ffffff;
  --surface-2: #f7f7f9;    /* window chrome / subtle panels */
  --header-bg: rgba(255, 255, 255, .82);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20, 23, 31, .05), 0 6px 16px rgba(20, 23, 31, .04);
  --shadow-md: 0 12px 34px rgba(20, 23, 31, .08);
  --shadow-purple: 0 12px 28px rgba(151, 0, 253, .32);
  --container: 1440px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* themed odds-and-ends so the dark theme only needs to redefine tokens */
  --logo-filter: none;                  /* the Wisej wordmark stays as-is in light */
  --cta-ink: #7a00d4;                   /* text on the white CTA button (constant) */
  --cta-ink-hover: #14171f;
}

/* ---------- dark theme ----------
   The inline theme script sets data-resolved="dark" on <html> when the user
   selects Dark, or selects Auto while the OS prefers a dark color scheme.
   Keeping the trigger on a resolved attribute lets one block serve all three
   selector states (light / dark / auto) with no duplication. */
:root[data-resolved="dark"] {
  color-scheme: dark;

  /* brighten the purple a touch so it reads on a dark canvas */
  --purple: #b266ff;
  --purple-600: #c890ff;   /* used as accent text — must stay light */
  --purple-400: #9a4dff;
  --purple-300: #5a3a7a;   /* borders */
  --purple-50: #211233;    /* tinted surfaces */

  --ink: #f2f3f8;          /* headings / near-white */
  --slate: #aab2c2;        /* body text */
  --slate-300: #717a8a;    /* muted */
  --line: #282b35;
  --bg: #0d0e13;
  --bg-tint: #14151c;
  --card: #171922;
  --surface-2: #1d1f29;
  --header-bg: rgba(13, 14, 19, .82);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4), 0 6px 16px rgba(0, 0, 0, .3);
  --shadow-md: 0 12px 34px rgba(0, 0, 0, .5);
  --shadow-purple: 0 12px 28px rgba(151, 0, 253, .45);

  /* the black Wisej wordmark is inverted to white so it reads on dark surfaces */
  --logo-filter: brightness(0) invert(1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: light; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; margin: 0; font-weight: 400; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.accent { color: var(--purple); }

/* ---------- decorative background motif ---------- */
.bg-motif { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.circle { position: absolute; border-radius: 50%; }
.circle--tr {
  top: -260px; right: -220px; width: 620px; height: 620px;
  background: radial-gradient(circle at 30% 30%, var(--purple-400), var(--purple) 60%, var(--purple-600));
  opacity: .9;
}
.circle--tr::after {
  content: ""; position: absolute; inset: 110px; border-radius: 50%;
  background: var(--bg);
}
.circle--bl {
  bottom: -180px; left: -160px; width: 340px; height: 340px;
  background: var(--purple-300); opacity: .28; filter: blur(2px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 13px 22px; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--primary { background: var(--purple); color: #fff; box-shadow: var(--shadow-purple); }
.btn--primary:hover { background: var(--purple-600); transform: translateY(-2px); }
.btn--ghost { background: var(--card); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--purple-300); color: var(--purple-600); transform: translateY(-2px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 18px; letter-spacing: -.02em; flex-shrink: 0; }
.brand__logo { height: 39px; width: auto; display: block; flex-shrink: 0; filter: var(--logo-filter); }
.nav { display: flex; gap: 26px; margin-left: 14px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--slate); transition: color .15s; }
.nav a:hover { color: var(--ink); }
.header__actions { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.link-muted { font-size: 15px; font-weight: 500; color: var(--slate); }
.link-muted:hover { color: var(--ink); }

/* ---------- theme switcher (light / dark / auto) ---------- */
.theme-switch {
  display: inline-flex; align-items: center; gap: 2px;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 3px;
}
.theme-switch__btn {
  display: grid; place-items: center; width: 30px; height: 30px;
  padding: 0; border: none; background: transparent; color: var(--slate-300);
  border-radius: var(--radius-pill); cursor: pointer;
  transition: color .15s, background .15s, box-shadow .15s;
}
.theme-switch__btn:hover { color: var(--ink); }
.theme-switch__btn.is-active { background: var(--card); color: var(--purple); box-shadow: var(--shadow-sm); }
.theme-switch__btn svg { width: 16px; height: 16px; display: block; }

/* ---------- hero ---------- */
.hero { padding: 84px 0 40px; }
.hero__inner { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 880px; margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--purple-600);
  background: var(--purple-50); border: 1px solid var(--purple-300);
  padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 26px;
}
.hero__title { font-size: clamp(38px, 6vw, 66px); font-weight: 500; letter-spacing: -0.02em; }
.hero__lead {
  max-width: 720px; margin-top: 22px; font-size: clamp(16px, 1.6vw, 19px);
  color: var(--slate);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.hero__note { margin-top: 16px; font-size: 13.5px; color: var(--slate-300); }

/* staggered entrance */
.eyebrow, .hero__title, .hero__lead, .hero__cta, .hero__note {
  animation: rise .7s var(--ease) both;
}
.hero__title { animation-delay: .05s; }
.hero__lead { animation-delay: .12s; }
.hero__cta { animation-delay: .18s; }
.hero__note { animation-delay: .24s; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }

/* ---------- generic section ---------- */
.section { padding: 88px 0; }
.section--tint { background: var(--bg-tint); border-block: 1px solid var(--line); }
.section__head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section__head .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--purple-600);
  background: var(--purple-50); border: 1px solid var(--purple-300);
  padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 18px;
}
.section__head h2 { font-size: clamp(27px, 3.4vw, 40px); }
.section__head h1 { font-size: clamp(27px, 3.4vw, 40px); }
.section__head p { margin-top: 16px; color: var(--slate); font-size: 17px; }

/* ---------- brochure banner ---------- */
.brochure {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center;
  background: linear-gradient(135deg, var(--card), var(--purple-50));
  border: 1px solid var(--purple-300); border-radius: var(--radius-lg);
  padding: 44px 44px; box-shadow: var(--shadow-sm);
}
.brochure__copy h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.brochure__copy > p { color: var(--slate); font-size: 16.5px; margin: 14px 0 26px; max-width: 460px; }
.brochure__art {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-purple); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.brochure__art:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.brochure__art img { display: block; width: 100%; height: auto; }

/* ---------- projects grid ---------- */
.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
}
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--purple-300); }
.project__media { display: block; aspect-ratio: 1190 / 413; overflow: hidden; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.project__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.project:hover .project__media img { transform: scale(1.04); }
.project__body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; }
.project__title { font-size: 17px; font-weight: 700; line-height: 1.28; }
.project__desc { color: var(--slate); font-size: 14.5px; line-height: 1.6; }
.project__cta {
  margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--purple-600);
  padding-top: 4px; transition: gap .2s var(--ease), color .2s;
}
.project__cta:hover { color: var(--purple); gap: 11px; }
.project__cta svg { transition: transform .2s var(--ease); }

/* ---------- testimonials / quotes ---------- */
.quotes { columns: 3; column-gap: 22px; }
.quote {
  break-inside: avoid; margin: 0 0 22px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 22px; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
}
.quote:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--purple-300); }
.quote__text {
  margin: 0; font-size: 15.5px; line-height: 1.62; color: var(--ink);
  position: relative; padding-top: 30px;
}
.quote__text::before {
  content: "\201C"; position: absolute; top: -6px; left: -2px;
  font-family: Georgia, "Times New Roman", serif; font-size: 56px; line-height: 1;
  color: var(--purple); opacity: .55;
}
.quote__by { display: flex; align-items: center; gap: 11px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.quote__avatar {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13.5px; font-weight: 700; color: #fff;
  background: linear-gradient(150deg, var(--purple-400), var(--purple-600));
}
.quote__name { font-weight: 600; font-size: 14.5px; color: var(--ink); }

/* ---------- stats ---------- */
.stats { padding: 8px 0 80px; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stat { padding: 30px 16px; border-radius: var(--radius); background: linear-gradient(180deg, var(--purple-50), var(--card)); border: 1px solid var(--purple-300); }
.stat b { display: block; font-size: clamp(30px, 4vw, 44px); font-weight: 800; color: var(--purple-600); letter-spacing: -.03em; }
.stat span { color: var(--slate); font-size: 14.5px; }

/* ---------- final CTA ---------- */
.cta { padding: 18px 0 100px; }
.cta__inner {
  text-align: center; max-width: 860px; margin-inline: auto;
  background: linear-gradient(135deg, var(--purple), var(--purple-600));
  border-radius: var(--radius-lg); padding: 60px 32px; color: #fff;
  box-shadow: var(--shadow-purple); position: relative; overflow: hidden;
}
.cta__inner::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,.12); top: -160px; right: -80px; }
.cta__inner h2 { font-size: clamp(26px, 3.4vw, 38px); position: relative; }
.cta__inner p { margin-top: 14px; font-size: 17px; color: rgba(255,255,255,.92); position: relative; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; position: relative; }
.cta .btn--primary { background: #fff; color: var(--cta-ink); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.cta .btn--primary:hover { background: #fff; color: var(--cta-ink-hover); }
.cta .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); box-shadow: none; }
.cta .btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

/* ---------- submit project form ---------- */
.submit__card {
  max-width: 760px; margin-inline: auto;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 38px 34px; box-shadow: var(--shadow-sm);
}
.submit-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.submit-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field .req { color: var(--purple-600); }
.field input,
.field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: border-color .18s, box-shadow .18s, background .18s;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.field input::placeholder,
.field textarea::placeholder { color: var(--slate-300); }
.field input:focus,
.field textarea:focus {
  outline: none; border-color: var(--purple-400); background: var(--card);
  box-shadow: 0 0 0 3px var(--purple-50);
}
.field input[type="file"] { padding: 9px 12px; cursor: pointer; }
.field input[type="file"]::file-selector-button {
  font: inherit; font-size: 14px; font-weight: 600; color: var(--ink);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 8px 16px; margin-right: 14px; cursor: pointer;
  transition: border-color .18s, color .18s, background .18s;
}
.field input[type="file"]::file-selector-button:hover {
  border-color: var(--purple-400); color: var(--purple-600); background: var(--purple-50);
}
.field__hint { font-size: 13px; color: var(--slate); }
.submit-form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 4px; }
.submit-form__status { margin: 0; font-size: 14.5px; font-weight: 600; }
.submit-form__status.is-ok { color: var(--purple-600); }
.submit-form__status.is-error { color: #d23f3f; }

/* ---------- OTP verification step ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.submit__card.is-verifying .submit-form { display: none; }
.otp-panel { position: relative; text-align: center; max-width: 420px; margin-inline: auto; }
.otp-panel__back {
  position: absolute; top: 0; left: 0;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 4px; font: inherit; font-size: 14px; font-weight: 600;
  color: var(--slate); background: none; border: 0; cursor: pointer;
  transition: color .18s;
}
.otp-panel__back:hover { color: var(--purple-600); }
.otp-panel__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; margin: 8px auto 16px; color: var(--purple-600);
  background: var(--purple-50); border-radius: var(--radius-pill);
}
.otp-panel h2 { font-size: 22px; margin: 0 0 8px; }
.otp-panel > p { margin: 0 auto 22px; max-width: 360px; color: var(--slate); font-size: 15px; }
.otp-panel__email { color: var(--ink); word-break: break-all; }
.otp-input { margin: 0 0 18px; }
.otp-input input {
  width: 100%; max-width: 280px; font-family: var(--mono); font-size: 30px;
  font-weight: 600; text-align: center; letter-spacing: 12px; text-indent: 12px;
  color: var(--ink); background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 14px;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.otp-input input::placeholder { color: var(--slate-300); letter-spacing: 12px; }
.otp-input input:focus {
  outline: none; border-color: var(--purple-400); background: var(--card);
  box-shadow: 0 0 0 3px var(--purple-50);
}
.otp-panel__verify { width: 100%; max-width: 280px; justify-content: center; }
.otp-panel__status { min-height: 20px; margin: 14px 0 0; font-size: 14.5px; font-weight: 600; }
.otp-panel__status.is-ok { color: var(--purple-600); }
.otp-panel__status.is-error { color: #d23f3f; }
.otp-panel__resend-row { margin: 16px 0 0; font-size: 14px; color: var(--slate); }
.otp-panel__resend {
  font: inherit; font-size: 14px; font-weight: 600; color: var(--purple-600);
  background: none; border: 0; padding: 0; cursor: pointer; text-decoration: underline;
}
.otp-panel__resend:hover { color: var(--purple); }

/* ---------- submission success step ---------- */
.submit__card.is-done .submit-form,
.submit__card.is-done .otp-panel { display: none; }
.submit-done { text-align: center; max-width: 440px; margin-inline: auto; padding: 14px 0 8px; }
.submit-done__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; margin: 0 auto 20px; color: #fff;
  background: var(--purple-600); border-radius: var(--radius-pill);
}
.submit-done h2 { font-size: 24px; margin: 0 0 10px; }
.submit-done p { margin: 0 auto 26px; max-width: 380px; color: var(--slate); font-size: 15.5px; }

/* ---------- legal pages (privacy / terms) ---------- */
.legal { padding: 72px 0 88px; }
.legal__inner { max-width: var(--container); margin-inline: auto; }
.legal__head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.legal__head .kicker {
  display: inline-block; font: 600 12.5px/1 var(--mono); letter-spacing: .14em;
  text-transform: uppercase; color: var(--purple-600); margin-bottom: 16px;
}
.legal__head h1 { font-size: clamp(30px, 4vw, 44px); }
.legal__updated { margin-top: 14px; color: var(--slate-300); font-size: 14.5px; }
.legal__lead {
  margin-top: 22px; padding: 18px 22px; font-size: 16.5px; color: var(--slate);
  background: var(--bg-tint); border: 1px solid var(--line);
  border-left: 3px solid var(--purple-400); border-radius: var(--radius);
  text-align: left;
}
.legal__body { columns: 2; column-gap: 56px; }
.legal__body h2 {
  font-size: clamp(20px, 2.4vw, 25px); margin: 40px 0 14px;
  padding-top: 8px;
  break-after: avoid; break-inside: avoid;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body p { color: var(--slate); font-size: 16px; margin-top: 14px; break-inside: avoid; }
.legal__body ul { margin: 14px 0 0; padding-left: 22px; color: var(--slate); font-size: 16px; break-inside: avoid; }
.legal__body li { margin-top: 8px; }
.legal__body a { color: var(--purple-600); font-weight: 500; }
.legal__body a:hover { text-decoration: underline; }
.legal__body strong { color: var(--ink); font-weight: 600; }
.legal__toc {
  display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 28px 0 4px;
  padding: 0 0 32px; border-bottom: 1px solid var(--line);
}
.legal__toc a { font-size: 14px; color: var(--slate); }
.legal__toc a:hover { color: var(--purple-600); }
.legal__contact {
  max-width: 760px; margin: 44px auto 0; padding: 24px 26px; background: var(--bg-tint);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.legal__contact h2 { margin-top: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--card); border-top: 1px solid var(--line); padding-top: 60px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 50px; padding-bottom: 44px; }
.footer__tag { margin-top: 16px; color: var(--slate); font-size: 14.5px; max-width: 320px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--slate-300); margin-bottom: 14px; }
.footer__col a { display: block; color: var(--slate); font-size: 14.5px; padding: 5px 0; transition: color .15s; }
.footer__col a:hover { color: var(--purple-600); }
.footer__addr { display: block; color: var(--slate); font-size: 14px; padding: 5px 0; line-height: 1.5; }
.footer__entity { display: block; color: var(--slate); font-size: 14.5px; font-weight: 600; padding: 12px 0 0; }
.footer__entity-link { font-weight: 600; }

/* "A product of Ice Tea Group" badge */
.itg-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 24px;
  background: var(--bg-tint); border: 1px solid var(--line); border-radius: 12px;
  padding: 9px 15px; transition: border-color .2s, transform .2s var(--ease);
}
.itg-badge:hover { border-color: var(--purple-300); transform: translateY(-2px); }
.itg-badge__logo { width: 28px; height: 28px; display: block; flex: none; }
.itg-badge__text { font-size: 14px; color: var(--slate); line-height: 1.3; }
.itg-badge__text strong { color: var(--ink); font-weight: 700; }
.itg-badge__arrow { color: var(--purple); font-weight: 700; margin-left: 4px; }
.itg-badge:hover .itg-badge__arrow { color: var(--purple-600); }
.footer__brand .brand__logo { height: 36px; }

.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 22px; border-top: 1px solid var(--line); color: var(--slate-300); font-size: 13.5px; }
.footer__legal-copy { display: inline-flex; align-items: center; gap: 12px; }
.footer__legal-copy .footer__sep { width: 1px; height: 1em; background: var(--line); display: inline-block; }
.footer__legal-links { display: flex; gap: 20px; }
.footer__legal-links a:hover { color: var(--purple-600); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .nav { display: none; }
  .brochure { grid-template-columns: 1fr; gap: 28px; }
  .projects { grid-template-columns: repeat(2, 1fr); }
  .quotes { columns: 2; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero { padding: 56px 0 24px; }
  .section { padding: 64px 0; }
  .brochure { padding: 30px 26px; }
  .projects { grid-template-columns: 1fr; }
  .quotes { columns: 1; }
  .submit__card { padding: 26px 22px; }
  .submit-form { grid-template-columns: 1fr; gap: 18px; }
  .legal { padding: 52px 0 64px; }
  .legal__body { columns: 1; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .header__actions .link-muted { display: none; }
  .header__inner { gap: 14px; }
  .header__actions { gap: 12px; }
  .circle--tr { width: 420px; height: 420px; top: -180px; right: -160px; }
  .circle--tr::after { inset: 80px; }
}
