/* site/site.css — ENGAGE homepage styles */
/* === colors_and_type.css inlined === */
/* ================================================================
   ENGAGE Business Events — Colors & Type
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* --------------------------------------------------------------
     BRAND COLORS (from official brand guidelines)
     -------------------------------------------------------------- */
  --engage-black:     #030304;   /* Primary brand black */
  --engage-orange:    #E4361D;   /* Signature orange — the "dot" */
  --engage-offwhite:  #F9F7D8;   /* Warm cream / off-white background */
  --engage-yellow:    #F7E356;   /* Accent yellow */
  --engage-white:     #FFFFFF;

  /* --------------------------------------------------------------
     EXTENDED NEUTRALS (derived for UI use)
     -------------------------------------------------------------- */
  --ink-900: #030304;
  --ink-800: #14141a;
  --ink-700: #2a2a32;
  --ink-600: #4a4a52;
  --ink-500: #6e6e76;
  --ink-400: #9a9aa2;
  --ink-300: #c4c4ca;
  --ink-200: #e4e4e0;
  --ink-100: #efeee5;
  --ink-50:  #f9f7d8;  /* = offwhite */

  /* --------------------------------------------------------------
     ORANGE SCALE (for hovers, tints, backgrounds)
     -------------------------------------------------------------- */
  --orange-900: #7a1d0e;
  --orange-700: #b82815;
  --orange-600: #d02f18;
  --orange-500: #E4361D;  /* brand */
  --orange-400: #eb5a45;
  --orange-300: #f4907f;
  --orange-200: #fac5ba;
  --orange-100: #fde5e0;

  /* --------------------------------------------------------------
     SEMANTIC COLORS
     -------------------------------------------------------------- */
  --bg:            var(--engage-offwhite);
  --bg-alt:        #ffffff;
  --bg-inverse:    var(--engage-black);
  --bg-accent:     var(--engage-orange);
  --bg-yellow:     var(--engage-yellow);

  --fg:            var(--engage-black);
  --fg-muted:      var(--ink-600);
  --fg-subtle:     var(--ink-500);
  --fg-on-dark:    var(--engage-offwhite);
  --fg-on-accent:  var(--engage-offwhite);
  --fg-accent:     var(--engage-orange);

  --border:        rgba(3, 3, 4, 0.12);
  --border-strong: rgba(3, 3, 4, 0.24);
  --border-dark:   rgba(249, 247, 216, 0.16);

  /* --------------------------------------------------------------
     TYPOGRAPHY — Poppins, single-family system
     -------------------------------------------------------------- */
  --font-display: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', 'Menlo', 'Consolas', monospace;

  /* Weights */
  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-black:    900;

  /* Fluid type scale — display feels large, confident, Stripe/Linear-clean */
  --fs-display-xl: clamp(64px, 10vw, 160px);
  --fs-display-lg: clamp(48px, 7vw, 104px);
  --fs-display-md: clamp(40px, 5vw, 72px);
  --fs-h1:         clamp(36px, 4vw, 56px);
  --fs-h2:         clamp(28px, 3vw, 40px);
  --fs-h3:         24px;
  --fs-h4:         20px;
  --fs-body:       16px;
  --fs-body-lg:    18px;
  --fs-small:      14px;
  --fs-tiny:       12px;
  --fs-eyebrow:    12px;

  /* Line heights */
  --lh-tight:   0.95;
  --lh-heading: 1.08;
  --lh-snug:    1.2;
  --lh-body:    1.55;
  --lh-loose:   1.75;

  /* Letter spacing */
  --ls-display: -0.03em;
  --ls-heading: -0.02em;
  --ls-body:    0;
  --ls-eyebrow: 0.12em;
  --ls-button:  0.04em;

  /* --------------------------------------------------------------
     SPACING (4px base)
     -------------------------------------------------------------- */
  --space-0:  0;
  --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;

  /* --------------------------------------------------------------
     RADII — minimal rounding; brand is boxy + bold
     -------------------------------------------------------------- */
  --radius-0:   0;
  --radius-xs:  2px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;
  --radius-pill: 999px;
  --radius-dot:  50%;

  /* --------------------------------------------------------------
     SHADOWS — restrained; not heavy
     -------------------------------------------------------------- */
  --shadow-xs: 0 1px 2px rgba(3, 3, 4, 0.06);
  --shadow-sm: 0 2px 6px rgba(3, 3, 4, 0.08);
  --shadow-md: 0 8px 24px rgba(3, 3, 4, 0.10);
  --shadow-lg: 0 20px 48px rgba(3, 3, 4, 0.14);
  --shadow-focus: 0 0 0 3px rgba(228, 54, 29, 0.35);

  /* --------------------------------------------------------------
     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;
}

/* ================================================================
   BASE TYPE STYLES
   ================================================================ */

html, body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Display — huge, wide, confident. Logo-echoing. */
.display-xl,
.display-lg,
.display-md {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  color: var(--fg);
  text-wrap: balance;
}
.display-xl { font-size: var(--fs-display-xl); }
.display-lg { font-size: var(--fs-display-lg); }
.display-md { font-size: var(--fs-display-md); }

h1, .h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  text-wrap: balance;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  text-wrap: balance;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-heading);
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
}

p, .body {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--fg);
  text-wrap: pretty;
}
.body-lg { font-size: var(--fs-body-lg); line-height: var(--lh-body); }
.small   { font-size: var(--fs-small);   line-height: var(--lh-body); }
.tiny    { font-size: var(--fs-tiny);    line-height: var(--lh-snug); }

.eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  color: var(--fg-muted);
}

.code, code, pre {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--ink-100);
  padding: 0.1em 0.35em;
  border-radius: var(--radius-xs);
}

/* The signature ENGAGE period — a real period glyph, recolored orange.
   Use by wrapping the trailing period of a headline / tagline / wordmark.
   Do NOT draw a round <span>; use the actual "." character. */
.engage-period {
  color: var(--engage-orange);
  font-weight: 900;
}
/* Legacy alias — keep .engage-dot usable but render it as an inherited-size
   bolded orange period, not a round dot. */
.engage-dot {
  color: var(--engage-orange);
  font-weight: 900;
}
.engage-dot::before { content: "."; }

/* === end colors_and_type.css === */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* ---------- Shared primitives ---------- */
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.eyebrow-row { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted); }
.eyebrow-row .bar { width: 48px; height: 1px; background: currentColor; opacity: 0.4; }
.eyebrow-row .period { color: var(--engage-orange); font-weight: 900; }

.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: 0.01em; padding: 14px 22px; border-radius: 8px; text-decoration: none; border: none; cursor: pointer; transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast); }
.btn-primary { background: var(--engage-orange); color: #fff; }
.btn-primary:hover { background: var(--orange-600); }
.btn-ghost { background: transparent; color: inherit; border: 1.5px solid currentColor; }
.btn-ghost:hover { background: currentColor; color: var(--engage-offwhite); }
.btn-arrow { font-size: 18px; line-height: 1; }

/* ---------- Nav ---------- */
.site-nav { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; gap: 48px; padding: 20px 48px; background: rgba(249,247,216,0.82); backdrop-filter: saturate(1.2) blur(12px); -webkit-backdrop-filter: saturate(1.2) blur(12px); border-bottom: 1px solid var(--border); }
.site-nav.dark { background: rgba(3,3,4,0.82); color: var(--engage-offwhite); border-bottom: 1px solid var(--border-dark); }
.site-nav .logo img { height: 30px; display: block; }
.site-nav .links { display: flex; gap: 28px; font-family: var(--font-display); font-weight: 500; font-size: 14px; }
.site-nav .links a { color: inherit; text-decoration: none; opacity: 0.85; transition: opacity var(--dur-fast); }
.site-nav .links a:hover { opacity: 1; }
.site-nav .links a.active { opacity: 1; border-bottom: 2px solid var(--engage-orange); padding-bottom: 2px; }
.site-nav .spacer { flex: 1; }

/* ---------- Page frame (per-direction artboard) ---------- */
.page { position: relative; overflow: hidden; background: var(--engage-offwhite); color: var(--engage-black); }
.page.dark { background: var(--engage-black); color: var(--engage-offwhite); }

/* ---------- Hero — Safe direction ---------- */
.hero-safe { position: relative; padding: 96px 0 120px; }
.hero-safe .grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.hero-safe h1 { font-family: var(--font-display); font-weight: 900; font-size: 88px; line-height: 0.96; letter-spacing: -0.035em; margin: 24px 0 28px; text-wrap: balance; }
.hero-safe h1 .period { color: var(--engage-orange); }
.hero-safe p.lead { font-size: 20px; line-height: 1.5; color: var(--fg-muted); max-width: 540px; margin: 0 0 36px; }
.hero-safe .ctas { display: flex; gap: 14px; align-items: center; }
.hero-safe .video-tile { position: relative; aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; background: #1a1a1a; box-shadow: var(--shadow-lg); }
.hero-safe .video-tile video, .hero-safe .video-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-safe .video-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.35)); pointer-events: none; }
.hero-safe .caption { position: absolute; left: 22px; bottom: 22px; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; }
.hero-safe .caption .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--engage-orange); box-shadow: 0 0 0 4px rgba(228,54,29,0.25); }

/* ---------- Hero — Bold direction ---------- */
.hero-bold { position: relative; padding: 140px 0 120px; background: var(--engage-black); color: var(--engage-offwhite); }
.hero-bold::after { content: ""; position: absolute; right: -20%; top: -30%; width: 70%; height: 140%; background: radial-gradient(closest-side, rgba(228,54,29,0.22), transparent 70%); pointer-events: none; }
.hero-bold .eyebrow-row { color: rgba(249,247,216,0.7); }
.hero-bold h1 { font-family: var(--font-display); font-weight: 900; font-size: 168px; line-height: 0.88; letter-spacing: -0.045em; margin: 32px 0 40px; text-wrap: balance; position: relative; z-index: 2; }
.hero-bold h1 .period { color: var(--engage-orange); }
.hero-bold .sub { font-size: 24px; line-height: 1.4; color: rgba(249,247,216,0.72); max-width: 620px; margin: 0 0 48px; position: relative; z-index: 2; }
.hero-bold .hero-row { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; position: relative; z-index: 2; }
.hero-bold .video-panel { position: relative; width: 360px; aspect-ratio: 16/10; border-radius: 10px; overflow: hidden; background: #111; box-shadow: 0 40px 80px rgba(0,0,0,0.6); }
.hero-bold .video-panel video, .hero-bold .video-panel img { width: 100%; height: 100%; object-fit: cover; }
.hero-bold .stats { display: flex; gap: 64px; margin-top: 96px; padding-top: 40px; border-top: 1px solid rgba(249,247,216,0.12); }
.hero-bold .stat .num { font-family: var(--font-display); font-weight: 900; font-size: 72px; line-height: 1; letter-spacing: -0.03em; }
.hero-bold .stat .num .unit { color: var(--engage-orange); }
.hero-bold .stat .lbl { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(249,247,216,0.6); margin-top: 8px; }

/* ---------- Hero — Creative direction ---------- */
.hero-creative { position: relative; padding: 100px 0 0; background: var(--engage-offwhite); overflow: hidden; }
.hero-creative .marquee-stack { display: flex; flex-direction: column; gap: 4px; }
.hero-creative .marquee-row { overflow: hidden; white-space: nowrap; font-family: var(--font-display); font-weight: 900; font-size: 148px; line-height: 1; letter-spacing: -0.04em; }
.hero-creative .marquee-row.invert { background: var(--engage-black); color: var(--engage-offwhite); padding: 18px 0; }
.hero-creative .marquee-track { display: inline-flex; gap: 48px; padding-left: 48px; animation: marquee 38s linear infinite; }
.hero-creative .marquee-row.reverse .marquee-track { animation-direction: reverse; }
.hero-creative .marquee-track .period { color: var(--engage-orange); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.hero-creative .below { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; padding: 80px 0 100px; }
.hero-creative .tagline { font-family: var(--font-display); font-weight: 600; font-size: 40px; line-height: 1.1; letter-spacing: -0.02em; max-width: 620px; }
.hero-creative .tagline .hilite { background: linear-gradient(180deg, transparent 58%, var(--engage-yellow) 58%); padding: 0 2px; }
.hero-creative .video-wrap { position: relative; aspect-ratio: 5/4; border-radius: 8px; overflow: hidden; background: #111; }
.hero-creative .video-wrap video, .hero-creative .video-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-creative .ctas { display: flex; gap: 16px; margin-top: 32px; align-items: center; }

/* ---------- Services (homepage 3-up category portals — tall feature cards) ---------- */
.services { padding: 120px 0; background: var(--engage-black); color: var(--engage-offwhite); border-top: 3px solid var(--engage-orange); }
.services.dark { background: var(--engage-black); color: var(--engage-offwhite); }
.services-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: end; margin-bottom: 60px; color: var(--engage-offwhite); }
.services h2 { font-family: var(--font-display); font-weight: 800; font-size: 64px; line-height: 0.98; letter-spacing: -0.03em; margin: 16px 0 0; text-wrap: balance; color: var(--engage-offwhite); }
.services h2 .period { color: var(--engage-orange); }
.services .intro { font-size: 19px; line-height: 1.55; color: rgba(249,247,216,0.92); max-width: 540px; justify-self: end; }
.services .eyebrow-row { color: var(--engage-yellow); opacity: 0.95; }
.services .eyebrow-row .bar { background: var(--engage-yellow); opacity: 0.6; }
.services-accordion { display: none; }
.services-panel-desktop { display: block; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; border-radius: 16px; overflow: hidden; background: #101015; border: 1.5px solid rgba(249,247,216,0.1); display: flex; flex-direction: column; min-height: 560px; text-decoration: none; color: var(--engage-offwhite); cursor: pointer; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base), border-color var(--dur-base); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); border-color: rgba(249,247,216,0.25); }
.service-card.active { border-color: var(--engage-orange); box-shadow: 0 24px 60px rgba(228,54,29,0.3); transform: translateY(-4px); }
.service-card.active::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px; background: var(--engage-orange); z-index: 3; }
.services.dark .service-card { background: #101015; border-color: rgba(249,247,216,0.1); }
.service-card p { font-size: 15.5px; line-height: 1.6; color: rgba(249,247,216,0.92); margin: 0; }
.service-card .more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 24px; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--engage-orange); text-decoration: none; align-self: flex-start; }
.service-card .image { position: relative; aspect-ratio: 5/4; background: #1a1a1a; overflow: hidden; }
.service-card .image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms var(--ease-out); }
.service-card:hover .image img { transform: scale(1.04); }
.service-card .image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5)); }
.service-card .image .idx { position: absolute; top: 18px; left: 20px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: rgba(255,255,255,0.9); background: rgba(0,0,0,0.45); backdrop-filter: blur(4px); padding: 6px 10px; border-radius: 999px; z-index: 2; }
.service-card .body { padding: 32px 32px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 32px; line-height: 1.05; letter-spacing: -0.025em; margin: 0 0 14px; color: var(--engage-offwhite); }
.service-card h3 .period { color: var(--engage-orange); }
.services.dark .service-card p { color: rgba(249,247,216,0.92); }
.service-card .sub-links { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.service-card .sub-links .pill { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 999px; background: var(--ink-100); color: var(--ink-700); font-family: var(--font-display); font-size: 11px; font-weight: 500; letter-spacing: 0.04em; }
.services.dark .service-card .sub-links .pill { background: rgba(249,247,216,0.08); color: rgba(249,247,216,0.75); }
.service-card .more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 24px; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--engage-orange); text-decoration: none; align-self: flex-start; }
.service-card .more .arrow { display: inline-block; transition: transform var(--dur-base) var(--ease-out); }
.service-card:hover .more .arrow { transform: translateX(4px); }

/* ---------- Services panel (details for selected category) ---------- */
.services-panel { margin-top: 32px; padding: 48px; background: rgba(249,247,216,0.05); backdrop-filter: blur(6px); border-radius: 16px; border: 1.5px solid rgba(249,247,216,0.12); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; position: relative; }
.services-panel::before { content: ""; position: absolute; left: 48px; top: -1.5px; width: 120px; height: 4px; background: var(--engage-orange); border-radius: 0 0 4px 4px; }
.services-panel .panel-intro .panel-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--engage-orange); margin-bottom: 14px; font-weight: 600; }
.services-panel h3 { font-family: var(--font-display); font-weight: 700; font-size: 32px; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 16px; color: var(--engage-offwhite); }
.services-panel h3 .period { color: var(--engage-orange); }
.services-panel p { font-size: 17px; line-height: 1.6; color: rgba(249,247,216,0.92); max-width: 480px; margin: 0; }
.services-panel ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; border-top: 1px solid rgba(249,247,216,0.15); }
.services-panel ul li { display: grid; grid-template-columns: 36px 1fr; align-items: baseline; column-gap: 14px; font-family: var(--font-display); font-size: 16px; font-weight: 500; padding: 16px 0; border-bottom: 1px solid rgba(249,247,216,0.15); color: var(--engage-offwhite); }
.services-panel ul li .count { font-family: var(--font-display); font-weight: 600; font-size: 12px; color: var(--engage-orange); letter-spacing: 0.12em; text-align: left; }
.services-panel ul li .label { color: inherit; }

.page-mobile .services-panel { padding: 24px 20px; grid-template-columns: 1fr; gap: 20px; margin-top: 14px; border-radius: 14px; }
.page-mobile .services-panel::before { left: 20px; }
.page-mobile .services-panel h3 { font-size: 22px; margin: 0 0 10px; }
.page-mobile .services-panel p { font-size: 15px; line-height: 1.55; }
.page-mobile .services-panel .panel-intro .btn { padding: 12px 18px; font-size: 14px; margin-top: 16px !important; }
.page-mobile .services-panel ul li { padding: 12px 0; font-size: 14.5px; grid-template-columns: 30px 1fr; column-gap: 10px; }
.page-mobile .services-panel ul li .count { font-size: 11px; }

/* Mobile services tabs — compact 3-up that fits 390px */
.page-mobile .services-tabs-section { padding: 64px 0 72px; }
.page-mobile .services-tabs-head { margin-bottom: 24px; }
.page-mobile .services-tabs-head h2 { font-size: 32px; line-height: 1.05; letter-spacing: -0.02em; }
.page-mobile .services-tabs-nav { gap: 0; overflow-x: visible; display: grid; grid-template-columns: 1fr 1fr 1fr; }
.page-mobile .services-tabs-nav button { padding: 12px 6px; font-size: 12px; letter-spacing: -0.005em; line-height: 1.15; text-align: center; white-space: normal; }
.page-mobile .services-tabs-panel { grid-template-columns: 1fr; padding: 28px 0 0; gap: 20px; }
.page-mobile .services-tabs-panel h3 { font-size: 22px; letter-spacing: -0.015em; }
.page-mobile .services-tabs-panel p { font-size: 15px; line-height: 1.55; }
.page-mobile .services-tabs-panel ul li { padding: 12px 0; font-size: 14.5px; }

/* ---------- Services Tabs (from UI kit — 3 tabs with description + sub-offerings list) ---------- */
.services-tabs-section { padding: 96px 0 120px; background: var(--engage-offwhite); border-top: 1.5px solid var(--engage-black); }
.services-tabs-head { margin-bottom: 32px; max-width: 980px; }
.services-tabs-head h2 { font-family: var(--font-display); font-weight: 800; font-size: 64px; line-height: 0.98; letter-spacing: -0.03em; margin: 16px 0 0; text-wrap: balance; }
.services-tabs-head h2 .period { color: var(--engage-orange); }
.services-tabs-nav { display: flex; gap: 4px; border-bottom: 1px solid var(--border); overflow-x: auto; }
.services-tabs-nav button { font-family: var(--font-display); font-size: 14px; font-weight: 600; padding: 14px 18px; background: none; border: none; cursor: pointer; color: var(--ink-500); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; transition: color var(--dur-fast); }
.services-tabs-nav button:hover { color: var(--engage-black); }
.services-tabs-nav button.active { color: var(--engage-black); border-bottom-color: var(--engage-orange); }
.services-tabs-panel { padding: 40px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.services-tabs-panel h3 { font-family: var(--font-display); font-weight: 700; font-size: 32px; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 16px; }
.services-tabs-panel h3 .period { color: var(--engage-orange); }
.services-tabs-panel p { font-size: 17px; line-height: 1.55; color: var(--ink-700); max-width: 480px; margin: 0; }
.services-tabs-panel ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.services-tabs-panel ul li { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 16px; font-weight: 500; padding: 14px 0; border-bottom: 1px solid var(--border); }
.services-tabs-panel ul li::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--engage-orange); flex: 0 0 auto; }

/* ---------- Playbook banner (inline reuse of the banner composition) ---------- */
.playbook-section { padding: 100px 0; }
.playbook-card { position: relative; overflow: hidden; border-radius: 18px; background: var(--engage-black); color: var(--engage-offwhite); display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; min-height: 520px; }
.playbook-card::before { content: ""; position: absolute; right: -10%; top: -20%; width: 70%; height: 140%; background: radial-gradient(closest-side, rgba(228,54,29,0.22), transparent 70%); }
.playbook-card .text { position: relative; z-index: 2; padding: 64px 48px 64px 64px; display: flex; flex-direction: column; justify-content: center; }
.playbook-card .pill { align-self: flex-start; display: inline-flex; align-items: center; gap: 12px; padding: 10px 18px; border: 2px solid var(--engage-orange); border-radius: 999px; color: var(--engage-orange); font-weight: 700; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 28px; }
.playbook-card .pill .dot { width: 9px; height: 9px; background: var(--engage-orange); border-radius: 50%; }
.playbook-card h2 { font-family: var(--font-display); font-weight: 900; font-size: 56px; line-height: 0.98; letter-spacing: -0.035em; margin: 0 0 20px; text-wrap: balance; }
.playbook-card h2 .period { color: var(--engage-orange); }
.playbook-card h2 .accent { color: var(--engage-orange); }
.playbook-card .sub-h { font-family: var(--font-display); font-weight: 600; font-size: 24px; line-height: 1.15; color: rgba(249,247,216,0.78); margin: 0 0 28px; }
.playbook-card p { font-size: 17px; line-height: 1.55; color: rgba(249,247,216,0.72); max-width: 520px; margin: 0 0 36px; }
.playbook-card .form-mini { display: flex; gap: 10px; max-width: 460px; }
.playbook-card .form-mini input { flex: 1; padding: 16px 18px; font: inherit; font-size: 15px; border-radius: 8px; background: rgba(249,247,216,0.08); border: 1px solid rgba(249,247,216,0.2); color: var(--engage-offwhite); }
.playbook-card .form-mini input::placeholder { color: rgba(249,247,216,0.45); }
.playbook-card .book-side { position: relative; display: flex; align-items: center; justify-content: center; padding: 40px 40px 40px 0; }
.playbook-card .book-side img { width: 112%; max-width: none; transform: translateX(4%) rotate(-2deg); filter: drop-shadow(-30px 50px 60px rgba(0,0,0,0.55)); }

/* ---------- Newsletter ---------- */
.newsletter { padding: 100px 0; background: var(--engage-yellow); color: var(--engage-black); }
.newsletter.dark { background: var(--engage-black); color: var(--engage-offwhite); }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.newsletter h2 { font-family: var(--font-display); font-weight: 800; font-size: 56px; line-height: 0.98; letter-spacing: -0.03em; margin: 16px 0 0; }
.newsletter h2 .period { color: var(--engage-orange); }
.newsletter p { font-size: 18px; line-height: 1.55; opacity: 0.8; max-width: 480px; margin: 20px 0 0; }
.newsletter form { display: flex; flex-direction: column; gap: 14px; max-width: 460px; justify-self: end; width: 100%; }
.newsletter .field { display: flex; gap: 10px; }
.newsletter input { flex: 1; padding: 18px 20px; font: inherit; font-size: 16px; border-radius: 8px; border: 1.5px solid rgba(3,3,4,0.2); background: transparent; color: inherit; }
.newsletter.dark input { border-color: rgba(249,247,216,0.2); color: var(--engage-offwhite); }
.newsletter .fineprint { font-size: 13px; opacity: 0.65; }

/* ---------- Contact ---------- */
.contact { padding: 120px 0; background: var(--engage-black); color: var(--engage-offwhite); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact h2 { font-family: var(--font-display); font-weight: 900; font-size: 88px; line-height: 0.94; letter-spacing: -0.035em; margin: 20px 0 28px; text-wrap: balance; }
.contact h2 .period { color: var(--engage-orange); }
.contact .blurb { font-size: 19px; line-height: 1.55; color: rgba(249,247,216,0.72); max-width: 480px; }
.contact .deets { margin-top: 48px; display: flex; flex-direction: column; gap: 18px; font-family: var(--font-display); }
.contact .deets .row { display: flex; gap: 16px; align-items: baseline; }
.contact .deets .label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(249,247,216,0.55); min-width: 90px; }
.contact .deets .value { font-size: 18px; font-weight: 500; color: var(--engage-offwhite); }
.contact form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact form .full { grid-column: 1 / -1; }
.contact label { display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(249,247,216,0.55); margin-bottom: 8px; font-family: var(--font-display); font-weight: 500; }
.contact input, .contact textarea, .contact select { width: 100%; padding: 16px 18px; font: inherit; font-size: 15px; background: rgba(249,247,216,0.05); border: 1px solid rgba(249,247,216,0.15); border-radius: 8px; color: var(--engage-offwhite); }
.contact input:focus, .contact textarea:focus, .contact select:focus { outline: none; border-color: var(--engage-orange); }
.contact textarea { min-height: 120px; resize: vertical; }
.contact form button { margin-top: 8px; justify-self: start; }

/* HubSpot embed wrapper — gives the embedded form a card on dark bg */
.contact .contact-form-wrap { background: var(--engage-offwhite); color: var(--engage-black); border-radius: 14px; padding: 36px; min-height: 480px; }
.contact .contact-form-wrap .hs-form-frame { width: 100%; }
.contact .contact-form-wrap iframe { width: 100% !important; border: 0; background: transparent; }
.page-mobile .contact .contact-form-wrap { padding: 24px; }

/* ---------- Footer ---------- */
.site-footer { padding: 72px 0 40px; background: var(--engage-black); color: var(--engage-offwhite); border-top: 1px solid rgba(249,247,216,0.08); }
.site-footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(249,247,216,0.08); }
.site-footer .brand img { height: 44px; display: block; margin-bottom: 24px; }
.site-footer .tagline { font-family: var(--font-display); font-size: 14px; font-weight: 500; max-width: none; white-space: nowrap; opacity: 0.8; }
.site-footer .tagline .period { color: var(--engage-orange); font-weight: 900; }
.site-footer .col h4 { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(249,247,216,0.5); margin: 0 0 18px; font-weight: 600; }
.site-footer .col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.site-footer .col a { color: inherit; text-decoration: none; font-size: 15px; opacity: 0.85; }
.site-footer .col a:hover { opacity: 1; color: var(--engage-orange); }
.site-footer .bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 13px; color: rgba(249,247,216,0.5); }
.site-footer .bottom a { color: inherit; text-decoration: none; }

/* ---------- Density/copy-length tweak hooks ---------- */
.page.terse .hero-safe p.lead,
.page.terse .hero-bold .sub,
.page.terse .service-card p,
.page.terse .playbook-card p,
.page.terse .newsletter p,
.page.terse .contact .blurb { display: none; }
.page.terse .hero-safe h1,
.page.terse .hero-bold h1 { margin-bottom: 20px; }

/* ---------- Differentiators (The ENGAGE Difference) ---------- */
.diffs { padding: 120px 0; background: var(--engage-offwhite); border-top: 1px solid var(--border); }
.diffs-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.diffs h2 { font-family: var(--font-display); font-weight: 800; font-size: 64px; line-height: 0.98; letter-spacing: -0.03em; margin: 16px 0 0; text-wrap: balance; }
.diffs h2 .period { color: var(--engage-orange); }
.diffs .intro { font-size: 19px; line-height: 1.5; color: var(--fg-muted); max-width: 540px; justify-self: end; }
.diffs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.diff-card { position: relative; padding: 48px 32px 36px; border-radius: 14px; background: #fff; border: 1px solid var(--border); display: flex; flex-direction: column; min-height: 320px; transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base); }
.diff-card::before { content: ""; position: absolute; left: 32px; right: 32px; top: 0; height: 3px; background: var(--engage-orange); border-radius: 0 0 3px 3px; }
.diff-card:hover { transform: translateY(-4px); border-color: var(--engage-orange); }
.diff-num { font-family: var(--font-display); font-weight: 900; font-size: 56px; line-height: 1; letter-spacing: -0.03em; color: var(--engage-orange); margin-bottom: 24px; }
.diff-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.15; letter-spacing: -0.015em; margin: 0 0 12px; }
.diff-body { font-size: 15px; line-height: 1.55; color: var(--fg-muted); margin: 0; }

.page-mobile .diffs { padding: 56px 0; }
.page-mobile .diffs-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
.page-mobile .diffs h2 { font-size: 36px; }
.page-mobile .diffs .intro { justify-self: start; font-size: 15.5px; max-width: none; line-height: 1.55; }
.page-mobile .diffs-grid { grid-template-columns: 1fr; gap: 10px; }
.page-mobile .diff-card { min-height: auto; padding: 24px 20px 20px; flex-direction: row; align-items: baseline; gap: 18px; }
.page-mobile .diff-card::before { left: 20px; right: 20px; }
.page-mobile .diff-num { font-size: 32px; margin-bottom: 0; flex: 0 0 auto; min-width: 44px; }
.page-mobile .diff-card > div.diff-textwrap, .page-mobile .diff-card .diff-title { flex: 1; }
.page-mobile .diff-title { font-size: 17px; margin-bottom: 6px; }
.page-mobile .diff-body { font-size: 14px; line-height: 1.5; }
.page-mobile .diff-title { font-size: 16px; margin: 0 0 8px; letter-spacing: -0.01em; line-height: 1.2; }
.page-mobile .diff-body { font-size: 13.5px; line-height: 1.5; }

.page.terse .diff-body { display: none; }

/* ---------- Artboards ---------- */
.homepage-artboard,
.page-desktop { width: 1440px; }
.page-mobile { width: 390px; }

/* ================================================================
   MOBILE — scoped to .page-mobile so desktop artboard is untouched
   ================================================================ */
.page-mobile .container { padding: 0 20px; }

/* Mobile nav */
.page-mobile .site-nav { padding: 14px 20px; gap: 0; justify-content: space-between; }
.page-mobile .site-nav .links { display: none; }
.page-mobile .site-nav .spacer { display: none; }
.page-mobile .site-nav .btn { display: none; }
.page-mobile .site-nav .logo img { height: 26px; }
.page-mobile .site-nav .burger { display: inline-flex; flex-direction: column; gap: 4px; cursor: pointer; padding: 8px; }
.page-mobile .site-nav .burger span { width: 22px; height: 2px; background: currentColor; display: block; }

/* Mobile hero-safe */
.page-mobile .hero-safe { padding: 40px 0 64px; }
.page-mobile .hero-safe .grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
.page-mobile .hero-safe h1 { font-size: 40px; line-height: 1.0; letter-spacing: -0.025em; margin: 16px 0 20px; text-wrap: balance; overflow-wrap: break-word; word-break: break-word; }
.page-mobile .hero-safe p.lead { font-size: 17px; margin-bottom: 24px; }
.page-mobile .hero-safe .eyebrow, .page-mobile .hero-safe .eyebrow-row { flex-wrap: wrap; row-gap: 6px; font-size: 11px; letter-spacing: 0.1em; gap: 10px; }
.page-mobile .hero-safe .ctas { flex-direction: column; align-items: stretch; }
.page-mobile .hero-safe .ctas .btn { justify-content: center; }
.page-mobile .hero-safe .video-tile { aspect-ratio: 4/5; }

/* Global mobile safeguard — any single-column grid should allow children to shrink */
.page-mobile [style*="grid-template-columns"],
.page-mobile .services-head,
.page-mobile .diffs-head,
.page-mobile .process-head,
.page-mobile .offerings-head,
.page-mobile .diffs-grid,
.page-mobile .services-panel,
.page-mobile .services-tabs-panel,
.page-mobile .playbook-card,
.page-mobile .newsletter-grid,
.page-mobile .contact-grid,
.page-mobile .contact form,
.page-mobile .offerings-grid,
.page-mobile .process-list,
.page-mobile .gallery-grid,
.page-mobile .pg-cta .inner,
.page-mobile .hs-hero .inner,
.page-mobile .hs-features-grid,
.page-mobile .hs-how-row,
.page-mobile .contact-page .main,
.page-mobile .contact-page form { min-width: 0; }
.page-mobile .services-head > *,
.page-mobile .diffs-head > *,
.page-mobile .process-head > *,
.page-mobile .diffs-grid > *,
.page-mobile .services-panel > *,
.page-mobile .playbook-card > *,
.page-mobile .newsletter-grid > *,
.page-mobile .contact-grid > *,
.page-mobile .contact form > *,
.page-mobile .offerings-grid > *,
.page-mobile .process-list > *,
.page-mobile .pg-cta .inner > *,
.page-mobile .hs-hero .inner > *,
.page-mobile .hs-how-row > *,
.page-mobile .contact-page .main > *,
.page-mobile .contact-page form > * { min-width: 0; }

/* Mobile services — accordion layout (replaces desktop grid) */
.page-mobile .services { padding: 56px 0 64px; border-top-width: 3px; }
.page-mobile .services .container { padding: 0 20px; }
.page-mobile .services-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
.page-mobile .services h2 { font-size: 40px; letter-spacing: -0.025em; line-height: 1.02; }
.page-mobile .services .intro { font-size: 15.5px; justify-self: start; max-width: none; line-height: 1.55; }
/* Hide desktop grid + panel on mobile */
.page-mobile .services-grid { display: none; }
.page-mobile .services-panel-desktop { display: none; }
.page-mobile .services-accordion { display: flex; flex-direction: column; gap: 12px; }

/* Mobile accordion lane */
.page-mobile .acc-item {
  border-radius: 14px;
  overflow: hidden;
  background: #101015;
  border: 1.5px solid rgba(249,247,216,0.1);
  transition: border-color 180ms ease;
}
.page-mobile .acc-item.open { border-color: var(--engage-orange); }
.page-mobile .acc-lane {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.page-mobile .acc-image {
  flex: 0 0 112px;
  width: 112px;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.page-mobile .acc-image img { width: 100%; height: 100%; object-fit: cover; }
.page-mobile .acc-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 16px;
  gap: 6px;
}
.page-mobile .acc-text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.page-mobile .acc-item.open .acc-text h3 { color: var(--engage-yellow); }
.page-mobile .acc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--engage-orange);
  text-transform: uppercase;
}
.page-mobile .acc-cta .chev {
  font-size: 14px;
  display: inline-block;
  transition: transform 180ms ease;
}

/* Panel inside open accordion */
.page-mobile .acc-item .services-panel {
  display: block;
  margin-top: 0;
  padding: 20px 18px 22px;
  border-top: 1px solid rgba(249,247,216,0.14);
  background: rgba(228,54,29,0.04);
}
.page-mobile .acc-item .services-panel .panel-intro { margin-bottom: 18px; }
.page-mobile .acc-item .services-panel .panel-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--engage-orange);
  margin-bottom: 10px;
}
.page-mobile .acc-item .services-panel h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--engage-offwhite);
}
.page-mobile .acc-item .services-panel > .panel-intro p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(249,247,216,0.8);
  margin: 0 0 18px;
}
.page-mobile .acc-item .services-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(249,247,216,0.12);
}
.page-mobile .acc-item .services-panel li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: baseline;
  column-gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(249,247,216,0.12);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.35;
  color: var(--engage-offwhite);
}
.page-mobile .acc-item .services-panel li .count {
  order: -1;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(249,247,216,0.5);
  text-align: left;
}
.page-mobile .acc-item .services-panel .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px !important;
}

/* Keep the standalone ServicesTabs rules (used elsewhere) */
.page-mobile .services-tabs-section { padding: 56px 0; }
.page-mobile .services-tabs-head h2 { font-size: 36px; }
.page-mobile .services-tabs-panel { grid-template-columns: 1fr; gap: 24px; padding-top: 20px; }
.page-mobile .services-tabs-panel h3 { font-size: 26px; }

/* Mobile playbook */
.page-mobile .playbook-section { padding: 56px 0; }
.page-mobile .playbook-card { grid-template-columns: 1fr; min-height: auto; }
.page-mobile .playbook-card .text { padding: 40px 28px 32px; }
.page-mobile .playbook-card h2 { font-size: 36px; }
.page-mobile .playbook-card .sub-h { font-size: 18px; }
.page-mobile .playbook-card p { font-size: 15px; margin-bottom: 24px; }
.page-mobile .playbook-card .form-mini { flex-direction: column; }
.page-mobile .playbook-card .form-mini .btn { justify-content: center; }
.page-mobile .playbook-card .book-side { padding: 0 28px 40px; }
.page-mobile .playbook-card .book-side img { width: 80%; transform: none; }

/* Mobile newsletter */
.page-mobile .newsletter { padding: 56px 0; }
.page-mobile .newsletter-grid { grid-template-columns: 1fr; gap: 32px; }
.page-mobile .newsletter h2 { font-size: 36px; }
.page-mobile .newsletter p { font-size: 16px; }
.page-mobile .newsletter form { justify-self: stretch; max-width: none; }
.page-mobile .newsletter .field { flex-direction: column; }
.page-mobile .newsletter .field .btn { justify-content: center; }

/* Mobile contact */
.page-mobile .contact { padding: 64px 0; }
.page-mobile .contact-grid { grid-template-columns: 1fr; gap: 48px; }
.page-mobile .contact h2 { font-size: 48px; }
.page-mobile .contact .blurb { font-size: 16px; }
.page-mobile .contact form { grid-template-columns: 1fr; }

/* Mobile footer */
.page-mobile .site-footer { padding: 48px 0 28px; }
.page-mobile .site-footer .top { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 32px; }
.page-mobile .site-footer .brand { grid-column: 1 / -1; }
.page-mobile .site-footer .bottom { flex-direction: column; gap: 10px; align-items: flex-start; }

/* ================================================================
   INTERIOR PAGE STYLES (Business Events, Incentive, Innovation, etc.)
   ================================================================ */

/* Page hero */
.page-hero { position: relative; padding: 96px 0 80px; border-bottom: 1px solid var(--border); }
.page-hero .inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end; }
.page-hero .crumb { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 24px; }
.page-hero .crumb a { color: inherit; text-decoration: none; }
.page-hero h1 { font-family: var(--font-display); font-weight: 900; font-size: 96px; line-height: 0.95; letter-spacing: -0.035em; margin: 0 0 28px; text-wrap: balance; }
.page-hero h1 .period { color: var(--engage-orange); }
.page-hero .lead { font-size: 20px; line-height: 1.5; color: var(--fg-muted); max-width: 540px; }
.page-hero .side { display: flex; flex-direction: column; gap: 18px; }
.page-hero .media { position: relative; aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; background: #1a1a1a; box-shadow: var(--shadow-lg); }
.page-hero .media img, .page-hero .media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero .factstack { display: flex; gap: 28px; padding: 20px 0 0; }
.page-hero .factstack .fact { flex: 1; }
.page-hero .factstack .num { font-family: var(--font-display); font-weight: 800; font-size: 32px; line-height: 1; letter-spacing: -0.02em; }
.page-hero .factstack .num .period { color: var(--engage-orange); }
.page-hero .factstack .lbl { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin-top: 6px; }

/* Offerings / capabilities grid (3-up or 4-up) */
.offerings { padding: 120px 0; }
.offerings-head { margin-bottom: 48px; max-width: 680px; }
.offerings-head h2 { font-family: var(--font-display); font-weight: 800; font-size: 56px; line-height: 0.98; letter-spacing: -0.03em; margin: 16px 0 16px; }
.offerings-head h2 .period { color: var(--engage-orange); }
.offerings-head p { font-size: 18px; color: var(--fg-muted); line-height: 1.55; }
.offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offerings-grid.two-up { grid-template-columns: repeat(2, 1fr); }
.offering { padding: 40px 32px; border-radius: 14px; background: #fff; border: 1px solid var(--border); min-height: 280px; display: flex; flex-direction: column; }
.offering.offering-link { color: inherit; text-decoration: none; transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease; }
.offering.offering-link:hover { transform: translateY(-2px); border-color: var(--engage-orange); box-shadow: 0 12px 28px rgba(3,3,4,0.06); }
.offering h3 .arr { color: var(--engage-orange); font-weight: 700; }
.offering .idx { font-family: var(--font-mono); font-size: 12px; color: var(--fg-subtle); letter-spacing: 0.1em; }
.offering h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1.1; letter-spacing: -0.02em; margin: 14px 0 12px; }
.offering h3 .period { color: var(--engage-orange); }
.offering p { font-size: 15px; color: var(--fg-muted); line-height: 1.55; margin: 0; flex: 1; }
.offering ul.tags { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.offering ul.tags li { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; background: var(--ink-100); color: var(--ink-700); }

/* Process strip (numbered steps on a dark band) */
.process { padding: 120px 0; background: var(--engage-black); color: var(--engage-offwhite); }
.process-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: end; margin-bottom: 60px; }
.process h2 { font-family: var(--font-display); font-weight: 800; font-size: 56px; line-height: 0.98; letter-spacing: -0.03em; margin: 16px 0 0; }
.process h2 .period { color: var(--engage-orange); }
.process .process-intro { font-size: 18px; line-height: 1.6; color: rgba(249,247,216,0.92); max-width: 520px; justify-self: end; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { padding: 32px 24px; border: 1px solid rgba(249,247,216,0.14); border-radius: 12px; background: rgba(249,247,216,0.04); display: flex; flex-direction: column; gap: 16px; min-height: 280px; }
.step .n { font-family: var(--font-display); font-weight: 900; font-size: 48px; line-height: 1; color: var(--engage-orange); letter-spacing: -0.03em; }
.step h4 { font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1.15; margin: 0; color: var(--engage-offwhite); }
.step p { font-size: 14.5px; color: rgba(249,247,216,0.9); line-height: 1.6; margin: 0; flex: 1; }

/* Big feature row (alternating image/text) */
.feature-row { padding: 120px 0; border-top: 1px solid var(--border); }
.feature-row .inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-row.reverse .inner { direction: rtl; }
.feature-row.reverse .inner > * { direction: ltr; }
.feature-row h2 { font-family: var(--font-display); font-weight: 800; font-size: 56px; line-height: 0.98; letter-spacing: -0.03em; margin: 16px 0 20px; }
.feature-row h2 .period { color: var(--engage-orange); }
.feature-row p { font-size: 18px; line-height: 1.55; color: var(--fg-muted); margin: 0 0 24px; }
.feature-row .media { aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; background: #1a1a1a; }
.feature-row .media img { width: 100%; height: 100%; object-fit: cover; }
.feature-row ul.check { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.feature-row ul.check li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.feature-row ul.check li::before { content: ""; flex: 0 0 auto; width: 18px; height: 18px; border-radius: 50%; background: var(--engage-orange); margin-top: 4px; box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 5px var(--engage-orange); }

/* Destinations / gallery grid (for incentive) */
.gallery { padding: 120px 0; background: var(--ink-100); }
.gallery h2 { font-family: var(--font-display); font-weight: 800; font-size: 56px; line-height: 0.98; letter-spacing: -0.03em; margin: 16px 0 48px; }
.gallery h2 .period { color: var(--engage-orange); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; grid-auto-rows: 180px; }
.gallery-tile { position: relative; border-radius: 12px; overflow: hidden; background: #1a1a1a; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; }
.gallery-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55)); }
.gallery-tile .cap { position: absolute; left: 20px; bottom: 18px; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 16px; z-index: 2; }
.gallery-tile .cap .region { display: block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; font-weight: 500; margin-bottom: 4px; }
/* sizes */
.gallery-tile.lg { grid-column: span 6; grid-row: span 2; }
.gallery-tile.md { grid-column: span 4; grid-row: span 2; }
.gallery-tile.sm { grid-column: span 3; grid-row: span 1; }
.gallery-tile.wd { grid-column: span 6; grid-row: span 1; }

/* Page CTA footer (not full contact form; compact "book a call" band) */
.pg-cta { padding: 100px 0; background: var(--engage-offwhite); color: var(--engage-black); border-top: 1px solid var(--border); }
.pg-cta .inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.pg-cta h2 { font-family: var(--font-display); font-weight: 900; font-size: 72px; line-height: 0.96; letter-spacing: -0.035em; margin: 0; text-wrap: balance; }
.pg-cta h2 .period { color: var(--engage-orange); }
.pg-cta p { font-size: 18px; line-height: 1.55; margin: 20px 0 0; max-width: 460px; color: var(--fg-muted); }
.pg-cta .ctas { display: flex; gap: 14px; justify-self: end; }
.pg-cta .ctas .btn { padding: 18px 26px; font-size: 16px; }
.pg-cta .ctas .btn-ghost { border-color: var(--engage-black); color: var(--engage-black); }

/* Happy Sites product hero */
.hs-hero { padding: 96px 0 120px; background: var(--engage-black); color: var(--engage-offwhite); position: relative; overflow: hidden; }
.hs-hero .inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hs-hero .product-pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 999px; background: rgba(228,54,29,0.15); color: var(--engage-orange); font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 24px; }
.hs-hero .product-pill::before { content: ""; width: 8px; height: 8px; background: var(--engage-orange); border-radius: 50%; }
.hs-hero h1 { font-family: var(--font-display); font-weight: 900; font-size: 96px; line-height: 0.94; letter-spacing: -0.035em; margin: 0 0 24px; }
.hs-hero h1 .period { color: var(--engage-orange); }
.hs-hero p.lead { font-size: 20px; line-height: 1.55; color: rgba(249,247,216,0.8); max-width: 500px; margin: 0 0 32px; }
.hs-hero .user-toggle { display: inline-flex; padding: 4px; background: rgba(249,247,216,0.08); border-radius: 999px; gap: 4px; margin-bottom: 28px; }
.hs-hero .user-toggle button { font: inherit; font-size: 13px; font-family: var(--font-display); font-weight: 600; padding: 10px 18px; border-radius: 999px; border: none; background: transparent; color: rgba(249,247,216,0.7); cursor: pointer; letter-spacing: 0.02em; }
.hs-hero .user-toggle button.active { background: var(--engage-orange); color: #fff; }
.hs-hero .screenshot { position: relative; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; border: 1px solid rgba(249,247,216,0.15); background: #0a0a0d; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.hs-hero .screenshot iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.hs-hero::after { content: ""; position: absolute; right: -15%; top: -30%; width: 60%; height: 140%; background: radial-gradient(closest-side, rgba(228,54,29,0.22), transparent 70%); pointer-events: none; }

/* Happy Sites — features band */
.hs-features { padding: 120px 0; }
.hs-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.hs-feature { padding: 36px 30px; background: #fff; border: 1px solid var(--border); border-radius: 14px; }
.hs-feature .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--engage-orange); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 20px; margin-bottom: 20px; }
.hs-feature h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0 0 10px; letter-spacing: -0.015em; }
.hs-feature p { font-size: 15px; color: var(--fg-muted); line-height: 1.55; margin: 0; }

/* Happy Sites — how it works (stepped) */
.hs-how { padding: 120px 0; background: var(--engage-offwhite); color: var(--engage-black); border-top: 1px solid var(--border); }
.hs-how-row { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; margin: 0 0 80px; }
.hs-how-row:last-child { margin-bottom: 0; }
.hs-how-row.reverse { direction: rtl; }
.hs-how-row.reverse > * { direction: ltr; }
.hs-how-row .step-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--engage-orange); margin-bottom: 16px; }
.hs-how-row h3 { font-family: var(--font-display); font-weight: 800; font-size: 40px; line-height: 1.0; letter-spacing: -0.025em; margin: 0 0 16px; }
.hs-how-row h3 .period { color: var(--engage-orange); }
.hs-how-row p { font-size: 17px; line-height: 1.55; color: var(--fg-muted); margin: 0; }
.hs-how-row .visual { aspect-ratio: 4/3; border-radius: 12px; background: #1a1a1a; overflow: hidden; }
.hs-how-row .visual img { width: 100%; height: 100%; object-fit: cover; }

/* Contact page — full layout */
.contact-page { padding: 80px 0 120px; background: var(--engage-offwhite); }
.contact-page .form-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 36px; min-height: 520px; }
.contact-page .form-card .hs-form-frame { width: 100%; }
.contact-page .form-card iframe { width: 100% !important; border: 0; }
.contact-page .top { max-width: 820px; margin-bottom: 60px; }
.contact-page .crumb { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 24px; }
.contact-page h1 { font-family: var(--font-display); font-weight: 900; font-size: 96px; line-height: 0.95; letter-spacing: -0.035em; margin: 0 0 24px; }
.contact-page h1 .period { color: var(--engage-orange); }
.contact-page .lead { font-size: 20px; line-height: 1.5; color: var(--fg-muted); max-width: 620px; }
.contact-page .main { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.contact-page form { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-page form .full { grid-column: 1 / -1; }
.contact-page label { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 8px; font-family: var(--font-display); font-weight: 500; }
.contact-page input, .contact-page textarea, .contact-page select { width: 100%; padding: 14px 16px; font: inherit; font-size: 15px; background: #fafaf4; border: 1px solid var(--border); border-radius: 8px; color: inherit; }
.contact-page textarea { min-height: 140px; resize: vertical; }
.contact-page input:focus, .contact-page textarea:focus, .contact-page select:focus { outline: none; border-color: var(--engage-orange); background: #fff; }
.contact-page .side { display: flex; flex-direction: column; gap: 28px; }
.contact-page .side-card { padding: 28px; border-radius: 14px; border: 1px solid var(--border); background: #fff; }
.contact-page .side-card h4 { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); margin: 0 0 12px; font-weight: 600; }
.contact-page .side-card .offices { display: flex; flex-direction: column; gap: 14px; }
.contact-page .side-card .office { display: grid; grid-template-columns: 70px 1fr; gap: 14px; align-items: baseline; font-family: var(--font-display); }
.contact-page .side-card .office .city { font-weight: 700; font-size: 15px; }
.contact-page .side-card .office .addr { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }
.contact-page .faq { margin-top: 28px; }
.contact-page .faq details { border-bottom: 1px solid var(--border); padding: 18px 0; }
.contact-page .faq summary { cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; }
.contact-page .faq summary::after { content: "+"; color: var(--engage-orange); font-weight: 700; }
.contact-page .faq details[open] summary::after { content: "−"; }
.contact-page .faq p { font-size: 15px; color: var(--fg-muted); line-height: 1.55; margin: 12px 0 0; }

/* Mobile interior — offerings as tighter 2-col */
.page-mobile .offerings { padding: 56px 0; }
.page-mobile .offerings-head { margin-bottom: 28px; }
.page-mobile .offerings h2 { font-size: 36px; }
.page-mobile .offerings-head p { font-size: 15.5px; line-height: 1.55; }
.page-mobile .offerings-grid { grid-template-columns: 1fr; gap: 12px; }
.page-mobile .offering { min-height: auto; padding: 28px 22px; }
.page-mobile .offering h3 { font-size: 22px; margin: 10px 0 10px; letter-spacing: -0.015em; }
.page-mobile .offering p { font-size: 14.5px; line-height: 1.55; }
.page-mobile .offering ul.tags { margin-top: 14px; gap: 4px; }
.page-mobile .offering ul.tags li { font-size: 10px; padding: 4px 8px; }

/* Mobile interior — process as compact stacked cards */
.page-mobile .process { padding: 56px 0; }
.page-mobile .process-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px; }
.page-mobile .process h2 { font-size: 36px; }
.page-mobile .process .process-intro { justify-self: start; font-size: 15.5px; line-height: 1.55; }
.page-mobile .process-list { grid-template-columns: 1fr; gap: 8px; }
.page-mobile .step { min-height: auto; padding: 20px 22px 22px; gap: 8px; border-radius: 10px; }
.page-mobile .step .n { font-size: 28px; line-height: 1; }
.page-mobile .step h4 { font-size: 17px; margin-bottom: 2px; }
.page-mobile .step p { font-size: 13.5px; line-height: 1.55; }

/* Mobile interior — feature row tightened */
.page-mobile .feature-row { padding: 56px 0; }
.page-mobile .feature-row h2 { font-size: 36px; margin: 14px 0 16px; }
.page-mobile .feature-row p { font-size: 16px; line-height: 1.55; }
.page-mobile .feature-row ul.check li { font-size: 14.5px; }
.page-mobile .feature-row ul.check li::before { width: 14px; height: 14px; margin-top: 3px; box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 4px var(--engage-orange); }

/* Mobile interior — page CTA */
.page-mobile .pg-cta { padding: 48px 0; }
.page-mobile .pg-cta h2 { font-size: 38px; }
.page-mobile .pg-cta p { font-size: 16px; line-height: 1.55; }

/* Mobile page hero */
.page-mobile .page-hero { padding: 32px 0 48px; }
.page-mobile .page-hero h1 { font-size: 44px; margin-bottom: 18px; letter-spacing: -0.03em; }
.page-mobile .page-hero .lead { font-size: 16px; line-height: 1.5; }
.page-mobile .page-hero .factstack { gap: 14px 20px; padding-top: 24px; margin-top: 8px; border-top: 1px solid var(--border); }
.page-mobile .page-hero .factstack .fact { flex: 1 0 40%; }
.page-mobile .page-hero .factstack .num { font-size: 24px; }
.page-mobile .page-hero .factstack .lbl { font-size: 11px; margin-top: 4px; }
.page-mobile .page-hero .crumb { font-size: 11px; margin-bottom: 16px; }
.page-mobile .gallery { padding: 64px 0; }
.page-mobile .gallery h2 { font-size: 40px; margin-bottom: 32px; }
.page-mobile .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
.page-mobile .gallery-tile.lg, .page-mobile .gallery-tile.md, .page-mobile .gallery-tile.sm, .page-mobile .gallery-tile.wd { grid-column: span 1; grid-row: span 1; }
.page-mobile .pg-cta { padding: 56px 0; }
.page-mobile .pg-cta .inner { grid-template-columns: 1fr; gap: 28px; }
.page-mobile .pg-cta h2 { font-size: 44px; }
.page-mobile .pg-cta .ctas { flex-direction: column; justify-self: stretch; }
.page-mobile .pg-cta .ctas .btn { justify-content: center; }
.page-mobile .hs-hero { padding: 48px 0 64px; }
.page-mobile .hs-hero .inner { grid-template-columns: 1fr; gap: 40px; }
.page-mobile .hs-hero h1 { font-size: 52px; }
.page-mobile .hs-hero p.lead { font-size: 17px; }
.page-mobile .hs-features { padding: 64px 0; }
.page-mobile .hs-features-grid { grid-template-columns: 1fr; }
.page-mobile .hs-how { padding: 64px 0; }
.page-mobile .hs-how-row { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
.page-mobile .hs-how-row.reverse { direction: ltr; }
.page-mobile .hs-how-row h3 { font-size: 30px; }
.page-mobile .contact-page { padding: 48px 0 64px; }
.page-mobile .contact-page h1 { font-size: 56px; }
.page-mobile .contact-page .lead { font-size: 17px; }
.page-mobile .contact-page .main { grid-template-columns: 1fr; gap: 32px; }
.page-mobile .contact-page form { padding: 24px; grid-template-columns: 1fr; }

/* ================================================================
   BURGER — hidden on desktop, shown via mobile media query below
   ================================================================ */
.site-nav .burger { display: none; }
.mobile-menu { display: none; }

/* ================================================================
   RESPONSIVE — Mobile (≤768px)
   ================================================================ */
@media (max-width: 768px) {
  /* Reset artboard widths */
  .homepage-artboard, .page-desktop { width: 100%; }

  /* Container */
  .container { padding: 0 20px; }

  /* Nav */
  .site-nav { padding: 14px 20px; gap: 0; justify-content: space-between; }
  .site-nav .links { display: none; }
  .site-nav .spacer { display: none; }
  .site-nav .btn { display: none; }
  .site-nav .logo img { height: 26px; }
  .site-nav .burger { display: inline-flex; flex-direction: column; gap: 4px; cursor: pointer; padding: 8px; }
  .site-nav .burger span { width: 22px; height: 2px; background: currentColor; display: block; }

  /* Mobile menu dropdown */
  .mobile-menu.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 54px; left: 0; right: 0; z-index: 19;
    background: var(--engage-offwhite);
    padding: 8px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(3,3,4,0.12);
  }
  .mobile-menu.dark.open { background: var(--engage-black); color: var(--engage-offwhite); border-bottom-color: var(--border-dark); }
  .mobile-menu.open a:not(.btn) {
    font-family: var(--font-display); font-size: 17px; font-weight: 600;
    color: inherit; text-decoration: none; padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu.dark.open a:not(.btn) { border-bottom-color: var(--border-dark); }
  .mobile-menu.open .btn { margin-top: 20px; justify-content: center; }

  /* Hero — safe */
  .hero-safe { padding: 40px 0 64px; }
  .hero-safe .grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .hero-safe h1 { font-size: 40px; line-height: 1.0; letter-spacing: -0.025em; margin: 16px 0 20px; text-wrap: balance; overflow-wrap: break-word; word-break: break-word; }
  .hero-safe p.lead { font-size: 17px; margin-bottom: 24px; }
  .hero-safe .eyebrow-row { flex-wrap: wrap; row-gap: 6px; font-size: 11px; letter-spacing: 0.1em; gap: 10px; }
  .hero-safe .ctas { flex-direction: column; align-items: stretch; }
  .hero-safe .ctas .btn { justify-content: center; }
  .hero-safe .video-tile { aspect-ratio: 4/5; }

  /* Hero — bold */
  .hero-bold h1 { font-size: 72px; line-height: 0.9; }
  .hero-bold .hero-row { flex-direction: column; gap: 32px; }
  .hero-bold .video-panel { width: 100%; }
  .hero-bold .stats { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Hero — creative */
  .hero-creative .marquee-row { font-size: 72px; }
  .hero-creative .below { grid-template-columns: 1fr; gap: 32px; }
  .hero-creative .tagline { font-size: 26px; }

  /* Global safeguard — allow grid children to shrink */
  .services-head, .diffs-head, .process-head, .offerings-head,
  .diffs-grid, .services-panel, .services-tabs-panel, .playbook-card,
  .newsletter-grid, .contact-grid, .contact form, .offerings-grid,
  .process-list, .gallery-grid, .pg-cta .inner, .hs-hero .inner,
  .hs-features-grid, .hs-how-row, .contact-page .main,
  .contact-page form { min-width: 0; }
  .services-head > *, .diffs-head > *, .process-head > *, .diffs-grid > *,
  .services-panel > *, .playbook-card > *, .newsletter-grid > *,
  .contact-grid > *, .contact form > *, .offerings-grid > *,
  .process-list > *, .pg-cta .inner > *, .hs-hero .inner > *,
  .hs-how-row > *, .contact-page .main > *, .contact-page form > * { min-width: 0; }

  /* Services */
  .services { padding: 56px 0 64px; border-top-width: 3px; }
  .services-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
  .services h2 { font-size: 40px; letter-spacing: -0.025em; line-height: 1.02; }
  .services .intro { font-size: 15.5px; justify-self: start; max-width: none; line-height: 1.55; }
  .services-grid { display: none; }
  .services-panel-desktop { display: none; }
  .services-accordion { display: flex; flex-direction: column; gap: 12px; }

  /* Accordion lane */
  .acc-item { border-radius: 14px; overflow: hidden; background: #101015; border: 1.5px solid rgba(249,247,216,0.1); transition: border-color 180ms ease; }
  .acc-item.open { border-color: var(--engage-orange); }
  .acc-lane { display: flex; align-items: stretch; width: 100%; gap: 0; padding: 0; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; font-family: inherit; }
  .acc-image { flex: 0 0 112px; width: 112px; aspect-ratio: 1/1; overflow: hidden; position: relative; }
  .acc-image img { width: 100%; height: 100%; object-fit: cover; }
  .acc-text { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: 14px 16px; gap: 6px; }
  .acc-text h3 { font-family: var(--font-display); font-weight: 800; font-size: 21px; line-height: 1.1; letter-spacing: -0.02em; margin: 0; }
  .acc-item.open .acc-text h3 { color: var(--engage-yellow); }
  .acc-cta { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.02em; color: var(--engage-orange); text-transform: uppercase; }
  .acc-cta .chev { font-size: 14px; display: inline-block; transition: transform 180ms ease; }
  .acc-item .services-panel { display: block; margin-top: 0; padding: 20px 18px 22px; border-top: 1px solid rgba(249,247,216,0.14); background: rgba(228,54,29,0.04); }
  .acc-item .services-panel .panel-intro { margin-bottom: 18px; }
  .acc-item .services-panel .panel-eyebrow { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--engage-orange); margin-bottom: 10px; }
  .acc-item .services-panel h3 { font-family: var(--font-display); font-weight: 800; font-size: 22px; line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 10px; color: var(--engage-offwhite); }
  .acc-item .services-panel > .panel-intro p { font-size: 14.5px; line-height: 1.55; color: rgba(249,247,216,0.8); margin: 0 0 18px; }
  .acc-item .services-panel ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; border-top: 1px solid rgba(249,247,216,0.12); }
  .acc-item .services-panel li { display: grid; grid-template-columns: 32px 1fr; align-items: baseline; column-gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(249,247,216,0.12); font-family: var(--font-display); font-weight: 500; font-size: 14.5px; line-height: 1.35; color: var(--engage-offwhite); }
  .acc-item .services-panel li .count { order: -1; font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; color: rgba(249,247,216,0.5); }
  .acc-item .services-panel .btn { width: 100%; justify-content: center; margin-top: 6px !important; }

  /* Services panel standalone (desktop version, hidden but keep overrides) */
  .services-panel { padding: 24px 20px; grid-template-columns: 1fr; gap: 20px; margin-top: 14px; border-radius: 14px; }
  .services-panel h3 { font-size: 22px; margin: 0 0 10px; }
  .services-panel p { font-size: 15px; line-height: 1.55; }
  .services-panel ul li { padding: 12px 0; font-size: 14.5px; grid-template-columns: 30px 1fr; column-gap: 10px; }

  /* Services tabs */
  .services-tabs-section { padding: 56px 0; }
  .services-tabs-head h2 { font-size: 36px; }
  .services-tabs-panel { grid-template-columns: 1fr; gap: 24px; padding-top: 20px; }
  .services-tabs-panel h3 { font-size: 26px; }

  /* Differentiators */
  .diffs { padding: 56px 0; }
  .diffs-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
  .diffs h2 { font-size: 36px; }
  .diffs .intro { justify-self: start; font-size: 15.5px; max-width: none; line-height: 1.55; }
  .diffs-grid { grid-template-columns: 1fr; gap: 10px; }
  .diff-card { min-height: auto; padding: 24px 20px 20px; flex-direction: row; align-items: baseline; gap: 18px; }
  .diff-num { font-size: 32px; margin-bottom: 0; flex: 0 0 auto; min-width: 44px; }
  .diff-title { font-size: 16px; margin: 0 0 8px; letter-spacing: -0.01em; line-height: 1.2; }
  .diff-body { font-size: 13.5px; line-height: 1.5; }

  /* Playbook */
  .playbook-section { padding: 56px 0; }
  .playbook-card { grid-template-columns: 1fr; min-height: auto; }
  .playbook-card .text { padding: 40px 28px 32px; }
  .playbook-card h2 { font-size: 36px; }
  .playbook-card .sub-h { font-size: 18px; }
  .playbook-card p { font-size: 15px; margin-bottom: 24px; }
  .playbook-card .form-mini { flex-direction: column; }
  .playbook-card .form-mini .btn { justify-content: center; }
  .playbook-card .book-side { padding: 0 28px 40px; }
  .playbook-card .book-side img { width: 80%; transform: none; }

  /* Newsletter */
  .newsletter { padding: 56px 0; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter h2 { font-size: 36px; }
  .newsletter p { font-size: 16px; }
  .newsletter form { justify-self: stretch; max-width: none; }
  .newsletter .field { flex-direction: column; }
  .newsletter .field .btn { justify-content: center; }

  /* Contact section */
  .contact { padding: 64px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact h2 { font-size: 48px; }
  .contact .blurb { font-size: 16px; }
  .contact form { grid-template-columns: 1fr; }
  .contact .contact-form-wrap { padding: 24px; }

  /* Footer */
  .site-footer { padding: 48px 0 28px; }
  .site-footer .top { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 32px; }
  .site-footer .brand { grid-column: 1 / -1; }
  .site-footer .bottom { flex-direction: column; gap: 10px; align-items: flex-start; }

  /* Page hero */
  .page-hero { padding: 32px 0 48px; }
  .page-hero .inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero h1 { font-size: 44px; margin-bottom: 18px; letter-spacing: -0.03em; }
  .page-hero .lead { font-size: 16px; line-height: 1.5; }
  .page-hero .factstack { flex-wrap: wrap; gap: 14px 20px; padding-top: 24px; margin-top: 8px; border-top: 1px solid var(--border); }
  .page-hero .factstack .fact { flex: 1 0 40%; }
  .page-hero .factstack .num { font-size: 24px; }
  .page-hero .factstack .lbl { font-size: 11px; margin-top: 4px; }
  .page-hero .crumb { font-size: 11px; margin-bottom: 16px; }

  /* Offerings */
  .offerings { padding: 56px 0; }
  .offerings-head { margin-bottom: 28px; }
  .offerings-head h2 { font-size: 36px; }
  .offerings-head p { font-size: 15.5px; line-height: 1.55; }
  .offerings-grid { grid-template-columns: 1fr; gap: 12px; }
  .offering { min-height: auto; padding: 28px 22px; }
  .offering h3 { font-size: 22px; margin: 10px 0 10px; letter-spacing: -0.015em; }
  .offering p { font-size: 14.5px; line-height: 1.55; }
  .offering ul.tags { margin-top: 14px; gap: 4px; }
  .offering ul.tags li { font-size: 10px; padding: 4px 8px; }

  /* Process */
  .process { padding: 56px 0; }
  .process-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px; }
  .process h2 { font-size: 36px; }
  .process .process-intro { justify-self: start; font-size: 15.5px; line-height: 1.55; }
  .process-list { grid-template-columns: 1fr; gap: 8px; }
  .step { min-height: auto; padding: 20px 22px 22px; gap: 8px; border-radius: 10px; }
  .step .n { font-size: 28px; }
  .step h4 { font-size: 17px; margin-bottom: 2px; }
  .step p { font-size: 13.5px; line-height: 1.55; }

  /* Feature row */
  .feature-row { padding: 56px 0; }
  .feature-row .inner { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .inner { direction: ltr; }
  .feature-row h2 { font-size: 36px; margin: 14px 0 16px; }
  .feature-row p { font-size: 16px; line-height: 1.55; }
  .feature-row ul.check li { font-size: 14.5px; }
  .feature-row ul.check li::before { width: 14px; height: 14px; margin-top: 3px; box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 4px var(--engage-orange); }

  /* Gallery */
  .gallery { padding: 64px 0; }
  .gallery h2 { font-size: 40px; margin-bottom: 32px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-tile.lg, .gallery-tile.md, .gallery-tile.sm, .gallery-tile.wd { grid-column: span 1; grid-row: span 1; }

  /* Page CTA */
  .pg-cta { padding: 56px 0; }
  .pg-cta .inner { grid-template-columns: 1fr; gap: 28px; }
  .pg-cta h2 { font-size: 44px; }
  .pg-cta p { font-size: 16px; line-height: 1.55; }
  .pg-cta .ctas { flex-direction: column; justify-self: stretch; }
  .pg-cta .ctas .btn { justify-content: center; }

  /* Happy Sites */
  .hs-hero { padding: 48px 0 64px; }
  .hs-hero .inner { grid-template-columns: 1fr; gap: 40px; }
  .hs-hero h1 { font-size: 52px; }
  .hs-hero p.lead { font-size: 17px; }
  .hs-features { padding: 64px 0; }
  .hs-features-grid { grid-template-columns: 1fr; }
  .hs-how { padding: 64px 0; }
  .hs-how-row { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
  .hs-how-row.reverse { direction: ltr; }
  .hs-how-row h3 { font-size: 30px; }

  /* Contact page */
  .contact-page { padding: 48px 0 64px; }
  .contact-page h1 { font-size: 56px; }
  .contact-page .lead { font-size: 17px; }
  .contact-page .main { grid-template-columns: 1fr; gap: 32px; }
  .contact-page form { padding: 24px; grid-template-columns: 1fr; }
}

/* ================================================================
   RESPONSIVE — Tablet (769px–1024px)
   ================================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .homepage-artboard, .page-desktop { width: 100%; }
  .container { padding: 0 32px; }

  /* Scale down oversized headlines */
  .hero-safe h1 { font-size: 64px; }
  .hero-bold h1 { font-size: 100px; line-height: 0.9; }
  .hero-creative .marquee-row { font-size: 96px; }
  .hero-creative .tagline { font-size: 32px; }
  .services h2 { font-size: 48px; }
  .offerings-head h2 { font-size: 44px; }
  .process h2 { font-size: 44px; }
  .feature-row h2 { font-size: 44px; }
  .gallery h2 { font-size: 44px; }
  .hs-hero h1 { font-size: 64px; }
  .page-hero h1 { font-size: 64px; }
  .pg-cta h2 { font-size: 52px; }
  .contact h2 { font-size: 64px; }
  .newsletter h2 { font-size: 44px; }
  .hs-how-row h3 { font-size: 32px; }
  .contact-page h1 { font-size: 64px; }

  /* Tighten gaps to fit narrower viewport */
  .page-hero .inner { gap: 48px; }
  .hs-hero .inner { gap: 40px; }
  .hs-features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .pg-cta .inner { gap: 40px; }
  .feature-row .inner { gap: 48px; }
}
