/* ─── Custom Properties ──────────────────────────────── */
:root {
  --bg:          #ffffff;
  --surface:     #F0F0F0;
  --surface-2:   #1A1A1A;
  --accent:      #CC1F1F;
  --accent-d:    #A81919;
  --green:       #1A7A3D;
  --text:        #0A0A0A;
  --text-sec:    #333333;
  --text-muted:  #777777;
  --border:      rgba(0,0,0,0.12);
  --border-acc:  rgba(204,31,31,0.3);
  --font-ar:     'Tajawal', system-ui, sans-serif;
  --font-en:     'Inter', system-ui, sans-serif;
  --font-disp:   'Playfair Display', Georgia, serif;
  --max-w:       1200px;
  --sec-pad:     96px;
  --radius:      12px;
  --tr:          0.25s ease;
}

/* ─── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ar);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.lang-en body { font-family: var(--font-en); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ─── Language visibility ────────────────────────────── */
.lang-ar .en-only { display: none !important; }
.lang-en .ar-only { display: none !important; }

/* ─── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(204,31,31,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(204,31,31,0.45); }

/* ─── Utilities ──────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--sec-pad) 0; position: relative; z-index: 1; }
.accent-text { color: var(--accent); font-style: normal; }

.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-disp);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

/* ─── Buttons ────────────────────────────────────────── */
.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: 6px;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
}
.btn-accent:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,31,31,0.35);
}
.btn-lg { padding: 16px 40px; font-size: 17px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text); font-size: 14px; font-weight: 500;
  padding: 12px 24px; border-radius: 6px;
  transition: border-color var(--tr), color var(--tr);
}
.btn-ghost:hover { border-color: var(--border-acc); color: var(--accent); }


/* ─── Navigation ─────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: #0A0A0A;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--tr);
}
.nav.scrolled { border-bottom-color: rgba(204,31,31,0.2); }
.nav-inner {
  display: flex; align-items: center; gap: 8px;
  height: 64px;
}
.nav-logo img {
  height: 40px; width: auto;
  background: #ffffff;
  border-radius: 8px;
  padding: 4px 8px;
}
.nav-links {
  display: flex; gap: 4px;
  margin-inline-start: auto;
}
.nav-link {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.6); padding: 7px 14px; border-radius: 6px;
  transition: color var(--tr), background var(--tr);
}
.nav-link:hover { color: #ffffff; background: rgba(255,255,255,0.08); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-inline-start: 10px; }
.lang-btn {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--accent); border: 1px solid var(--border-acc);
  background: rgba(204,31,31,0.08); padding: 6px 12px; border-radius: 6px;
  transition: background var(--tr);
}
.lang-btn:hover { background: rgba(204,31,31,0.16); }
.nav-cta { padding: 9px 18px; font-size: 13px; }
.nav-phone {
  font-family: 'Inter', monospace;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em;
  direction: ltr; unicode-bidi: embed;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 5px; margin-inline-start: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Keffiyeh pattern ───────────────────────────────── */

/* ─── Keffiyeh pattern (white sections) ──────────────── */
.keffiyeh-pattern {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 31px, rgba(0,0,0,0.055) 31px, rgba(0,0,0,0.055) 32px),
    repeating-linear-gradient(0deg,  transparent, transparent 31px, rgba(0,0,0,0.055) 31px, rgba(0,0,0,0.055) 32px),
    repeating-linear-gradient(45deg,  transparent, transparent 15px, rgba(204,31,31,0.06)  15px, rgba(204,31,31,0.06)  16px),
    repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(26,122,61,0.06)  15px, rgba(26,122,61,0.06)  16px);
}

/* ─── MEEJNA press-wall backdrop (dark sections) ─────── */
.meejna-backdrop {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}
.meejna-backdrop svg { display: block; width: 100%; height: 100%; }

/* ─── Keffiyeh diagonal (contact section) ────────────── */
.keffiyeh-diagonal {
  background-image: url('images/Kuffeyieh.png');
  background-size: 900px;
  background-repeat: repeat;
  transform: rotate(-45deg) scale(2.5);
  opacity: 0.11;
  inset: -50%;
}
.about, .reviews, .contact, .videos { position: relative; overflow: hidden; }
.hero .hero-content,
.about .container, .reviews .container, .contact .container, .videos .container { position: relative; z-index: 1; }

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg);
}

/* Hero content & animations */
.hero-content {
  position: relative; z-index: 2;
  padding: 80px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-text { display: flex; flex-direction: column; }
@keyframes hero-up {
  from { opacity: 0; transform: translateY(28px); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
.hero-eyebrow  { animation: hero-up 0.6s ease 0.15s both; }
.hero-logo-wrap{ animation: hero-up 0.6s ease 0.28s both; }
.hero-title    { animation: hero-up 0.7s ease 0.42s both; }
.hero-subtitle { animation: hero-up 0.6s ease 0.65s both; }
.hero-flags    { animation: hero-up 0.5s ease 0.80s both; }
.hero-ctas     { animation: hero-up 0.5s ease 0.95s both; }

.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.eyebrow-diamond {
  font-size: 10px; color: var(--accent); flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.8); }
}
.eyebrow-text {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.hero-logo-wrap { margin-bottom: 8px; }
.hero-logo { height: 80px; width: auto; }
.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.hero-subtitle {
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--text-sec); line-height: 1.65;
  margin-bottom: 20px;
}
.hero-flags { font-size: 26px; letter-spacing: 7px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ─── Hero image column ───────────────────────────────── */
.hero-img-col {
  display: flex; align-items: center; justify-content: center;
  animation: hero-up 0.8s ease 0.5s both;
}
.hero-img-frame {
  position: relative;
  width: 100%; max-width: 420px;
  aspect-ratio: 3/4;
  border: 2px solid var(--accent);
  overflow: hidden;
}
/* Keffiyeh corner ornaments */
.hero-img-frame::before,
.hero-img-frame::after {
  content: '';
  position: absolute;
  width: 40px; height: 40px;
  border-color: var(--accent);
  border-style: solid;
  z-index: 2;
}
.hero-img-frame::before {
  top: 10px; inset-inline-start: 10px;
  border-width: 2px 0 0 2px;
}
.hero-img-frame::after {
  bottom: 10px; inset-inline-end: 10px;
  border-width: 0 2px 2px 0;
}
.hero-img-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* Placeholder shown when no image is present */
.hero-img-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 31px, rgba(204,31,31,0.06) 31px, rgba(204,31,31,0.06) 32px),
    repeating-linear-gradient(0deg,  transparent, transparent 31px, rgba(204,31,31,0.06) 31px, rgba(204,31,31,0.06) 32px),
    repeating-linear-gradient(45deg,  transparent, transparent 15px, rgba(0,0,0,0.03) 15px, rgba(0,0,0,0.03) 16px),
    repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(0,0,0,0.03) 15px, rgba(0,0,0,0.03) 16px);
  color: var(--text-muted);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em;
}
/* Hide placeholder once a real img is present */
.hero-img-frame img ~ .hero-img-placeholder { display: none; }
.placeholder-icon { font-size: 28px; color: rgba(204,31,31,0.25); }
.hero-scroll {
  position: absolute; bottom: 32px; inset-inline-start: 24px;
  font-size: 11px; letter-spacing: 0.2em; color: var(--text-muted);
}
@media (min-width: 1024px) {
  .hero-scroll { inset-inline-start: calc((100vw - var(--max-w)) / 2 + 24px); }
}

/* ─── Section backgrounds ────────────────────────────── */
.about   { background: #0A0A0A; color: #ffffff; }
.reviews { background: var(--green); color: #ffffff; }
.contact { background: #0A0A0A; color: #ffffff; }
.about .section-title, .reviews .section-title, .contact .section-title { color: #ffffff; }
.reviews .section-label { color: rgba(255,255,255,0.7); }

/* ─── Fade-up scroll animation ───────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ─── About ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text { display: flex; flex-direction: column; }
.about-half {
  font-size: 17px; line-height: 1.85;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.about-half:last-child { margin-bottom: 0; }
.about-img-col { display: flex; align-items: center; justify-content: center; }
.about-img-frame {
  position: relative;
  width: 100%; max-width: 420px;
  aspect-ratio: 3/4;
  border: 2px solid var(--accent);
  overflow: hidden;
}
.about-img-frame::before, .about-img-frame::after {
  content: '';
  position: absolute;
  width: 36px; height: 36px;
  border-color: var(--accent); border-style: solid;
  z-index: 2;
}
.about-img-frame::before { top: 10px; inset-inline-end: 10px; border-width: 2px 2px 0 0; }
.about-img-frame::after  { bottom: 10px; inset-inline-start: 10px; border-width: 0 0 2px 2px; }
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 31px, rgba(204,31,31,0.06) 31px, rgba(204,31,31,0.06) 32px),
    repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(204,31,31,0.06) 31px, rgba(204,31,31,0.06) 32px);
  color: rgba(255,255,255,0.35);
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
}
.about-img-frame img ~ .about-img-placeholder { display: none; }

/* ─── Reviews ─────────────────────────────────────────── */
/* ─── Reviews slider ─────────────────────────────────── */
.reviews-slider-wrap {
  display: flex; align-items: center; gap: 12px;
}
.reviews-track {
  display: flex; gap: 20px;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  flex: 1;
  cursor: grab;
}
.reviews-track:active { cursor: grabbing; }
.review-card {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.15);
  border-top: 3px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color var(--tr), transform var(--tr);
}
.review-card:hover { border-color: rgba(255,255,255,0.35); transform: translateY(-3px); }
.review-card--featured { border-top-color: var(--accent); }
.review-card--featured:hover { border-top-color: var(--accent); }
.review-stars { color: var(--green); font-size: 15px; letter-spacing: 2px; }
.review-card--featured .review-stars { color: var(--accent); }
.review-text {
  font-size: 15px; line-height: 1.8;
  color: var(--text-sec); font-style: italic; flex: 1;
}
.review-author {
  font-size: 13px; font-weight: 700;
  color: var(--text-muted); letter-spacing: 0.05em;
}
.slider-btn {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: #fff; font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.slider-btn:hover { background: var(--green); border-color: var(--green); color: #fff; }
.slider-btn:disabled { opacity: 0.3; cursor: default; }

/* ─── Services ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--tr);
}
.svc-card:hover { border-color: var(--border-acc); }
.svc-img { position: relative; height: 220px; overflow: hidden; }
.svc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,11,20,0.15) 0%, rgba(6,11,20,0.55) 60%, var(--surface) 100%);
}
.svc-arrow {
  position: absolute; top: 14px; inset-inline-end: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(204,31,31,0.4);
  background: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--accent);
  opacity: 0; transform: translateY(-4px);
  transition: opacity var(--tr), transform var(--tr);
}
.svc-card:hover .svc-arrow { opacity: 1; transform: none; }
.svc-body { padding: 24px 28px 28px; position: relative; }
.svc-glow {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0; transition: opacity 0.5s;
  background: radial-gradient(ellipse at 50% 0%, rgba(204,31,31,0.06), transparent 60%);
}
.svc-card:hover .svc-glow { opacity: 1; }
.svc-icon { font-size: 28px; margin-bottom: 12px; line-height: 1; }
.svc-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.svc-sub { font-size: 13px; color: var(--accent); opacity: 0.8; margin-bottom: 12px; }
.svc-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.svc-line {
  position: absolute; bottom: 0;
  inset-inline-start: 0; inset-inline-end: 0;
  height: 1px; opacity: 0;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  transition: opacity 0.5s;
}
.svc-card:hover .svc-line { opacity: 1; }

/* ─── Gallery ────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 40px;
}
.gal-card {
  position: relative; border-radius: 10px;
  overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid var(--border);
  transition: border-color var(--tr), transform var(--tr);
}
.gal-card:hover { border-color: var(--border-acc); transform: translateY(-4px); }
.gal-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.gal-card:hover img { transform: scale(1.06); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,11,20,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 16px;
}
.gal-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  background: rgba(204,31,31,0.18); border: 1px solid var(--border-acc);
  color: var(--accent); border-radius: 20px; padding: 3px 10px;
  align-self: flex-start; margin-bottom: 8px;
}
.gal-overlay h4 { font-size: 15px; font-weight: 700; }
.gallery-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Contact ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.contact-center {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 8px;
}
.contact-center .section-label { margin-bottom: 4px; }
.contact-center .contact-title { margin-bottom: 8px; }
.contact-block {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  width: 100%;
}
.contact-img-col {
  display: flex; align-items: center; justify-content: center;
}
.contact-img-col img {
  width: 100%; height: auto; object-fit: cover; border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.contact-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  border: 2px dashed rgba(204,31,31,0.3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(204,31,31,0.25); font-size: 28px;
}
.contact-title { line-height: 1.1; margin-bottom: 0; }
.ct-line { display: block; color: #ffffff; line-height: 1.15; }
.ct-mid { color: var(--accent); font-size: 1.7em; line-height: 1.05; }
.contact-lead { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.contact-wa {
  font-size: 18px; padding: 18px 44px;
  font-family: 'Inter', monospace;
  letter-spacing: 0.04em; direction: ltr; unicode-bidi: embed;
}
.contact-location { font-size: 14px; color: rgba(255,255,255,0.45); }
.contact-socials {
  display: flex; gap: 12px; justify-content: center; align-items: center;
  margin-top: 4px;
}
.contact-socials a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--tr), color var(--tr), transform var(--tr);
}
.contact-socials a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ─── Footer ─────────────────────────────────────────── */
.footer { background: #111111; border-top: 1px solid var(--border); }
.footer-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: start; gap: 40px;
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-tag { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); }
.footer-nav { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.footer-nav button {
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  transition: color var(--tr);
}
.footer-nav button:hover { color: var(--text); }
.footer-social { display: flex; gap: 10px; justify-content: flex-end; align-items: center; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--tr), color var(--tr), transform var(--tr);
}
.footer-social a:hover { border-color: var(--border-acc); color: var(--accent); transform: translateY(-2px); }
.footer-bottom { padding: 16px 0; text-align: center; font-size: 12px; color: var(--text-muted); }

/* ─── Mobile sticky WhatsApp button ─────────────────── */
.wa-sticky {
  display: none;
}
@media (max-width: 767px) {
  .wa-sticky {
    display: flex; align-items: center; gap: 10px;
    position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
    z-index: 999;
    background: var(--accent);
    color: #fff;
    font-weight: 700; font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(204,31,31,0.45);
    white-space: nowrap;
    text-decoration: none;
  }
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1023px) {
  .hero-content { gap: 32px; }
  .about-grid { gap: 40px; }
  .contact-grid { grid-template-columns: 1fr 1.2fr 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-social { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 767px) {
  :root { --sec-pad: 52px; }

  /* Center all text on mobile */
  body { text-align: center; }
  p, h1, h2, h3, h4, h5, h6,
  .section-label, .about-half, .hero-subtitle,
  .contact-lead, .contact-location,
  .review-text, .review-author, .footer-tag,
  .eyebrow-text { text-align: center !important; }
  .hero-text { align-items: center; width: 100%; }
  .hero-logo-wrap { display: flex; justify-content: center; width: 100%; }
  .hero-eyebrow { justify-content: center; width: 100%; }
  .hero-ctas {
    display: block;
    width: 100%; gap: 12px;
    text-align: center;
  }
  .hero-ctas .btn-accent,
  .hero-ctas .btn-ghost {
    display: inline-flex; justify-content: center; align-items: center;
    width: 80%; max-width: 300px;
    margin: 6px auto;
  }
  .contact-block { align-items: center; }
  .about-text { align-items: center; }
  .footer-brand { align-items: center; }
  .footer-nav { align-items: center; }
  .footer-social { justify-content: center; }

  /* Nav */
  .nav { position: relative; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%;
    inset-inline-start: 0; inset-inline-end: 0;
    background: #0A0A0A;
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px; gap: 0; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-link {
    padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 16px; text-align: start; width: 100%; border-radius: 0;
    color: rgba(255,255,255,0.75);
  }
  .nav-link:last-child { border-bottom: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px; padding: 48px 0 64px;
  }
  .hero-img-col { order: -1; }
  .hero-img-frame, .about-img-frame {
    aspect-ratio: unset !important; height: auto !important;
    max-width: 60%; margin: 0 auto; overflow: visible;
  }
  .hero-img-frame img, .about-img-frame img,
  .contact-img-col img {
    width: 100%; height: auto !important;
    object-fit: contain !important; position: static !important;
  }
  .hero-logo { height: 180px; }
  .hero-title { font-size: clamp(28px, 8vw, 48px); }
  .hero-subtitle { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-lg { padding: 13px 28px; font-size: 15px; }
  .hero-scroll { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-half { font-size: 15px; }

  /* Reviews slider — show arrows inline at star level */
  .reviews-slider-wrap { align-items: flex-start; gap: 8px; }
  .review-card { flex: 0 0 100%; }
  .slider-btn {
    display: flex;
    margin-top: 24px; /* align with stars row inside card */
    width: 36px; height: 36px; font-size: 18px;
  }

  /* Contact: text full-width top, images side by side below */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .contact-center {
    grid-column: 1 / -1;
    grid-row: 1;
    gap: 16px;
  }
  .contact-img-col {
    grid-row: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-img-col img {
    width: 100%; height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
  .ct-mid { font-size: 1.4em; }
  .contact-wa { width: 100%; justify-content: center; font-size: 16px; padding: 14px 24px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-nav { align-items: center; }
  .footer-social { justify-content: center; }

  /* Section titles */
  .section-title { font-size: clamp(24px, 6vw, 36px); margin-bottom: 24px; }
}

@media (max-width: 479px) {
  :root { --sec-pad: 40px; }
  .hero-title { font-size: clamp(26px, 9vw, 36px); }
  .contact-title .ct-line { font-size: clamp(22px, 7vw, 32px); }
  .contact-title .ct-mid { font-size: clamp(34px, 11vw, 52px); }
  .review-card { padding: 20px 16px; }
  .review-text { font-size: 14px; }
  .footer-inner { padding: 32px 0 28px; }
}

/* ─── Videos Section ─────────────────────────────────── */
.videos { background: var(--bg); padding: 56px 0; }

/* ─── Two-column layout ──────────────────────────────── */
.videos-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

/* Left column wrapper */
.videos-content-col {
  display: flex; flex-direction: column; gap: 20px;
}

/* Heading + filter pills on one row */
.videos-header {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.videos-header .section-title { margin-bottom: 0; }

.videos-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.vf-pill {
  font-size: 13px; font-weight: 600;
  padding: 7px 18px; border-radius: 50px;
  border: 1.5px solid var(--border);
  color: var(--text-sec); background: var(--bg);
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.vf-pill:hover { border-color: var(--accent); color: var(--accent); }
.vf-pill.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Category text */
.videos-text-col {
  display: flex; flex-direction: column; gap: 12px;
}
.videos-cat-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent);
  min-height: 1em; transition: opacity 0.3s;
}
.videos-cat-title {
  font-family: var(--font-disp);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -0.02em; transition: opacity 0.3s;
}
.videos-cat-desc {
  font-size: 15px; line-height: 1.75;
  color: var(--text-sec); max-width: 420px;
  transition: opacity 0.3s;
}
.videos-text-col.fading .videos-cat-eyebrow,
.videos-text-col.fading .videos-cat-title,
.videos-text-col.fading .videos-cat-desc { opacity: 0; }

/* ─── Player column ──────────────────────────────────── */
.videos-player-row {
  display: flex; align-items: center; gap: 12px;
}
.videos-player-row .slider-btn {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}
.videos-player-row .slider-btn:hover {
  background: var(--green); border-color: var(--green); color: #fff;
}

.videos-frame {
  position: relative;
  width: 240px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #1a1a1a;
  flex-shrink: 0;
}
.videos-frame video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.videos-counter {
  position: absolute; bottom: 10px; inset-inline-end: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  background: rgba(0,0,0,0.55); color: #fff;
  padding: 3px 9px; border-radius: 20px;
  font-family: var(--font-en);
}

/* ─── Videos responsive ──────────────────────────────── */
@media (max-width: 1023px) {
  .videos-frame { width: 200px; }
  .videos-layout { gap: 32px; }
}
@media (max-width: 767px) {
  .videos { padding: 40px 0; }
  .videos-layout { grid-template-columns: 1fr; gap: 24px; }
  .videos-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .videos-player-row { justify-content: center; }
  .videos-frame { width: 200px; }
  .videos-text-col { align-items: center; text-align: center; }
  .videos-cat-desc { max-width: 100%; }
}
