/* StoryArc Media — shared styles */

:root {
  --sa-ink: #4a4a4a;
  --sa-muted: #888888;
  --sa-line: #cbcbcb;
  --sa-bg: #ffffff;
  --sa-bg-alt: #f8f5ee;
  --sa-accent: #6d8196;
  --sa-accent-2: #005678;
  --sa-accent-soft: #e8ecf0;
  --sa-max: 1180px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--sa-bg);
  color: var(--sa-ink);
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
@media (hover: hover) { a:hover { opacity: 0.7; } }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: 'Sora', 'Helvetica Neue', Arial, sans-serif;
  color: var(--sa-ink);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: 42px; }
h2 { font-size: 30px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

p { margin: 0 0 1em; color: var(--sa-muted); }
p.lead { font-family: 'Ubuntu', sans-serif; font-size: 19px; color: var(--sa-ink); }

.sa-wrap {
  max-width: var(--sa-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */
.sa-header {
  background: var(--sa-bg);
  position: relative;
  z-index: 200;
}

.sa-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 8px 24px 20px;
  max-width: var(--sa-max);
  margin: 0 auto;
}

.sa-logo { line-height: 0; }

.sa-logo img { height: 82px; width: auto; }

.sa-nav {
  margin-top: -14px;
  position: relative;
  z-index: 1;
}

.sa-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.sa-nav a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--sa-ink);
}

.sa-nav a.active { color: var(--sa-accent); }

.sa-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
  color: var(--sa-ink);
}

.sa-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
  transform-origin: center;
}

/* ---------- Hero / Page head ---------- */
.sa-pagehead {
  padding: 90px 24px 60px;
  text-align: center;
  background: var(--sa-bg-alt);
}

.sa-pagehead h1 { margin-bottom: 14px; }
.sa-pagehead p { max-width: 720px; margin: 0 auto; font-size: 18px; }

/* ---------- Sections ---------- */
.sa-section { padding: 80px 0; }
.sa-section.alt { background: var(--sa-bg-alt); }
.sa-section.dark {
  background: var(--sa-accent);
  color: #fff;
}
.sa-section.dark h1,
.sa-section.dark h2,
.sa-section.dark h3,
.sa-section.dark p { color: #fff; }
.sa-section.dark p { opacity: 0.9; }

.sa-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: start;
}

.sa-service-intro {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
}

.sa-service-intro-visual img,
.sa-service-intro-visual video {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.sa-service-intro-visual img { aspect-ratio: 3 / 4; }

.sa-service-intro-visual video {
  aspect-ratio: 16 / 9;
  background: #000;
}

.sa-service-intro-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}

.sa-service-intro-duo img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}

.sa-service-intro-duo img:nth-child(2) { margin-top: 32px; }

.sa-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sa-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---------- Service cards ---------- */
.sa-service {
  padding: 28px;
  border: 1px solid var(--sa-line);
  border-top: 3px solid var(--sa-accent);
  background: var(--sa-bg);
  border-radius: 12px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.sa-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
}
.sa-service h3 { margin-bottom: 10px; }
.sa-service p { margin: 0; font-size: 15px; }

/* ---------- Process / local cards ---------- */
.sa-process-step {
  padding: 32px 28px 30px;
  border: 1px solid var(--sa-line);
  background: var(--sa-bg);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sa-process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
}

.sa-pstep-num {
  font-family: 'Sora', sans-serif;
  font-size: 108px;
  font-weight: 800;
  line-height: 0.85;
  color: var(--sa-accent);
  opacity: 0.07;
  position: absolute;
  top: 20px;
  right: 28px;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.22s ease;
}

.sa-process-step:hover .sa-pstep-num { opacity: 0.28; }
.sa-process-step h3,
.sa-process-step p { position: relative; z-index: 1; }
.sa-process-step h3 { margin-bottom: 10px; }
.sa-process-step p { font-size: 15px; margin: 0; color: var(--sa-muted); }

/* ---------- Services 2×2 redesign ---------- */
.sa-services-section { padding: 100px 0; }

.sa-services-hd {
  text-align: center;
  margin-bottom: 52px;
}

.sa-services-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sa-accent);
  margin-bottom: 12px;
}

.sa-services-h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  margin: 0;
}

.sa-services-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--sa-line);
  border: 1px solid var(--sa-line);
  border-radius: 6px;
  overflow: hidden;
}

.sa-svc-row {
  background: var(--sa-bg-alt);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: background 0.25s ease;
}

.sa-svc-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sa-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.sa-svc-row:hover { background: var(--sa-bg); }
.sa-svc-row:hover::before { transform: scaleX(1); }

.sa-svc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 14px;
}

.sa-svc-top h3 {
  font-size: clamp(16px, 1.5vw, 20px);
  margin: 0;
  line-height: 1.25;
  transition: color 0.25s ease;
}

.sa-svc-row:hover .sa-svc-top h3 { color: var(--sa-accent-2); }

.sa-svc-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
  color: var(--sa-accent);
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sa-svc-icon svg {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  display: block;
}

.sa-svc-row:hover .sa-svc-icon { opacity: 1; transform: scale(1.1); }

.sa-svc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sa-svc-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--sa-muted);
  margin: 0 0 20px;
  flex: 1;
}

.sa-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sa-accent);
  text-decoration: none;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s, color 0.2s ease;
  align-self: flex-start;
}

.sa-svc-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}

.sa-svc-link:focus-visible {
  outline: none;
}

.sa-svc-link:focus-visible::after {
  border-radius: 6px;
  outline: 2px solid var(--sa-accent);
  outline-offset: -3px;
}

.sa-svc-link svg {
  width: 13px;
  height: 13px;
  min-width: 13px;
  min-height: 13px;
  flex-shrink: 0;
  display: block;
  transition: transform 0.2s ease;
}
.sa-svc-link:hover { color: var(--sa-accent-2); }
.sa-svc-link:hover svg { transform: translateX(3px); }
.sa-svc-row:hover .sa-svc-link { opacity: 1; transform: translateY(0); }
.sa-svc-row:focus-within .sa-svc-link { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .sa-svc-row { padding: 36px 32px; }
}

@media (max-width: 640px) {
  .sa-services-section { padding: 72px 0; }
  .sa-services-rows { grid-template-columns: 1fr; }
  .sa-svc-row { padding: 32px 28px; }
  .sa-svc-link { opacity: 1; transform: none; }
}

/* ---------- Work grid ---------- */
.sa-work-tile {
  background: var(--sa-bg-alt);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.sa-work-tile:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.sa-work-tile:focus-visible { outline: 2px solid var(--sa-accent); outline-offset: 3px; }
.sa-work-tile .thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #cbcbcb;
}
.sa-work-tile .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sa-work-tile:hover .thumb img { transform: scale(1.05); }
.sa-work-tile .meta {
  padding: 16px 18px;
}
.sa-work-tile h4 { margin: 0 0 4px; font-size: 16px; }
.sa-work-tile .tag { font-family: 'Sunflower', sans-serif; font-weight: 700; color: var(--sa-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Work full-screen overlay ---------- */
.sa-wf-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #111;
  display: grid;
  grid-template-columns: 60fr 40fr;
  opacity: 0;
  transform: translateY(2vh);
  transition: opacity 0.38s ease, transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  pointer-events: none;
  overflow: hidden;
  will-change: opacity, transform;
}
.sa-wf-overlay[hidden] { display: none; }
.sa-wf-overlay.is-open { opacity: 1; transform: none; pointer-events: auto; }

/* Left: media */
.sa-wf-media-col {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #000;
}

.sa-wf-media-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  cursor: pointer;
}

.sa-wf-hero-img,
.sa-wf-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sa-wf-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.sa-wf-play-overlay svg {
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  flex-shrink: 0;
  display: block;
}
.sa-wf-media-wrap.is-paused .sa-wf-play-overlay { opacity: 1; }

.sa-wf-video-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.sa-wf-ctrl-btn {
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.sa-wf-ctrl-btn:hover { background: rgba(255,255,255,0.2); }
.sa-wf-ctrl-btn svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  flex-shrink: 0;
  display: block;
}

/* Thumbnail strip */
.sa-wf-photos-strip {
  display: flex;
  gap: 3px;
  height: 72px;
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
  background: #0a0a0a;
}
.sa-wf-photos-strip::-webkit-scrollbar { display: none; }
.sa-wf-photos-strip:empty { display: none; }

.sa-wf-photos-strip img {
  height: 72px;
  width: auto;
  min-width: 72px;
  flex-shrink: 0;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  display: block;
}
.sa-wf-photos-strip img:hover,
.sa-wf-photos-strip img.is-active { opacity: 1; }

.sa-wf-strip-video-btn {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity 0.2s;
  opacity: 0.5;
}
.sa-wf-strip-video-btn:hover,
.sa-wf-strip-video-btn.is-active { opacity: 1; }
.sa-wf-strip-video-btn .sa-wf-vbtn-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sa-wf-vbtn-overlay svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  flex-shrink: 0;
  display: block;
}

/* Right: content */
.sa-wf-content-col {
  display: flex;
  flex-direction: column;
  padding: 60px 52px 48px 48px;
  overflow-y: auto;
  position: relative;
  background: #111;
  color: #fff;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.sa-wf-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.sa-wf-close:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }

.sa-wf-content-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sa-wf-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sa-accent);
  display: block;
  margin-bottom: 12px;
}

.sa-wf-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.12;
}

.sa-wf-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
  margin: 0 0 32px;
}

.sa-wf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sa-wf-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}

.sa-wf-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sa-accent);
  font-size: 12px;
  top: 2px;
}

.sa-wf-media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s, opacity 0.2s;
  z-index: 10;
}
.sa-wf-media-nav:hover { background: rgba(255,255,255,0.18); }
.sa-wf-media-nav:disabled { opacity: 0; pointer-events: none; }
.sa-wf-media-nav--prev { left: 14px; }
.sa-wf-media-nav--next { right: 14px; }
.sa-wf-media-nav svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  flex-shrink: 0;
  display: block;
}

@media (max-width: 900px) {
  .sa-wf-overlay {
    grid-template-columns: 1fr;
    grid-template-rows: 45vw auto;
    overflow-y: auto;
  }
  .sa-wf-overlay { min-height: 0; }
  .sa-wf-media-col { max-height: 55vw; }
  .sa-wf-content-col { padding: 52px 28px 40px; overflow-y: visible; }
  .sa-wf-close {
    position: fixed;
    top: 14px;
    right: 14px;
    background: rgba(10,10,10,0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

/* ---------- Buttons ---------- */
.sa-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--sa-accent);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: opacity 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.sa-btn:hover { opacity: 0.88; }

.sa-btn.ghost {
  background: transparent;
  color: var(--sa-ink) !important;
  border: 2px solid var(--sa-ink);
}
.sa-btn.ghost:hover {
  background: var(--sa-ink);
  color: #fff !important;
  opacity: 1;
}

/* ---------- Client list (work page) ---------- */
.sa-client-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  font-family: 'Sunflower', sans-serif;
  font-weight: 700;
  color: var(--sa-ink);
}

/* ---------- Contact ---------- */
.sa-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.sa-contact-info p { margin-bottom: 6px; }
.sa-contact-info strong { color: var(--sa-ink); }
.sa-contact-info .info-group { margin-bottom: 20px; }
.sa-map-embed {
  border: 1px solid var(--sa-line);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: 22px 0;
  background: var(--sa-bg-alt);
}
.sa-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

form.sa-form label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--sa-ink);
}

form.sa-form input,
form.sa-form select,
form.sa-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  font: inherit;
  margin-bottom: 20px;
  background: var(--sa-bg);
}

form.sa-form textarea { min-height: 140px; resize: vertical; }

/* ---------- Footer ---------- */
.sa-footer {
  background: var(--sa-bg);
  border-top: 1px solid var(--sa-line);
  color: var(--sa-ink);
  padding: 72px 24px;
  font-family: 'Roboto', sans-serif;
}

.sa-footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(130px, 0.8fr)) minmax(270px, 1.5fr);
  gap: 46px;
  max-width: var(--sa-max);
  margin: 0 auto;
  align-items: start;
}

.sa-footer-brand img {
  width: 190px;
  height: auto;
  margin: -6px 0 15px -7px;
}

.sa-footer-brand p {
  color: var(--sa-ink);
  font-size: 18px;
  line-height: 1.45;
  max-width: 300px;
  margin: 0;
}

.sa-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.sa-footer-socials a {
  align-items: center;
  background: rgba(109, 129, 150, 0.07);
  border-radius: 8px;
  color: var(--sa-accent);
  display: inline-flex;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.sa-footer-socials a:hover {
  background: rgba(109, 129, 150, 0.18);
  color: var(--sa-accent);
  opacity: 1;
}

.sa-footer-socials svg {
  display: block;
  fill: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sa-footer-socials svg path {
  fill: currentColor;
  stroke: none;
}

.sa-footer h3 {
  font-family: 'DM Sans', sans-serif;
  color: var(--sa-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 24px;
  padding: 0;
}

.sa-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sa-footer li {
  color: var(--sa-ink);
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 16px;
}

.sa-footer a {
  color: var(--sa-ink);
}

.sa-footer a:hover {
  color: var(--sa-accent);
  opacity: 1;
}

.sa-footer-contact li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
}

.sa-footer-icon {
  color: var(--sa-accent);
  display: block;
  line-height: 0;
  padding-top: 3px;
  width: 20px;
  min-width: 20px;
  flex-shrink: 0;
}

.sa-footer-icon svg {
  display: block;
  width: 17px;
  height: 17px;
  min-width: 17px;
  min-height: 17px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sa-footer address {
  color: var(--sa-ink);
  font-style: normal;
}

.sa-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--sa-line);
  margin: 48px auto 0;
  max-width: var(--sa-max);
  padding-top: 24px;
  font-size: 13px;
  color: var(--sa-muted);
  flex-wrap: wrap;
  gap: 10px;
}

.sa-footer-legal {
  align-items: center;
  display: flex;
  gap: 10px;
}

.sa-footer-legal a {
  color: var(--sa-muted);
  font-size: 13px;
}

.sa-footer-legal a:hover {
  color: var(--sa-accent);
  opacity: 1;
}

/* ---------- Home hero (full-width video) ---------- */
.sa-hero {
  width: 100%;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
  background: #000;
  line-height: 0;
}

.sa-hero video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 88vh;
  object-fit: cover;
}

/* ---------- Showreel scroll-over scene ---------- */
.sa-showreel-scene {
  position: relative;
}

.sa-showreel-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 520px;
  overflow: hidden;
  z-index: 2;
}

.sa-showreel-sticky .sa-hero {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 0;
}

.sa-showreel-sticky .sa-hero video {
  max-height: none;
}

.sa-showreel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transform: translateY(100%);
  will-change: transform;
  padding: 60px 24px;
}

.sa-showreel-overlay h1 {
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.sa-showreel-overlay p {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.sa-showreel-spacer {
  height: 100vh;
  height: 100svh;
  min-height: 520px;
}

/* ---------- Work page showreel (cinematic) ---------- */
.sa-work-showreel-section {
  background: #0c0e0f;
  padding: 64px 0 72px;
  border-bottom: 1px solid rgba(109, 129, 150, 0.18);
}

.sa-wsr-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

.sa-wsr-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  justify-content: center;
}

.sa-wsr-rule {
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12));
}

.sa-wsr-head .sa-wsr-rule:last-child {
  background: linear-gradient(270deg, transparent, rgba(255,255,255,0.12));
}

.sa-wsr-titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.sa-wsr-page-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.sa-wsr-label {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.sa-work-showreel-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

/* Viewfinder corner markers */
.sa-wsr-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.4s, width 0.4s, height 0.4s;
  opacity: 0.5;
}

.sa-work-showreel-wrap:hover .sa-wsr-corner {
  opacity: 1;
  width: 28px;
  height: 28px;
}

.sa-wsr-tl { top: 18px; left: 18px; border-top: 1.5px solid var(--sa-accent); border-left: 1.5px solid var(--sa-accent); }
.sa-wsr-tr { top: 18px; right: 18px; border-top: 1.5px solid var(--sa-accent); border-right: 1.5px solid var(--sa-accent); }
.sa-wsr-bl { bottom: 18px; left: 18px; border-bottom: 1.5px solid var(--sa-accent); border-left: 1.5px solid var(--sa-accent); }
.sa-wsr-br { bottom: 18px; right: 18px; border-bottom: 1.5px solid var(--sa-accent); border-right: 1.5px solid var(--sa-accent); }

.sa-work-showreel-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sa-work-showreel-wrap:hover .sa-work-showreel-video {
  transform: scale(1.015);
}

.sa-work-showreel-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
  border: none;
  cursor: pointer;
  transition: background 0.35s;
}

.sa-work-showreel-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

.sa-wsr-play-ring {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s, box-shadow 0.3s;
}

.sa-work-showreel-btn:hover .sa-wsr-play-ring {
  transform: scale(1.1);
  border-color: #fff;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.06);
}

.sa-wsr-play-icon {
  position: relative;
  z-index: 1;
  transform: translateX(3px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.5));
}

.sa-work-showreel-btn:hover .sa-wsr-play-icon {
  transform: translateX(6px);
}

.sa-work-showreel-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.sa-wsr-meta {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.18);
  margin: 18px 0 0;
}

@media (max-width: 640px) {
  .sa-wsr-inner { padding: 0 20px; }
  .sa-work-showreel-section { padding: 48px 0 56px; }
  .sa-wsr-corner { display: none; }
}

/* ---------- Standalone showreel page ---------- */
.sa-showreel-page {
  min-height: calc(100svh - 139px);
  background: #050505;
}

.sa-showreel-player {
  min-height: calc(100svh - 139px);
  display: grid;
  place-items: center;
  padding: 24px;
}

.sa-showreel-player-shell {
  position: relative;
  width: min(100%, calc((100svh - 187px) * 16 / 9));
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.sa-showreel-player-shell:fullscreen {
  width: 100vw;
  height: 100vh;
  aspect-ratio: auto;
}

.sa-showreel-player-shell:fullscreen .sa-showreel-toolbar,
.sa-showreel-player-shell:-webkit-full-screen .sa-showreel-toolbar {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.sa-showreel-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.sa-showreel-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.sa-showreel-play:hover {
  background: rgba(0, 0, 0, 0.12);
}

.sa-showreel-play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.sa-showreel-play-ring {
  position: absolute;
  width: 84px;
  height: 84px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.sa-showreel-play:hover .sa-showreel-play-ring {
  transform: scale(1.08);
  border-color: #fff;
}

.sa-showreel-play svg {
  position: relative;
  z-index: 1;
  transform: translateX(3px);
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.45));
}

.sa-showreel-toolbar {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.sa-showreel-quality,
.sa-showreel-fullscreen {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(8, 10, 12, 0.72);
  color: #fff;
  backdrop-filter: blur(12px);
}

.sa-showreel-quality {
  gap: 8px;
  padding: 0 10px 0 14px;
}

.sa-showreel-quality span,
.sa-showreel-fullscreen span {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.sa-showreel-quality select {
  height: 30px;
  border: 0;
  border-radius: 0;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  padding: 0 28px 0 10px;
}

.sa-showreel-quality option {
  color: #111;
}

.sa-showreel-fullscreen {
  gap: 8px;
  border-radius: 0;
  padding: 0 14px;
  cursor: pointer;
}

.sa-showreel-fullscreen:hover,
.sa-showreel-quality:hover {
  background: rgba(8, 10, 12, 0.88);
}

@media (max-width: 760px) {
  .sa-showreel-page,
  .sa-showreel-player {
    min-height: calc(100svh - 82px);
  }

  .sa-showreel-player {
    padding: 12px;
    place-items: start center;
    padding-top: 24px;
  }

  .sa-showreel-player-shell {
    width: 100%;
  }

  .sa-showreel-toolbar {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .sa-showreel-fullscreen span,
  .sa-showreel-quality span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}


.sa-btn.light {
  background: #fff;
  color: var(--sa-accent) !important;
}

/* ---------- Gallery strip ---------- */
.sa-gallery-viewport {
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: grab;
  user-select: none;
}

.sa-gallery-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

.sa-gallery-card {
  flex: 0 0 var(--card-w, 190px);
  overflow: hidden;
  border-radius: 8px;
}

.sa-gallery-card img,
.sa-gallery-card video {
  display: block;
  height: var(--card-h, 290px);
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sa-gallery-card:hover img,
.sa-gallery-card:hover video { transform: scale(1.04); }

/* ---------- Gallery section ---------- */
.sa-gallery-section {
  overflow: hidden;
  background: var(--sa-bg);
}

.sa-photo-gallery-section {
  overflow: hidden;
  background: var(--sa-bg);
}

.sa-photo-gallery-section .sa-gallery-viewport + .sa-gallery-viewport {
  margin-top: 14px;
}

.sa-photo-gallery-section .sa-gallery-card {
  flex: 0 0 clamp(180px, 18vw, 260px);
  aspect-ratio: 3 / 4;
  background: var(--sa-bg-alt);
}

.sa-photo-gallery-section .sa-gallery-card--landscape {
  flex-basis: clamp(220px, 24vw, 340px);
  aspect-ratio: 4 / 3;
}

.sa-photo-gallery-section .sa-gallery-card img {
  width: 100%;
  height: 100%;
}

/* ---------- Testimonial carousel ---------- */
.sa-testimonial-section {
  overflow-x: clip;
}

.sa-testimonial-viewport {
  overflow-x: hidden;
  overflow-y: visible;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 14px 0;
  margin-top: -14px;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.sa-testimonial-viewport::-webkit-scrollbar { display: none; }

.sa-testimonial-strip {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: max-content;
}

/* ---------- Testimonials ---------- */
.sa-testimonial {
  flex: 0 0 clamp(300px, 32vw, 430px);
  min-height: 100%;
  padding: 56px 36px 36px;
  background: var(--sa-bg-alt);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.sa-testimonial::before {
  content: '\201C';
  font-family: 'Sora', sans-serif;
  font-size: 160px;
  line-height: 1;
  color: var(--sa-accent);
  opacity: 0.12;
  position: absolute;
  top: 12px;
  right: 28px;
  pointer-events: none;
  z-index: 0;
}

.sa-testimonial p {
  font-size: 15px;
  font-style: italic;
  line-height: 1.78;
  color: var(--sa-ink);
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

.sa-testimonial-footer {
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.sa-testimonial-logo {
  flex: 0 0 auto;
  width: fit-content;
  max-width: clamp(80px, 7vw, 112px);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.sa-testimonial-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Match the client logo marquee's Safari DPR compositing path. */
  filter: brightness(1);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.sa-testimonial-logo-wide {
  margin-right: 10px;
}

.sa-testimonial-name {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--sa-ink);
  margin-bottom: 3px;
}

.sa-testimonial-role {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: var(--sa-muted);
  line-height: 1.4;
}

/* ---------- Testimonial hover ---------- */
.sa-testimonial {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.sa-testimonial::before {
  transition: opacity 0.3s ease, transform 0.35s ease;
}
.sa-testimonial-logo {
  transition: transform 0.3s ease;
}

.sa-testimonial:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1.5px var(--sa-accent),
    0 4px 12px rgba(0, 0, 0, 0.05),
    0 20px 48px rgba(109, 129, 150, 0.15);
  background: #fff;
}
.sa-testimonial:hover::before {
  opacity: 0.22;
  transform: scale(1.1) translateY(-6px);
}
.sa-testimonial:hover .sa-testimonial-logo {
  transform: scale(1.06) translateZ(0);
  -webkit-transform: scale(1.06) translateZ(0);
}

/* ---------- Client logo marquee ---------- */
.sa-clients-marquee {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  position: relative;
}

/* Fade edges without mask-image, which rasterizes SVG children at 1× in Safari */
.sa-clients-marquee::before,
.sa-clients-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  z-index: 2;
  pointer-events: none;
}
.sa-clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--sa-bg), transparent);
}
.sa-clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--sa-bg), transparent);
}

.sa-clients-row {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
}

.sa-clients-row--ltr {
  animation: sa-clients-ltr 64s linear infinite;
}

.sa-clients-row--rtl {
  animation: sa-clients-rtl 64s linear infinite;
}

/* translate3d forces a 3D compositing layer in Safari, which renders at device
   pixel ratio — 2D translateX creates a 1× tile, causing blurry SVGs on retina */
@keyframes sa-clients-ltr {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@keyframes sa-clients-rtl {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

.sa-clients-marquee:hover .sa-clients-row {
  animation-play-state: paused;
}

.sa-clients-row img {
  height: 58px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
  /* Own compositing layer so Safari renders at device pixel ratio, not 1× */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.sa-clients-row img:hover {
  opacity: 1;
  transform: scale(1.08) translateZ(0);
  -webkit-transform: scale(1.08) translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
  .sa-clients-row { animation: none; }
}

/* ---------- About intro ---------- */
.sa-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sa-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sa-accent);
  margin-bottom: 14px;
}

.sa-pull-quote {
  padding-top: 8px;
}

.sa-pull-quote::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--sa-accent);
  margin-bottom: 28px;
}

.sa-pull-quote p {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--sa-ink);
  margin: 0 0 24px;
}

.sa-pull-hl {
  font-style: italic;
  border-bottom: 2px solid var(--sa-accent);
  padding-bottom: 2px;
}

.sa-pull-quote cite {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sa-accent);
  font-style: normal;
}

@media (max-width: 900px) {
  .sa-about-intro { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Section CTA link ---------- */
.sa-section-cta {
  margin-top: 36px;
  text-align: center;
}

/* ---------- 404 ---------- */
.sa-404-scene {
  background: var(--sa-bg-alt);
  padding: 100px 0 120px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.sa-404-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sa-404-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(100px, 18vw, 180px);
  font-weight: 800;
  line-height: 1;
  color: var(--sa-accent);
  opacity: 0.15;
  margin: 0 0 -0.2em;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.sa-404-inner h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 16px;
}

.sa-404-inner > p {
  max-width: 480px;
  font-size: 17px;
  margin: 0 0 40px;
}

.sa-404-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .sa-grid-2,
  .sa-grid-3,
  .sa-grid-4,
  .sa-contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .sa-service-intro-visual {
    max-width: 360px;
    margin: 0 auto;
  }
  .sa-service-intro-duo {
    max-width: 430px;
    margin: 0 auto;
  }
  h1 { font-size: 32px; }
  .sa-nav ul { gap: 20px; }
  .sa-testimonial { flex-basis: 320px; }
  /* Tablet footer: brand + contact span full width, 3 nav cols in one row */
  .sa-footer-inner { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .sa-footer-brand,
  .sa-footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .sa-header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
  }

  .sa-logo img { height: 52px; }

  .sa-nav {
    margin-top: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sa-bg);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 199;
  }

  .sa-header.is-open .sa-nav {
    max-height: 320px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-top: 1px solid var(--sa-line);
  }

  .sa-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 20px;
  }

  .sa-nav li { border-bottom: 1px solid var(--sa-line); }
  .sa-nav li:last-child { border-bottom: none; }

  .sa-nav a {
    display: block;
    padding: 16px 0;
    font-size: 17px;
  }

  .sa-burger { display: flex; }

  .sa-header.is-open .sa-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .sa-header.is-open .sa-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .sa-header.is-open .sa-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 767px) {
  .sa-gallery-card { flex: 0 0 130px; }
  .sa-gallery-card img,
  .sa-gallery-card video { height: 200px; }
}

@media (max-width: 640px) {
  .sa-pagehead { padding: 50px 24px 40px; }
  .sa-section { padding: 50px 0; }
  h1 { font-size: 26px; }
  .sa-testimonial {
    flex-basis: min(82vw, 330px);
    padding: 48px 24px 30px;
  }
  .sa-testimonial p {
    font-size: 14px;
    line-height: 1.72;
  }
  .sa-footer { padding: 48px 24px; text-align: center; }
  .sa-footer-inner { grid-template-columns: 1fr; gap: 0; }
  .sa-footer-brand p { font-size: 17px; max-width: none; }
  .sa-footer-brand { padding-bottom: 28px; border-bottom: 1px solid var(--sa-line); }
  .sa-footer-brand img { margin: 0 auto 15px; }
  .sa-footer-socials { justify-content: center; }
  .sa-footer-contact { padding-top: 16px; }
  .sa-footer-contact h3 { margin-bottom: 20px; }
  .sa-footer-contact ul { margin-top: 20px; }
  .sa-footer-contact li {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    grid-template-columns: unset;
    margin-bottom: 18px;
  }
  .sa-footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  /* Accordion: footer nav columns */
  .sa-footer-column {
    border-bottom: 1px solid var(--sa-line);
  }
  .sa-footer-column h3 {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 18px 0;
    font-size: 16px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  .sa-footer-column h3::after {
    content: '+';
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--sa-muted);
    line-height: 1;
    flex-shrink: 0;
  }
  .sa-footer-column.sa-open h3::after {
    content: '\2212';
  }
  .sa-footer-column ul {
    display: none;
    padding-bottom: 16px;
  }
  .sa-footer-column.sa-open ul {
    display: block;
  }
  .sa-footer h3 { margin-bottom: 0; }
  .sa-footer li { font-size: 15px; margin-bottom: 10px; }

  /* Work detail overlay — taller media on small phones */
  .sa-wf-overlay { grid-template-rows: 58vw auto; }
  .sa-wf-media-col { max-height: 66vw; }
  .sa-wf-content-col { padding: 44px 20px 28px; }
  .sa-wf-title { font-size: 22px; }
  .sa-wf-desc { font-size: 14px; margin-bottom: 20px; }
}

/* ---------- Blog article ---------- */

.sa-read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--sa-accent);
  z-index: 999;
  width: 0%;
  transition: width 0.08s linear;
  pointer-events: none;
}

.sa-article-hero {
  background: var(--sa-bg-alt);
  padding: 64px 24px 56px;
  text-align: center;
  border-bottom: 1px solid var(--sa-line);
}

.sa-article-crumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--sa-muted);
  margin-bottom: 22px;
}

.sa-article-crumb a { color: var(--sa-muted); }
.sa-article-crumb a:hover { color: var(--sa-accent); opacity: 1; }

.sa-article-cat {
  display: inline-block;
  font-family: 'Sunflower', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sa-accent);
  background: var(--sa-accent-soft);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.sa-article-hero h1 {
  max-width: 820px;
  margin: 0 auto 22px;
  font-size: clamp(26px, 3.8vw, 46px);
  line-height: 1.14;
}

.sa-article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--sa-muted);
  flex-wrap: wrap;
}

.sa-article-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sa-line);
  display: inline-block;
  flex-shrink: 0;
}

/* Article body column */
.sa-article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.sa-article-body p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--sa-ink);
  margin-bottom: 1.4em;
}

.sa-article-body p.lead {
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: var(--sa-ink);
  margin-bottom: 1.6em;
}

.sa-article-body h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 2em 0 0.55em;
  color: var(--sa-ink);
  line-height: 1.2;
}

.sa-article-body h3 {
  font-size: 19px;
  margin: 1.6em 0 0.45em;
  color: var(--sa-ink);
}

.sa-article-body ul,
.sa-article-body ol {
  padding-left: 22px;
  margin-bottom: 1.4em;
}

.sa-article-body li {
  font-size: 17px;
  line-height: 1.75;
  color: var(--sa-ink);
  margin-bottom: 0.55em;
}

.sa-article-body strong { color: var(--sa-ink); }

/* Pull quote */
.sa-pull-block {
  border-left: 3px solid var(--sa-accent);
  padding: 14px 24px;
  margin: 2.2em 0;
  background: var(--sa-accent-soft);
  border-radius: 0 10px 10px 0;
}

.sa-pull-block p {
  font-family: 'Sora', sans-serif;
  font-size: 19px !important;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5 !important;
  color: var(--sa-accent-2) !important;
  margin: 0 !important;
}

/* Stat callouts */
.sa-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 2em 0;
}

.sa-stat-box {
  background: var(--sa-bg-alt);
  border: 1px solid var(--sa-line);
  border-top: 3px solid var(--sa-accent);
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
}

.sa-stat-box .num {
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--sa-accent);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.sa-stat-box .label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--sa-muted);
  line-height: 1.4;
  display: block;
}

/* Article thumbnail placeholder */
.sa-article-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sa-article-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 1px,
    transparent 1px,
    transparent 18px
  );
}

.sa-article-thumb-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.42);
  position: relative;
  z-index: 1;
}

.sa-article-figure {
  margin: 32px 0;
}

.sa-article-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--sa-line);
  border-radius: 12px;
  background: #fff;
}

.sa-article-figure figcaption {
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--sa-muted);
}

/* Article hr */
.sa-article-body hr {
  border: none;
  border-top: 1px solid var(--sa-line);
  margin: 2.4em 0;
}

/* Author bio */
.sa-author-bio {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--sa-bg-alt);
  border-radius: 12px;
  border: 1px solid var(--sa-line);
  margin-top: 56px;
}

.sa-author-avatar {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: var(--sa-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--sa-accent);
  flex-shrink: 0;
}

.sa-author-bio-body { flex: 1; }

.sa-author-bio-body strong {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  color: var(--sa-ink);
  display: block;
  margin-bottom: 3px;
}

.sa-author-bio-body .role {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--sa-accent);
  display: block;
  margin-bottom: 10px;
}

.sa-author-bio-body p {
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: var(--sa-muted) !important;
  margin: 0 !important;
}

/* Article back-nav */
.sa-article-back {
  padding: 44px 24px 0;
  max-width: 760px;
  margin: 0 auto;
}

/* Blog card as anchor */
a.sa-blog-card {
  display: flex;
  color: inherit;
}

a.sa-blog-card:hover { opacity: 1; }

/* Blog card thumb gradients */
.sa-blog-card-thumb {
  position: relative;
}

.sa-blog-thumb-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: 'Sunflower', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.68);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  pointer-events: none;
}

.sa-blog-thumb-stripe {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 1px,
    transparent 1px,
    transparent 18px
  );
  pointer-events: none;
}

@media (max-width: 640px) {
  .sa-stat-row { grid-template-columns: 1fr; gap: 12px; }
  .sa-article-body h2 { font-size: 20px; }
  .sa-pull-block p { font-size: 17px !important; }
  .sa-author-bio { flex-direction: column; }
  .sa-article-hero { padding: 48px 24px 44px; }
}
