/* ================================================================
   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;

  --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); }

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: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.sa-logo-svg { width: 42px; height: 42px; flex-shrink: 0; }

.sa-nav__brand { line-height: 1.1; }
.sa-nav__brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text);
}
.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: .76rem;
  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); }

/* 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 {
  position: absolute;
  top: 24px;
  inset-inline-end: 28px;
  font-size: 1.4rem;
  color: var(--text-mid);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--t);
}
.sa-mobile-nav__close:hover { color: var(--gold); }

.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: 1.4rem;
  font-weight: 700;
  letter-spacing: .12em;
  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%);
}

/* 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);
}
.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 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1;
}

.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);
}

.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. 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;
}

.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);
}
.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; }
.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;
}

/* 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__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);
}

/* ================================================================
   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
================================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .sa-nav    { padding-inline: 20px; }
  .sa-container { padding-inline: 20px; }

  /* Hero */
  .sa-hero__body { padding: calc(var(--nav-h)+40px) 20px 100px; }
  .sa-hero__title { font-size: clamp(2.6rem,10vw,3.5rem); }
  .sa-hero__sub { font-size: .9rem; }
  .sa-hero__actions { flex-direction: column; gap: 10px; }
  .sa-hero__actions .sa-btn { width: 100%; }
  .sa-hero__badge { top: auto; bottom: 90px; inset-inline-end: 20px; padding: 12px 16px; }
  .sa-hero__badge-num { font-size: 1.8rem; }
  .sa-hero__scroll { inset-inline-end: 16px; bottom: 24px; }

  /* About */
  .sa-about { padding: 72px 20px; gap: 48px; }
  .sa-about__years { width: 64px; height: 64px; top: -12px; inset-inline-start: -12px; }

  /* Services */
  .sa-services { padding: 72px 0; }
  .sa-services__grid { grid-template-columns: 1fr; }
  .sa-service-card { padding: 32px 24px; }

  /* Gallery → swipeable */
  .sa-gallery { padding: 72px 0; }
  .sa-gallery__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding: 0 20px 12px;
    scrollbar-width: none;
    grid-template-columns: unset;
  }
  .sa-gallery__grid::-webkit-scrollbar { display: none; }
  .sa-gallery__item {
    flex: 0 0 78vw;
    height: 280px;
    scroll-snap-align: start;
    grid-column: unset !important;
    grid-row: unset !important;
  }
  .sa-gallery__filters { padding-inline: 20px; }
  .sa-gallery__cta     { padding-inline: 20px; }

  /* Process */
  .sa-process { padding: 72px 0; }
  .sa-process__steps { grid-template-columns: 1fr; }
  .sa-process__step { border-inline-end: none !important; border-bottom: 1px solid var(--border); }
  .sa-process__step:last-child { border-bottom: none; }

  /* Quote */
  .sa-quote { padding: 64px 20px; }

  /* Contact */
  .sa-contact { padding: 72px 0; }
  .sa-form { padding: 28px 20px; }
  .sa-form__row { grid-template-columns: 1fr; }

  /* Footer */
  .sa-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .sa-footer__bottom { flex-direction: column; text-align: center; }

  /* Float WA */
  .sa-wa-float { bottom: 20px; inset-inline-end: 16px; width: 52px; height: 52px; }
}

/* ================================================================
   19. RESPONSIVE — SMALL ≤480px
================================================================ */
@media (max-width: 480px) {
  .sa-hero__title { font-size: clamp(2.2rem,11vw,2.8rem); }
  .sa-stats__num  { font-size: 1.7rem; }
  .sa-btn         { padding: 12px 24px; font-size: .8rem; }
  .sa-gallery__item { flex: 0 0 82vw; height: 240px; }
}

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