:root {
  --bg: #0e0e0f;
  --surface: #141416;
  --surface-soft: #1a1b1f;
  --text: #f4f1ec;
  --muted: #b8b0a4;
  --line: #2a2b30;
  --accent: #d8b98a;
}

* {
  box-sizing: border-box;
}

/* ── Keyframes ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--bg) 86%, black);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* Header contact icons */
.header-contacts {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  border-left: 1px solid var(--line);
  padding-left: 0.9rem;
  margin-left: 0.2rem;
}
.hc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.hc-btn:hover {
  color: var(--accent);
  background: rgba(216,185,138,0.08);
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--text);
}

.site-nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.site-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a:not(.btn):hover::after {
  transform: scaleX(1);
}

.lang-picker select {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 0.42rem 0.58rem;
  font: inherit;
  min-width: 128px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  min-height: 78vh;
  background:
    linear-gradient(160deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.38) 100%),
    url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.hero-overlay {
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #e7d9c4;
  margin-bottom: 0.7rem;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.14rem;
  color: #f1e8dc;
  margin-bottom: 2.1rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ── Hero entrance animations ── */
.hero-content .eyebrow {
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.1s;
}

.hero-content h1 {
  animation: heroFadeUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.32s;
}

.hero-content .hero-text {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.62s;
}

.hero-content .hero-actions {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.88s;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.72rem 1.2rem;
  border: 1px solid var(--accent);
  color: #111;
  background: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #e7c99b;
}

.btn-ghost {
  background: transparent;
  color: #f7f2ea;
}

.btn-small {
  padding: 0.45rem 0.75rem;
  font-size: 0.88rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-intro {
  color: var(--muted);
  margin-bottom: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 120px;
  gap: 1rem;
}

.gallery-card,
.price-card,
.about-highlight {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.1rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.75));
}

.gallery-overlay {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  transform: translateY(10px);
  opacity: 0.75;
  transition: transform 0.44s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.44s ease;
}

.gallery-card {
  transition: box-shadow 0.36s ease;
}

.gallery-card:hover {
  box-shadow: inset 0 0 0 1px var(--accent);
}

.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay h3 {
  margin-bottom: 0.2rem;
}

.gallery-overlay p {
  margin: 0;
  color: #eee5d8;
}

.g1 {
  grid-column: span 7;
  grid-row: span 3;
}

.g2 {
  grid-column: span 5;
  grid-row: span 4;
}

.g3 {
  grid-column: span 5;
  grid-row: span 3;
}

.g4 {
  grid-column: span 7;
  grid-row: span 4;
}

.about {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.7rem;
  align-items: start;
}

.about p {
  color: #e6dfd3;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  background: var(--surface-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.34s ease;
}

.price-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.price-card:hover::before {
  transform: scaleY(1);
}

.price {
  font-weight: 600;
  color: #ecd6b2;
  margin-bottom: 0.4rem;
}

.contact {
  text-align: center;
}

.contact p {
  color: #ddd2c1;
}

.site-footer {
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-insta:hover {
  color: var(--accent);
}

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-delay="1"] { transition-delay: 0.12s; }
[data-reveal][data-delay="2"] { transition-delay: 0.24s; }
[data-reveal][data-delay="3"] { transition-delay: 0.36s; }
[data-reveal][data-delay="4"] { transition-delay: 0.48s; }
[data-reveal][data-delay="5"] { transition-delay: 0.60s; }

/* ── Section h2 gold accent marker ── */
.section h2,
#apropos h2,
.contact h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 0.55rem;
}

.section h2::after,
#apropos h2::after,
.contact h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 48px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.38s;
}

h2[data-reveal].is-visible::after {
  transform: scaleX(1);
}

/* ── Scroll progress bar ── */
.progress-bar {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 0%;
  background: var(--accent);
  z-index: 2;
  transition: width 0.08s linear;
}

/* ── Floating action button ── */
.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.78rem 1.2rem 0.78rem 1rem;
  background: var(--accent);
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  transform: translateY(0);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.22s ease,
              box-shadow 0.28s ease,
              opacity 0.28s ease;
  opacity: 0;
  pointer-events: none;
}

.fab.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.fab:hover {
  background: #e7c99b;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}

.fab svg {
  flex-shrink: 0;
}

html[dir="rtl"] .fab {
  right: auto;
  left: 2rem;
}

@media (max-width: 640px) {
  .fab {
    bottom: 1.2rem;
    right: 1.2rem;
    padding: 0.75rem;
  }

  .fab-label {
    display: none;
  }

  html[dir="rtl"] .fab {
    right: auto;
    left: 1.2rem;
  }
}

/* ── Custom cursor ring (decorative — native cursor remains visible) ── */
@media (pointer: fine) {
  .cursor-dot {
    display: none; /* dot hidden; native cursor is kept */
  }

  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(216, 185, 138, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease,
                border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  }

  .cursor-ring.is-active {
    opacity: 1;
  }

  .cursor-ring.is-hovering {
    width: 58px;
    height: 58px;
    border-color: var(--accent);
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

html[dir="rtl"] .header-inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .header-tools {
  flex-direction: row-reverse;
}
html[dir="rtl"] .header-contacts {
  border-left: none;
  border-right: 1px solid var(--line);
  padding-left: 0;
  padding-right: 0.9rem;
  margin-left: 0;
  margin-right: 0.2rem;
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .about,
html[dir="rtl"] .contact,
html[dir="rtl"] .section {
  text-align: right;
}

html[dir="rtl"] .hero-actions {
  justify-content: flex-start;
}

/* ── Hamburger button ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 0.4rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.28s ease, opacity 0.22s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile drawer ── */
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 88%);
  background: var(--surface);
  border-left: 1px solid var(--line);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 5rem 2rem 2rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.18s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--accent);
}

.mobile-lang select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text);
  padding: 0.6rem 0.7rem;
  font: inherit;
  font-size: 0.95rem;
}

/* ── Backdrop ── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}

.drawer-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── RTL drawer ── */
html[dir="rtl"] .mobile-drawer {
  inset: 0 auto 0 0;
  border-left: none;
  border-right: 1px solid var(--line);
  transform: translateX(-100%);
}

html[dir="rtl"] .mobile-drawer.is-open {
  transform: translateX(0);
}

/* ── Tablet (900px) ── */
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .g1,
  .g2,
  .g3,
  .g4 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .pricing,
  .about {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 1.4rem;
  }
}

/* ── Mobile (640px) ── */
@media (max-width: 640px) {
  /* Header */
  .site-nav,
  .lang-picker {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-tools {
    gap: 0;
  }

  .header-contacts {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: 92svh;
    background-position: 65% center;
  }

  .hero-overlay {
    min-height: 92svh;
    align-items: flex-end;
    padding-bottom: 3rem;
  }

  .hero-content {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-text {
    font-size: 1rem;
    max-width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  /* Sections */
  .section {
    padding: 3rem 0;
  }

  h2 {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  /* Gallery */
  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 0.75rem;
  }

  /* Services */
  .pricing {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .price-card {
    padding: 1.4rem;
  }

  /* About */
  .about {
    gap: 1.2rem;
  }

  .about-highlight {
    padding: 1rem;
  }

  /* Contact */
  .contact .btn {
    word-break: break-all;
    font-size: 0.85rem;
  }

  /* Footer */
  .footer-inner {
    font-size: 0.85rem;
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }
}

/* ══════════════════════════════════════════════
   LOADER
══════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
.loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.loader-ring {
  width: 52px;
  height: 52px;
  border: 2px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════
   GALLERY — clickable cursor
══════════════════════════════════════════════ */
.gallery-card[data-img] {
  cursor: zoom-in;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 2rem 1.8rem 1.6rem;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '\201C';
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  position: absolute;
  top: 0.6rem;
  left: 1.4rem;
}
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 1.4rem;
  font-style: italic;
}
.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.testimonial-card footer strong {
  font-size: 0.9rem;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.testimonial-card footer span {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════════ */
.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 680px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.25s ease;
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.65;
}
.contact-form select option {
  background: var(--surface);
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
}
.form-success {
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  pointer-events: none;
  margin: 0;
}
.form-success.is-visible {
  opacity: 1;
  max-height: 3rem;
  pointer-events: auto;
}
.contact-email {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.contact-email a {
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s;
}
.contact-email a:hover {
  opacity: 0.75;
}
.insta-link {
  color: var(--muted) !important;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
.insta-link:hover {
  color: var(--accent) !important;
}

/* ══════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 1.2rem 1.4rem;
  z-index: 8000;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  border-radius: 2px;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.cookie-actions {
  display: flex;
  gap: 0.6rem;
}
html[dir="rtl"] .cookie-banner {
  left: auto;
  right: 1.5rem;
  border-left: 1px solid var(--line);
  border-right: 3px solid var(--accent);
}

/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(216,185,138,0.2);
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  border-radius: 2px;
  line-height: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.lightbox-close {
  top: 1.2rem;
  right: 1.4rem;
  font-size: 1.4rem;
  padding: 0.3rem 0.7rem;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  padding: 0.2rem 0.8rem;
}
.lightbox-prev { left: 1.4rem; }
.lightbox-next { right: 1.4rem; }

/* ══════════════════════════════════════════════
   RESPONSIVE — new components
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
  html[dir="rtl"] .cookie-banner {
    left: 1rem;
    right: 1rem;
  }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}
@media (max-width: 640px) {
  .form-actions {
    flex-direction: column;
  }
  .form-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════
   GALLERY FILTER BAR
══════════════════════════════════════════════ */
.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.gallery-filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.45rem 1.2rem;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.gallery-filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.gallery-filter-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* ══════════════════════════════════════════════
   LAZY LOADING TRANSITION
══════════════════════════════════════════════ */
.gallery-card[data-bg] {
  background-color: var(--surface);
  transition: background-color 0.3s ease;
}
.gallery-card[data-bg].is-loaded {
  background-color: transparent;
}

/* ══════════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════════ */
.faq-list {
  max-width: 780px;
  margin: 2.5rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.2rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--ff-heading);
  font-size: 1.08rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: var(--accent);
}
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--accent);
}
.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 0 1.2rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.95rem;
}
[dir="rtl"] .faq-question {
  text-align: right;
}
