/* Smile Social Solutions — main stylesheet (mobile-first) */

@font-face { font-family: 'Bricolage Grotesque'; src: url('/assets/fonts/bricolage-grotesque.woff2') format('woff2'); font-weight: 400 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'DM Sans'; src: url('/assets/fonts/dm-sans.woff2') format('woff2'); font-weight: 400 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Instrument Serif'; src: url('/assets/fonts/instrument-serif.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }

:root {
  --ink: #111111;
  --ink-soft: #4a4a45;
  --cream: #fffbf0;
  --tint: #f6f0df;
  --white: #ffffff;
  --green: #3dbd5e;
  --green-deep: #17703a;
  --green-soft: #e3f6e8;
  --yellow: #ffcc00;
  --yellow-soft: #fff3c2;
  --pink: #ff6eb4;
  --pink-soft: #ffe3f1;
  --blue: #4f8ef7;
  --blue-soft: #e2edff;
  --linkedin: #4a9eff;
  --dark: #111111;
  --dark-card: #1c1c1a;
  --dark-line: #34342f;
  --on-dark: #f4f1e8;
  --on-dark-muted: #b9b6ab;

  --font-display: 'Bricolage Grotesque', 'Arial Rounded MT Bold', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Instrument Serif', Georgia, serif;

  --radius: 18px;
  --radius-sm: 12px;
  --border: 2px solid var(--ink);
  --shadow: 4px 4px 0 var(--ink);
  --shadow-lg: 7px 7px 0 var(--ink);
  --header-h: 68px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body { margin: 0; font-family: var(--font-body); font-size: 1rem; line-height: 1.65; color: var(--ink); background: var(--cream); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: clip; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul[role='list'], ol[role='list'] { list-style: none; padding: 0; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 6px; }
.section-dark :focus-visible, .site-footer :focus-visible { outline-color: var(--yellow); }
main:focus { outline: none; }
::selection { background: var(--yellow); color: var(--ink); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 300; background: var(--ink); color: var(--white); padding: 0.7rem 1rem; border-radius: 10px; font-weight: 700; text-decoration: none; transition: top 0.15s; }
.skip-link:focus { top: 12px; }
.icon { flex-shrink: 0; }

.container { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
.container-narrow { width: min(800px, 100% - 2.5rem); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, .h3, .h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; text-wrap: balance; }
h1 { font-size: clamp(2.35rem, 6.2vw, 4.4rem); }
h1 em, h2 em, .section-title em { font-family: var(--font-accent); font-style: italic; font-weight: 400; letter-spacing: -0.01em; color: var(--green-deep); padding-right: 0.06em; }
.section-title { font-size: clamp(1.85rem, 4.2vw, 3rem); }
h3, .h3 { font-size: 1.2rem; letter-spacing: -0.015em; line-height: 1.2; }
.h4 { font-size: 1.02rem; letter-spacing: -0.01em; }
p { text-wrap: pretty; }
.eyebrow { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-deep); margin-bottom: 0.8rem; }
.section-head { margin-bottom: 2.5rem; max-width: 720px; }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-sub { margin-top: 0.9rem; color: var(--ink-soft); font-size: 1.05rem; }
.section-sub a { color: inherit; font-weight: 700; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; min-height: 50px; padding: 0.7rem 1.5rem; border: var(--border); border-radius: 999px; font-weight: 700; font-size: 0.98rem; line-height: 1.2; text-decoration: none; box-shadow: var(--shadow); transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color 0.18s; -webkit-tap-highlight-color: transparent; }
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary { background: var(--green); color: var(--ink); }
.btn-primary:hover { background: #4bd06e; }
.btn-dark { background: var(--ink); color: var(--white); box-shadow: 4px 4px 0 rgba(17, 17, 17, 0.28); }
.btn-dark:hover { box-shadow: 6px 6px 0 rgba(17, 17, 17, 0.28); }
.btn-ghost { background: var(--white); color: var(--ink); }
.btn-sm { min-height: 42px; padding: 0.45rem 1.1rem; font-size: 0.9rem; box-shadow: 3px 3px 0 var(--ink); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.65; cursor: progress; transform: none; box-shadow: var(--shadow); }

.round-btn { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; border: var(--border); background: var(--white); box-shadow: 3px 3px 0 var(--ink); transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color 0.18s; }
.round-btn:hover { background: var(--yellow); transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.round-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.round-btn[disabled] { opacity: 0.35; cursor: default; transform: none; box-shadow: 3px 3px 0 var(--ink); background: var(--white); }

/* ---------- Accents ---------- */
.accent-green { --accent: var(--green); --accent-soft: var(--green-soft); }
.accent-pink { --accent: var(--pink); --accent-soft: var(--pink-soft); }
.accent-yellow { --accent: var(--yellow); --accent-soft: var(--yellow-soft); }
.accent-blue { --accent: var(--blue); --accent-soft: var(--blue-soft); }
.accent-linkedin { --accent: var(--linkedin); --accent-soft: var(--blue-soft); }

.icon-tile { display: inline-grid; place-items: center; width: 46px; height: 46px; flex-shrink: 0; border: var(--border); border-radius: 14px; background: var(--accent, var(--yellow)); color: var(--ink); }
.icon-tile-xl { width: 132px; height: 132px; border-radius: 36px; box-shadow: var(--shadow-lg); transform: rotate(-6deg); }

.pill { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.4rem 0.95rem; border: var(--border); border-radius: 999px; background: var(--white); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(61, 189, 94, 0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(61, 189, 94, 0.6); } 70% { box-shadow: 0 0 0 9px rgba(61, 189, 94, 0); } 100% { box-shadow: 0 0 0 0 rgba(61, 189, 94, 0); } }

.tag { display: inline-block; align-self: flex-start; padding: 0.28rem 0.75rem; border-radius: 999px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.chip-list { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip { padding: 0.55rem 1.1rem; border: var(--border); border-radius: 999px; background: var(--white); font-weight: 700; box-shadow: 3px 3px 0 var(--ink); }
.chip:nth-child(3n + 1) { background: var(--yellow-soft); }
.chip:nth-child(3n + 2) { background: var(--green-soft); }
.chip:nth-child(3n) { background: var(--pink-soft); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; flex-shrink: 0; }
.brand img:first-child { transition: transform 0.6s var(--ease); }
.brand:hover img:first-child { transform: rotate(90deg); }

.nav-toggle { display: inline-grid; place-items: center; width: 46px; height: 46px; border: var(--border); border-radius: 14px; background: var(--yellow); box-shadow: 3px 3px 0 var(--ink); padding: 0; }
.nav-toggle-bars { display: grid; gap: 5px; width: 20px; }
.nav-toggle-bars span { display: block; height: 2.5px; border-radius: 2px; background: var(--ink); transition: transform 0.25s var(--ease), opacity 0.2s; }
.nav-toggle[aria-expanded='true'] .nav-toggle-bars span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] .nav-toggle-bars span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.primary-nav { position: fixed; inset: calc(var(--header-h) + 2px) 0 0 0; background: var(--cream); padding: 1.25rem 1.25rem 6rem; overflow-y: auto; overscroll-behavior: contain; visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity 0.2s, transform 0.2s var(--ease), visibility 0s 0.2s; }
.primary-nav.is-open { visibility: visible; opacity: 1; transform: none; transition: opacity 0.2s, transform 0.2s var(--ease); }
.nav-list { display: grid; gap: 0.25rem; }
.nav-list > li > a:not(.btn) { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0.25rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; text-decoration: none; border-bottom: 2px solid rgba(17, 17, 17, 0.1); }
.nav-list a[aria-current='page'] { color: var(--green-deep); }
.nav-caret { display: none; }
.subnav { list-style: none; padding: 0.6rem 0 0.9rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.15rem 0.75rem; border-bottom: 2px solid rgba(17, 17, 17, 0.1); }
.subnav a { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.25rem; font-size: 0.93rem; font-weight: 600; text-decoration: none; color: var(--ink-soft); }
.subnav a:hover { color: var(--ink); }
.nav-cta-item { margin-top: 1.25rem; }
.nav-cta-item .btn { width: 100%; min-height: 52px; font-size: 1rem; }
body.nav-locked { overflow: hidden; }

@media (min-width: 960px) {
  :root { --header-h: 76px; }
  .nav-toggle { display: none; }
  .primary-nav { position: static; visibility: visible; opacity: 1; transform: none; padding: 0; overflow: visible; background: none; transition: none; }
  .nav-list { display: flex; align-items: center; gap: 0.25rem; }
  .nav-list > li > a:not(.btn) { display: inline-flex; gap: 0.3rem; padding: 0.5rem 0.95rem; font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; letter-spacing: 0; border: 0; border-radius: 999px; transition: background-color 0.15s; }
  .nav-list > li > a:not(.btn):hover { background: var(--tint); }
  .nav-list > li > a[aria-current='page']:not(.btn) { background: var(--green-soft); }
  .nav-caret { display: block; transition: transform 0.2s; }
  .has-sub { position: relative; }
  .subnav { position: absolute; top: calc(100% + 10px); left: -0.5rem; width: 520px; padding: 0.75rem; background: var(--white); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); visibility: hidden; opacity: 0; transform: translateY(6px); transition: opacity 0.16s, transform 0.16s var(--ease), visibility 0s 0.16s; }
  .subnav::before { content: ''; position: absolute; inset: -14px 0 auto 0; height: 14px; }
  .has-sub:hover .subnav, .has-sub:focus-within .subnav { visibility: visible; opacity: 1; transform: none; transition: opacity 0.16s, transform 0.16s var(--ease); }
  .has-sub:hover .nav-caret, .has-sub:focus-within .nav-caret { transform: rotate(180deg); }
  .subnav a { padding: 0.6rem 0.7rem; border-radius: 10px; color: var(--ink); }
  .subnav a:hover, .subnav a[aria-current='page'] { background: var(--green-soft); }
  .nav-cta-item { margin: 0 0 0 0.6rem; }
  .nav-cta-item .btn { width: auto; min-height: 42px; font-size: 0.9rem; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 3rem 0 3.5rem; overflow: hidden; background: radial-gradient(circle at 92% -10%, var(--green-soft) 0 340px, transparent 341px), radial-gradient(circle at -6% 108%, var(--yellow-soft) 0 220px, transparent 221px), var(--cream); }
.hero-inner { display: grid; gap: 3rem; align-items: center; }
.hero h1 { margin: 1.25rem 0 1.25rem; }
.hero-lead, .page-lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-actions.is-center { justify-content: center; }
@media (max-width: 430px) { .hero-actions .btn { flex: 1 1 auto; padding-inline: 1rem; font-size: 0.93rem; } }
.hero-side { position: relative; }
.hero-flower { position: absolute; z-index: 2; width: 96px; height: 96px; top: -46px; right: -6px; animation: bob 5s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-8deg); } 50% { transform: translateY(-10px) rotate(6deg); } }
.hero-copy > * { animation: fadeUp 0.6s var(--ease) both; }
.hero-copy > :nth-child(2) { animation-delay: 0.08s; }
.hero-copy > :nth-child(3) { animation-delay: 0.16s; }
.hero-copy > :nth-child(4) { animation-delay: 0.24s; }
.hero-side { animation: fadeUp 0.6s var(--ease) 0.28s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.stat-card { display: flex; flex-direction: column; padding: 1.2rem 1.1rem; background: var(--white); border: var(--border); border-top: 8px solid var(--accent); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.stat-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-lg); }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 2.7rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-label { margin-top: 0.45rem; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.stat-sub { margin-top: 0.25rem; font-size: 0.8rem; color: var(--ink-soft); line-height: 1.4; }

@media (min-width: 900px) {
  .hero { padding: 5rem 0 5.5rem; }
  .hero-inner { grid-template-columns: 1.15fr 0.85fr; gap: 4rem; }
  .hero-flower { width: 130px; height: 130px; top: -72px; right: -28px; }
  .stats { gap: 1.1rem; }
  .stat-card { padding: 1.5rem 1.4rem; }
}
@media (min-width: 900px) {
  .section > .container > .stats { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); color: var(--on-dark); border-block: var(--border); padding: 0.95rem 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-flex; align-items: center; gap: 1.6rem; padding-left: 1.6rem; animation: slide 36s linear infinite; font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase; }
.marquee-dot { color: var(--yellow); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 4rem 0; }
.section-flush-top { padding-top: 0; }
.section-tint { background: var(--tint); border-block: var(--border); }
.section-tint + .section-tint, .marquee + .section-tint { border-top: 0; }
.section-dark { background: var(--dark); color: var(--on-dark); }
.section-dark .eyebrow { color: var(--green); }
.section-dark .section-title em { color: var(--green); }
.section-dark .section-sub { color: var(--on-dark-muted); }
.section-green { background: var(--green); border-block: var(--border); }
.section-green .eyebrow { color: var(--ink); }
.section-green .section-title em { color: var(--ink); }
@media (min-width: 900px) { .section { padding: 6rem 0; } .section-flush-top { padding-top: 0; } }

/* ---------- Service cards ---------- */
.services-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr)); }
.services-grid > li { display: flex; }
.service-card { display: flex; align-items: flex-start; gap: 1rem; width: 100%; padding: 1.35rem; background: var(--white); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); text-decoration: none; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s; }
.service-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-lg); background: var(--accent-soft); }
.service-card-body { display: grid; gap: 0.3rem; flex: 1; }
.service-card-title { font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; letter-spacing: -0.015em; line-height: 1.2; }
.service-card-text { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }
.service-card-arrow { align-self: center; opacity: 0.35; transition: transform 0.2s var(--ease), opacity 0.2s; }
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(4px); }
.more-link { margin-top: 2rem; }
.more-link a { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; text-underline-offset: 4px; }

/* ---------- Client logos ---------- */
.logo-marquee { display: flex; gap: 1.25rem; overflow: hidden; padding: 0.5rem 0 4rem; -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.logo-track { display: flex; gap: 1.25rem; flex-shrink: 0; min-width: 100%; justify-content: space-around; animation: logos 42s linear infinite; }
.logo-marquee:hover .logo-track, .logo-marquee:focus-within .logo-track { animation-play-state: paused; }
@keyframes logos { to { transform: translateX(calc(-100% - 1.25rem)); } }
.client-logo { display: block; width: 120px; height: 120px; border-radius: 50%; transition: transform 0.2s var(--ease); }
a.client-logo:hover { transform: scale(1.07) rotate(-3deg); }
.clients-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.client-tile { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; height: 100%; padding: 1.25rem 0.75rem; background: var(--white); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; text-decoration: none; font-size: 0.85rem; font-weight: 700; line-height: 1.3; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
a.client-tile:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-lg); }
.client-tile img { width: 96px; height: 96px; }
/* Some client logos have transparent cut-out lettering made for dark backgrounds. */
.client-tile img, .client-logo img { border-radius: 50%; background: var(--ink); }

/* ---------- Case studies ---------- */
.case-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 255px), 1fr)); }
.case-grid > li { display: flex; }
.case-card { display: flex; flex-direction: column; gap: 0.85rem; width: 100%; padding: 1.5rem 1.35rem; background: var(--dark-card); border: 2px solid var(--dark-line); border-top: 6px solid var(--accent); border-radius: var(--radius); color: var(--on-dark); text-decoration: none; transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s; }
.case-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--accent); border-color: var(--accent); }
.case-handle { display: flex; align-items: center; gap: 0.65rem; font-size: 0.86rem; font-weight: 700; color: var(--on-dark-muted); word-break: break-word; }
.case-handle .icon-tile { width: 38px; height: 38px; border-radius: 12px; border-color: transparent; }
.case-stat { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.case-stat-accent { color: var(--accent); }
.case-text { font-size: 0.92rem; line-height: 1.6; color: var(--on-dark-muted); flex: 1; }
.case-card .tag { background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent); }
.case-link { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.82rem; font-weight: 700; color: var(--on-dark-muted); transition: color 0.2s; }
.case-card:hover .case-link { color: var(--on-dark); }

/* ---------- Reels scroller ---------- */
.scroller-wrap { position: relative; }
.scroller { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: 4px; padding: 6px 8px 14px 4px; margin-inline: -4px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.scroller::-webkit-scrollbar { display: none; }
.scroller > li { flex-shrink: 0; scroll-snap-align: start; }
.reel-card { position: relative; display: block; width: 180px; aspect-ratio: 9 / 16; border: var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--ink); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.reel-card:hover { transform: translate(-2px, -3px); box-shadow: var(--shadow-lg); }
.reel-card img { width: 100%; height: 100%; object-fit: cover; }
.reel-card::after { content: ''; position: absolute; inset: 50% 0 0 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent); }
.reel-play { position: absolute; z-index: 1; top: 10px; right: 10px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--yellow); border: var(--border); color: var(--ink); }
.reel-play svg { fill: currentColor; margin-left: 2px; }
.reel-label { position: absolute; z-index: 1; left: 12px; bottom: 10px; display: inline-flex; align-items: center; gap: 0.35rem; color: #fff; font-size: 0.78rem; font-weight: 700; }
.scroller-controls { display: flex; gap: 0.6rem; justify-content: flex-end; margin-top: 0.75rem; }
@media (min-width: 700px) { .reel-card { width: 204px; } }

/* ---------- Edge ---------- */
.edge-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
@media (min-width: 900px) { .edge-grid { grid-template-columns: repeat(3, 1fr); } }
.edge-card { padding: 1.4rem; background: var(--white); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.edge-card .icon-tile { background: var(--yellow); margin-bottom: 1rem; }
.edge-card p { margin-top: 0.4rem; font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Process ---------- */
.process { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr)); counter-reset: step; }
.process-step { position: relative; padding: 1.5rem 1.35rem; background: var(--white); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.process-num { display: inline-block; margin-bottom: 1rem; padding: 0.1rem 0.7rem; border: var(--border); border-radius: 999px; background: var(--yellow); font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; font-variant-numeric: tabular-nums; }
.process-step:nth-child(2) .process-num { background: var(--pink); }
.process-step:nth-child(3) .process-num { background: var(--green); }
.process-step:nth-child(4) .process-num { background: var(--blue); }
.process-step p { margin-top: 0.5rem; font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- Team ---------- */
.team-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); }
.team-card { padding: 2rem 1.5rem; background: var(--white); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.team-card img { width: 148px; height: 148px; margin: 0 auto 1.25rem; border-radius: 50%; border: 3px solid var(--ink); object-fit: cover; box-shadow: 5px 5px 0 var(--green); }
.team-card:nth-child(2) img { box-shadow: 5px 5px 0 var(--pink); }
.team-card:nth-child(3) img { box-shadow: 5px 5px 0 var(--yellow); }
.team-name { font-size: 1.4rem; }
.team-role { margin-top: 0.35rem; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-deep); }
.team-bio { margin-top: 0.8rem; font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.85rem; }
.faq { background: var(--white); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.25rem; font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline-offset: -5px; border-radius: var(--radius); }
.faq-icon { display: grid; place-items: center; width: 32px; height: 32px; flex-shrink: 0; border: var(--border); border-radius: 50%; background: var(--yellow); transition: transform 0.25s var(--ease), background-color 0.2s; }
.faq[open] .faq-icon { transform: rotate(45deg); background: var(--green); }
.faq-body { padding: 0 1.25rem 1.25rem; color: var(--ink-soft); }

/* ---------- Page hero ---------- */
.page-hero { padding: 2.25rem 0 3.25rem; background: radial-gradient(circle at 96% 0%, var(--accent-soft, var(--green-soft)) 0 260px, transparent 261px), var(--cream); overflow: hidden; }
.page-hero h1 { font-size: clamp(2.15rem, 5.4vw, 3.7rem); margin-bottom: 1.2rem; max-width: 18ch; }
.page-hero-compact { padding-bottom: 2.5rem; }
.page-hero-center { text-align: center; padding: 4rem 0 5rem; }
.page-hero-center h1, .page-hero-center .page-lead { margin-inline: auto; }
.page-hero-center img { margin: 0 auto 1.5rem; }
.page-hero-grid { display: grid; gap: 2rem; align-items: center; }
.page-hero-badge { display: none; justify-self: center; }
.spin-slow { animation: spin 28s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (min-width: 900px) {
  .page-hero { padding: 3rem 0 5rem; }
  .page-hero-grid { grid-template-columns: 1fr auto; gap: 4rem; }
  .page-hero-badge { display: block; padding-right: 3rem; }
}

.breadcrumbs { margin-bottom: 1.75rem; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.4rem; list-style: none; padding: 0; margin: 0; }
.breadcrumbs li + li::before { content: '/'; margin-right: 0.4rem; opacity: 0.45; }
.breadcrumbs a { text-underline-offset: 3px; }
.breadcrumbs [aria-current] { color: var(--ink); }

/* ---------- Included ---------- */
.included-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.included-card { display: flex; gap: 0.9rem; padding: 1.3rem; background: var(--white); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.included-card p { margin-top: 0.35rem; font-size: 0.94rem; color: var(--ink-soft); }
.check { display: grid; place-items: center; width: 30px; height: 30px; flex-shrink: 0; border: var(--border); border-radius: 50%; background: var(--green); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--yellow); border-block: var(--border); padding: 3.5rem 0; }
.cta-band-inner { display: grid; gap: 1.5rem; align-items: center; }
.cta-band .section-title em { color: var(--ink); }
.cta-band p { margin-top: 0.6rem; font-size: 1.05rem; }
.cta-flower { width: 84px; height: 84px; animation: spin 28s linear infinite; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
@media (min-width: 900px) { .cta-band-inner { grid-template-columns: auto 1fr auto; gap: 2.5rem; } .cta-actions { flex-direction: column; align-items: stretch; } }

/* ---------- Contact ---------- */
.contact-layout { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; } .page-hero + .section .contact-layout { padding-top: 0; } }
.section-flush-top.section-tint { padding-top: 3rem; }
.contact-aside { display: grid; gap: 1.75rem; }
.contact-points { display: grid; gap: 1.1rem; }
.contact-points li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-points .icon { margin-top: 0.2rem; }
.contact-points a { font-weight: 700; font-size: 1.1rem; text-underline-offset: 4px; }
.cp-label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.aside-next { padding: 1.35rem; background: var(--white); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.aside-next ol { margin: 0.75rem 0 0; padding-left: 1.2rem; display: grid; gap: 0.45rem; color: var(--ink-soft); font-size: 0.95rem; }

.contact-form { padding: 1.5rem; background: var(--white); border: var(--border); border-radius: 24px; box-shadow: var(--shadow-lg); }
@media (min-width: 700px) { .contact-form { padding: 2.25rem; } }
.form-row { display: grid; gap: 0 1rem; }
@media (min-width: 620px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.req { color: #c4264f; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 0.75rem 1rem; border: var(--border); border-radius: var(--radius-sm); background: var(--cream); font-size: 1rem; transition: box-shadow 0.15s, background-color 0.15s; appearance: none; -webkit-appearance: none; }
.field textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #6e6d66; opacity: 1; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; background: var(--white); box-shadow: 4px 4px 0 var(--green); }
.field [aria-invalid='true'] { border-color: #c4264f; box-shadow: 4px 4px 0 #f6c1cf; }
.field-error { font-size: 0.85rem; font-weight: 600; color: #b01f45; }
.select-wrap { position: relative; }
.select-wrap select { padding-right: 2.75rem; }
.select-wrap .icon { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 1rem; font-weight: 700; }
.form-status:empty { display: none; }
.form-status.is-success { padding: 1rem 1.1rem; border: var(--border); border-radius: var(--radius-sm); background: var(--green-soft); }
.form-status.is-error { padding: 1rem 1.1rem; border: 2px solid #b01f45; border-radius: var(--radius-sm); background: #fdeaf0; color: #7d1230; }
.form-status a { color: inherit; }
.form-note { margin-top: 0.9rem; font-size: 0.84rem; color: var(--ink-soft); }

/* ---------- Prose ---------- */
.prose { padding-top: 2.5rem; }
.prose h2 { font-size: 1.4rem; margin: 2.2rem 0 0.6rem; }
.prose p { color: var(--ink-soft); margin-bottom: 0.9rem; }
.prose a { color: var(--ink); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--on-dark); padding: 4rem 0 2rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr 1fr; }
.footer-brand { grid-column: 1 / -1; max-width: 360px; }
.footer-brand p { margin-top: 1rem; color: var(--on-dark-muted); font-size: 0.95rem; }
.footer-logo { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; letter-spacing: -0.01em; text-decoration: none; }
.footer-logo strong { font-weight: 800; }
.footer-title { font-family: var(--font-body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 1rem; }
.site-footer ul { display: grid; gap: 0.15rem; }
.site-footer nav a, .footer-contact a, .footer-contact span { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.35rem 0; color: var(--on-dark-muted); font-size: 0.95rem; text-decoration: none; transition: color 0.15s; }
.site-footer nav a:hover, .footer-contact a:hover { color: var(--white); }
.footer-grid > div:last-child { grid-column: 1 / -1; }
.social-links { display: flex !important; gap: 0.6rem !important; margin-top: 1.25rem; }
.social-links a { display: grid; place-items: center; width: 42px; height: 42px; border: 2px solid var(--dark-line); border-radius: 12px; transition: background-color 0.15s, color 0.15s, border-color 0.15s; }
.social-links a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; justify-content: space-between; align-items: center; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--dark-line); font-size: 0.85rem; color: var(--on-dark-muted); }
.to-top { display: inline-flex; align-items: center; gap: 0.3rem; text-underline-offset: 4px; }
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 0.8fr 1.1fr; gap: 3rem; }
  .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { position: fixed; z-index: 90; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: auto 1fr; gap: 0.6rem; padding: 0.65rem 0.9rem calc(0.65rem + env(safe-area-inset-bottom)); background: var(--white); border-top: var(--border); transform: translateY(110%); transition: transform 0.3s var(--ease); }
.mobile-cta.is-visible { transform: none; }
.mobile-cta .btn { min-height: 46px; box-shadow: 3px 3px 0 var(--ink); padding-inline: 1.1rem; }
.no-mobile-cta .mobile-cta { display: none; }
@media (max-width: 759px) { body:not(.no-mobile-cta) .site-footer { padding-bottom: 6.5rem; } }
@media (min-width: 760px) { .mobile-cta { display: none; } }

/* ---------- Reveal on scroll (only applied by JS to below-the-fold elements) ---------- */
.reveal-init { opacity: 0; transform: translateY(22px); }
.reveal-in { opacity: 1; transform: none; transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }

/* ---------- Motion & print ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .marquee-inner, .logo-track, .spin-slow, .cta-flower, .hero-flower, .pulse-dot { animation: none !important; }
  .logo-marquee { flex-wrap: wrap; justify-content: center; -webkit-mask-image: none; mask-image: none; }
  .logo-track { flex-wrap: wrap; justify-content: center; min-width: 0; }
  .logo-track[aria-hidden='true'] { display: none; }
  .reveal-init { opacity: 1; transform: none; }
}
@media print {
  .site-header, .mobile-cta, .marquee, .cta-band, .scroller-controls { display: none !important; }
  body { background: #fff; }
}
