/* ==========================================================================
   SERVICES INDEX PAGE — Clean, readable, editorial
   ========================================================================== */

/* ── Hero ──────────────────────────────────────────────────────────────── */

.si-hero {
  padding: clamp(140px, 16vw, 220px) 0 clamp(60px, 8vw, 100px);
  background: var(--bg);
}

.si-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.si-hero .breadcrumb a {
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}

.si-hero .breadcrumb a:hover {
  color: var(--accent-dark);
}

.si-hero .breadcrumb-sep {
  opacity: 0.4;
}

.si-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 24px;
}

.si-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 400;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 1100px;
}

.si-title em {
  font-style: italic;
  color: var(--accent-dark);
}

.si-lead {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 820px;
}

/* ── Intro ─────────────────────────────────────────────────────────────── */

.si-intro {
  padding: clamp(60px, 8vw, 120px) 0;
  background: var(--bg-alt);
  transition: background 0.5s var(--ease);
}

.si-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.si-intro-lead {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 24px;
}

.si-intro-text p:not(.si-intro-lead) {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.si-intro-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.si-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.si-stat span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Shared section head ──────────────────────────────────────────────── */

.si-section-head {
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 720px;
}

.si-section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-top: 12px;
}

.si-section-head h2 em {
  font-style: italic;
  color: var(--accent-dark);
}

/* ── Services Grid ────────────────────────────────────────────────────── */

.si-grid-section {
  padding: clamp(80px, 12vw, 160px) 0;
}

.si-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.si-card {
  display: block;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.si-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.18);
}

.si-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.si-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.si-card:hover .si-card-img img {
  transform: scale(1.06);
}

.si-card-body {
  padding: clamp(28px, 3vw, 44px);
}

.si-card-num {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 14px;
}

.si-card-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
  transition: color 0.3s var(--ease);
}

.si-card:hover .si-card-body h3 {
  color: var(--accent-dark);
}

.si-card-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.si-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border-med);
  padding-bottom: 6px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), gap 0.3s var(--ease);
}

.si-card:hover .si-card-link {
  color: var(--accent-dark);
  border-color: var(--accent);
  gap: 14px;
}

.si-card-link svg {
  transition: transform 0.3s var(--ease);
}

.si-card:hover .si-card-link svg {
  transform: translateX(4px);
}

/* Featured card — slightly emphasised */
.si-card-featured {
  background: var(--text);
  border-color: var(--text);
}

.si-card-featured .si-card-body h3,
.si-card-featured .si-card-link {
  color: var(--bg);
}

.si-card-featured .si-card-body p {
  color: rgba(250, 250, 248, 0.65);
}

.si-card-featured .si-card-num {
  color: var(--accent);
}

.si-card-featured:hover .si-card-body h3,
.si-card-featured:hover .si-card-link {
  color: var(--accent);
}

/* ── Why Us ───────────────────────────────────────────────────────────── */

.si-why {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-alt);
}

.si-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 40px);
}

.si-why-item {
  padding: 32px 0 0;
  border-top: 1px solid var(--border-med);
}

.si-why-num {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 20px;
}

.si-why-item h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.si-why-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── Process ──────────────────────────────────────────────────────────── */

.si-process {
  padding: clamp(80px, 12vw, 160px) 0;
}

.si-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 32px);
}

.si-process-step {
  padding: 32px 0 0;
  border-top: 1px solid var(--border-med);
}

.si-process-num {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 20px;
}

.si-process-step h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.si-process-step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

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

.si-cta {
  padding: clamp(100px, 14vw, 180px) 0;
  text-align: center;
  background: var(--bg-alt);
}

.si-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.si-cta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 24px;
  display: block;
}

.si-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}

.si-cta h2 em {
  font-style: italic;
  color: var(--accent-dark);
}

.si-cta p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ── Engagement Models ────────────────────────────────────────────────── */

.si-models {
  padding: clamp(80px, 12vw, 160px) 0;
}

.si-models-lead {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 820px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.si-models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

.si-model {
  position: relative;
  padding: clamp(32px, 3.5vw, 48px);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.si-model:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.18);
}

.si-model-tag {
  position: absolute;
  top: clamp(32px, 3.5vw, 48px);
  right: clamp(32px, 3.5vw, 48px);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  border: 1px solid var(--border-med);
  border-radius: 100px;
  padding: 6px 12px;
}

.si-model-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 22px;
}

.si-model h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.si-model > p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.si-model-list {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--border-med);
}

.si-model-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 12px;
}

.si-model-list li:last-child {
  margin-bottom: 0;
}

.si-model-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* Dark emphasis card */
.si-model-dark {
  background: var(--text);
  border-color: var(--text);
}

.si-model-dark h3 {
  color: var(--bg);
}

.si-model-dark > p {
  color: rgba(250, 250, 248, 0.65);
}

.si-model-dark .si-model-num {
  color: var(--accent);
}

.si-model-dark .si-model-list {
  border-color: rgba(255, 255, 255, 0.15);
}

.si-model-dark .si-model-list li {
  color: rgba(250, 250, 248, 0.9);
}

.si-model-dark:hover {
  border-color: var(--accent);
}

/* ── Comparison Table ─────────────────────────────────────────────────── */

.si-compare {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-alt);
}

.si-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  background: var(--bg);
}

.si-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.si-table th,
.si-table td {
  padding: clamp(16px, 1.6vw, 22px) clamp(14px, 1.6vw, 24px);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.si-table thead th {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--bg-alt);
}

.si-table thead th:not(:first-child),
.si-table tbody td {
  text-align: center;
}

.si-table tbody th {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
}

.si-table tbody td {
  font-size: 14px;
  color: var(--text-faint);
}

.si-table td.yes {
  color: var(--accent-dark);
  font-size: 18px;
  font-weight: 600;
}

.si-table td.opt {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.si-table tbody tr:last-child th,
.si-table tbody tr:last-child td {
  border-bottom: none;
}

.si-table tbody tr:hover th,
.si-table tbody tr:hover td {
  background: var(--bg-alt);
}

.si-table-note {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
}

.si-table-note a {
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}

/* ── Testimonials ─────────────────────────────────────────────────────── */

.si-testimonials {
  padding: clamp(80px, 12vw, 160px) 0 0;
}

.si-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.si-quote {
  margin: 0;
  padding: clamp(32px, 3.5vw, 44px);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
}

.si-quote blockquote {
  margin: 0 0 28px;
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.7vw, 21px);
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
}

.si-quote figcaption strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.si-quote figcaption span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.si-partners {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
}

.si-partners-label {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: clamp(32px, 4vw, 56px);
}

/* ── FAQ ──────────────────────────────────────────────────────────────── */

.si-faq {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-alt);
}

.si-faq-list {
  max-width: 860px;
}

.si-faq-item {
  border-bottom: 1px solid var(--border-med);
}

.si-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 2.4vw, 30px) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 400;
  color: var(--text);
  transition: color 0.3s var(--ease);
}

.si-faq-item summary::-webkit-details-marker {
  display: none;
}

.si-faq-item summary:hover {
  color: var(--accent-dark);
}

.si-faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.si-faq-icon::before,
.si-faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent-dark);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.si-faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.si-faq-icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.si-faq-item[open] .si-faq-icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.si-faq-answer {
  padding: 0 48px 28px 0;
}

.si-faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Subtle open animation */
.si-faq-item[open] .si-faq-answer {
  animation: siFaqReveal 0.4s var(--ease-out);
}

@keyframes siFaqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive: new sections ─────────────────────────────────────────── */

@media (max-width: 960px) {
  .si-models-grid {
    grid-template-columns: 1fr;
  }

  .si-quotes {
    grid-template-columns: 1fr;
  }
}

/* ── About page Mission/Vision cards ─────────────────────────────────── */

.ab-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}

.ab-mv-card {
  padding: clamp(36px, 4vw, 56px);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.ab-mv-card:hover {
  transform: translateY(-4px);
}

.ab-mv-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 20px;
}

.ab-mv-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 18px;
}

.ab-mv-card h3 em {
  font-style: italic;
}

.ab-mv-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .ab-mv-grid {
    grid-template-columns: 1fr;
  }
}

/* ── About: Feature image band ────────────────────────────────────────── */

.ab-feature-band {
  padding: 0 0 clamp(60px, 8vw, 120px);
  background: var(--bg-alt);
}

.ab-feature-img {
  position: relative;
  width: 100%;
  height: clamp(320px, 56vw, 640px);
  overflow: hidden;
}

.ab-feature-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ab-feature-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 560px;
  padding: clamp(28px, 4vw, 56px);
  background: linear-gradient(to top, rgba(20, 18, 16, 0.85), rgba(20, 18, 16, 0));
  color: #fff;
}

.ab-feature-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.ab-feature-caption p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 28px);
  font-style: italic;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}

/* ── About: Inside the studio — alternating rows ──────────────────────── */

.ab-inside {
  padding: clamp(80px, 12vw, 160px) 0;
}

.ab-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1240px;
  margin: 0 auto clamp(48px, 6vw, 96px);
  padding: 0 clamp(20px, 5vw, 60px);
}

.ab-row:last-child {
  margin-bottom: 0;
}

.ab-row-rev .ab-row-img {
  order: 2;
}

.ab-row-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.ab-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.ab-row:hover .ab-row-img img {
  transform: scale(1.05);
}

.ab-row-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 20px;
}

.ab-row-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
}

.ab-row-text p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 460px;
}

/* ── About: Studio gallery (masonry-style grid) ───────────────────────── */

.ab-gallery-section {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-alt);
}

.ab-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(140px, 16vw, 220px);
  gap: clamp(12px, 1.5vw, 20px);
}

.ab-gal-item {
  position: relative;
  overflow: hidden;
  background: var(--border);
}

.ab-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.ab-gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0);
  transition: background 0.4s var(--ease);
}

.ab-gal-item:hover img {
  transform: scale(1.07);
}

.ab-gal-item:hover::after {
  background: rgba(20, 18, 16, 0.12);
}

.ab-gal-tall {
  grid-row: span 2;
}

.ab-gal-wide {
  grid-column: span 2;
}

.ab-gallery-cta {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
}

/* ── About: Milestones timeline ───────────────────────────────────────── */

.ab-timeline-section {
  padding: clamp(80px, 12vw, 160px) 0;
}

.ab-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  position: relative;
}

.ab-timeline::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-med);
}

.ab-tl-item {
  position: relative;
  padding-top: 32px;
}

.ab-tl-item::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.ab-tl-year {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 16px;
}

.ab-tl-item h3 {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}

.ab-tl-item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ── About: responsive ────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .ab-row,
  .ab-row-rev {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ab-row-rev .ab-row-img {
    order: 0;
  }

  .ab-row-text p {
    max-width: none;
  }

  .ab-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-gal-wide {
    grid-column: span 2;
  }

  .ab-gal-tall {
    grid-row: span 1;
  }

  .ab-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .ab-timeline::before {
    display: none;
  }

  .ab-tl-item {
    padding-top: 24px;
  }
}

@media (max-width: 560px) {
  .ab-gallery {
    grid-template-columns: 1fr;
  }

  .ab-gal-wide,
  .ab-gal-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .ab-timeline {
    grid-template-columns: 1fr;
  }

  .ab-feature-caption {
    max-width: 100%;
  }
}

/* ── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .si-intro-grid {
    grid-template-columns: 1fr;
  }

  .si-grid {
    grid-template-columns: 1fr;
  }

  .si-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .si-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .si-intro-stats {
    grid-template-columns: 1fr 1fr;
    padding: 28px;
    gap: 24px 16px;
  }

  .si-why-grid,
  .si-process-grid {
    grid-template-columns: 1fr;
  }
}
