:root {
  --bg: #f4f7f2;
  --bg-2: #ffffff;
  --ink: #16301c;
  --muted: #4d6354;
  --line: rgba(22, 48, 28, 0.12);
  --pink: #1f7a3a;
  --pink-2: #2ea04e;
  --card: #ffffff;
  --wrap: min(1120px, calc(100% - 40px));
  --radius: 18px;
  --sans: "Manrope", system-ui, sans-serif;
  --display: "Syne", "Manrope", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light; scrollbar-gutter: stable; }
html, body { margin: 0; background: var(--bg); color: var(--ink); overflow-x: clip; max-width: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(46, 160, 78, 0.16), transparent 55%),
    radial-gradient(820px 420px at -8% 12%, rgba(31, 122, 58, 0.08), transparent 50%),
    var(--bg);
}
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: repeating-linear-gradient(90deg, rgba(22,48,28,.045) 0 1px, transparent 1px 88px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.35), transparent 70%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  margin: 0 0 0.4em;
}
p { margin: 0; line-height: 1.65; }

.sw-skip {
  position: absolute; left: -999px; top: 8px;
}
.sw-skip:focus { left: 8px; z-index: 100; background: var(--pink); color: #fff; padding: 8px 12px; }

.sw-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.sw-wrap { width: var(--wrap); margin-inline: auto; }
.sw-kicker {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sw-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(244, 247, 242, 0.86);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, box-shadow .3s ease;
  overflow: visible;
}
.sw-scrolled .sw-header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 32px rgba(22, 48, 28, .08);
}
.sw-header-inner {
  width: var(--wrap);
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  transition: min-height .35s cubic-bezier(.22,1,.36,1);
}
.sw-scrolled .sw-header-inner { min-height: 62px; }
.sw-header-end {
  display: flex;
  align-items: center;
  gap: 18px;
}
.sw-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  white-space: nowrap;
}
.sw-live-text { transition: opacity .22s ease; min-width: 14ch; display: inline-block; }
.sw-head-wa { display: none !important; }
.sw-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dff7a;
  box-shadow: 0 0 0 0 rgba(61, 255, 122, 0.7);
  animation: sw-pulse 1.8s ease-out infinite;
}
.sw-visitor {
  position: absolute;
  left: 120px;
  top: 58%;
  width: 14px;
  height: 14px;
  margin-top: -2px;
  border: 2px solid var(--pink);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-40deg);
  background: rgba(31, 122, 58, 0.2);
  box-shadow: 0 0 16px rgba(31, 122, 58, 0.35);
  pointer-events: none;
  z-index: 5;
  opacity: 0.9;
  transition: left .85s cubic-bezier(.22,1,.36,1), top .85s cubic-bezier(.22,1,.36,1);
}
.sw-nav-list a.sw-touring {
  color: var(--ink);
}
.sw-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 28%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  animation: sw-scan 7s linear infinite;
}
.sw-logo { position: relative; z-index: 91; flex: none; }
.sw-logo-link { display: block; }
.sw-logo img, .sw-logo .custom-logo {
  height: 88px;
  width: auto;
  max-width: min(260px, 44vw);
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(22, 48, 28, .1));
  transition: height .35s cubic-bezier(.22,1,.36,1), max-width .35s ease;
}
.sw-scrolled .sw-logo img, .sw-scrolled .sw-logo .custom-logo {
  height: 60px;
  max-width: min(200px, 38vw);
}
.sw-live, .sw-head-wa { position: relative; z-index: 91; }

.sw-nav-list {
  display: flex;
  gap: 8px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.sw-nav-list a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}
.sw-nav-list a:hover, .sw-nav-list .current-menu-item > a { color: var(--ink); }
.sw-nav-list .sw-nav-cta,
.sw-nav-list li:last-child a {
  color: #fff;
  background: var(--pink);
  padding: 8px 14px;
  border-radius: 999px;
}

.sw-nav-panel { display: contents; }
.sw-nav-year, .sw-nav-kicker, .sw-nav-foot { display: none; }

.sw-burger {
  display: none;
  width: 46px; height: 46px;
  border: 0; background: transparent; color: var(--ink);
  position: relative;
  z-index: 90;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.sw-burger span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: currentColor;
  transition: transform .45s cubic-bezier(.76,0,.24,1), opacity .25s ease, top .45s cubic-bezier(.76,0,.24,1), bottom .45s cubic-bezier(.76,0,.24,1);
}
.sw-burger span:nth-child(1) { top: 15px; }
.sw-burger span:nth-child(2) { top: 22px; }
.sw-burger span:nth-child(3) { bottom: 15px; }
body.sw-open .sw-burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.sw-open .sw-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.sw-open .sw-burger span:nth-child(3) { bottom: 22px; transform: rotate(-45deg); }

.sw-hero {
  padding: clamp(96px, 12vh, 128px) 0 clamp(72px, 8vh, 96px);
  min-height: min(92vh, 860px);
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sw-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(105deg, rgba(14, 42, 22, .86) 0%, rgba(22, 58, 32, .58) 48%, rgba(14, 42, 22, .78) 100%),
    var(--hero-bg) center / cover no-repeat;
  transform: scale(1.04);
  animation: sw-ken 18s ease-in-out infinite alternate;
}
.sw-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(680px 420px at 12% 88%, rgba(46, 160, 78, .22), transparent 62%),
    radial-gradient(520px 320px at 92% 18%, rgba(31, 122, 58, .16), transparent 58%),
    linear-gradient(180deg, rgba(8, 28, 14, .08) 0%, rgba(8, 28, 14, .55) 100%);
}
.sw-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: end;
}
.sw-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sw-hero-copy .sw-kicker { margin-bottom: 14px; }
.sw-hero-lede { margin-top: 16px; max-width: 46ch; }
.sw-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.sw-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(247,250,245,.94);
}
.sw-hero-badges span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink-2);
  box-shadow: 0 0 10px rgba(61,255,122,.55);
}
.sw-hero-actions { margin-top: 28px; }
.sw-hero-card {
  justify-self: end;
  align-self: end;
  width: min(100%, 340px);
  padding: 28px 26px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.sw-hero-card-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-2);
  margin-bottom: 8px;
}
.sw-hero-card-title {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.sw-hero-card-text {
  color: rgba(247,250,245,.82);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.sw-hero-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.sw-hero-card-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(247,250,245,.9);
}
.sw-hero-card-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--pink-2);
}
.sw-hero { color: #f7faf5; }
.sw-hero .sw-lede { color: rgba(247, 250, 245, .88); }
.sw-hero .sw-sign-quote { color: rgba(247, 250, 245, .82); }
.sw-hero-title {
  font-size: clamp(2.6rem, 8vw, 7rem);
  font-weight: 800;
  max-width: 16ch;
}
.sw-hero-title em {
  font-style: italic;
  color: var(--pink);
  display: block;
}
.sw-hero-row {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.sw-lede { max-width: 42ch; color: var(--muted); font-size: 1.08rem; }
.sw-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.sw-sign {
  justify-self: end;
  text-align: right;
  max-width: 260px;
}
.sw-sign-quote {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.sw-sign img {
  width: min(180px, 40vw);
  margin-left: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.45));
  animation: sw-float 6s ease-in-out infinite;
}

.sw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .28s cubic-bezier(.22,1,.36,1), background .28s ease, box-shadow .28s ease, border-color .28s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.sw-btn:hover { transform: translateY(-2px); }
.sw-btn:active { transform: scale(0.97); }
.sw-btn-solid { background: var(--pink); border-color: var(--pink); color: #fff; }
.sw-btn-ghost {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  color: #fff;
  backdrop-filter: blur(6px);
}
.sw-btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.45);
}
.sw-btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.sw-btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}
.sw-hero .sw-btn:not(.sw-btn-solid) { color: #fff; border-color: rgba(255,255,255,.35); }
.sw-btn-solid::after {
  content: "";
  position: absolute;
  inset: -50% auto -50% -70%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transform: skewX(-18deg) translateX(-140%);
  transition: transform .65s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.sw-btn-solid:hover::after { transform: skewX(-18deg) translateX(340%); }
.sw-btn-solid:hover { box-shadow: 0 10px 30px rgba(255,45,123,.28); }
.sw-text-link {
  font-weight: 700;
  color: var(--pink);
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sw-text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.sw-text-link:hover::after { transform: scaleX(1); }

.sw-section { padding: 72px 0; position: relative; z-index: 1; }
.sw-section-alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.sw-section-head { margin-bottom: 36px; max-width: min(38rem, 100%); }
.sw-section-head h2, .sw-page-hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); max-width: 18em; }
.sw-section-head-split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.sw-section-head-split > div { max-width: min(32rem, 100%); }

.sw-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sw-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
  box-shadow: 0 10px 28px rgba(22, 48, 28, .06);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.sw-card::before {
  content: none;
}
.sw-card::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -18px;
  width: min(34%, 120px);
  height: 72%;
  background: var(--sign) right bottom / contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(1) brightness(1.8);
}
.sw-card > * { position: relative; z-index: 1; }
.sw-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31,122,58,.4);
  background: #fff;
}
.sw-card:hover::after { opacity: 0.28; }
.sw-card h3, .sw-card h2 { font-size: 1.45rem; line-height: 1.15; }
.sw-card-sub { color: var(--pink); font-weight: 700; font-size: 0.86rem; }
.sw-card p:last-child { color: var(--muted); margin-top: auto; line-height: 1.65; font-size: 0.95rem; }
.sw-card-wide { grid-column: span 2; }
.sw-card-row { min-height: 0; }

.sw-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 24px;
  counter-reset: step;
}
.sw-steps li {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-increment: step;
}
.sw-steps li::before {
  content: counter(step, decimal-leading-zero);
  color: var(--pink);
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.85rem;
}
.sw-steps strong { font-size: 1.15rem; }
.sw-steps span { color: var(--muted); }

.sw-about-grid, .sw-prose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.sw-about-grid h3 { font-size: 1.3rem; }
.sw-about-grid p, .sw-prose-grid p { color: var(--muted); }

.sw-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.sw-logo-card {
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 12px 14px;
  text-align: center;
}
.sw-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 12px 10px;
  border-radius: 12px;
  background: #fff;
}
.sw-logo-card img {
  max-height: 58px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.sw-logo-card span { font-size: 0.78rem; font-weight: 600; color: var(--muted); }

.sw-page-hero { padding: 64px 0 20px; position: relative; z-index: 1; }
.sw-page-hero-photo {
  padding: 90px 0 70px;
  isolation: isolate;
  overflow: hidden;
}
.sw-page-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 42, 22, .35), rgba(244, 247, 242, .94)),
    var(--page-bg) center / cover no-repeat;
}
.sw-stack { display: grid; gap: 14px; }
.sw-prose { max-width: 68ch; color: var(--muted); }

.sw-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.sw-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
}
.sw-form label { display: grid; gap: 8px; font-size: 0.86rem; font-weight: 700; }
.sw-form-full, .sw-form button, .sw-form-msg { grid-column: 1 / -1; }
.sw-form input, .sw-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
}
.sw-form input:focus, .sw-form textarea:focus { outline: 2px solid var(--pink); border-color: transparent; }
.sw-hp { position: absolute; left: -9999px; }
.sw-form-msg { color: var(--pink-2); margin: 0; }
.sw-contact-aside { display: grid; gap: 6px; }
.sw-contact-aside p { color: var(--muted); font-size: 0.82rem; margin-top: 12px; }
.sw-contact-aside a { font-size: 1.15rem; font-weight: 700; }

.sw-footer { padding: 72px 0 28px; border-top: 1px solid var(--line); position: relative; z-index: 1; }
.sw-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 32px;
  margin-bottom: 48px;
}
.sw-footer-title { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 12ch; }
.sw-footer-meta { display: grid; gap: 10px; align-content: start; }
.sw-footer-meta a { font-weight: 700; }
.sw-footer-meta .sw-nav-list { flex-direction: column; align-items: flex-start; }
.sw-footer-meta .sw-nav-list li:last-child a {
  background: transparent; color: var(--ink); padding: 0;
}
.sw-legal {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

@media (max-width: 960px) {
  .sw-bento, .sw-steps, .sw-about-grid, .sw-prose-grid, .sw-logos, .sw-contact-grid, .sw-footer-grid, .sw-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sw-card-wide { grid-column: span 2; }
  .sw-hero-grid { grid-template-columns: 1fr; }
  .sw-hero-card { justify-self: stretch; width: 100%; margin-top: 8px; }
  .sw-sign { justify-self: start; text-align: left; }
  .sw-sign img { margin-left: 0; }
  .sw-hero-row, .sw-section-head-split, .sw-work-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  :root { --wrap: min(1120px, calc(100% - 28px)); }
  body.sw-open {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
  }
  body.sw-open .sw-wa { opacity: 0; pointer-events: none; }

  .sw-header {
    padding-top: env(safe-area-inset-top);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: none;
  }
  .sw-header-inner { min-height: 76px; gap: 8px; }
  .sw-scrolled .sw-header-inner { min-height: 64px; }
  .sw-header-end { gap: 8px; }
  .sw-logo img, .sw-logo .custom-logo { height: 64px; max-width: min(200px, 46vw); }
  .sw-scrolled .sw-logo img, .sw-scrolled .sw-logo .custom-logo { height: 52px; max-width: min(170px, 40vw); }
  .sw-live { display: none; }
  .sw-head-wa { display: none !important; }

  .sw-burger { display: block; z-index: 96; }

  .sw-nav {
    position: fixed;
    inset: 0;
    z-index: 95;
    overflow: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background:
      radial-gradient(800px 420px at 110% 0%, rgba(46,160,78,.18), transparent 55%),
      #f4f7f2;
    padding: calc(84px + env(safe-area-inset-top)) 22px calc(24px + env(safe-area-inset-bottom));
    transform: translate3d(0, -110%, 0);
    visibility: hidden;
    pointer-events: none;
    border: 0;
    transition: transform .55s cubic-bezier(.76, 0, .24, 1), visibility 0s linear .55s;
  }
  body.sw-open .sw-nav {
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition: transform .55s cubic-bezier(.76, 0, .24, 1), visibility 0s linear 0s;
  }
  .sw-nav-panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  .sw-nav-year, .sw-nav-kicker, .sw-nav-foot { display: block; }
  .sw-nav-year {
    position: absolute;
    right: 0;
    bottom: 6vh;
    margin: 0;
    font-family: var(--display);
    font-size: min(48vw, 320px);
    font-weight: 800;
    line-height: 0.7;
    letter-spacing: -0.08em;
    color: rgba(255,255,255,.045);
    pointer-events: none;
    max-width: 100%;
    overflow: hidden;
  }
  .sw-nav-kicker {
    color: var(--pink);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 800;
    margin: 0 0 18px;
  }
  .sw-nav .sw-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    padding: 0;
    flex: 1;
  }
  .sw-nav .sw-nav-list li { width: 100%; border-bottom: 1px solid var(--line); }
  .sw-nav .sw-nav-list a,
  .sw-nav .sw-nav-list .sw-nav-cta,
  .sw-nav .sw-nav-list li:last-child a {
    display: flex;
    align-items: baseline;
    gap: 14px;
    width: 100%;
    padding: 14px 0;
    background: transparent;
    color: var(--ink);
    border-radius: 0;
    font-family: var(--display);
    font-size: clamp(2rem, 9vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    transform: translateY(36px);
    opacity: 0;
    transition: transform .7s cubic-bezier(.22,1,.36,1), opacity .45s ease, color .25s ease;
    transition-delay: calc(var(--i, 0) * 70ms);
  }
  .sw-nav .sw-nav-list a::before {
    content: attr(data-i);
    font-size: 0.72rem;
    font-family: var(--sans);
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--pink);
    min-width: 2.2rem;
  }
  body.sw-open .sw-nav .sw-nav-list a {
    transform: none;
    opacity: 1;
    transition-delay: calc(var(--i, 0) * 80ms + 220ms);
  }
  .sw-nav .sw-nav-list a:active { color: var(--pink); }
  .sw-nav-foot {
    display: grid;
    gap: 12px;
    padding-top: 18px;
    transform: translateY(24px);
    opacity: 0;
    transition: transform .6s cubic-bezier(.22,1,.36,1), opacity .4s ease;
  }
  body.sw-open .sw-nav-foot {
    transform: none;
    opacity: 1;
    transition-delay: .48s;
  }
  .sw-nav-foot a:not(.sw-btn) { font-weight: 800; font-size: 1.05rem; }
  .sw-nav-foot .sw-btn { width: 100%; }

  .sw-bento, .sw-steps, .sw-about-grid, .sw-prose-grid, .sw-logos, .sw-contact-grid, .sw-footer-grid, .sw-form, .sw-stats-row {
    grid-template-columns: 1fr;
  }
  .sw-card-wide { grid-column: auto; }
  .sw-hero {
    padding: 36px 0 28px;
    min-height: 0;
    display: block;
  }
  .sw-hero-title { font-size: clamp(2.05rem, 10.8vw, 3.15rem); max-width: none; }
  .sw-hero-punch { font-size: 1.02rem; }
  .sw-lede { font-size: 0.98rem; max-width: none; }
  .sw-hero-badges { margin-top: 18px; }
  .sw-hero-badges span { font-size: 0.78rem; padding: 8px 12px; }
  .sw-hero-card { padding: 22px 20px; margin-top: 24px; }
  .sw-hero-actions { width: 100%; margin-top: 22px; }
  .sw-hero-actions .sw-btn { flex: 1 1 100%; min-height: 52px; }
  .sw-section-head, .sw-section-head-split > div { max-width: none; }
  .sw-hero-media { animation: none; }
  .sw-noise, body::before { display: none; }
  .sw-sign { margin-top: 8px; }
  .sw-sign img { width: 110px; }
  .sw-marquee { margin-top: 28px; }
  .sw-card { min-height: 0; }
  .sw-card::after { width: min(38%, 110px); opacity: 0.14; }
  .sw-legal { flex-direction: column; gap: 8px; }
  .sw-visitor, .sw-header::after { display: none; }
  .sw-slide { width: 100%; max-width: 100%; }
  .sw-swiper { overflow: hidden; padding-inline: 0; touch-action: pan-y pinch-zoom; }
  .sw-work { overflow: hidden; }
  .swiper-slide {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .swiper-slide-active .sw-slide-screen img {
    transform: none;
    object-position: center;
  }
  .sw-work { padding: 40px 0 48px; }
  .sw-section { padding: 52px 0; }
  .sw-close { padding: 52px 0 96px; }
  .sw-footer { padding-bottom: 88px; }
  .sw-wa {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
    padding: 0;
    justify-content: center;
  }
  .sw-wa span { display: none; }
  .sw-toast { bottom: calc(88px + env(safe-area-inset-bottom)); width: calc(100% - 20px); }
  .sw-loader-count { font-size: clamp(5.6rem, 28vw, 9rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sw-hero-media, .sw-hero-card, .sw-sign img, [data-reveal], .sw-live-dot, .sw-header::after, .sw-marquee-track, .sw-wa, .sw-loader-bar i, .sw-slide-screen img, .sw-nav, .sw-nav .sw-nav-list a, .sw-nav-foot, .sw-burger span { animation: none !important; transition: none !important; }
  .sw-loader { display: none !important; }
  .sw-transition { display: none !important; }
  body.sw-loading { overflow: auto; }
  .sw-visitor { display: none !important; }
}

@keyframes sw-ken {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}
@keyframes sw-rise {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes sw-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}
@keyframes sw-kicker-in {
  from { opacity: 0; letter-spacing: 0.28em; transform: translateY(8px); }
  to { opacity: 1; letter-spacing: 0.16em; transform: none; }
}
@keyframes sw-stat-pop {
  from { opacity: 0; transform: scale(0.86); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes sw-step-in {
  from { opacity: 0; transform: translate3d(-12px, 0, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes sw-pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 255, 122, 0.65); }
  70% { box-shadow: 0 0 0 10px rgba(61, 255, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 255, 122, 0); }
}
@keyframes sw-scan {
  0% { transform: translateX(-20%); }
  100% { transform: translateX(360%); }
}

.sw-motion [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 36px, 0) scale(0.98);
  transition:
    opacity .85s cubic-bezier(.22,1,.36,1),
    transform .85s cubic-bezier(.22,1,.36,1);
}
.sw-motion [data-reveal].is-in {
  opacity: 1;
  transform: none;
}
.sw-motion [data-reveal].is-in .sw-kicker {
  animation: sw-kicker-in .7s cubic-bezier(.22,1,.36,1) both;
}
.sw-motion .sw-stat.is-in .sw-stat-val {
  animation: sw-stat-pop .75s cubic-bezier(.22,1,.36,1) both;
}
.sw-motion .sw-steps [data-reveal].is-in {
  animation: sw-step-in .8s cubic-bezier(.22,1,.36,1) both;
}
.sw-logo-card { transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .35s ease, box-shadow .35s ease; }
.sw-logo-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.25); box-shadow: 0 16px 40px rgba(0,0,0,.28); }

.sw-hero-punch {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.6vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #fff, var(--pink-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sw-marquee {
  margin-top: 56px;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.16);
  background: rgba(8, 32, 16, .28);
}
.sw-marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 14px 0;
  animation: sw-slide 28s linear infinite;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(247,250,245,.86);
}
.sw-marquee-track span::before {
  content: "◆";
  color: var(--pink);
  margin-right: 36px;
}
.sw-stats { padding: 32px 0; position: relative; z-index: 1; border-bottom: 1px solid var(--line); }
.sw-stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
}
.sw-stat {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sw-stat-val {
  display: inline-flex;
  align-items: baseline;
  gap: 0.04em;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.sw-stat-suf {
  font-size: 0.78em;
  line-height: 1;
}
.sw-stat-label {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
  text-wrap: balance;
}
.sw-btn-wa { background: #25d366; border-color: #25d366; color: #052e16; }
.sw-btn-wa:hover { box-shadow: 0 10px 28px rgba(37, 211, 102, .32); }
.sw-close {
  padding: 72px 0 88px;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(46,160,78,.14), transparent 60%),
    var(--bg-2);
}
.sw-close h2 { font-size: clamp(2rem, 5vw, 3.5rem); max-width: 14ch; margin-bottom: 12px; }
.sw-close .sw-lede { margin-bottom: 22px; }
.sw-footer .sw-hero-actions { margin-top: 22px; }
.sw-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 16px 0 14px;
  border-radius: 999px;
  background: #25d366;
  color: #052e16;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .35);
  animation: sw-pop 2.8s ease-in-out infinite;
}
.sw-wa:hover { transform: translateY(-3px); }
.sw-toast[hidden] { display: none !important; }
.sw-toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  transform: translateX(-50%) translateY(12px);
  z-index: 90;
  width: min(420px, calc(100% - 24px));
  opacity: 0;
}
.sw-toast.is-in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition: opacity .28s ease, transform .28s ease;
}
.sw-toast-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(22, 48, 28, .16);
}
.sw-toast.is-ok .sw-toast-ico { background: #25d366; }
.sw-toast.is-bad .sw-toast-ico { background: #ff4d6d; }
.sw-toast-ico {
  width: 12px; height: 12px; border-radius: 50%; margin-top: 6px; flex: none;
}
.sw-toast-title { display: block; font-size: 1rem; }
.sw-toast-text { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.sw-toast-wa {
  display: inline-flex;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #25d366;
}
.sw-toast-wa[hidden] { display: none !important; }

@keyframes sw-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.sw-loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: #f4f7f2;
  color: var(--ink);
  transition: transform .9s cubic-bezier(.76, 0, .24, 1);
}
.sw-loader.is-out { transform: translateY(-110%); pointer-events: none; }
.no-js .sw-loader, body:not(.sw-loading) .sw-loader:not(.is-out) { display: none; }
body.sw-loading { overflow: hidden; }
.sw-loader-inner { text-align: center; width: min(520px, calc(100% - 40px)); }
.sw-loader-kicker {
  display: block;
  color: var(--pink);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.sw-loader-count {
  font-family: var(--display);
  font-size: clamp(5.2rem, 18vw, 11rem);
  line-height: 0.82;
  letter-spacing: -0.07em;
  display: block;
}
.sw-loader-bar {
  display: block;
  height: 3px;
  margin: 22px auto 12px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
  border-radius: 99px;
}
.sw-loader-bar i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), #fff);
  transition: width .12s linear;
}
.sw-loader-copy { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; }

.sw-transition {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  background: rgba(244, 247, 242, 0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s ease;
}
.sw-transition[hidden] { display: none !important; }
.sw-transition.is-active {
  opacity: 1;
  pointer-events: auto;
}
.sw-transition-inner { text-align: center; width: min(420px, calc(100% - 40px)); }
.sw-transition-kicker {
  display: block;
  color: var(--pink);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.sw-transition-bar {
  display: block;
  height: 2px;
  margin: 0 auto;
  background: rgba(255,255,255,.12);
  overflow: hidden;
  border-radius: 99px;
}
.sw-transition-bar i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), #fff);
  transition: width .34s cubic-bezier(.22,1,.36,1);
}
@media (max-width: 720px) {
  .sw-transition-kicker { font-size: 0.68rem; letter-spacing: 0.18em; }
  .sw-transition-bar { height: 3px; max-width: 220px; }
}

.sw-work { padding: 64px 0 72px; position: relative; z-index: 1; overflow: hidden; }
.sw-work-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}
.sw-work-head h2 { font-size: clamp(2rem, 5vw, 3.6rem); max-width: 12ch; }
.sw-work-nav { display: flex; align-items: center; gap: 10px; }
.sw-work-prev, .sw-work-next {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.9);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.sw-work-prev:hover, .sw-work-next:hover { border-color: var(--pink); color: var(--pink); }
.sw-work-frac { min-width: 4.8rem; text-align: center; font-weight: 800; color: var(--muted); }
.sw-work-frac b { color: var(--ink); }
.sw-swiper { overflow: visible; padding: 8px 0 48px; }
.sw-slide { width: min(820px, 82vw); }
.sw-slide-frame {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 24px 50px rgba(22, 48, 28, .12);
  transform: translateZ(0);
}
.sw-slide-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #12151d;
  border-bottom: 1px solid var(--line);
}
.sw-slide-chrome i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3a4150;
}
.sw-slide-chrome i:nth-child(1) { background: #ff5f57; }
.sw-slide-chrome i:nth-child(2) { background: #febc2e; }
.sw-slide-chrome i:nth-child(3) { background: #28c840; }
.sw-slide-chrome em {
  margin-left: 8px;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sw-slide-live {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8dffb4;
}
.sw-slide-live::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #3dff7a;
  box-shadow: 0 0 0 0 rgba(61,255,122,.7);
  animation: sw-pulse 1.8s ease-out infinite;
  vertical-align: middle;
}
.sw-slide-screen {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8efe4;
  position: relative;
}
.sw-slide-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.02);
  transition: transform 1.2s ease, object-position 8s ease;
  filter: saturate(1.08) contrast(1.04);
}
.swiper-slide-active .sw-slide-screen img {
  transform: scale(1.08);
  object-position: 50% 28%;
}
.sw-slide-open {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(7,8,12,.78);
  border: 1px solid var(--line);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.sw-slide-screen::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(7,8,12,.72));
  pointer-events: none;
}
.sw-slide-meta { padding: 16px 4px 0; }
.sw-slide-meta h3 { font-size: 1.45rem; margin: 0 0 4px; }
.sw-slide-meta p:last-child { color: var(--muted); }
.sw-work-dots { position: static !important; margin-top: 8px; }
.sw-work-dots .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: var(--ink);
}
.sw-work-dots .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--pink);
  width: 22px;
  border-radius: 99px;
}
.swiper-slide { opacity: .38; transition: opacity .4s ease, transform .4s ease; }
.swiper-slide-active { opacity: 1; }

.sw-motion.sw-loading .sw-hero-grid { opacity: 0; }
.sw-motion.sw-ready .sw-hero .sw-kicker,
.sw-motion.sw-ready .sw-hero-title,
.sw-motion.sw-ready .sw-hero-punch,
.sw-motion.sw-ready .sw-hero-lede,
.sw-motion.sw-ready .sw-hero-actions {
  animation: sw-rise 1s cubic-bezier(.22,1,.36,1) both;
}
.sw-motion.sw-ready .sw-hero .sw-kicker { animation-delay: .04s; }
.sw-motion.sw-ready .sw-hero-title { animation-delay: .1s; }
.sw-motion.sw-ready .sw-hero-punch { animation-delay: .18s; }
.sw-motion.sw-ready .sw-hero-lede { animation-delay: .24s; }
.sw-motion.sw-ready .sw-hero-actions { animation-delay: .38s; }
.sw-motion.sw-ready .sw-hero-card {
  animation:
    sw-rise 1s cubic-bezier(.22,1,.36,1) .44s both,
    sw-float 7s ease-in-out 1.64s infinite;
}
.sw-motion.sw-ready .sw-hero-badges span {
  animation: sw-rise .75s cubic-bezier(.22,1,.36,1) both;
}
.sw-motion.sw-ready .sw-hero-badges span:nth-child(1) { animation-delay: .32s; }
.sw-motion.sw-ready .sw-hero-badges span:nth-child(2) { animation-delay: .4s; }
.sw-motion.sw-ready .sw-hero-badges span:nth-child(3) { animation-delay: .48s; }

.sw-sign-logo { text-align: center; }
.sw-sign-logo img { width: min(220px, 56vw); margin: 0 auto; border-radius: 24px; }
.sw-sign-logo .sw-sign-quote { margin-top: 14px; font-size: 0.92rem; color: var(--muted); max-width: 22ch; margin-inline: auto; }

.sw-slide-photo-frame { cursor: default; pointer-events: none; }
.sw-slide-photo .sw-slide-screen img { object-position: center; }

.sw-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sw-gallery-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.sw-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.sw-gallery-card figcaption {
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--muted);
}

.sw-tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sw-tag-list li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  font-size: 0.88rem;
  font-weight: 600;
}

@media (max-width: 960px) {
  .sw-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .sw-gallery-grid { grid-template-columns: 1fr; }
}
