@charset "UTF-8";
/* ==========================================================================
   Bahasoft design system
   1.  Fonts
   2.  Tokens
   3.  Reset & base
   4.  Layout primitives
   5.  Typography
   6.  Buttons
   7.  Forms
   8.  Cards
   9.  Navigation
   10. Hero
   11. Sections
   12. Accordion / FAQ
   13. Footer & floating CTA
   14. Article content
   15. Motion
   16. Utilities
   ========================================================================== */

/* --- 1. Fonts ------------------------------------------------------------
   Self-hosted variable fonts, split into latin / latin-ext exactly the way
   Google Fonts serves them. Turkish needs latin-ext for ş ğ İ Ş Ğ, so both
   subsets ship — but a visitor reading English-only text never downloads the
   ext file. */
@font-face {
  font-family: 'Sora';
  src: url('../fonts/sora-latin.woff2') format('woff2');
  font-weight: 300 800;
  font-display: swap;
  font-style: normal;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Sora';
  src: url('../fonts/sora-latin-ext.woff2') format('woff2');
  font-weight: 300 800;
  font-display: swap;
  font-style: normal;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'InterVar';
  src: url('../fonts/inter-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'InterVar';
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- 2. Tokens ----------------------------------------------------------- */
:root {
  /* Colour */
  --color-bg:            #07080a;
  --color-bg-alt:        #0b0d11;
  --color-surface:       #0f1116;
  --color-surface-2:     #14171e;
  --color-surface-3:     #1b1f28;
  --color-border:        rgba(255, 255, 255, .09);
  --color-border-strong: rgba(255, 255, 255, .16);

  --color-text:          #f4f6f8;
  --color-text-soft:     #c4cad4;
  --color-muted:         #8d95a3;
  --color-faint:         #626b7a;

  --color-primary:       #ff8a1f;
  --color-primary-600:   #f2700a;
  --color-primary-700:   #cf5c02;
  --color-primary-soft:  rgba(255, 138, 31, .14);
  --color-primary-line:  rgba(255, 138, 31, .32);

  --color-accent:        #5b8cff;
  --color-accent-soft:   rgba(91, 140, 255, .14);

  --color-whatsapp:      #25d366;
  --color-whatsapp-600:  #1eb455;

  --color-success:       #34d399;
  --color-danger:        #f87171;

  /* Typography */
  --font-display: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'InterVar', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, 'SFMono-Regular', 'JetBrains Mono', Menlo, monospace;

  --fs-caption: .75rem;
  --fs-small:   .875rem;
  --fs-body:    1rem;
  --fs-lead:    1.125rem;
  --fs-h6:      1.0625rem;
  --fs-h5:      1.25rem;
  --fs-h4:      clamp(1.35rem, 1.1rem + .8vw, 1.6rem);
  --fs-h3:      clamp(1.6rem, 1.3rem + 1.2vw, 2.1rem);
  --fs-h2:      clamp(2rem, 1.5rem + 2vw, 3rem);
  --fs-h1:      clamp(2.4rem, 1.6rem + 3.4vw, 4.2rem);
  --fs-display: clamp(2.8rem, 1.6rem + 4.6vw, 5.2rem);

  --lh-tight: 1.08;
  --lh-snug:  1.28;
  --lh-body:  1.68;

  /* Spacing */
  --sp-2xs: .25rem;
  --sp-xs:  .5rem;
  --sp-sm:  .75rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4.5rem;
  --sp-4xl: 6.5rem;

  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);

  /* Radius */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md: 0 8px 24px -8px rgba(0, 0, 0, .6);
  --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, .75);
  --shadow-primary: 0 12px 32px -12px rgba(255, 138, 31, .5);

  /* Layout */
  --container: 1200px;
  --container-narrow: 760px;
  --header-h: 72px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur-fast: .18s;
  --dur: .32s;
  --dur-slow: .6s;
}

/* --- 3. Reset & base ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-feature-settings: 'kern', 'liga', 'calt';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video, canvas { display: block; max-width: 100%; }

/* Inline icons carry no width/height attribute, so an SVG that misses a
   component-level size rule would fall back to its intrinsic 300x150 box.
   This is the floor every icon inherits. */
.icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}
img { height: auto; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6, p, figure, blockquote, ul, ol, dl { margin: 0; }
ul, ol { padding: 0; list-style: none; }

hr { border: 0; border-top: 1px solid var(--color-border); margin: var(--sp-xl) 0; }

::selection { background: var(--color-primary); color: #14100b; }

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: .75rem 1.25rem;
  background: var(--color-primary);
  color: #14100b;
  font-weight: 600;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* --- 4. Layout primitives ------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, .6rem + 2.2vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--alt { background: var(--color-bg-alt); }
.section--surface { background: linear-gradient(180deg, var(--color-bg-alt), var(--color-bg)); }

.grid { display: grid; gap: var(--sp-lg); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Grid and flex children default to min-width:auto, so an intrinsically wide
   child — an image, a long unbroken string — can push a track past the
   viewport. Opting every layout child down to 0 keeps the page from
   scrolling sideways on narrow screens. */
.grid > *,
.split > *,
.bento > *,
.hero__grid > *,
.showcase > *,
.article-layout > *,
.admin-shell > * { min-width: 0; }

.stack { display: flex; flex-direction: column; }
.stack > * + * { margin-top: var(--gap, var(--sp-md)); }

.cluster { display: flex; flex-wrap: wrap; gap: var(--gap, var(--sp-sm)); align-items: center; }

.split {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr .85fr; }
  .split--wide-right { grid-template-columns: .85fr 1.15fr; }
}

/* --- 5. Typography ------------------------------------------------------- */
.display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: var(--lh-tight);
  text-wrap: balance;
}
h5, h6 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; }

.display { font-size: var(--fs-display); }
h1, .h1 { font-size: var(--fs-h1); }
h2, .h2 { font-size: var(--fs-h2); }
h3, .h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); }
h4, .h4 { font-size: var(--fs-h4); line-height: var(--lh-snug); }
h5, .h5 { font-size: var(--fs-h5); line-height: 1.4; }
h6, .h6 { font-size: var(--fs-h6); line-height: 1.45; }

.lead { font-size: var(--fs-lead); color: var(--color-text-soft); line-height: 1.6; text-wrap: pretty; }
.muted { color: var(--color-muted); }
.small { font-size: var(--fs-small); }
.caption { font-size: var(--fs-caption); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}
.eyebrow--center::before { display: none; }

.text-gradient {
  background: linear-gradient(100deg, var(--color-primary) 10%, #ffc46b 55%, var(--color-accent) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-accent { color: var(--color-primary); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

.section-head { max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head > * + * { margin-top: var(--sp-md); }

/* --- 6. Buttons ---------------------------------------------------------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--color-text);
  --btn-border: var(--color-border-strong);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .875rem 1.5rem;
  min-height: 48px;
  border: 1px solid var(--btn-border);
  border-radius: var(--r-full);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 18px; height: 18px; flex: none; }

.btn--primary {
  --btn-bg: linear-gradient(135deg, var(--color-primary), var(--color-primary-600));
  --btn-fg: #16110a;
  --btn-border: transparent;
  box-shadow: var(--shadow-primary);
}
.btn--primary:hover { box-shadow: 0 16px 40px -12px rgba(255, 138, 31, .62); }

.btn--whatsapp {
  --btn-bg: var(--color-whatsapp);
  --btn-fg: #06280f;
  --btn-border: transparent;
  box-shadow: 0 12px 32px -14px rgba(37, 211, 102, .6);
}
.btn--whatsapp:hover { --btn-bg: var(--color-whatsapp-600); }

.btn--ghost {
  --btn-bg: rgba(255, 255, 255, .04);
  --btn-border: var(--color-border-strong);
}
.btn--ghost:hover { --btn-bg: rgba(255, 255, 255, .09); --btn-border: rgba(255, 255, 255, .28); }

.btn--quiet { --btn-border: transparent; --btn-bg: transparent; padding-inline: .5rem; }
.btn--quiet:hover { --btn-bg: rgba(255, 255, 255, .06); }

.btn--sm { padding: .55rem 1.05rem; min-height: 38px; font-size: .85rem; }
.btn--lg { padding: 1.05rem 1.9rem; min-height: 56px; font-size: 1.03rem; }
.btn--block { width: 100%; }

.btn[disabled], .btn[aria-disabled='true'] { opacity: .55; pointer-events: none; }

/* Arrow nudge on hover */
.btn .icon-arrow { transition: transform var(--dur) var(--ease-out); }
.btn:hover .icon-arrow { transform: translateX(4px); }

/* Text link with underline sweep */
.link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 550;
  color: var(--color-primary);
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size var(--dur) var(--ease-out);
}
.link:hover { background-size: 100% 1px; }
.link .icon { width: 16px; height: 16px; }

/* --- 7. Forms ------------------------------------------------------------ */
.field { display: flex; flex-direction: column; gap: .45rem; }
.field__label {
  font-size: var(--fs-small);
  font-weight: 550;
  color: var(--color-text-soft);
}
.field__label .req { color: var(--color-primary); }

.input, .select, .textarea {
  width: 100%;
  padding: .85rem 1rem;
  min-height: 48px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--r-sm);
  color: var(--color-text);
  font-size: var(--fs-body);
  transition: border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--color-faint); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--color-border-strong); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-surface-3);
  box-shadow: 0 0 0 3px var(--color-primary-soft);
}
.textarea { min-height: 130px; resize: vertical; line-height: 1.6; }

.select {
  appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238d95a3' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.select option { background: var(--color-surface-2); color: var(--color-text); }

.field--error .input,
.field--error .select,
.field--error .textarea { border-color: var(--color-danger); }
.field__error { font-size: var(--fs-small); color: var(--color-danger); }

.form-note { font-size: var(--fs-small); color: var(--color-muted); }

/* Honeypot — visually removed but not display:none so bots still fill it */
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}

.form-status {
  display: none;
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  font-size: var(--fs-small);
}
.form-status.is-visible { display: block; }
.form-status--ok { background: rgba(52, 211, 153, .1); border-color: rgba(52, 211, 153, .35); color: #a7f3d0; }
.form-status--err { background: rgba(248, 113, 113, .1); border-color: rgba(248, 113, 113, .35); color: #fecaca; }

/* --- 8. Cards ------------------------------------------------------------ */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--sp-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 138, 31, .1), transparent 62%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: var(--color-border-strong); }
.card:hover::before { opacity: 1; }

.card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--color-primary-soft);
  border: 1px solid var(--color-primary-line);
  color: var(--color-primary);
  margin-bottom: var(--sp-md);
}
.card__icon .icon { width: 22px; height: 22px; }

.card__title { font-size: var(--fs-h5); margin-bottom: .5rem; }
.card__body { color: var(--color-muted); font-size: var(--fs-small); line-height: 1.62; }
.card__foot { margin-top: auto; padding-top: var(--sp-md); }

/* Stretched link keeps the whole card clickable without nesting anchors */
.card__link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Service card */
.service-card .card__title { transition: color var(--dur-fast) var(--ease); }
.service-card:hover .card__title { color: var(--color-primary); }
.service-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: var(--sp-md);
}

/* Work card */
.work-card {
  padding: 0;
  background: var(--color-surface);
}
.work-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-surface-2);
}
.work-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.work-card:hover .work-card__media img { transform: scale(1.045); }
.work-card__body { padding: var(--sp-lg); }
.work-card__meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-caption);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-faint);
  margin-bottom: .6rem;
}
/* The showcase renders all carry the Bahasoft logo in their top-left corner,
   so the badge sits in the card body instead of on top of the artwork. It
   flows inline with the meta so a long sector name wraps without stranding
   the badge on its own line. */
.work-card__meta { flex-wrap: wrap; row-gap: .4rem; }
.work-card__meta .badge {
  letter-spacing: .04em;
  text-transform: none;
  padding: .2rem .55rem;
}

/* Post card */
.post-card { padding: 0; }
.post-card__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--color-surface-2); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { padding: var(--sp-lg); display: flex; flex-direction: column; flex: 1; }
.post-card__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  font-size: var(--fs-caption); color: var(--color-faint); margin-bottom: .7rem;
}
.post-card__title { font-size: var(--fs-h6); line-height: 1.4; margin-bottom: .55rem; }
.post-card:hover .post-card__title { color: var(--color-primary); }

/* Badge / chip */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .7rem;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--color-border);
  font-size: var(--fs-caption);
  font-weight: 550;
  letter-spacing: .01em;
  color: var(--color-text-soft);
  white-space: nowrap;
}
.badge--primary { background: var(--color-primary-soft); border-color: var(--color-primary-line); color: #ffb266; }
.badge--accent { background: var(--color-accent-soft); border-color: rgba(91,140,255,.32); color: #a8c1ff; }
.badge--dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Filter chips */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  padding: .5rem 1rem;
  border-radius: var(--r-full);
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-muted);
  font-size: var(--fs-small);
  font-weight: 550;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.chip:hover { color: var(--color-text); border-color: var(--color-border-strong); }
.chip.is-active {
  background: var(--color-primary-soft);
  border-color: var(--color-primary-line);
  color: var(--color-primary);
}

/* Stat */
.stat { display: flex; flex-direction: column; gap: .25rem; }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--color-text);
}
.stat__label { font-size: var(--fs-small); color: var(--color-muted); }

/* Step / process */
.step { position: relative; padding-left: 3.25rem; }
.step__num {
  position: absolute;
  left: 0; top: 0;
  display: grid;
  place-items: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: var(--r-full);
  background: var(--color-surface-2);
  border: 1px solid var(--color-primary-line);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
}
.step__title { font-size: var(--fs-h6); margin-bottom: .35rem; }
.step__body { color: var(--color-muted); font-size: var(--fs-small); }

/* Checklist */
.checklist { display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .65rem; align-items: flex-start; color: var(--color-text-soft); font-size: var(--fs-small); }
.checklist .icon { width: 20px; height: 20px; flex: none; color: var(--color-primary); margin-top: .1rem; }

/* Tech pill list */
.techs { display: flex; flex-wrap: wrap; gap: .4rem; }
.tech {
  padding: .28rem .65rem;
  border-radius: var(--r-xs);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--color-text-soft);
  letter-spacing: .01em;
}

/* --- 9. Navigation ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(7, 8, 10, .72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--color-border); background: rgba(7, 8, 10, .92); }

.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: .6rem; flex: none; }
.brand img, .brand svg { height: 30px; width: auto; }
.brand__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.03em;
}

.nav__list { display: none; align-items: center; gap: .2rem; margin-left: auto; }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem .8rem;
  /* The services trigger is a <button>; strip the UA chrome so it matches
     the sibling anchors. */
  background: none;
  border: 0;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .925rem;
  font-weight: 500;
  color: var(--color-text-soft);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}
.nav__link:hover, .nav__link[aria-expanded='true'] { color: var(--color-text); background: rgba(255, 255, 255, .05); }
.nav__link.is-active { color: var(--color-primary); }
.nav__link .icon { width: 15px; height: 15px; transition: transform var(--dur-fast) var(--ease); }
.nav__link[aria-expanded='true'] .icon { transform: rotate(180deg); }

.nav__actions { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
@media (min-width: 1060px) {
  .nav__actions { margin-left: 0; }
}

/* Mega menu */
.megamenu {
  position: absolute;
  left: 50%;
  top: calc(100% - 6px);
  transform: translateX(-50%) translateY(-8px);
  width: min(920px, calc(100vw - 3rem));
  padding: var(--sp-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease-out), visibility var(--dur);
  z-index: 95;
}
.megamenu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Below the desktop breakpoint the drawer handles navigation. The megamenu is
   removed rather than merely hidden: three fixed columns have a min-content
   width far wider than a phone, which would push the whole page sideways. */
@media (max-width: 1059px) { .megamenu { display: none; } }

.megamenu__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: .35rem; }
.megamenu__item {
  display: flex;
  gap: .75rem;
  padding: .7rem .8rem;
  border-radius: var(--r-md);
  transition: background-color var(--dur-fast) var(--ease);
}
.megamenu__item:hover { background: var(--color-surface-2); }
.megamenu__ico {
  display: grid; place-items: center;
  width: 34px; height: 34px; flex: none;
  border-radius: var(--r-sm);
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
.megamenu__ico .icon { width: 17px; height: 17px; }
.megamenu__name { font-family: var(--font-display); font-size: .9rem; font-weight: 600; }
.megamenu__desc { font-size: var(--fs-caption); color: var(--color-muted); line-height: 1.45; margin-top: .1rem; }
.megamenu__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-md);
  margin-top: var(--sp-md);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--color-border);
}

/* Language switch */
.lang-switch { display: flex; gap: 2px; padding: 3px; border-radius: var(--r-full); border: 1px solid var(--color-border); }
.lang-switch a {
  padding: .3rem .6rem;
  border-radius: var(--r-full);
  font-size: .78rem;
  font-weight: 600;
  color: var(--color-muted);
  transition: all var(--dur-fast) var(--ease);
}
.lang-switch a:hover { color: var(--color-text); }
.lang-switch a.is-active { background: var(--color-surface-3); color: var(--color-text); }

/* Burger */
.burger {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--r-sm);
  background: transparent;
  cursor: pointer;
}
.burger .icon { width: 20px; height: 20px; }
.burger .icon-close { display: none; }
.burger[aria-expanded='true'] .icon-menu { display: none; }
.burger[aria-expanded='true'] .icon-close { display: block; }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 88;
  background: var(--color-bg);
  padding: var(--sp-lg) 0 var(--sp-2xl);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease-out), visibility var(--dur);
}
.drawer.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem 0;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.drawer__link .icon { width: 18px; height: 18px; color: var(--color-faint); }
.drawer__section-title {
  margin-top: var(--sp-lg);
  margin-bottom: .5rem;
  font-size: var(--fs-caption);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-faint);
}
.drawer__sub { display: grid; gap: .1rem; }
.drawer__sub a {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem .75rem;
  border-radius: var(--r-sm);
  font-size: .95rem;
  color: var(--color-text-soft);
}
.drawer__sub a:hover { background: var(--color-surface); color: var(--color-text); }
.drawer__sub .icon { width: 17px; height: 17px; color: var(--color-primary); }
.drawer__actions { display: grid; gap: .6rem; margin-top: var(--sp-xl); }

@media (min-width: 1060px) {
  .nav__list { display: flex; }
  .burger { display: none; }
  .drawer { display: none; }
}

/* --- 10. Hero ------------------------------------------------------------ */
.hero {
  position: relative;
  padding-block: clamp(3rem, 1.5rem + 7vw, 6.5rem) clamp(3rem, 2rem + 5vw, 5.5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero__bg::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  width: min(1100px, 130vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 138, 31, .16), transparent 62%);
  filter: blur(10px);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 30%, transparent 78%);
}

.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 1.5rem + 4vw, 4rem);
  align-items: center;
}
@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
}

.hero__title { font-size: var(--fs-h1); margin-bottom: var(--sp-lg); }
.hero__lead { max-width: 56ch; margin-bottom: var(--sp-xl); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: var(--sp-lg); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.1rem; font-size: var(--fs-small); color: var(--color-muted); }
.hero__trust li { display: flex; align-items: center; gap: .4rem; }
.hero__trust .icon { width: 17px; height: 17px; color: var(--color-primary); }

/* Rotating headline word.
   The gradient lives on each item, not on the container: background-clip:text
   paints across every child glyph regardless of the child's own opacity, so a
   container-level gradient would keep showing the hidden words. */
.rotator {
  display: inline-grid;
  vertical-align: bottom;
  overflow: hidden;
}
.rotator__item {
  grid-area: 1 / 1;
  /* One line only — a wrapping word would stretch the stack and push the
     rest of the headline down. */
  white-space: nowrap;
  opacity: 0;
  transform: translateY(60%);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
  background: linear-gradient(100deg, var(--color-primary) 10%, #ffc46b 55%, var(--color-accent) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rotator__item.is-active { opacity: 1; transform: translateY(0); }
.rotator__item.is-leaving { opacity: 0; transform: translateY(-60%); }

/* Hero showcase (portfolio preview stack) */
.showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}
.showcase__item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
}
.showcase__item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.showcase__item:nth-child(1) { transform: translateY(-14px); }
.showcase__item:nth-child(2) { transform: translateY(14px); }
.showcase__item:nth-child(3) { display: none; }

/* --- 11. Sections -------------------------------------------------------- */
/* Logo / capability marquee */
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 550;
  color: var(--color-faint);
  white-space: nowrap;
}
.marquee__item .icon { width: 18px; height: 18px; color: var(--color-primary); opacity: .8; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Bento */
.bento { display: grid; gap: var(--sp-md); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .bento { grid-template-columns: repeat(6, 1fr); } }
.bento__cell { grid-column: span 2; }
@media (min-width: 900px) {
  .bento__cell--lg { grid-column: span 4; }
  .bento__cell--sm { grid-column: span 2; }
  .bento__cell--half { grid-column: span 3; }
}

/* CTA band */
.cta-band {
  position: relative;
  padding: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  border-radius: var(--r-xl);
  border: 1px solid var(--color-primary-line);
  background:
    radial-gradient(600px circle at 12% 0%, rgba(255, 138, 31, .18), transparent 60%),
    radial-gradient(500px circle at 90% 100%, rgba(91, 140, 255, .14), transparent 62%),
    var(--color-surface);
  overflow: hidden;
}
.cta-band__inner { position: relative; max-width: 640px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: var(--sp-xl); }

/* Contact panel */
.contact-panel {
  display: grid;
  gap: var(--sp-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
}
@media (min-width: 960px) { .contact-panel { grid-template-columns: 1fr 1fr; gap: var(--sp-2xl); } }

.contact-method {
  display: flex;
  gap: var(--sp-md);
  padding: var(--sp-md);
  border-radius: var(--r-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.contact-method:hover { border-color: var(--color-primary-line); transform: translateY(-2px); }
.contact-method__ico {
  display: grid; place-items: center;
  width: 42px; height: 42px; flex: none;
  border-radius: var(--r-sm);
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
.contact-method__ico .icon { width: 20px; height: 20px; }
.contact-method--wa .contact-method__ico { background: rgba(37, 211, 102, .14); color: var(--color-whatsapp); }
.contact-method__text { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.contact-method__label { font-size: var(--fs-caption); color: var(--color-muted); }
.contact-method__value { font-family: var(--font-display); font-weight: 600; font-size: 1rem; word-break: break-word; }

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  font-size: var(--fs-small);
  color: var(--color-faint);
  padding-block: var(--sp-lg) 0;
}
.breadcrumb a { color: var(--color-muted); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb .icon { width: 14px; height: 14px; opacity: .5; }

/* Pagination */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem; margin-top: var(--sp-2xl); }
.pagination a, .pagination span {
  display: grid;
  place-items: center;
  min-width: 42px; height: 42px;
  padding-inline: .8rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--color-border);
  font-size: var(--fs-small);
  font-weight: 550;
  color: var(--color-muted);
  transition: all var(--dur-fast) var(--ease);
}
.pagination a:hover { color: var(--color-text); border-color: var(--color-border-strong); }
.pagination .is-current { background: var(--color-primary-soft); border-color: var(--color-primary-line); color: var(--color-primary); }

/* --- 12. Accordion / FAQ ------------------------------------------------- */
.accordion { border-top: 1px solid var(--color-border); }
.accordion__item { border-bottom: 1px solid var(--color-border); }
.accordion__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  width: 100%;
  padding: 1.15rem 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease);
}
.accordion__btn:hover { color: var(--color-primary); }
.accordion__sign {
  display: grid; place-items: center;
  width: 28px; height: 28px; flex: none;
  border-radius: var(--r-full);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  transition: transform var(--dur) var(--ease-out), background-color var(--dur-fast) var(--ease);
}
.accordion__sign .icon { width: 15px; height: 15px; }
.accordion__btn[aria-expanded='true'] .accordion__sign { transform: rotate(45deg); background: var(--color-primary-soft); }
.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease-out);
}
.accordion__panel[data-open='true'] { grid-template-rows: 1fr; }
.accordion__panel > div { overflow: hidden; }
.accordion__panel p { padding-bottom: 1.15rem; color: var(--color-text-soft); font-size: .95rem; }

/* --- 13. Footer & floating CTA ------------------------------------------- */
.site-footer {
  padding-block: var(--sp-3xl) var(--sp-xl);
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}
.footer__grid {
  display: grid;
  gap: var(--sp-xl);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
@media (min-width: 900px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--sp-2xl); }
}
.footer__title {
  font-family: var(--font-display);
  font-size: var(--fs-caption);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-faint);
  margin-bottom: var(--sp-md);
}
.footer__links { display: grid; gap: .55rem; }
.footer__links a { font-size: var(--fs-small); color: var(--color-muted); transition: color var(--dur-fast) var(--ease); }
.footer__links a:hover { color: var(--color-primary); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  margin-top: var(--sp-2xl);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--color-border);
  font-size: var(--fs-small);
  color: var(--color-faint);
}
.social { display: flex; gap: .5rem; }
.social a {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: var(--r-full);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  transition: all var(--dur-fast) var(--ease);
}
.social a:hover { color: var(--color-primary); border-color: var(--color-primary-line); background: var(--color-primary-soft); }
/* Brand glyphs are dense; below ~19px the Instagram camera stops reading. */
.social .icon { width: 19px; height: 19px; }

/* Floating WhatsApp + mobile sticky bar */
.float-wa {
  position: fixed;
  right: clamp(1rem, .5rem + 1vw, 1.75rem);
  bottom: clamp(1rem, .5rem + 1vw, 1.75rem);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.15rem;
  border-radius: var(--r-full);
  background: var(--color-whatsapp);
  color: #06280f;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: .9rem;
  box-shadow: 0 14px 34px -12px rgba(37, 211, 102, .65);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease);
}
.float-wa:hover { transform: translateY(-3px) scale(1.02); }
.float-wa .icon { width: 21px; height: 21px; }
.float-wa__label { display: none; }
@media (min-width: 640px) { .float-wa__label { display: inline; } }

.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 82;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(11, 13, 17, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  transform: translateY(100%);
  transition: transform var(--dur) var(--ease-out);
}
.mobile-bar.is-visible { transform: translateY(0); }
@media (min-width: 768px) { .mobile-bar { display: none; } }
@media (max-width: 767px) {
  .float-wa { display: none; }
  body { padding-bottom: 0; }
  body.has-mobile-bar { padding-bottom: 4.5rem; }
}

/* --- 14. Article content ------------------------------------------------- */
.prose {
  max-width: 72ch;
  color: var(--color-text-soft);
  font-size: 1.05rem;
  line-height: 1.78;
}
.prose > * + * { margin-top: 1.35em; }
.prose h2 {
  margin-top: 2.4em;
  font-size: var(--fs-h3);
  color: var(--color-text);
  scroll-margin-top: calc(var(--header-h) + 2rem);
}
.prose h3 {
  margin-top: 1.9em;
  font-size: var(--fs-h4);
  color: var(--color-text);
  scroll-margin-top: calc(var(--header-h) + 2rem);
}
.prose h4 { margin-top: 1.6em; font-size: var(--fs-h5); color: var(--color-text); }
.prose a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { text-decoration-thickness: 2px; }
.prose strong { color: var(--color-text); font-weight: 650; }
.prose ul, .prose ol { padding-left: 1.4em; display: grid; gap: .55em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li::marker { color: var(--color-primary); }
.prose blockquote {
  padding: 1.1em 1.4em;
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 1.05rem;
}
.prose blockquote p + p { margin-top: .8em; }
.prose code {
  padding: .15em .4em;
  border-radius: var(--r-xs);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: .87em;
  color: #ffc48a;
}
.prose pre {
  padding: 1.2em;
  border-radius: var(--r-md);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  overflow-x: auto;
}
.prose pre code { padding: 0; background: none; border: 0; color: var(--color-text-soft); }
.prose img { border-radius: var(--r-md); border: 1px solid var(--color-border); }
.prose figure figcaption { margin-top: .6em; font-size: var(--fs-small); color: var(--color-faint); text-align: center; }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.prose th, .prose td { padding: .7em .9em; border: 1px solid var(--color-border); text-align: left; }
.prose th { background: var(--color-surface-2); color: var(--color-text); font-weight: 600; }
.prose hr { margin: 2.4em 0; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Table of contents */
.toc {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  padding: var(--sp-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  background: var(--color-surface);
}
.toc__title {
  font-size: var(--fs-caption);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-faint);
  margin-bottom: var(--sp-md);
}
.toc__list { display: grid; gap: .3rem; max-height: 60vh; overflow-y: auto; }
.toc__list a {
  display: block;
  padding: .35rem .6rem;
  border-left: 2px solid transparent;
  font-size: var(--fs-small);
  color: var(--color-muted);
  line-height: 1.45;
  transition: all var(--dur-fast) var(--ease);
}
.toc__list a:hover { color: var(--color-text); }
.toc__list a.is-active { color: var(--color-primary); border-left-color: var(--color-primary); background: var(--color-primary-soft); }
.toc__list .lvl-3 { padding-left: 1.4rem; font-size: .82rem; }

.article-layout { display: grid; gap: var(--sp-2xl); }
@media (min-width: 1040px) {
  .article-layout { grid-template-columns: minmax(0, 1fr) 280px; align-items: start; }
}

.read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--color-primary), #ffc46b);
  z-index: 99;
  transition: width .1s linear;
}

/* --- 15. Motion ---------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

.hover-lift { transition: transform var(--dur) var(--ease-out); }
.hover-lift:hover { transform: translateY(-3px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

/* --- 16. Utilities ------------------------------------------------------- */
.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;
}
.hide-sm { display: none; }
@media (min-width: 640px) { .hide-sm { display: initial; } }
.full-bleed-media { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--color-border); }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-portrait { aspect-ratio: 4 / 5; }
.object-cover { width: 100%; height: 100%; object-fit: cover; }
.mt-lg { margin-top: var(--sp-lg); }
.mt-xl { margin-top: var(--sp-xl); }
.mt-2xl { margin-top: var(--sp-2xl); }
.mb-lg { margin-bottom: var(--sp-lg); }
.gap-sm { --gap: var(--sp-sm); }
.gap-lg { --gap: var(--sp-lg); }
.relative { position: relative; }
.flex-1 { flex: 1; }
