/*
 * Theme Name:   Hello Elementor Child — Office Shapers
 * Theme URI:    https://officeshapers.com
 * Description:  Office Shapers branded child theme for Hello Elementor
 * Author:       Office Shapers
 * Template:     hello-elementor
 * Version:      1.0.1
 * Text Domain:  hello-elementor-child
 */

/* ── Full token set (colors_and_type.css, no @font-face) ── */

/* =========================================================
   Office Shapers — Color & Type Tokens
   Source: Brand Book Office Shapers (2025) + brand-guidelines.md
   ========================================================= */

/* ---------- Fonts ---------- */
/* =========================================================
   1. PRIMITIVES — raw brand values, never used directly in UI
   ========================================================= */
:root {
  /* Brand palette (from Brand Book p.5) */
  --os-ink:        #061B1E; /* deep almost-black teal — primary ink / brand mark */
  --os-cyan:       #A4F9FF; /* signature pale aqua — primary accent */
  --os-sand:       #FEE1A3; /* warm cream-yellow — secondary accent */
  --os-lilac:      #EAC3F4; /* soft lilac — tertiary accent */
  --os-bone:       #F5F5F0; /* off-white page background */

  /* Functional neutrals — derived from --os-ink at varying alphas */
  --os-ink-90:     #1F3033;
  --os-ink-70:     #4B5A5D;
  --os-ink-50:     #7B8688;
  --os-ink-30:     #B0B7B8;
  --os-ink-15:     #D9DCDD;
  --os-ink-08:     #ECEEEE;
  --os-white:      #FFFFFF;

  /* Tinted surfaces (10–15% wash of accent over bone) */
  --os-cyan-tint:  #E6FCFE;
  --os-sand-tint:  #FFF6E0;
  --os-lilac-tint: #F8EDFB;

  /* Status (derived, not in book — kept muted to match palette) */
  --os-success:    #2E7D5B;
  --os-warning:    #C98A1E;
  --os-danger:     #B0413E;

  /* =======================================================
     2. SEMANTIC TOKENS — what UI code should consume
     ======================================================= */

  /* Surfaces */
  --bg-page:        var(--os-bone);
  --bg-surface:     var(--os-white);
  --bg-raised:      var(--os-white);
  --bg-sunken:      var(--os-ink-08);
  --bg-inverse:     var(--os-ink);
  --bg-accent:      var(--os-cyan);
  --bg-accent-soft: var(--os-cyan-tint);
  --bg-warm:        var(--os-sand-tint);

  /* Foreground */
  --fg-1:           var(--os-ink);      /* primary text */
  --fg-2:           var(--os-ink-70);   /* secondary / body */
  --fg-3:           var(--os-ink-50);   /* muted / captions */
  --fg-disabled:    var(--os-ink-30);
  --fg-on-accent:   var(--os-ink);      /* ink on cyan/sand/lilac */
  --fg-on-inverse:  var(--os-bone);

  /* Borders / dividers */
  --border-subtle:  var(--os-ink-08);
  --border-default: var(--os-ink-15);
  --border-strong:  var(--os-ink-30);
  --border-focus:   var(--os-ink);

  /* Status */
  --fg-success: var(--os-success);
  --fg-warning: var(--os-warning);
  --fg-danger:  var(--os-danger);

  /* =======================================================
     3. TYPOGRAPHY
     ======================================================= */

  /* Families */
  --font-display: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Noto Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;

  /* Type scale — modular, designed for 1rem = 16px */
  --text-xs:    12px;
  --text-sm:    14px;
  --text-base:  16px;
  --text-md:    18px;
  --text-lg:    20px;
  --text-xl:    24px;
  --text-2xl:   32px;
  --text-3xl:   44px;
  --text-4xl:   60px;
  --text-5xl:   80px;
  --text-6xl:   104px;

  /* Weights */
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  /* Line heights */
  --lh-tight:    1.05;
  --lh-snug:     1.18;
  --lh-normal:   1.45;
  --lh-loose:    1.65;

  /* Tracking — Sora benefits from slightly tight tracking at display sizes */
  --tracking-display:  -0.02em;
  --tracking-heading:  -0.01em;
  --tracking-body:     0;
  --tracking-eyebrow:  0.12em;

  /* =======================================================
     4. SHAPE, SPACING, SHADOW
     ======================================================= */

  /* Radii — Office Shapers visuals are pillowy: large, generous corners */
  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;
  --radius-2xl: 56px;
  --radius-pill: 999px;

  /* Spacing — 4px base */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Shadows — quiet, soft, mostly used on raised cards & menus */
  --shadow-xs: 0 1px 2px rgba(6, 27, 30, 0.05);
  --shadow-sm: 0 2px 6px rgba(6, 27, 30, 0.06);
  --shadow-md: 0 8px 20px -6px rgba(6, 27, 30, 0.10);
  --shadow-lg: 0 20px 40px -12px rgba(6, 27, 30, 0.14);
  --shadow-focus: 0 0 0 4px rgba(6, 27, 30, 0.12);

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:   140ms;
  --dur-base:   220ms;
  --dur-slow:   420ms;
}

/* =========================================================
   5. SEMANTIC TYPE CLASSES
   ========================================================= */

.os-eyebrow {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-3);
}

.os-h1, h1.os-h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: clamp(48px, 6.2vw, var(--text-5xl));
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-display);
  color: var(--fg-1);
  text-wrap: balance;
}

.os-h2, h2.os-h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: clamp(34px, 4vw, var(--text-3xl));
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-heading);
  color: var(--fg-1);
  text-wrap: balance;
}

.os-h3, h3.os-h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--text-2xl);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-heading);
  color: var(--fg-1);
}

.os-h4, h4.os-h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--text-xl);
  line-height: var(--lh-snug);
  color: var(--fg-1);
}

.os-lead {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--text-lg);
  line-height: var(--lh-normal);
  color: var(--fg-2);
  text-wrap: pretty;
}

.os-body, p.os-body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  color: var(--fg-2);
  text-wrap: pretty;
}

.os-small {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--text-sm);
  line-height: var(--lh-normal);
  color: var(--fg-3);
}

.os-caption {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--text-xs);
  line-height: var(--lh-normal);
  color: var(--fg-3);
}

.os-cta {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--text-base);
  letter-spacing: 0;
  color: var(--fg-1);
}

/* =========================================================
   6. BASE RESET (opt-in via .os-root)
   ========================================================= */

.os-root {
  font-family: var(--font-body);
  color: var(--fg-1);
  background: var(--bg-page);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* ── Homepage CSS (site.css) ── */

body{--type-scale:1;--body-scale:1;--card-radius:18px;--card-radius-sm:14px;--btn-radius:12px;}

/* =========================================================
   Office Shapers — Homepage styles  (v2)
   Built on the Office Shapers design tokens (colors_and_type.css)
   ========================================================= */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg-1);
  background: var(--os-white);            /* page background: white */
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* user-tunable type scales (Tweaks) */
  --type-scale: 1;   /* headlines / display */
  --body-scale: 1;   /* body copy, leads, labels */
  /* shared radii for this site (subtle) */
  --card-radius: 18px;
  --card-radius-sm: 14px;
  --btn-radius: 12px;
}

::selection { background: var(--os-cyan); color: var(--os-ink); }

/* ---------- Fine grain texture overlay (whole page) ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 9991;
  background: linear-gradient(90deg, var(--os-cyan), var(--os-lilac));
  transition: width .08s linear;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ---------- Editable text affordance ---------- */
[data-edit] { border-radius: 4px; transition: box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out); }
[data-edit]:hover { box-shadow: 0 0 0 2px var(--os-ink-15); cursor: text; }
[data-edit]:focus { outline: none; box-shadow: 0 0 0 2px var(--os-cyan); background: color-mix(in srgb, var(--os-cyan) 12%, transparent); }
.on-ink [data-edit]:hover, [data-edit].on-ink:hover { box-shadow: 0 0 0 2px color-mix(in srgb, var(--os-bone) 35%, transparent); }

/* ---------- Eyebrow chip (live dot + label) ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
  background: var(--os-white);
  margin-bottom: var(--space-6);
}
.chip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--os-cyan);
  box-shadow: 0 0 0 0 var(--os-cyan);
  animation: chip-pulse 2.6s var(--ease-out) infinite;
}
@keyframes chip-pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--os-cyan) 80%, transparent); }
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.chip span {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: calc(var(--text-xs) * var(--body-scale));
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-2);
}
.chip--on-ink { background: color-mix(in srgb, var(--os-bone) 12%, transparent); border-color: color-mix(in srgb, var(--os-bone) 22%, transparent); }
.chip--on-ink span { color: color-mix(in srgb, var(--os-bone) 85%, transparent); }
.shell {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}
.section { padding-block: clamp(76px, 9.5vw, 156px); }
.section--tight { padding-block: clamp(48px, 6vw, 96px); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: calc(var(--text-xs) * var(--body-scale));
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--os-white) 80%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.site-header.is-stuck {
  border-bottom-color: var(--border-subtle);
  background: color-mix(in srgb, var(--os-white) 92%, transparent);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  height: 80px;
}
.brand { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.brand__mark { width: 32px; height: 32px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
  color: var(--fg-1);
}
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 40px); }
.nav__link {
  font-weight: var(--fw-medium);
  font-size: var(--text-base);
  color: var(--fg-2);
  position: relative;
  padding-block: 6px;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--os-ink);
  transition: right var(--dur-base) var(--ease-out);
}
.nav__link:hover { color: var(--fg-1); }
.nav__link:hover::after { right: 0; }
.nav__right { display: flex; align-items: center; gap: var(--space-5); }

.lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
  color: var(--fg-2);
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid var(--border-default);
  border-radius: var(--btn-radius);
  background: transparent;
  transition: background var(--dur-fast) var(--ease-out);
}
.lang:hover { background: var(--os-ink-08); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--text-base);
  line-height: 1;
  padding: 18px 32px;
  border-radius: var(--btn-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}
.btn:active { transform: translateY(1px); }
.btn--accent { background: var(--os-cyan); color: var(--os-ink); }
.btn--accent:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn--ink { background: var(--os-ink); color: var(--os-bone); box-shadow: 0 6px 18px -8px rgba(6,27,30,.5); }
.btn--ink:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--fg-1); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--os-ink); color: var(--os-bone); border-color: var(--os-ink); }
.btn--on-ink { background: var(--os-cyan); color: var(--os-ink); }
.btn--on-ink:hover { box-shadow: 0 16px 30px -10px rgba(164,249,255,.5); transform: translateY(-2px); }
.btn__arrow { transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .btn__arrow { transform: translate(3px, -3px); }

/* ============================================================
   HERO BANNER  — full-width, bold text + optional image
   ============================================================ */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: clamp(600px, 82vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(46% 60% at 88% 18%, var(--os-cyan-tint) 0%, transparent 60%),
    radial-gradient(42% 52% at 6% 88%, var(--os-lilac-tint) 0%, transparent 62%),
    var(--os-bone);
}
/* floating decorative shapes behind hero text */
.hero-banner__decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-banner.has-image .hero-banner__decor { opacity: 0; }
.hero-deco { position: absolute; border-radius: 50%; filter: blur(2px); will-change: transform; }
.hero-deco--1 { width: 240px; height: 240px; right: 8%; top: 14%; background: radial-gradient(circle at 35% 30%, var(--os-cyan) 0%, transparent 72%); opacity: .6; }
.hero-deco--2 { width: 150px; height: 150px; right: 26%; bottom: 16%; border-radius: 40px; background: linear-gradient(160deg, var(--os-lilac) 0%, #C58FD6 100%); opacity: .42; transform: rotate(-12deg); }
.hero-deco--3 { width: 96px; height: 96px; right: 4%; bottom: 24%; border-radius: var(--radius-pill); background: linear-gradient(180deg, var(--os-sand) 0%, #E8BE5E 100%); opacity: .5; }
.hero-deco--ring { width: 320px; height: 320px; right: 2%; top: 30%; border-radius: 50%; border: 1.5px solid var(--os-ink-15); background: none; filter: none; }
.hero-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-banner__media image-slot {
  width: 100%;
  height: 100%;
}
.hero-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(6,27,30,.62) 0%, rgba(6,27,30,.30) 46%, rgba(6,27,30,0) 78%);
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.hero-banner.has-image .hero-banner__scrim { opacity: 1; }
.hero-banner__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-banner__content { max-width: 60ch; }
.hero-banner__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: calc(clamp(48px, 7vw, 120px) * var(--type-scale));
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--os-ink);
  text-wrap: balance;
}
.hero-banner__title .grad {
  background: linear-gradient(100deg, var(--os-ink) 0%, #2AA5AE 55%, var(--os-ink) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  /* extend the clipped-text paint box so descenders (p, y, g) aren't cropped */
  padding-bottom: 0.16em;
}
.hero-banner.has-image .hero-banner__title .grad { -webkit-text-fill-color: var(--os-cyan); color: var(--os-cyan); }
.hero-banner__lead {
  margin: var(--space-10) 0 var(--space-12);
  font-size: calc(var(--text-xl) * var(--body-scale));
  line-height: var(--lh-snug);
  color: var(--fg-2);
  max-width: 44ch;
}
.hero-banner__actions { display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap; }
/* when an image is present, flip text to light */
.hero-banner.has-image .hero-banner__title { color: var(--os-white); }
.hero-banner.has-image .hero-banner__lead { color: color-mix(in srgb, var(--os-bone) 88%, transparent); }
.hero-banner.has-image .chip { background: color-mix(in srgb, var(--os-bone) 14%, transparent); border-color: color-mix(in srgb, var(--os-bone) 26%, transparent); }
.hero-banner.has-image .chip span { color: var(--os-bone); }
.hero-banner__hint {
  position: absolute;
  z-index: 2;
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(16px, 3vw, 32px);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: var(--btn-radius);
  background: color-mix(in srgb, var(--os-white) 82%, transparent);
  border: 1px solid var(--border-subtle);
  color: var(--fg-3);
  font-size: var(--text-sm);
  pointer-events: none;
}
.hero-banner.has-image .hero-banner__hint { display: none; }

/* ============================================================
   SPLIT FEATURE  — dark word-stack card + abstract shapes
   ============================================================ */
.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: stretch;
}
.feature__panel {
  border-radius: var(--card-radius);
  min-height: clamp(480px, 58vh, 680px);
  overflow: hidden;
}
.feature__words {
  background: var(--os-ink);
  color: var(--os-bone);
  padding: clamp(32px, 3.6vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature__eyebrow-top { display: flex; align-items: center; gap: 12px; color: color-mix(in srgb, var(--os-bone) 70%, transparent); }
.feature__eyebrow-top .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--os-cyan); }
.wordstack { display: flex; flex-direction: column; gap: clamp(6px, 1vw, 12px); margin-block: auto; }
.wordrow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--os-bone) 18%, transparent);
  padding-bottom: clamp(6px, 1vw, 12px);
}
.wordrow:last-child { border-bottom: 0; }
.wordrow__word {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: calc(clamp(34px, 5vw, 72px) * var(--type-scale));
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--os-white);
  min-width: 0;
}
.wordrow__tag {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: calc(var(--text-xs) * var(--body-scale));
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--os-cyan);
  white-space: nowrap;
}
.feature__words-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.feature__words-footer p {
  margin: 0;
  max-width: 34ch;
  color: color-mix(in srgb, var(--os-bone) 78%, transparent);
  font-size: calc(var(--text-md) * var(--body-scale));
  line-height: var(--lh-snug);
}

.feature__art {
  background: radial-gradient(120% 120% at 80% 10%, #ECECE8 0%, #DEDED9 60%, #D5D5CF 100%);
  position: relative;
}
.shape { position: absolute; border-radius: 22px; box-shadow: var(--shadow-lg); }
.shape--lilac { width: 46%; height: 34%; top: 12%; right: 12%; background: linear-gradient(155deg, #F0D2F8 0%, #E2A8F0 55%, #CE5FD8 100%); border-radius: 26px; }
.shape--green { width: 50%; height: 30%; top: 33%; left: 6%; background: linear-gradient(160deg, #2F8F6B 0%, #14533C 100%); border-radius: 24px; }
.shape--pill { width: 13%; height: 30%; top: 22%; right: 4%; border-radius: var(--radius-pill); background: linear-gradient(180deg, #FBD9D2 0%, #F0938A 60%, #E4655C 100%); }
.shape--sand { width: 44%; height: 14%; top: 56%; left: 30%; border-radius: var(--radius-pill); background: linear-gradient(180deg, #C99A6A 0%, #9C6B3E 100%); }
.shape--cyan-dot { width: 13%; aspect-ratio: 1; bottom: 6%; right: 9%; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #CFFB60 0%, #AEE638 70%); }
.shape--ink-pill { width: 40%; height: 19%; bottom: 8%; left: 9%; border-radius: var(--radius-pill); background: linear-gradient(180deg, #F4D8DE 0%, #E7B6C2 100%); display: grid; place-items: center; }
.shape--ink-pill::after { content: ""; width: 56%; height: 50%; border-radius: var(--radius-pill); background: linear-gradient(180deg, #E7B6C2 0%, #D796A8 100%); box-shadow: inset 0 4px 12px rgba(6,27,30,.18); }
.shape__thread { position: absolute; width: 4px; height: 11%; bottom: 18%; right: 15%; background: #3A3FB0; border-radius: 4px; }

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.sec-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-12);
  align-items: end;
  margin-bottom: var(--space-16);
}
.sec-head__main { display: flex; flex-direction: column; align-items: flex-start; }
.sec-head__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: calc(clamp(34px, 4.4vw, 68px) * var(--type-scale));
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.sec-head__title em { font-style: normal; color: var(--os-ink-30); }
.sec-head__lead {
  margin: 0;
  font-size: calc(var(--text-lg) * var(--body-scale));
  line-height: var(--lh-normal);
  color: var(--fg-2);
}

/* ============================================================
   QUOTE — sand card + image strip
   ============================================================ */
.quote-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: var(--space-4);
  align-items: stretch;
}
.quote-media { border-radius: var(--card-radius); overflow: hidden; min-height: 420px; background: var(--os-ink-08); }
.quote-media image-slot { width: 100%; height: 100%; }
.quote-card {
  background: var(--os-sand);
  border-radius: var(--card-radius);
  padding: clamp(36px, 4vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-8);
}
.quote-card__mark { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 120px; line-height: 0.6; color: var(--os-ink); height: 56px; }
.quote-card__text {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: calc(clamp(26px, 2.8vw, 44px) * var(--type-scale));
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--os-ink);
  margin: 0;
  text-wrap: balance;
}
.quote-card__cite { display: flex; align-items: center; gap: 14px; font-weight: var(--fw-semibold); color: var(--os-ink); }
.quote-card__cite .rule { width: 40px; height: 2px; background: var(--os-ink); }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); align-items: stretch; }
.pillar {
  border-radius: var(--card-radius-sm);
  padding: clamp(30px, 2.6vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-8);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pillar--cyan { background: var(--os-cyan-tint); }
.pillar--sand { background: var(--os-sand-tint); }
.pillar--lilac { background: var(--os-lilac-tint); }
.pillar__num { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--fg-3); }
.pillar__icon { width: 54px; height: 54px; border-radius: var(--card-radius-sm); display: grid; place-items: center; background: var(--os-white); color: var(--os-ink); margin-top: 18px; }
.pillar__title { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: calc(var(--text-2xl) * var(--type-scale)); letter-spacing: -0.02em; margin: 0 0 10px; line-height: 1.05; }
.pillar__body { margin: 0; color: var(--fg-2); font-size: calc(var(--text-base) * var(--body-scale)); }

/* ============================================================
   SERVICES — alternating rounded rows
   ============================================================ */
.services { display: flex; flex-direction: column; gap: var(--space-3); }
.svc {
  display: grid;
  grid-template-columns: 80px 1.4fr 1fr auto;
  align-items: center;
  gap: var(--space-8);
  padding: clamp(24px, 2.4vw, 40px) clamp(28px, 2.8vw, 52px);
  border-radius: var(--card-radius-sm);
  background: var(--os-white);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
  transition: background var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.svc:hover { background: var(--os-ink); transform: translateX(10px); box-shadow: var(--shadow-md); }
.svc:hover .svc__num, .svc:hover .svc__title { color: var(--os-bone); }
.svc:hover .svc__desc { color: color-mix(in srgb, var(--os-bone) 75%, transparent); }
.svc:hover .svc__go { background: var(--os-cyan); color: var(--os-ink); border-color: var(--os-cyan); }
.svc__num { font-family: var(--font-mono); font-size: var(--text-lg); color: var(--fg-3); transition: color var(--dur-base) var(--ease-out); }
.svc__title { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: calc(clamp(22px, 2.2vw, 34px) * var(--type-scale)); letter-spacing: -0.02em; margin: 0; transition: color var(--dur-base) var(--ease-out); }
.svc__desc { margin: 0; color: var(--fg-2); font-size: calc(var(--text-base) * var(--body-scale)); transition: color var(--dur-base) var(--ease-out); }
.svc__go { width: 52px; height: 52px; border-radius: var(--btn-radius); display: grid; place-items: center; border: 1px solid var(--border-strong); flex-shrink: 0; transition: all var(--dur-base) var(--ease-out); }
.svc:hover .svc__go .btn__arrow { transform: translate(3px, -3px); }

/* ---------- Full-bleed tonal band (breaks up the white) ---------- */
.band {
  position: relative;
  background: var(--os-bone);
}
.band::before, .band::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--border-subtle);
}
.band::before { top: 0; }
.band::after { bottom: 0; }

/* ============================================================
   CLIENTS / TESTIMONIALS
   ============================================================ */
.clients-marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-16);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.clients-track {
  display: flex;
  width: max-content;
  gap: var(--space-4);
  animation: marquee 38s linear infinite;
}
.clients-marquee:hover .clients-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .clients-track { animation: none; } }
.client-logo {
  flex: 0 0 auto;
  width: clamp(180px, 16vw, 230px);
  height: 104px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius-sm);
  background: var(--os-white);
  box-shadow: var(--shadow-xs);
  color: var(--os-ink-50);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
  transition: color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.client-logo:hover { color: var(--os-ink); border-color: var(--border-default); }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); align-items: stretch; }
.tcard {
  border-radius: var(--card-radius-sm);
  padding: clamp(30px, 2.6vw, 44px);
  background: var(--os-white);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tcard__stars { display: flex; gap: 3px; color: var(--os-ink); }
.tcard__quote { margin: 0; font-size: calc(var(--text-lg) * var(--body-scale)); line-height: var(--lh-normal); color: var(--fg-1); flex: 1; }
.tcard__person { display: flex; align-items: center; gap: 14px; }
.tcard__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--os-ink-08); display: grid; place-items: center; color: var(--os-ink-50); font-weight: var(--fw-bold); font-family: var(--font-display); flex-shrink: 0; }
.tcard__name { font-weight: var(--fw-semibold); color: var(--fg-1); font-size: var(--text-base); }
.tcard__role { color: var(--fg-3); font-size: var(--text-sm); }

/* ============================================================
   BRANDS / WEBSHOP PORTFOLIO  (Avada-style portfolio cards)
   ============================================================ */
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6) var(--space-4); align-items: stretch; }
.brand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.brand-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--os-bone);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.brand-card:hover .brand-card__media { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.brand-card__media image-slot { width: 100%; height: 100%; }
.brand-card__media .brand-card__wash { position: absolute; inset: 0; z-index: 0; }
.wash--cyan { background: radial-gradient(120% 120% at 75% 18%, var(--os-cyan-tint) 0%, var(--os-cyan) 120%); }
.wash--sand { background: radial-gradient(120% 120% at 75% 18%, var(--os-sand-tint) 0%, var(--os-sand) 120%); }
.wash--lilac { background: radial-gradient(120% 120% at 75% 18%, var(--os-lilac-tint) 0%, var(--os-lilac) 120%); }
.wash--bss  { background: radial-gradient(120% 120% at 75% 18%, #CADF80 0%, #95C014 120%); }
.wash--ee   { background: radial-gradient(120% 120% at 75% 18%, #99C3D7 0%, #01689C 120%); }
.wash--ss   { background: radial-gradient(120% 120% at 75% 18%, #EFAEAD 0%, #D63533 120%); }
.wash--ergo { background: radial-gradient(120% 120% at 75% 18%, #B3B3B4 0%, #414142 120%); }
.wash--rw   { background: radial-gradient(120% 120% at 75% 18%, #9DFBC9 0%, #0AF477 120%); }
.wash--wh   { background: radial-gradient(120% 120% at 75% 18%, #F0AEFF 0%, #DA34FF 120%); }






.brand-card__media-note {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: var(--text-xs);
  color: var(--os-ink-70);
  pointer-events: none;
}
.brand-card__media image-slot[data-filled] ~ .brand-card__media-note,
.brand-card__media:has(image-slot[data-filled]) .brand-card__wash { display: none; }
.brand-card__body { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-4); }
.brand-logo {
  /* monochrome wordmark placeholder — single ink tone, swap for real logos */
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: calc(var(--text-xl) * var(--type-scale));
  letter-spacing: -0.02em;
  color: var(--os-ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo__glyph { width: 34px; height: 34px; border-radius: 9px; background: var(--os-ink); display: grid; place-items: center; color: var(--os-bone); font-size: 16px; font-weight: var(--fw-bold); flex-shrink: 0; }
.brand-card__desc { margin: 4px 0 0; color: var(--fg-2); font-size: calc(var(--text-base) * var(--body-scale)); }
.brand-card__go {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--btn-radius);
  display: grid; place-items: center;
  border: 1px solid var(--border-strong);
  color: var(--os-ink);
  transition: all var(--dur-base) var(--ease-out);
}
.brand-card:hover .brand-card__go { background: var(--os-ink); color: var(--os-bone); border-color: var(--os-ink); }
.brand-card:hover .brand-card__go .btn__arrow { transform: translate(3px,-3px); }
.brand-ph-note { margin-top: var(--space-10); display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: var(--btn-radius); background: var(--os-ink-08); color: var(--fg-3); font-size: var(--text-sm); }

/* ============================================================
   CONTACT CTA
   ============================================================ */
.cta-card { background: var(--os-ink); color: var(--os-bone); border-radius: var(--card-radius); padding: clamp(44px, 5.5vw, 100px); position: relative; overflow: hidden; }
.cta-card__inner { position: relative; z-index: 2; max-width: 22ch; }
.cta-card__title { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: calc(clamp(38px, 5.4vw, 84px) * var(--type-scale)); line-height: 0.98; letter-spacing: -0.03em; margin: 0 0 var(--space-8); color: var(--os-white); text-wrap: balance; }
.cta-card__lead { margin: 0 0 var(--space-10); font-size: calc(var(--text-lg) * var(--body-scale)); color: color-mix(in srgb, var(--os-bone) 78%, transparent); max-width: 42ch; }
.cta-card__shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.cta-blob { position: absolute; border-radius: var(--radius-pill); }
.cta-blob--1 { width: 320px; height: 320px; border-radius: 50%; right: -60px; top: -90px; background: radial-gradient(circle at 35% 30%, color-mix(in srgb, var(--os-cyan) 55%, transparent) 0%, transparent 70%); }
.cta-blob--2 { width: 260px; height: 130px; border-radius: var(--radius-pill); right: 8%; bottom: 12%; background: linear-gradient(180deg, var(--os-lilac) 0%, #C58FD6 100%); opacity: .85; }
.cta-blob--3 { width: 150px; height: 150px; border-radius: 50%; right: 30%; bottom: -50px; background: linear-gradient(180deg, var(--os-sand) 0%, #E8BE5E 100%); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { padding-block: var(--space-16) var(--space-10); border-top: 1px solid var(--border-subtle); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--space-10); padding-bottom: var(--space-16); }
.footer-brand__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-xl); letter-spacing: -0.02em; display: flex; align-items: center; gap: 12px; margin-bottom: var(--space-5); }
.footer-brand p { margin: 0; max-width: 36ch; color: var(--fg-2); }
.footer-col h4 { font-size: var(--text-sm); text-transform: uppercase; letter-spacing: var(--tracking-eyebrow); color: var(--fg-3); margin: 0 0 var(--space-5); font-weight: var(--fw-semibold); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--fg-2); transition: color var(--dur-fast) var(--ease-out); }
.footer-col a:hover { color: var(--fg-1); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap; padding-top: var(--space-8); border-top: 1px solid var(--border-subtle); color: var(--fg-3); font-size: var(--text-sm); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .feature__grid { grid-template-columns: 1fr; }
  .feature__panel { min-height: 440px; }
  .feature__art { min-height: 400px; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-media { min-height: 280px; }
  .sec-head { grid-template-columns: 1fr; gap: var(--space-6); }
  .pillars { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-logos { grid-template-columns: repeat(3, 1fr); }
  .svc { grid-template-columns: 60px 1fr auto; }
  .svc__desc { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .shell { width: calc(100% - 32px); }
  .nav__links { display: none; }
  .brand-grid { grid-template-columns: 1fr; }
  .clients-logos { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .wordrow { grid-template-columns: 1fr; gap: 2px; }
  .wordrow__tag { font-size: 10px; }
  .svc { grid-template-columns: 1fr auto; }
  .svc__num { display: none; }
}


/* ── OS header/footer ── */


:root {
  --os-ink:#061B1E;--os-cyan:#A4F9FF;--os-sand:#FEE1A3;--os-lilac:#EAC3F4;--os-bone:#F5F5F0;
  --os-cyan-tint:#E6FCFE;--os-white:#FFFFFF;--os-ink-08:#ECEEEE;--os-ink-15:#D9DCDD;
  --os-ink-30:#B0B7B8;--os-ink-50:#7B8688;--os-ink-70:#4B5A5D;
  --os-font-display:"Sora",ui-sans-serif,system-ui,sans-serif;
  --os-font-body:"Noto Sans",ui-sans-serif,system-ui,sans-serif;
  --os-ease-out:cubic-bezier(0.22,1,0.36,1);--os-dur-fast:140ms;--os-dur-base:220ms;--os-btn-radius:12px;
}
body{margin:0;}
.os-scroll-progress{position:fixed;top:0;left:0;height:3px;width:0%;z-index:99999;background:linear-gradient(90deg,var(--os-cyan),var(--os-lilac));transition:width .08s linear;pointer-events:none;}
.os-site-header{position:sticky;top:0;z-index:9000;background:rgba(255,255,255,.88);backdrop-filter:blur(16px) saturate(1.1);-webkit-backdrop-filter:blur(16px) saturate(1.1);border-bottom:1px solid transparent;transition:border-color var(--os-dur-base) var(--os-ease-out),background var(--os-dur-base) var(--os-ease-out);}
.os-site-header.is-stuck{background:rgba(255,255,255,.96);border-bottom-color:var(--os-ink-08);box-shadow:0 1px 0 0 var(--os-ink-08);}
.admin-bar .os-site-header{top:32px;}
@media screen and (max-width:782px){.admin-bar .os-site-header{top:46px;}}
.os-shell{width:min(100% - 48px,1320px);margin-inline:auto;}
.os-nav{display:flex;align-items:center;justify-content:space-between;gap:32px;height:80px;}
.os-brand{display:flex;align-items:center;gap:12px;text-decoration:none;flex-shrink:0;}
.os-brand__mark{width:32px;height:32px;display:block;}
.os-brand__name{font-family:var(--os-font-display);font-weight:700;font-size:20px;letter-spacing:-0.02em;color:var(--os-ink);}
.os-nav__links{display:flex;align-items:center;gap:clamp(18px,2.2vw,40px);list-style:none;margin:0;padding:0;flex:1;justify-content:center;}
.os-nav__links li{list-style:none;margin:0;padding:0;}
.os-nav__links a,.os-nav__link{font-family:var(--os-font-body);font-weight:500;font-size:16px;color:var(--os-ink-70);text-decoration:none;position:relative;padding-block:6px;transition:color var(--os-dur-fast) var(--os-ease-out);white-space:nowrap;display:block;}
.os-nav__links a::after,.os-nav__link::after{content:"";position:absolute;left:0;right:100%;bottom:0;height:2px;background:var(--os-ink);transition:right var(--os-dur-base) var(--os-ease-out);}
.os-nav__links a:hover,.os-nav__link:hover{color:var(--os-ink);}
.os-nav__links a:hover::after,.os-nav__link:hover::after{right:0;}
.os-nav__right{display:flex;align-items:center;gap:20px;flex-shrink:0;}
.os-lang{display:flex;align-items:center;gap:6px;font-family:var(--os-font-body);font-weight:600;font-size:14px;color:var(--os-ink-70);cursor:pointer;padding:8px 12px;border:1px solid var(--os-ink-15);border-radius:999px;background:transparent;transition:background var(--os-dur-fast) var(--os-ease-out);white-space:nowrap;}
.os-lang:hover{background:var(--os-ink-08);}
.os-btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;font-family:var(--os-font-body);font-weight:600;font-size:16px;line-height:1;padding:16px 28px;border-radius:var(--os-btn-radius);border:1px solid transparent;cursor:pointer;text-decoration:none;transition:transform var(--os-dur-fast) var(--os-ease-out),background var(--os-dur-base) var(--os-ease-out),box-shadow var(--os-dur-base) var(--os-ease-out);}
.os-btn:active{transform:translateY(1px);}
.os-btn--accent{background:var(--os-cyan);color:var(--os-ink);}
.os-btn--accent:hover{box-shadow:0 8px 20px -6px rgba(164,249,255,.7);transform:translateY(-2px);}
.os-nav__burger{display:none;background:none;border:none;padding:8px;cursor:pointer;color:var(--os-ink);}
.os-nav-overlay{display:none;position:fixed;inset:0;z-index:98999;background:var(--os-ink);padding:100px 32px 48px;flex-direction:column;gap:4px;overflow-y:auto;}
.os-nav-overlay.is-open{display:flex;}
.os-nav-overlay a{font-family:var(--os-font-display);font-weight:700;font-size:clamp(26px,7vw,44px);color:rgba(245,245,240,.9);text-decoration:none;padding:14px 0;border-bottom:1px solid rgba(255,255,255,.08);transition:color var(--os-dur-fast) var(--os-ease-out);}
.os-nav-overlay a:hover{color:var(--os-cyan);}
.os-nav-overlay__close{position:absolute;top:22px;right:22px;background:none;border:none;cursor:pointer;color:rgba(245,245,240,.7);padding:8px;border-radius:8px;transition:background var(--os-dur-fast);}
.os-nav-overlay__close:hover{background:rgba(255,255,255,.1);}
.os-site-footer{background:var(--os-white);padding-block:64px 40px;border-top:1px solid var(--os-ink-08);font-family:var(--os-font-body);}
.os-footer-inner{width:min(100% - 48px,1320px);margin-inline:auto;}
.os-footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:40px;padding-bottom:64px;}
.os-footer-brand__name{font-family:var(--os-font-display);font-weight:700;font-size:20px;letter-spacing:-0.02em;display:flex;align-items:center;gap:12px;margin-bottom:20px;color:var(--os-ink);}
.os-footer-brand__name img{width:32px;height:32px;}
.os-footer-brand p{margin:0;max-width:36ch;color:var(--os-ink-70);font-size:15px;line-height:1.65;}
.os-footer-col h4{font-family:var(--os-font-body);font-size:11px;text-transform:uppercase;letter-spacing:0.12em;color:var(--os-ink-50);margin:0 0 20px;font-weight:600;}
.os-footer-col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:12px;}
.os-footer-col a{color:var(--os-ink-70);text-decoration:none;font-size:15px;transition:color var(--os-dur-fast) var(--os-ease-out);}
.os-footer-col a:hover{color:var(--os-ink);}
.os-footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;padding-top:32px;border-top:1px solid var(--os-ink-08);color:var(--os-ink-50);font-size:13px;}
@media(max-width:1080px){.os-footer-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:680px){.os-shell{width:calc(100% - 32px);}.os-nav__links{display:none!important;}.os-nav__right .os-lang{display:none;}.os-nav__burger{display:block;}.os-nav{gap:8px;}.os-brand__name{display:none;}.os-nav__right{margin-left:auto;}.os-btn.os-btn--accent{padding:10px 18px;font-size:14px;}.os-footer-inner{width:calc(100% - 32px);}.os-footer-grid{grid-template-columns:1fr;gap:32px;}.os-footer-bottom{flex-direction:column;align-items:flex-start;gap:8px;}}


/* ── Elementor wrapper resets ── */


/* ============================================================
   Elementor wrapper resets — ensure HTML sections render
   at full width with zero Elementor-imposed padding
   ============================================================ */
.elementor-section.elementor-section-stretched > .elementor-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.elementor-section.elementor-section-stretched .elementor-column-gap-no > .elementor-column > .elementor-widget-wrap {
  padding: 0 !important;
}
.elementor-widget-html .elementor-widget-container {
  padding: 0 !important;
  line-height: 0;  /* prevents phantom spacing under block elements */
}
.elementor-widget-html .elementor-widget-container > * {
  line-height: initial;
}
/* Prevent Elementor from adding top margin on first section */
.elementor-top-section:first-child { margin-top: 0 !important; }


/* ============================================================
   Reveal fallback for Elementor pages
   On elementor-page, show elements immediately; JS will
   re-initialise the IntersectionObserver for the animation.
   ============================================================ */
.elementor-page .reveal {
  opacity: 1;
  transform: none;
}
.elementor-page .reveal.animating {
  opacity: 0;
  transform: translateY(26px);
}

/* lang-pill-override */
button.os-lang,
.os-nav .os-lang,
.os-site-header .os-lang {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 8px 14px !important;
  font-family: var(--os-font-body, "Noto Sans", sans-serif) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  color: #4B5A5D !important;
  background: transparent !important;
  border: 1.5px solid #D9DCDD !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: background 140ms ease !important;
}
button.os-lang:hover,
.os-nav .os-lang:hover,
.os-site-header .os-lang:hover {
  background: #ECEEEE !important;
  color: #061B1E !important;
}

/* hero-spacing */
.hero-banner__inner {
  padding-block: clamp(32px, 4vw, 55px);
}

/* btn-hover-fix */
a.btn--ink,        .btn--ink        { color: #F5F5F0 !important; }
a.btn--ink:hover,  .btn--ink:hover  { color: #F5F5F0 !important; }
a.btn--on-ink,     .btn--on-ink     { color: #061B1E !important; }
a.btn--on-ink:hover, .btn--on-ink:hover { color: #061B1E !important; }
a.btn--accent,     .btn--accent     { color: #061B1E !important; }
a.btn--accent:hover, .btn--accent:hover { color: #061B1E !important; }
a.btn--ghost,      .btn--ghost      { color: #061B1E !important; }
a.btn--ghost:hover,.btn--ghost:hover{ color: #F5F5F0 !important; }

/* link-color-fix — lock every <a>-based design component to its original colour */

/* Service rows */
a.svc                  { color: inherit !important; text-decoration: none !important; }
a.svc .svc__num        { color: #7B8688 !important; }
a.svc .svc__title      { color: #061B1E !important; }
a.svc .svc__desc       { color: #4B5A5D !important; }
a.svc:hover            { color: inherit !important; }
a.svc:hover .svc__num,
a.svc:hover .svc__title { color: #F5F5F0 !important; }
a.svc:hover .svc__desc  { color: rgba(245,245,240,.75) !important; }

/* Brand cards */
a.brand-card           { color: inherit !important; text-decoration: none !important; }
a.brand-card:hover     { color: inherit !important; }
a.brand-card .brand-logo       { color: #061B1E !important; }
a.brand-card .brand-card__desc { color: #4B5A5D !important; }

/* Header nav links */
.os-nav__links a,
a.os-nav__link         { color: #4B5A5D !important; text-decoration: none !important; }
.os-nav__links a:hover,
a.os-nav__link:hover   { color: #061B1E !important; }

/* Footer links */
.os-footer-col a       { color: #4B5A5D !important; text-decoration: none !important; }
.os-footer-col a:hover { color: #061B1E !important; }

/* Header brand link */
a.os-brand             { color: inherit !important; text-decoration: none !important; }

/* brand-logo-img */
.brand-logo-img {
  display: block;
  max-height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 4px;
}
/* brand-card media logo */
.brand-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-img {
  position: relative;
  z-index: 1;
  max-height: 48px;
  width: auto;
  max-width: 65%;
  object-fit: contain;
}

/* brand-logo-sizes */
.brand-logo-img[src*="bureaustoelshop"] { max-height: 80px !important; }
.brand-logo-img[src*="easy-ergonomics"] { max-height: 22px !important; }
.brand-logo-img[src*="smartsit"]        { max-height: 36px !important; }
.brand-logo-img[src*="ergosupply"]      { max-height: 48px !important; }
.brand-logo-img[src*="rewave"]          { max-height: 38px !important; }
.brand-logo-img[src*="whire"]           { max-height: 80px !important; }

/* Portfolio section — tighter vertical rhythm */
#brands { padding-block: clamp(40px, 5vw, 80px); }

/* Footer company address */
.os-footer-address {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--os-ink-08, rgba(6,27,30,0.08));
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
  color: var(--os-ink-70, #4B5A5D);
}
.os-footer-address span { display: block; }

.os-footer-legal { display:flex; gap:20px; }
.os-footer-legal a { color:var(--os-ink-50,rgba(6,27,30,.5)); font-size:13px; text-decoration:none; transition:color .2s; }
.os-footer-legal a:hover { color:var(--os-ink,#061B1E); }

/* Brand card: gray default, brand color on hover */
.brand-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #F5F5F0;
  transition: opacity 0.35s ease;
}
.brand-card:hover .brand-card__media::after { opacity: 0; }
.brand-logo-img { position: relative; z-index: 2; }

.tcard__stars { color: var(--os-sand, #FEE1A3); }

/* Language button — hidden until feature is active; remove this rule to re-enable */
.os-lang { display: none !important; }

/* ---- Cookie banner ---- */
.os-cookie{
  position:fixed;bottom:0;left:0;right:0;z-index:99999;
  background:#061B1E;
  border-top:1px solid rgba(164,249,255,0.12);
  padding:16px clamp(16px,4vw,48px);
  transform:translateY(0);
  transition:transform .4s cubic-bezier(.22,1,.36,1),opacity .4s ease;
}
.os-cookie--hide{transform:translateY(110%);opacity:0;}
.os-cookie__inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:24px;flex-wrap:wrap;
  max-width:1320px;margin:0 auto;
}
.os-cookie__text{
  font-family:'Noto Sans',sans-serif;font-size:14px;
  line-height:1.5;color:rgba(245,245,240,0.75);
  max-width:60ch;
}
.os-cookie__text strong{color:#F5F5F0;font-weight:600;}
.os-cookie__text a{color:#A4F9FF;text-underline-offset:3px;}
.os-cookie__text a:hover{opacity:.8;}
.os-cookie__actions{display:flex;align-items:center;gap:12px;flex-shrink:0;}
.os-cookie__accept{
  font-family:'Sora',sans-serif;font-size:13px;font-weight:600;
  background:#A4F9FF;color:#061B1E;
  border:none;border-radius:8px;padding:9px 20px;
  cursor:pointer;letter-spacing:.01em;
  transition:opacity .2s;
}
.os-cookie__accept:hover{opacity:.85;}
.os-cookie__decline{
  font-family:'Noto Sans',sans-serif;font-size:13px;
  background:none;border:none;
  color:#A4F9FF;
  cursor:pointer;padding:9px 4px;
  text-decoration:underline;text-underline-offset:3px;
  transition:opacity .2s;
}
.os-cookie__decline:hover{opacity:.7;}
@media(max-width:600px){
  .os-cookie__inner{flex-direction:column;align-items:flex-start;gap:14px;}
  .os-cookie__actions{width:100%;}
  .os-cookie__accept{flex:1;text-align:center;}
}
