/* ================================================================
   Special Arts — main.css  (Redesign v3)
   Modern Warm · Full-screen hero · Premium Kuwait Interiors
   Palette: Ivory · Warm Charcoal · Bronze-Gold · Terracotta
   ================================================================ */

/* ================================================================
   1. TOKENS
================================================================ */
:root {
  /* Palette */
  --ivory:       #FAF8F2;
  --ivory-2:     #F2ECE0;
  --ivory-3:     #E8DFD0;
  --white:       #FFFFFF;

  --charcoal:    #1C1A17;
  --charcoal-2:  #2E2A24;
  --charcoal-3:  #3D3830;
  --dark:        #1C1A17; /* alias for scroll-gallery info panels */

  --gold:        #C4924A;
  --gold-light:  #D9AC6A;
  --gold-dim:    rgba(196,146,74,.18);
  --gold-border: rgba(196,146,74,.28);

  --taupe:       #8C7B6B;
  --taupe-light: #B5A898;

  --text:        #1C1A17;
  --text-mid:    #5C5045;
  --text-light:  #9A8E82;

  --border:      rgba(28,26,23,.09);
  --shadow-sm:   0 2px 14px rgba(28,26,23,.07);
  --shadow-md:   0 8px 36px rgba(28,26,23,.11);
  --shadow-lg:   0 20px 70px rgba(28,26,23,.15);

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Cairo', 'Tajawal', system-ui, sans-serif;

  /* Layout */
  --max:   1200px;
  --nav-h: 74px;
  --r:     14px;
  --r-sm:  8px;

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --t:    .32s;
}

/* ================================================================
   2. BASE RESET
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ivory);
  color: var(--text);
  font-family: var(--serif);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.rtl, html[dir="rtl"] body { font-family: var(--sans); }

/* ── RTL Navigation ── */
html[dir="rtl"] .sa-nav__inner {
  flex-direction: row-reverse;
}
html[dir="rtl"] .sa-nav__menu {
  margin-inline-start: 0;
  margin-inline-end: auto;
}
html[dir="rtl"] .sa-nav__menu li a {
  letter-spacing: 0;
  text-transform: none;
}

/* ── RTL Mobile Nav ── */
html[dir="rtl"] .sa-mobile-nav {
  align-items: flex-end;
  padding-inline-end: 40px;
}
html[dir="rtl"] .sa-mobile-nav__list {
  text-align: right;
}
html[dir="rtl"] .sa-mobile-nav__list li a {
  letter-spacing: 0;
  text-transform: none;
  font-size: .78rem;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ================================================================
   3. GLOBAL UTILITIES
================================================================ */
.sa-container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 40px;
}

/* Heading styles */
.sa-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
}
.sa-heading em { font-style: italic; color: var(--gold); }

body.rtl .sa-heading,
html[dir="rtl"] .sa-heading {
  font-family: var(--sans);
  font-weight: 700;
}

/* Small label above headings */
.sa-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.sa-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}
html[dir="rtl"] .sa-label::before { display: none; }
html[dir="rtl"] .sa-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Horizontal rule */
.sa-rule {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 18px 0 28px;
}

/* Section header block */
.sa-section-head { margin-bottom: 52px; }
.sa-section-head--center { text-align: center; }
.sa-section-head--center .sa-label { justify-content: center; }
.sa-section-head--center .sa-label::before { display: none; }
.sa-section-head--center .sa-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Shared button */
.sa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}

.sa-btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 22px rgba(196,146,74,.3);
}
.sa-btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,146,74,.4);
  color: #fff;
}

.sa-btn--light {
  background: #fff;
  color: var(--charcoal);
  box-shadow: 0 4px 22px rgba(0,0,0,.12);
}
.sa-btn--light:hover {
  background: var(--ivory-2);
  transform: translateY(-2px);
}

.sa-btn--ghost-light {
  border: 1.5px solid rgba(255,255,255,.7);
  color: #fff;
  background: transparent;
}
.sa-btn--ghost-light:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

.sa-btn--outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.sa-btn--outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* en/ar inline spans */
.sa-en { font-family: var(--serif); }
.sa-ar { font-family: var(--sans); }

/* ================================================================
   4. NAVIGATION
================================================================ */
.sa-nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding-inline: 40px;
  transition: background var(--t), box-shadow var(--t);
}

.sa-nav.is-scrolled {
  background: rgba(250,248,242,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 28px rgba(28,26,23,.09);
}

.sa-nav__inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.sa-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

/* Dual logo switching: gold (default/dark nav) ↔ dark (scrolled/light nav) */
.sa-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  transition: opacity var(--t) var(--ease);
  display: block;
}
/* On dark nav: show gold, hide dark */
.sa-logo--gold { opacity: 1; }
.sa-logo--dark { opacity: 0; position: absolute; pointer-events: none; }

/* When scrolled (light ivory bg): swap to dark logo */
.sa-nav.is-scrolled .sa-logo--gold { opacity: 0; pointer-events: none; }
.sa-nav.is-scrolled .sa-logo--dark { opacity: 1; position: static; pointer-events: auto; }

/* Keep logo wrapper relative for absolute positioning trick */
.sa-nav__logo { position: relative; }

.sa-nav__brand { line-height: 1.1; }
.sa-nav__brand-name {
  display: block;
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ivory);
  transition: color var(--t) var(--ease);
}
.sa-nav.is-scrolled .sa-nav__brand-name { color: var(--charcoal); }

.sa-nav__brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: .62rem;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Desktop menu */
.sa-nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-inline-start: auto;
  list-style: none;
}
.sa-nav__menu li a {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-block-end: 4px;
  transition: color var(--t);
}
.sa-nav__menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--t) var(--ease);
}
.sa-nav__menu li a:hover,
.sa-nav__menu .current-menu-item a { color: var(--gold); }
.sa-nav__menu li a:hover::after,
.sa-nav__menu .current-menu-item a::after { width: 100%; }

/* Nav end controls */
.sa-nav__end {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.sa-lang {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-mid);
  padding: 7px 15px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all var(--t);
}
.sa-lang:hover { border-color: var(--gold); color: var(--gold); }

.sa-nav__cta {
  background: var(--gold);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  transition: all var(--t);
}
.sa-nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.sa-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.sa-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
}
.sa-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.sa-hamburger.is-open span:nth-child(2) { opacity: 0; }
.sa-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
/* Keep hamburger X on top of overlay so it's always clickable to close */
.sa-hamburger.is-open { position: relative; z-index: 1001; }

/* Mobile nav overlay */
.sa-mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.sa-mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}

.sa-mobile-nav__close {
  display: none; /* Hamburger button already turns into X — no need for a second close button */
}

.sa-mobile-nav__list {
  list-style: none;
  text-align: center;
  margin-bottom: 32px;
}
.sa-mobile-nav__list li { margin-bottom: 24px; }
.sa-mobile-nav__list li a {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--t);
}
.sa-mobile-nav__list li a:hover { color: var(--gold); }

.sa-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,26,23,.5);
  z-index: 998;
}
.sa-nav-backdrop.is-open {
  display: block;
}

/* ================================================================
   5. HERO
================================================================ */
.sa-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.sa-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 10s ease;
}
.sa-hero:hover .sa-hero__bg { transform: scale(1); }

.sa-hero__bg--placeholder {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-3) 40%, var(--taupe) 100%);
}

/* Video background */
.sa-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Dark veil — stronger at bottom where text lives */
.sa-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(28,26,23,.88) 0%, rgba(28,26,23,.5) 40%, rgba(28,26,23,.15) 75%, transparent 100%),
    linear-gradient(to right, rgba(28,26,23,.3) 0%, transparent 60%);
  z-index: 1;
}

.sa-hero__body {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 40px) 40px 80px;
  max-width: 720px;
}

/* Eyebrow */
.sa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.sa-eyebrow__line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
html[dir="rtl"] .sa-eyebrow__line { order: 1; }

/* Hero title */
.sa-hero__title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -.01em;
}
html[dir="rtl"] .sa-hero__title {
  font-family: var(--sans);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
}

.sa-hero__sub {
  font-family: var(--sans);
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.sa-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Scroll indicator */
.sa-hero__scroll {
  position: absolute;
  bottom: 36px;
  inset-inline-end: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sa-hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
.sa-hero__scroll span {
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  writing-mode: vertical-rl;
}
@keyframes scrollAnim {
  0%, 100% { opacity: .8; transform: scaleY(1); }
  50%       { opacity: .3; transform: scaleY(.5); }
}

/* Projects badge */
.sa-hero__badge {
  position: absolute;
  top: calc(var(--nav-h) + 32px);
  inset-inline-end: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(196,146,74,.15);
  border: 1px solid rgba(196,146,74,.35);
  backdrop-filter: blur(8px);
  border-radius: var(--r);
  padding: 18px 22px;
  text-align: center;
}
.sa-hero__badge-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.sa-hero__badge-num sup { font-size: .6em; vertical-align: top; margin-top: .3em; }
.sa-hero__badge-lbl {
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
}

/* ================================================================
   6. MARQUEE
================================================================ */
.sa-marquee {
  background: var(--charcoal);
  padding: 14px 0;
  overflow: hidden;
}
.sa-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  gap: 0;
}
.sa-marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  padding-inline: 20px;
  white-space: nowrap;
}
.sa-marquee__track span i {
  color: var(--gold);
  font-style: normal;
  font-size: .55rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   7. ABOUT
================================================================ */
.sa-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--max);
  margin-inline: auto;
  padding: 110px 40px;
  align-items: center;
}

/* Image column */
.sa-about__img-wrap {
  position: relative;
  padding-bottom: 48px;
  padding-inline-end: 48px;
}

.sa-about__img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}
.sa-about__img-main--placeholder {
  background: linear-gradient(135deg, var(--ivory-3) 0%, var(--ivory-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: .8rem;
  color: var(--text-light);
  letter-spacing: .08em;
}

.sa-about__img-accent {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  object-fit: cover;
  width: 52%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}
.sa-about__img-accent--placeholder {
  background: linear-gradient(135deg, var(--ivory-2), var(--ivory-3));
}

.sa-about__years {
  position: absolute;
  top: -20px;
  inset-inline-start: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 28px rgba(196,146,74,.38);
}
.sa-about__years-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.sa-about__years-lbl {
  font-family: var(--sans);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-top: 3px;
}

/* Text column */
.sa-about__desc {
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Stats */
.sa-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.sa-stats__item { text-align: center; }
.sa-stats__num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.sa-stats__lbl {
  display: block;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.3;
}

/* ================================================================
   8. SERVICES
================================================================ */
.sa-services {
  background: var(--charcoal);
  padding: 110px 0;
}

.sa-services .sa-label { color: var(--gold-light); }
.sa-services .sa-heading { color: #fff; }
.sa-services .sa-heading em { color: var(--gold-light); }
.sa-services .sa-section-head { margin-bottom: 52px; }

.sa-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
  overflow: hidden;
}

.sa-service-card {
  background: var(--charcoal-2);
  padding: 40px 32px;
  position: relative;
  transition: background var(--t);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sa-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 32px;
  inset-inline-end: 32px;
  height: 1px;
  background: rgba(255,255,255,.07);
}
.sa-service-card:hover { background: var(--charcoal-3); }

.sa-service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.sa-service-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
}

/* Body wrapper — transparent on desktop (column layout), used for row layout on mobile */
.sa-service-card__body { display: contents; } /* desktop: acts as if not there */

.sa-service-card__title {
  margin-bottom: 12px;
}
.sa-service-card__title .sa-en {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 2px;
}
.sa-service-card__title .sa-ar {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold);
}

.sa-service-card__desc {
  font-family: var(--sans);
  font-size: .83rem;
  color: rgba(255,255,255,.52);
  line-height: 1.7;
  margin-bottom: 20px;
}

.sa-service-card__link {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--t);
}
.sa-service-card__link:hover { color: var(--gold-light); }

/* ================================================================
   9. GALLERY
================================================================ */
.sa-gallery {
  padding: 110px 0;
  background: var(--ivory);
}

/* ── Scroll Reveal Gallery ── */
.sa-scroll-gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 60px;
}

.sa-scroll-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  margin-bottom: 6px;
  /* reveal: starts hidden */
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .85s ease, transform .85s ease;
}
.sa-scroll-item.is-visible {
  opacity: 1;
  transform: none;
}
/* alternate delay so each card staggers slightly */
.sa-scroll-item:nth-child(2) { transition-delay: .07s; }
.sa-scroll-item:nth-child(3) { transition-delay: .14s; }
.sa-scroll-item:nth-child(4) { transition-delay: .07s; }
.sa-scroll-item:nth-child(5) { transition-delay: .14s; }
.sa-scroll-item:nth-child(6) { transition-delay: .07s; }

/* image left */
.sa-scroll-item--img-left .sa-scroll-item__img-col { order: 1; }
.sa-scroll-item--img-left .sa-scroll-item__info    { order: 2; }
/* image right */
.sa-scroll-item--img-right .sa-scroll-item__img-col { order: 2; }
.sa-scroll-item--img-right .sa-scroll-item__info    { order: 1; }

.sa-scroll-item__img-col {
  overflow: hidden;
  border-radius: 0;
}
.sa-scroll-item--img-left  .sa-scroll-item__img-col { border-radius: 10px 0 0 10px; }
.sa-scroll-item--img-right .sa-scroll-item__img-col { border-radius: 0 10px 10px 0; }

.sa-scroll-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.sa-scroll-item:hover .sa-scroll-item__img { transform: scale(1.04); }

.sa-scroll-item__placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: linear-gradient(135deg, var(--ivory-3), var(--ivory-2));
}

.sa-scroll-item__info {
  background: #1C1A17; /* charcoal — explicit fallback so no variable resolution needed */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px;
}
.sa-scroll-item--img-left  .sa-scroll-item__info { border-radius: 0 10px 10px 0; }
.sa-scroll-item--img-right .sa-scroll-item__info { border-radius: 10px 0 0 10px; }

.sa-scroll-item__num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(196,146,74,.25);
  margin-bottom: 20px;
}
.sa-scroll-item__cat {
  display: block;
  color: var(--gold);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sa-scroll-item__title {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 24px;
}
.sa-scroll-item__line {
  width: 40px;
  height: 1px;
  background: rgba(196,146,74,.4);
}

.sa-gallery__filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.sa-gallery__filter {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--t);
}
.sa-gallery__filter:hover,
.sa-gallery__filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* Grid — asymmetric masonry-style */
.sa-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
  padding-inline: 40px;
  max-width: var(--max);
  margin-inline: auto;
}

.sa-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--ivory-2);
  cursor: pointer;
}
.sa-gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.sa-gallery__item:nth-child(4) { grid-column: span 2; }
.sa-gallery__item:nth-child(7) { grid-column: span 2; }

.sa-gallery__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}
.sa-gallery__item:hover .sa-gallery__img { transform: scale(1.07); }

.sa-gallery__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: transform .65s var(--ease);
}
.sa-gallery__item:hover .sa-gallery__placeholder { transform: scale(1.05); }

.sa-gallery__placeholder--1 { background: linear-gradient(135deg,#EDE6D8,#DED5C0); }
.sa-gallery__placeholder--2 { background: linear-gradient(135deg,#E6DDD0,#D8CDB8); }
.sa-gallery__placeholder--3 { background: linear-gradient(135deg,#EAE0D2,#DDD0BC); }
.sa-gallery__placeholder--4 { background: linear-gradient(135deg,#E4DAC8,#D5C9B0); }
.sa-gallery__placeholder--5 { background: linear-gradient(135deg,#EBE2D5,#DFCFBA); }
.sa-gallery__placeholder--6 { background: linear-gradient(135deg,#E8DED2,#DBCFBA); }
.sa-gallery__placeholder--7 { background: linear-gradient(135deg,#E5DCCC,#D8CAAA); }
.sa-gallery__placeholder--8 { background: linear-gradient(135deg,#EDE5D5,#E0D3BB); }

.sa-gallery__cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(28,26,23,.75) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--t);
}
.sa-gallery__item:hover .sa-gallery__cap { opacity: 1; transform: translateY(0); }

.sa-gallery__cap-title {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
}
.sa-gallery__cap-cat {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.sa-gallery__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.sa-gallery__cta {
  text-align: center;
  margin-top: 48px;
}

/* ================================================================
   10. INSTAGRAM FEED
================================================================ */
.sa-instagram {
  padding: 100px 0 80px;
  background: var(--ivory);
}

/* 3-column square grid, up to 9 posts */
.sa-ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 840px;
  margin: 52px auto 44px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(28,26,23,.12);
}

.sa-ig-cell {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  background: var(--charcoal-2);
}

.sa-ig-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.sa-ig-cell:hover img {
  transform: scale(1.07);
}

.sa-ig-cell__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,26,23,.72);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  text-align: center;
}

.sa-ig-cell:hover .sa-ig-cell__overlay {
  opacity: 1;
}

.sa-ig-cell__icon {
  color: var(--gold);
  flex-shrink: 0;
}

.sa-ig-cell__caption {
  color: var(--ivory);
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem;
  font-style: italic;
  line-height: 1.4;
  margin: 0;
  max-width: 140px;
}

/* Follow buttons row */
.sa-ig-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Instagram follow row — buttons inherit .sa-btn styles */

/* ================================================================
   11. PROCESS
================================================================ */
.sa-process {
  background: var(--white);
  padding: 110px 0;
}

.sa-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.sa-process__step {
  padding: 40px 30px;
  border-inline-end: 1px solid var(--border);
  position: relative;
  transition: background var(--t);
}
.sa-process__step:last-child { border-inline-end: none; }
.sa-process__step:hover { background: var(--ivory); }

.sa-process__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--t);
}
.sa-process__step:hover .sa-process__num { color: var(--gold); }

.sa-process__title {
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: .02em;
}

.sa-process__desc {
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ================================================================
   11. QUOTE
================================================================ */
.sa-quote {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-3) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sa-quote::before {
  content: '"';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 20rem;
  color: rgba(196,146,74,.05);
  line-height: 1;
  pointer-events: none;
}

.sa-quote__text {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.9);
  max-width: 820px;
  margin-inline: auto;
  line-height: 1.4;
  margin-bottom: 24px;
  position: relative;
}
html[dir="rtl"] .sa-quote__text {
  font-family: var(--sans);
  font-style: normal;
}

.sa-quote__cite {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ================================================================
   12. CONTACT
================================================================ */
.sa-contact {
  background: var(--ivory);
  padding: 110px 0;
}

.sa-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
/* RTL: swap columns so info is on left, form on right */
html[dir="rtl"] .sa-contact__grid {
  direction: rtl;
}

.sa-contact__desc {
  font-family: var(--sans);
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 32px;
}

.sa-contact__channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sa-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--t);
  text-align: left;
}
html[dir="rtl"] .sa-channel {
  direction: rtl;
  text-align: right;
}
.sa-channel:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
html[dir="rtl"] .sa-channel:hover { transform: translateX(-4px); }

.sa-channel--wa:hover  { border-color: #25d366; background: #f0fdf4; }
.sa-channel--ig:hover  { border-color: #e1306c; background: #fff0f5; }
.sa-channel--maps:hover{ border-color: #4285f4; background: #f0f5ff; }

.sa-channel__icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--gold);
}
.sa-channel--wa .sa-channel__icon  { color: #25d366; }
.sa-channel--ig .sa-channel__icon  { color: #e1306c; }
.sa-channel--maps .sa-channel__icon{ color: #4285f4; }

.sa-channel span { line-height: 1.2; flex: 1; }
.sa-channel strong {
  display: block;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
}
.sa-channel em {
  display: block;
  font-family: var(--sans);
  font-size: .78rem;
  color: var(--text-light);
  font-style: normal;
  direction: ltr;
  unicode-bidi: isolate;
}
html[dir="rtl"] .sa-channel em {
  text-align: right;
  direction: ltr;
}

/* Contact form */
.sa-contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.sa-form {
  padding: 44px 40px;
}

.sa-form__title {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.sa-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sa-form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.sa-form__group label {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.sa-form__group input,
.sa-form__group select,
.sa-form__group textarea {
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--text);
  background: var(--ivory);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  outline: none;
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
}
.sa-form__group input:focus,
.sa-form__group select:focus,
.sa-form__group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,146,74,.12);
  background: var(--white);
}
.sa-form__group textarea { resize: vertical; min-height: 110px; }

.sa-form__submit {
  width: 100%;
  padding: 15px;
  font-size: .88rem;
  letter-spacing: .1em;
  margin-top: 4px;
}

.sa-form__note {
  font-family: var(--sans);
  font-size: .72rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
}

/* ================================================================
   13. MAP
================================================================ */
.sa-map {
  line-height: 0;
  border-top: 1px solid var(--border);
}
.sa-map iframe {
  width: 100%; height: 380px;
  border: none;
  filter: grayscale(20%) contrast(1.05) brightness(.97);
  display: block;
}

/* ================================================================
   14. FOOTER
================================================================ */
.sa-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 72px 0 32px;
}

.sa-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.sa-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.sa-footer__logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  /* Gold logo on dark bg — invert to make it appear white-gold */
  filter: brightness(1.15);
}
.sa-footer__brand-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.sa-footer__desc {
  font-family: var(--sans);
  font-size: .82rem;
  color: rgba(255,255,255,.48);
  line-height: 1.8;
  margin-bottom: 24px;
}

.sa-footer__socials { display: flex; gap: 10px; }
.sa-footer__social {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--t);
}
.sa-footer__social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.sa-footer__col h4 {
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  margin-bottom: 20px;
}
.sa-footer__col ul li a,
.sa-footer__col li {
  display: block;
  font-family: var(--sans);
  font-size: .82rem;
  color: rgba(255,255,255,.56);
  margin-bottom: 10px;
  transition: color var(--t);
}
.sa-footer__col ul li a:hover { color: var(--gold-light); }

.sa-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.sa-footer__bottom p {
  font-family: var(--sans);
  font-size: .74rem;
  color: rgba(255,255,255,.3);
}

/* Phone numbers / emails always read left-to-right, even in Arabic RTL */
a[href^="tel:"],
a[href^="mailto:"],
a[href*="wa.me"],
.sa-footer__col a[dir="ltr"],
.sa-channel__icon + span em {
  direction: ltr;
  unicode-bidi: embed;
}

/* ================================================================
   15. FLOATING WHATSAPP
================================================================ */
.sa-wa-float {
  position: fixed;
  bottom: 28px;
  inset-inline-end: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 22px rgba(37,211,102,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform var(--t), box-shadow var(--t);
}
.sa-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37,211,102,.5);
}
.sa-wa-float svg { width: 27px; height: 27px; }

.sa-wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.3);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(2); opacity: 0; }
}

/* ================================================================
   16. SCROLL ANIMATIONS
================================================================ */
.sa-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.sa-reveal.is-visible { opacity: 1; transform: none; }
.sa-reveal--left  { transform: translateX(-30px); }
.sa-reveal--right { transform: translateX( 30px); }
.sa-reveal--left.is-visible,
.sa-reveal--right.is-visible { transform: none; }

/* ================================================================
   17. RESPONSIVE — TABLET ≤1024px
================================================================ */
@media (max-width: 1024px) {
  :root { --nav-h: 64px; }

  .sa-nav__menu, .sa-nav__cta { display: none; }
  .sa-hamburger { display: flex; }

  .sa-about {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 80px 32px;
  }
  .sa-about__image-col { max-width: 500px; margin-inline: auto; }
  .sa-about__img-wrap { padding-bottom: 40px; padding-inline-end: 40px; }
  .sa-stats { grid-template-columns: repeat(2,1fr); }

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

  .sa-gallery__grid {
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: 220px;
    padding-inline: 24px;
  }
  .sa-gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .sa-gallery__item:nth-child(4),
  .sa-gallery__item:nth-child(7) { grid-column: span 1; }

  .sa-process__steps { grid-template-columns: repeat(2,1fr); }
  .sa-process__step { border-inline-end: none; border-bottom: 1px solid var(--border); }
  .sa-process__step:nth-child(odd) { border-inline-end: 1px solid var(--border); }
  .sa-process__step:nth-last-child(-n+2) { border-bottom: none; }

  .sa-contact__grid { grid-template-columns: 1fr; gap: 52px; }
  .sa-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   18. RESPONSIVE — MOBILE ≤768px   (App-like experience)
================================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* ── Nav: clean minimal bar ── */
  .sa-nav { padding-inline: 16px; }
  .sa-nav__inner { gap: 8px; }
  .sa-nav__brand-name { font-size: .95rem; }
  .sa-nav__brand-sub  { display: none; } /* clean on small screens */
  .sa-logo { width: 38px; height: 38px; }
  .sa-nav__end { gap: 8px; }
  .sa-lang { font-size: .72rem; padding: 5px 10px; border-radius: 20px; }

  /* ── Container ── */
  .sa-container { padding-inline: 18px; }

  /* ── Hero: full viewport, clean stacking ── */
  .sa-hero__body {
    padding: calc(var(--nav-h) + 24px) 18px 56px;
    align-items: flex-start;
    text-align: start;
    width: 100%;
    max-width: 100%;
  }
  html[dir="rtl"] .sa-hero__body { align-items: flex-end; text-align: end; }
  .sa-hero__title  { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .sa-hero__sub    { font-size: .88rem; max-width: 88%; }
  .sa-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
  }
  .sa-hero__actions .sa-btn {
    flex: 1 1 140px;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: .82rem;
  }
  /* Badge: top-right corner on mobile, out of the button zone */
  .sa-hero__badge  {
    top: calc(var(--nav-h) + 12px);
    inset-inline-end: 14px;
    bottom: auto;
    padding: 10px 14px;
    border-radius: 12px;
  }
  .sa-hero__badge-num { font-size: 1.5rem; }
  .sa-hero__scroll { display: none; }

  /* ── About: single column, breathing room ── */
  .sa-about { padding: 60px 18px; gap: 40px; }
  .sa-about__image-col { max-width: 100%; }
  .sa-about__img-main { border-radius: 16px; }
  .sa-about__img-wrap { padding-bottom: 32px; padding-inline-end: 32px; }
  .sa-about__years { width: 60px; height: 60px; top: -10px; inset-inline-start: -10px; font-size: .55rem; }
  .sa-about__years-num { font-size: 1.4rem; }
  .sa-stats { grid-template-columns: repeat(2,1fr); gap: 16px; }

  /* ── Services: single-column cards, app-card style ── */
  .sa-services { padding: 60px 0; }
  .sa-services__grid { grid-template-columns: 1fr; gap: 2px; }
  .sa-service-card {
    padding: 28px 20px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    text-align: start;
  }
  html[dir="rtl"] .sa-service-card { text-align: end; }
  .sa-service-card::after { display: none; }
  .sa-service-card__icon { width: 36px; height: 36px; margin-bottom: 0; flex-shrink: 0; margin-top: 4px; }
  .sa-service-card__body { display: block; flex: 1; }
  .sa-service-card__title { font-size: 1rem; margin-bottom: 6px; }
  .sa-service-card__desc  { font-size: .82rem; line-height: 1.6; }
  .sa-service-card__link  { font-size: .78rem; }

  /* ── Instagram grid ── */
  .sa-instagram { padding: 64px 0 52px; }
  .sa-ig-grid { gap: 3px; max-width: 100%; margin: 32px auto 28px; border-radius: 10px; }
  .sa-ig-follow { gap: 10px; }
  .sa-ig-follow__btn { font-size: .72rem; padding: 10px 18px; }

  /* ── Scroll Gallery: full-width image cards ── */
  .sa-scroll-gallery { padding: 0 0 32px; }
  .sa-scroll-item {
    grid-template-columns: 1fr;
    min-height: unset;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
  }
  .sa-scroll-item__img-col,
  .sa-scroll-item--img-left  .sa-scroll-item__img-col,
  .sa-scroll-item--img-right .sa-scroll-item__img-col {
    border-radius: 0;
    order: 1 !important;
  }
  .sa-scroll-item__info,
  .sa-scroll-item--img-left  .sa-scroll-item__info,
  .sa-scroll-item--img-right .sa-scroll-item__info {
    border-radius: 0;
    order: 2 !important;
    padding: 24px 20px;
  }
  .sa-scroll-item__img        { height: 240px; }
  .sa-scroll-item__placeholder { min-height: 240px; }
  .sa-scroll-item__num   { font-size: 2.4rem; margin-bottom: 8px; opacity: .25; }
  .sa-scroll-item__title { font-size: 1.25rem; }
  .sa-scroll-item__cat   { font-size: .68rem; }

  /* ── Process: vertical list ── */
  .sa-process { padding: 60px 0; }
  .sa-process__steps { grid-template-columns: 1fr; gap: 0; }
  .sa-process__step {
    border-inline-end: none !important;
    border-bottom: 1px solid var(--border);
    padding: 28px 18px;
  }
  .sa-process__step:last-child { border-bottom: none; }
  .sa-process__num { font-size: 2.6rem; }

  /* ── Quote ── */
  .sa-quote { padding: 52px 18px; }
  .sa-quote__text { font-size: clamp(1.1rem,5vw,1.4rem); }

  /* ── Contact: stacked, app-form look ── */
  .sa-contact { padding: 60px 0; }
  .sa-form { padding: 24px 18px; border-radius: 16px; }
  .sa-form__row { grid-template-columns: 1fr; gap: 0; }
  .sa-form__group input,
  .sa-form__group select,
  .sa-form__group textarea {
    border-radius: 10px;
    font-size: .9rem;
    padding: 13px 14px;
  }
  .sa-form__submit { border-radius: 12px; width: 100%; justify-content: center; }

  /* ── Footer ── */
  .sa-footer { padding-top: 52px; }
  .sa-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .sa-footer__bottom { flex-direction: column; text-align: center; gap: 4px; }

  /* ── WhatsApp float: lower left on mobile to avoid thumb-block ── */
  .sa-wa-float {
    bottom: 18px;
    inset-inline-end: 16px;
    width: 52px;
    height: 52px;
  }

  /* ── Marquee: slightly smaller ── */
  .sa-marquee__track span { font-size: .78rem; padding: 0 14px; }

  /* ── Mobile nav: full-height side drawer, app-like ── */
  .sa-mobile-nav {
    width: 100vw;
    max-width: 320px;
    border-radius: 0 0 0 0;
  }
  .sa-mobile-nav__list { gap: 4px; }
  .sa-mobile-nav__list li a {
    display: block;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 1.1rem;
  }
}

/* ================================================================
   19. RESPONSIVE — SMALL ≤480px
================================================================ */
@media (max-width: 480px) {
  .sa-hero__title { font-size: clamp(2rem, 11vw, 2.6rem); }
  .sa-stats__num  { font-size: 1.6rem; }
  .sa-btn         { padding: 13px 22px; font-size: .82rem; }
  .sa-service-card { padding: 22px 16px; gap: 14px; }
  .sa-service-card__icon { width: 30px; height: 30px; }
}

/* ================================================================
   20. PRINT
================================================================ */
@media print {
  .sa-nav, .sa-wa-float, .sa-hero__scroll,
  .sa-marquee, .sa-mobile-nav { display: none !important; }
}
