/* Slash Make — tokens + utilities */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300..900&family=Instrument+Serif:ital@1&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* surfaces */
  --bone: #ece6d6;
  --paper: #f2eddc;
  --paper-2: #e2dcc9;
  --ink: #18130d;
  --ink-2: #2a241c;
  --ink-3: #5a5042;
  --mute: #8d8472;
  --line: rgba(24, 19, 13, 0.06);
  --line-2: rgba(24, 19, 13, 0.12);
  --line-3: rgba(24, 19, 13, 0.55);

  /* one restrained accent — used very sparingly */
  --rust: #b84a1f;

  /* fonts */
  --display: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--display);
  color: var(--ink);
  background: var(--bone);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
}

/* ─── graph-paper background ────────────────────────────────────── */

.sm-grid {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
}

.sm-grid-fine {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ─── scroll margin for sticky header ──────────────────────────── */

section[id] {
  scroll-margin-top: 88px;
}

/* ─── the /make_ logo ───────────────────────────────────────────── */

.sm-logo {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  user-select: none;
}

.sm-logo .slash {
  color: var(--ink);
  font-weight: 400;
}

.sm-logo .word {
  color: var(--ink);
}

.sm-logo .under {
  display: inline-block;
  margin-left: 0.03em;
  color: var(--rust);
  animation: sm-blink 1.05s steps(2, end) infinite;
}

.sm-logo .under.sm-logo-static {
  animation: none;
}

@keyframes sm-blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

/* ─── CTA buttons ──────────────────────────────────────────────── */

.sm-cta-primary,
.sm-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.005em;
  text-decoration: none;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.sm-cta-primary {
  background: var(--ink);
  color: var(--paper);
}

.sm-cta-primary:hover {
  background: var(--ink-2);
}

.sm-cta-ghost {
  background: transparent;
  color: var(--ink);
}

.sm-cta-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.sm-cta-arrow {
  display: inline-block;
  font-family: var(--mono);
  transition: transform 0.2s;
}

.sm-cta-primary:hover .sm-cta-arrow,
.sm-cta-ghost:hover .sm-cta-arrow {
  transform: translate(2px, -2px);
}

.sm-nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 0;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  position: relative;
}

.sm-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transition: right 0.25s cubic-bezier(0.3, 0.7, 0.3, 1);
}

.sm-nav:hover::after {
  right: 0;
}

.sm-nav-arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s;
}

.sm-nav:hover .sm-nav-arrow {
  transform: translate(2px, -2px);
}

.sm-nav-mute {
  color: var(--ink-3);
}

.sm-nav-mute:hover {
  color: var(--ink);
}

/* ─── section labels ────────────────────────────────────────────── */

.sm-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sm-eyebrow::before {
  content: "";
  width: 14px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  flex: 0 0 auto;
}

/* ─── headlines ─────────────────────────────────────────────────── */

.sm-display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.94;
  color: var(--ink);
  margin: 0;
}

.sm-display em {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
}

.sm-h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  margin: 0;
}

.sm-h2 em {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}

.sm-h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}

.sm-body {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink-2);
}

/* ─── small bits ────────────────────────────────────────────────── */

.sm-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rust);
  margin-right: 8px;
  vertical-align: 1px;
}

/* Page container */
.sm-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 56px;
}

@media (max-width: 900px) {
  .sm-wrap {
    padding: 0 28px;
  }
}

/* ─── focus styles for accessibility ──────────────────────────── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* ─── Services hover effect ────────────────────────────────────── */
.sm-service-item {
  transition: color 0.15s;
}

.sm-service-item:hover {
  color: var(--rust);
}

/* ─── Product card hover effect ─────────────────────────────────── */
.sm-product-card {
  transition: border-color 0.15s;
}

.sm-product-card:hover {
  border-color: var(--ink);
}

.sm-product-link {
  transition: color 0.15s;
}

.sm-product-link:hover {
  color: var(--ink);
}

/* ─── Contact email hover effect ────────────────────────────────── */
.sm-contact-email {
  transition: color 0.15s, border-color 0.15s;
}

.sm-contact-email:hover {
  color: var(--rust);
  border-bottom-color: var(--rust);
}

/* ─── Layout Components ─────────────────────────────────────────── */

/* Header */
.sm-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(236, 230, 214, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.sm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
}

.sm-header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Hero Section */
.sm-section-hero {
  border-bottom: 1px solid var(--line-2);
  padding-top: 80px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.sm-hero-title {
  font-size: clamp(52px, 9vw, 120px);
  max-width: 16ch;
}

.sm-hero-period {
  color: var(--rust);
}

.sm-hero-content {
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.sm-hero-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 720px;
}

.sm-hero-lede {
  font-size: 18px;
  margin: 0;
  line-height: 1.5;
}

.sm-hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* About Section */
.sm-section-about {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--line);
}

.sm-section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2.2fr);
  gap: 64px;
  align-items: start;
}

.sm-about-title {
  font-size: clamp(28px, 3vw, 40px);
  max-width: 24ch;
}

.sm-about-text {
  font-size: 16px;
  max-width: 720px;
  margin-top: 24px;
}

.sm-about-text-2 {
  font-size: 16px;
  max-width: 720px;
  margin-top: 16px;
}

.sm-services-wrap {
  margin-top: 56px;
}

.sm-services-label {
  margin-bottom: 18px;
}

.sm-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sm-service-accordion {
  border-bottom: 1px solid var(--line-2);
}

.sm-service-accordion:first-child {
  border-top: 1px solid var(--line-2);
}

.sm-service-item {
  display: grid;
  grid-template-columns: 50px 1fr 40px;
  align-items: baseline;
  gap: 18px;
  padding: 20px 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  color: var(--ink);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s;
}

.sm-service-item:hover {
  color: var(--rust);
}

.sm-service-number {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--mute);
  letter-spacing: 0.04em;
}

.sm-service-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-2);
  transition: all 0.15s;
}

.sm-service-item:hover .sm-service-toggle {
  border-color: var(--rust);
}

.sm-service-toggle-icon {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--ink);
  line-height: 1;
  transition: color 0.15s;
}

.sm-service-item:hover .sm-service-toggle-icon {
  color: var(--rust);
}

.sm-service-item[aria-expanded="true"] .sm-service-toggle {
  background: var(--ink);
  border-color: var(--ink);
}

.sm-service-item[aria-expanded="true"] .sm-service-toggle-icon {
  color: var(--paper);
}

.sm-service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 68px;
}

.sm-service-content--open {
  max-height: 500px;
  padding: 0 0 24px 68px;
}

.sm-service-content p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
}

/* Process Section */
.sm-section-process {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--line-2);
}

.sm-process-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sm-process-diagram {
  margin-top: 8px;
  padding: 16px 14px;
  border: 1px solid var(--line-2);
  background: var(--paper);
  max-width: 320px;
}

.sm-process-title {
  font-size: clamp(28px, 3vw, 40px);
}

.sm-process-intro {
  font-size: 15px;
  max-width: 540px;
  margin-top: 20px;
}

.sm-process-steps {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
}

.sm-process-step {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  padding: 36px 0;
  border-top: 1px solid var(--line-2);
}

.sm-process-step--last {
  border-bottom: 1px solid var(--line-2);
}

.sm-process-step-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sm-process-number {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.06em;
}

.sm-process-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.sm-process-body {
  font-size: 16px;
  max-width: 460px;
  margin: 0 0 12px;
}

/* Work Section */
.sm-section-work {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--line);
}

.sm-work-header {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2.2fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.sm-work-header-right {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.sm-work-title {
  font-size: clamp(28px, 3vw, 40px);
}

.sm-work-meta {
  font-size: 13px;
  font-family: var(--mono);
  color: var(--mute);
  white-space: nowrap;
}

.sm-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sm-product-card {
  border: 1px solid var(--line-2);
  background: var(--paper);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 220px;
  transition: border-color 0.15s;
}

.sm-product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sm-product-badge {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sm-product-index {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.08em;
}

.sm-product-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.sm-product-name {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.sm-product-desc {
  font-size: 14px;
  margin: 0;
  color: var(--ink-3);
}

.sm-product-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 4px;
  border-top: 1px dashed var(--line);
}

.sm-product-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  transition: color 0.15s;
}

.sm-product-link-arrow {
  font-size: 14px;
}

.sm-workshop-card {
  border: 1px dashed var(--line-2);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink-3);
  min-height: 220px;
  background: transparent;
}

.sm-workshop-icon {
  width: 44px;
  height: 44px;
  border: 1px dashed var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mute);
  font-size: 18px;
}

.sm-workshop-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
}

.sm-workshop-text {
  font-size: 14px;
  margin: 0;
  color: var(--ink-3);
}

/* Manifesto Section */
.sm-section-manifesto {
  padding: 120px 0 100px;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--ink);
}

.sm-manifesto-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sm-manifesto-eyebrow {
  color: rgba(242,237,220,0.6);
}

.sm-manifesto-diagram {
  padding: 14px 14px 8px;
  border: 1px solid rgba(242,237,220,0.22);
  background: rgba(242,237,220,0.03);
  max-width: 260px;
}

.sm-manifesto-title {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--paper);
}

.sm-manifesto-list {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
}

.sm-manifesto-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid rgba(242,237,220,0.16);
  align-items: baseline;
}

.sm-manifesto-item--last {
  border-bottom: 1px solid rgba(242,237,220,0.16);
}

.sm-manifesto-number {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: rgba(242,237,220,0.55);
  letter-spacing: -0.01em;
}

.sm-manifesto-text {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--paper);
}

/* Contact Section */
.sm-section-contact {
  padding: 140px 0 120px;
}

.sm-contact-eyebrow {
  margin-bottom: 32px;
}

.sm-contact-title {
  font-size: clamp(42px, 7vw, 96px);
  max-width: 18ch;
}

.sm-contact-intro {
  font-size: 16px;
  max-width: 640px;
  margin-top: 28px;
}

.sm-contact-row {
  margin-top: 48px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.sm-contact-email {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 3.5vw, 42px);
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 6px;
}

.sm-contact-caption {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.04em;
}

/* Footer */
.sm-footer {
  border-top: 1px solid var(--line-2);
  padding: 32px 0 28px;
}

.sm-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.sm-footer-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.sm-footer-status {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
}

.sm-footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.sm-footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.06em;
}

/* Blog Layouts */
.sm-blog-article {
  padding: 120px 0 100px;
}

.sm-blog-container {
  max-width: 800px;
}

.sm-blog-header {
  margin-bottom: 48px;
}

.sm-blog-eyebrow {
  margin-bottom: 24px;
}

.sm-blog-title {
  font-size: clamp(42px, 6vw, 72px);
  max-width: 20ch;
}

.sm-blog-date {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mute);
  margin-top: 24px;
}

.sm-blog-content {
  font-size: 18px;
}

.sm-list-section {
  padding: 120px 0 100px;
}

.sm-list-container {
  max-width: 960px;
}

.sm-list-header {
  margin-bottom: 64px;
}

.sm-list-eyebrow {
  margin-bottom: 24px;
}

.sm-list-title {
  font-size: clamp(48px, 8vw, 96px);
}

.sm-list-intro {
  font-size: 18px;
  margin-top: 24px;
  max-width: 640px;
}

.sm-list-posts {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.sm-list-post {
  border-bottom: 1px solid var(--line);
  padding-bottom: 32px;
}

.sm-list-post-title {
  font-size: clamp(28px, 3.5vw, 42px);
}

.sm-list-post-link {
  text-decoration: none;
  color: var(--ink);
}

.sm-list-post-desc {
  font-size: 17px;
  margin-top: 12px;
  color: var(--ink-3);
}

.sm-list-post-date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mute);
  margin-top: 16px;
}

.sm-list-empty {
  font-size: 17px;
  color: var(--ink-3);
}

/* ─── Mobile Menu ──────────────────────────────────────────────── */

.sm-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  transition: background 0.15s;
}

.sm-menu-toggle:hover {
  background: var(--ink);
}

.sm-menu-icon {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: background 0.15s;
}

.sm-menu-toggle:hover .sm-menu-icon {
  background: var(--paper);
}

.sm-menu-icon::before,
.sm-menu-icon::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: absolute;
  left: 0;
  transition: all 0.2s;
}

.sm-menu-toggle:hover .sm-menu-icon::before,
.sm-menu-toggle:hover .sm-menu-icon::after {
  background: var(--paper);
}

.sm-menu-icon::before {
  top: -6px;
}

.sm-menu-icon::after {
  top: 6px;
}

.sm-menu-toggle[aria-expanded="true"] .sm-menu-icon {
  background: transparent;
}

.sm-menu-toggle[aria-expanded="true"] .sm-menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.sm-menu-toggle[aria-expanded="true"] .sm-menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.sm-header-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bone);
  border-top: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sm-header-nav-mobile--open {
  max-height: 300px;
}

.sm-header-nav-mobile .sm-nav {
  padding: 18px 56px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

.sm-header-nav-mobile .sm-nav::after {
  display: none;
}

/* ─── Tablet Responsive (≤900px) ────────────────────────────────── */

@media (max-width: 900px) {
  .sm-wrap {
    padding: 0 32px;
  }

  .sm-header-inner {
    padding: 18px 32px;
  }

  .sm-header-nav-desktop {
    display: none;
  }

  .sm-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sm-header-nav-mobile {
    display: flex;
  }

  /* Section grid to single column */
  .sm-section-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Hero adjustments */
  .sm-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sm-hero-content > svg {
    order: -1;
    margin: 0 auto;
  }

  /* Process diagram smaller */
  .sm-process-diagram {
    max-width: 240px;
  }

  /* Work grid to 2 columns */
  .sm-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm-work-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sm-work-header-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Services accordion smaller */
  .sm-service-item {
    grid-template-columns: 40px 1fr 36px;
    font-size: clamp(18px, 2.2vw, 24px);
  }

  .sm-service-content {
    padding: 0 0 0 58px;
  }

  .sm-service-content--open {
    padding: 0 0 20px 58px;
  }

  /* Process steps */
  .sm-process-step {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Manifesto */
  .sm-manifesto-item {
    grid-template-columns: 50px 1fr;
    gap: 18px;
  }

  .sm-manifesto-number {
    font-size: 24px;
  }

  /* Contact */
  .sm-contact-row {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  /* Footer */
  .sm-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .sm-footer-links {
    flex-direction: column;
    gap: 14px;
  }

  /* Section padding */
  .sm-section-about,
  .sm-section-work,
  .sm-section-manifesto {
    padding: 80px 0 64px;
  }

  .sm-section-hero {
    padding-top: 60px;
    padding-bottom: 64px;
  }

  .sm-section-process {
    padding: 80px 0 64px;
  }

  .sm-section-contact {
    padding: 100px 0 80px;
  }
}

/* ─── Mobile Responsive (≤600px) ────────────────────────────────── */

@media (max-width: 600px) {
  .sm-wrap {
    padding: 0 20px;
  }

  .sm-header-inner {
    padding: 16px 20px;
  }

  .sm-header-nav-mobile .sm-nav {
    padding: 16px 20px;
  }

  /* Logo smaller on mobile */
  .sm-header .sm-logo {
    font-size: 24px !important;
  }

  /* Hero */
  .sm-hero-title {
    font-size: clamp(36px, 10vw, 52px);
  }

  .sm-hero-lede {
    font-size: 16px;
  }

  .sm-hero-content > svg {
    width: 120px;
    height: 120px;
  }

  .sm-hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .sm-cta-primary,
  .sm-cta-ghost {
    width: 100%;
    justify-content: center;
  }

  /* Work grid to single column */
  .sm-work-grid {
    grid-template-columns: 1fr;
  }

  /* Product cards */
  .sm-product-name {
    font-size: 22px;
  }

  /* Services accordion */
  .sm-service-item {
    font-size: clamp(16px, 4vw, 20px);
    grid-template-columns: 35px 1fr 32px;
    padding: 16px 0;
  }

  .sm-service-number {
    font-size: 11px;
  }

  .sm-service-toggle {
    width: 28px;
    height: 28px;
  }

  .sm-service-toggle-icon {
    font-size: 18px;
  }

  .sm-service-content {
    padding: 0 0 0 47px;
  }

  .sm-service-content--open {
    padding: 0 0 16px 47px;
  }

  .sm-service-content p {
    font-size: 15px;
  }

  /* Process */
  .sm-process-heading {
    font-size: clamp(28px, 8vw, 42px);
  }

  .sm-process-body {
    font-size: 15px;
  }

  .sm-process-diagram {
    max-width: 100%;
  }

  /* Manifesto */
  .sm-manifesto-item {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 20px 0;
  }

  .sm-manifesto-number {
    font-size: 20px;
  }

  .sm-manifesto-text {
    font-size: clamp(16px, 4vw, 18px);
  }

  /* Contact */
  .sm-contact-title {
    font-size: clamp(32px, 9vw, 52px);
  }

  .sm-contact-email {
    font-size: clamp(20px, 5vw, 28px);
    word-break: break-all;
  }

  .sm-contact-intro {
    font-size: 15px;
  }

  /* Footer */
  .sm-footer-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sm-footer .sm-logo {
    font-size: 18px !important;
  }

  /* Section padding */
  .sm-section-about,
  .sm-section-work,
  .sm-section-manifesto {
    padding: 60px 0 48px;
  }

  .sm-section-hero {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .sm-section-process {
    padding: 60px 0 48px;
  }

  .sm-section-contact {
    padding: 80px 0 60px;
  }

  /* Blog layouts */
  .sm-blog-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .sm-list-title {
    font-size: clamp(36px, 10vw, 64px);
  }
}

/* ─── Small Mobile (≤400px) ─────────────────────────────────────── */

@media (max-width: 400px) {
  .sm-wrap {
    padding: 0 16px;
  }

  .sm-header-inner {
    padding: 14px 16px;
  }

  .sm-header-nav-mobile .sm-nav {
    padding: 14px 16px;
  }

  .sm-hero-title {
    font-size: 32px;
  }

  .sm-contact-title {
    font-size: 28px;
  }
}
