/* ============================================================
   Hurbli & Zeitouni Textile Factory
   Palette derived from the brand logo: navy, gold/taupe, cream
   ============================================================ */

:root {
  --navy: #1f2d45;
  --navy-deep: #16213a;
  --navy-soft: #29395a;
  --gold: #b29b7e;
  --gold-deep: #9a8160;
  --gold-soft: #cdb999;
  --cream: #f6f3ec;
  --cream-2: #efe9dd;
  --paper: #fbf9f4;
  --ink: #26303f;
  --muted: #626b78;
  --line: rgba(31, 45, 69, 0.12);
  --white: #ffffff;
  --shadow-sm: 0 6px 18px rgba(24, 33, 58, 0.08);
  --shadow-md: 0 18px 44px rgba(24, 33, 58, 0.14);
  --shadow-lg: 0 30px 70px rgba(24, 33, 58, 0.22);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font-head: "Cormorant Garamond", "El Messiri", Georgia, serif;
  --font-body: "Inter", "Tajawal", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

/* Arabic typography */
html.lang-ar { --font-head: "El Messiri", "Cormorant Garamond", serif; --font-body: "Tajawal", "Inter", sans-serif; }
html.lang-ar body { line-height: 1.9; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--navy); letter-spacing: 0.2px; }

.section { padding: 104px 0; position: relative; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 16px;
  display: inline-block;
}
html.lang-ar .eyebrow { letter-spacing: 1px; }
.eyebrow-light { color: var(--gold-soft); }

.section-title { font-size: clamp(30px, 4vw, 48px); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .section-title { margin-bottom: 18px; }
.section-lead { color: var(--muted); font-size: 18px; }
.section-head-light .section-title { color: var(--white); }
.section-head-light .section-lead { color: rgba(255, 255, 255, 0.82); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 15px 30px; border-radius: 50px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  letter-spacing: 0.3px; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: 0 12px 26px rgba(154, 129, 96, 0.32); }
.btn-gold:hover { background: var(--gold-deep); box-shadow: 0 16px 34px rgba(154, 129, 96, 0.42); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn-green { background: #25d366; color: #fff; box-shadow: 0 12px 26px rgba(37, 211, 102, 0.32); }
.btn-green:hover { background: #1fb457; }
.btn-wa svg { width: 19px; height: 19px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(246, 243, 236, 0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s, padding 0.3s;
}
.site-header.scrolled { background: rgba(251, 249, 244, 0.96); box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; transition: height 0.3s; }
.site-header.scrolled .header-inner { height: 66px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 52px; width: auto; transition: height 0.3s; }
.site-header.scrolled .brand-logo { height: 46px; }

.nav { display: flex; gap: 30px; }
.nav a {
  font-size: 15px; font-weight: 500; color: var(--ink); position: relative; padding: 6px 0;
  transition: color 0.2s;
}
.nav a::after { content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s var(--ease); }
.nav a:hover { color: var(--gold-deep); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  background: transparent; border: 1.5px solid var(--line); border-radius: 50px;
  padding: 8px 16px; font-family: var(--font-body); font-weight: 600; font-size: 13px;
  color: var(--navy); cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s;
  letter-spacing: 0.5px;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold-deep); }
.lang-toggle .lang-en-label { display: none; }
html.lang-ar .lang-toggle .lang-ar-label { display: none; }
html.lang-ar .lang-toggle .lang-en-label { display: inline; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); animation: heroZoom 16s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20, 30, 52, 0.92) 0%, rgba(22, 33, 58, 0.74) 42%, rgba(31, 45, 69, 0.38) 100%); }
.hero-inner { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 96px; max-width: 760px; }
.hero-title { font-size: clamp(42px, 6.4vw, 78px); color: #fff; margin-bottom: 24px; font-weight: 600; }
.hero-text { font-size: clamp(17px, 1.4vw, 20px); color: rgba(255, 255, 255, 0.9); max-width: 620px; margin-bottom: 38px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.5); border-radius: 20px; }
.scroll-hint span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: #fff; border-radius: 4px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ---------- Stats ---------- */
.stats { background: var(--navy); color: #fff; padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 46px 28px; text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.1); }
.stat:last-child { border-right: none; }
.stat-num { display: block; font-family: var(--font-head); font-size: 46px; font-weight: 600; color: var(--gold-soft); line-height: 1; margin-bottom: 10px; }
.stat-unit { font-size: 26px; }
.stat-label { font-size: 14px; color: rgba(255, 255, 255, 0.72); letter-spacing: 0.4px; }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.about-media { position: relative; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.media-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: var(--radius-lg); }
.media-frame img { width: 100%; height: 520px; object-fit: cover; }
.media-badge {
  position: absolute; bottom: -26px; right: -18px; background: var(--paper);
  padding: 16px 22px; border-radius: var(--radius); box-shadow: var(--shadow-md);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
}
.media-badge img { height: 88px; width: auto; display: block; }
.about-body .section-title { margin-bottom: 22px; }
.about-body p { color: var(--muted); margin-bottom: 18px; font-size: 17px; }
.checklist { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 34px; color: var(--ink); font-weight: 500; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px;
  background: var(--gold); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 16px no-repeat;
}

/* ---------- Positioning band ---------- */
.positioning { background: var(--cream-2); padding: 70px 0; text-align: center; }
.positioning-text { font-family: var(--font-head); font-size: clamp(24px, 3.2vw, 38px); color: var(--navy); max-width: 960px; margin: 0 auto; line-height: 1.32; font-weight: 500; }

/* ---------- Services ---------- */
.services { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px 34px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  position: relative; overflow: hidden;
}
.service-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
html.lang-ar .service-card::before { transform-origin: right; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--gold-deep); margin-bottom: 24px; transition: background 0.35s, color 0.35s; }
.service-card:hover .service-icon { background: var(--navy); color: var(--gold-soft); }
.service-icon svg { width: 34px; height: 34px; }
.service-card h3 { font-size: 24px; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 15.5px; }

/* ---------- Process ---------- */
.process { padding: 110px 0; overflow: hidden; }
.process-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.process-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22, 33, 58, 0.95), rgba(20, 30, 52, 0.9)); }
.process-inner { position: relative; z-index: 2; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-lg); padding: 34px 28px; transition: transform 0.35s var(--ease), background 0.35s; }
.step:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.09); }
.step-num { font-family: var(--font-head); font-size: 40px; color: var(--gold-soft); font-weight: 600; display: block; margin-bottom: 14px; }
.step h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.step p { color: rgba(255, 255, 255, 0.75); font-size: 15px; }

/* ---------- Collections gallery ---------- */
.collections { background: var(--cream); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(22, 33, 58, 0.62), transparent 55%); opacity: 0.85; transition: opacity 0.35s; }
.gallery-item figcaption { position: absolute; bottom: 18px; left: 20px; right: 20px; z-index: 2; color: #fff; font-family: var(--font-head); font-size: 21px; font-weight: 600; letter-spacing: 0.4px; }
html.lang-ar .gallery-item figcaption { left: 20px; right: 20px; text-align: right; }

/* ---------- Clients ---------- */
.clients { background: var(--paper); text-align: center; }
.chips { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 920px; margin: 0 auto; }
.chip {
  background: var(--white); border: 1px solid var(--line); border-radius: 50px;
  padding: 13px 26px; font-size: 15.5px; font-weight: 500; color: var(--ink);
  transition: transform 0.25s var(--ease), border-color 0.25s, color 0.25s, background 0.25s;
}
.chip:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--gold-deep); background: var(--cream); }

/* ---------- Why ---------- */
.why { background: var(--navy); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 56px; max-width: 960px; margin: 0 auto; }
.why-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.why-mark { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: rgba(178, 155, 126, 0.18); position: relative; margin-top: 2px; }
.why-mark::after {
  content: ""; position: absolute; inset: 0; background: var(--gold-soft);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 16px no-repeat;
}
.why-item p { color: rgba(255, 255, 255, 0.9); font-size: 16.5px; font-weight: 400; }

/* ---------- CTA ---------- */
.cta-band { position: relative; padding: 110px 0; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(154, 129, 96, 0.94), rgba(31, 45, 69, 0.9)); }
.cta-inner { position: relative; z-index: 2; max-width: 760px; }
.cta-title { color: #fff; font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 18px; }
.cta-text { color: rgba(255, 255, 255, 0.9); font-size: 19px; margin-bottom: 34px; font-weight: 300; }

/* ---------- Contact ---------- */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.contact-info .section-title { margin-bottom: 20px; }
.contact-lead { color: var(--muted); font-size: 17px; margin-bottom: 34px; max-width: 520px; }
.contact-list { list-style: none; display: grid; gap: 22px; }
.contact-list li { display: flex; align-items: flex-start; gap: 18px; }
.contact-ic { flex-shrink: 0; width: 50px; height: 50px; border-radius: 14px; background: var(--white); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--gold-deep); }
.contact-ic svg { width: 24px; height: 24px; }
.contact-list strong { font-weight: 600; color: var(--navy); font-size: 16px; }
.contact-list a { color: var(--muted); transition: color 0.2s; }
.contact-list a:hover { color: var(--gold-deep); }
.contact-card { background: var(--white); border-radius: var(--radius-lg); padding: 46px 40px; box-shadow: var(--shadow-md); text-align: center; border: 1px solid var(--line); }
.contact-card-logo img { height: 92px; width: auto; margin: 0 auto 8px; }
.contact-card h3 { font-size: 26px; margin-bottom: 12px; }
.contact-card p { color: var(--muted); font-size: 15.5px; margin-bottom: 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.72); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; padding-bottom: 52px; }
.footer-logo { height: 116px; width: auto; display: block; margin-bottom: 22px; border-radius: 12px; }
.footer-tag { max-width: 380px; font-size: 15px; line-height: 1.7; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; font-weight: 600; }
.footer-col a, .footer-col span { display: block; color: rgba(255, 255, 255, 0.7); font-size: 15px; margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 24px 0; }
.footer-bottom .container { text-align: center; font-size: 13.5px; color: rgba(255, 255, 255, 0.55); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: waPulse 2.8s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
html[dir="rtl"] .wa-float { right: auto; left: 26px; }
@keyframes waPulse { 0% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); } 70% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- RTL adjustments ---------- */
html[dir="rtl"] .nav a::after { left: auto; right: 0; }
html[dir="rtl"] .checklist li { padding-left: 0; padding-right: 34px; }
html[dir="rtl"] .checklist li::before { left: auto; right: 0; }
html[dir="rtl"] .media-badge { right: auto; left: -16px; }
html[dir="rtl"] .stat { border-right: none; border-left: 1px solid rgba(255, 255, 255, 0.1); }
html[dir="rtl"] .stat:last-child { border-left: none; }

/* ---------- Mobile menu base ---------- */
@media (max-width: 980px) {
  .nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82vw);
    background: var(--paper); flex-direction: column; gap: 8px; padding: 100px 36px 36px;
    box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform 0.4s var(--ease);
    z-index: 1100;
  }
  html[dir="rtl"] .nav { right: auto; left: 0; transform: translateX(-100%); }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 19px; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .menu-toggle { display: flex; z-index: 1200; position: relative; }
  .header-cta { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .section { padding: 76px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 64px; }
  .media-frame img { height: 420px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  html[dir="rtl"] .stat:nth-child(2) { border-left: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .why-grid { grid-template-columns: 1fr; gap: 0 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-wide, .gallery-tall { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 38px; }
  .media-badge { right: 50%; transform: translateX(50%); }
  html[dir="rtl"] .media-badge { left: auto; right: 50%; transform: translateX(50%); }
}

/* ---------- Screenshot mode (?shot=1): collapse hero, reveal all ---------- */
html.shot { scroll-behavior: auto; }
html.shot .hero { min-height: 0; }
html.shot .hero-bg { animation: none; transform: none; }
html.shot .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
html.shot .site-header { position: absolute; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
