/* ===== Variables ===== */
:root {
  --gold: #D4AF37;
  --gold-light: #E8C872;
  --gold-dark: #B8860B;
  --charcoal: #1A1A1A;
  --dark: #2F2F2F;
  --grey: #6B6B6B;
  --light-grey: #F5F3EF;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --wood: #8B6914;
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Playfair Display', Georgia, serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-ar);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 2px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn--primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.35);
}
.btn--outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn--outline:hover {
  background: var(--white);
  color: var(--charcoal);
}
.btn--dark {
  background: var(--charcoal);
  color: var(--gold);
}
.btn--dark:hover {
  background: var(--dark);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 24px; font-size: 0.85rem; }
.btn--full { width: 100%; }
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn--whatsapp:hover { background: #1da851; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header__end {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 2px;
  background: rgba(0,0,0,0.2);
  z-index: 1001;
  flex-shrink: 0;
}
.lang-switch button {
  min-width: 34px;
  padding: 6px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: var(--transition);
}
.lang-switch button:hover { color: var(--gold); }
.lang-switch button.active {
  background: var(--gold);
  color: var(--charcoal);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo__img { width: 48px; height: 48px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.logo__name {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
}
.logo__sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gold-light);
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 8px; }
.nav__link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  border-radius: 2px;
}
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__link--cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  margin-inline-start: 8px;
}
.nav__link--cta:hover { background: var(--gold-light); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.85) 0%,
    rgba(26,26,26,0.6) 50%,
    rgba(26,26,26,0.75) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 120px 24px 80px;
}
.hero__logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  animation: fadeInDown 1s ease;
}
.hero__tag {
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeInDown 1s ease 0.1s both;
}
.hero__title {
  font-family: var(--font-ar);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease 0.2s both;
}
.hero__title span:last-of-type { color: var(--gold); }
.hero__desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.8);
  animation: fadeInDown 1s ease 0.3s both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInDown 1s ease 0.4s both;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  animation: fadeIn 1.5s ease 1s both;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
}

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--charcoal); }
.section__header { text-align: center; margin-bottom: 60px; }
.section__header--light .section__title,
.section__header--light .section__subtitle { color: var(--white); }
.section__label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.section--gold .section__label { color: var(--charcoal); opacity: 0.7; }
.section__title {
  font-family: var(--font-ar);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}
html[dir="ltr"] .hero__title,
html[dir="ltr"] .section__title,
html[dir="ltr"] .stat__num {
  font-family: var(--font-en);
}
.section__subtitle {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 500px;
  margin: 0 auto;
}
.section--dark .section__subtitle { color: rgba(255,255,255,0.6); }
.section--gold .section__subtitle { color: rgba(26,26,26,0.7); }

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__lead {
  font-size: 1.15rem;
  margin-bottom: 20px;
  line-height: 1.8;
}
.about__text p { color: var(--grey); margin-bottom: 16px; }
.about__stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(212,175,55,0.2);
  flex-wrap: wrap;
  justify-content: space-between;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}
.stat__label { font-size: 0.85rem; color: var(--grey); }
.about__image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  bottom: 24px;
  inset-inline-end: 24px;
  width: 80px;
  height: 80px;
  background: rgba(26,26,26,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  backdrop-filter: blur(8px);
}

/* ===== Products ===== */
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.product-card {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.product-card__image {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.08); }
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card__body { padding: 28px; }
.product-card__body h3 {
  font-family: var(--font-ar);
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--gold);
}
html[dir="ltr"] .product-card__body h3 {
  font-family: var(--font-en);
}
.product-card__body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.product-card--featured {
  grid-column: span 2;
}
.product-card--featured .product-card__image { height: 350px; }

/* ===== Gallery ===== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid rgba(212,175,55,0.15);
  box-shadow: var(--shadow);
  transition: var(--transition);
  aspect-ratio: 4 / 5;
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.35);
}
.gallery__frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #1a1a1a;
}
.gallery__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.gallery__item:hover .gallery__frame img {
  transform: scale(1.02);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.2), transparent 55%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--grey);
  background: var(--white);
  border-radius: 8px;
  border: 1px dashed rgba(212,175,55,0.35);
}

/* ===== Custom ===== */
.custom__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.custom__content .section__title { margin-bottom: 20px; }
.custom__content p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.custom__features { margin-bottom: 32px; }
.custom__features li {
  padding: 10px 0;
  padding-inline-start: 28px;
  position: relative;
  font-weight: 500;
}
.custom__features li::before {
  content: '\2726';
  position: absolute;
  inset-inline-start: 0;
  color: var(--charcoal);
  opacity: 0.6;
}
.custom__image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.custom__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* ===== Contact ===== */
.quick-contact {
  background: linear-gradient(135deg, var(--charcoal), var(--dark));
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 50px;
  box-shadow: var(--shadow-lg);
}
.quick-contact__title {
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.quick-contact__buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 16px;
  border-radius: 6px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.quick-btn:hover { transform: translateY(-4px); }
.quick-btn__icon { font-size: 1.8rem; }
.quick-btn__text { font-weight: 700; font-size: 0.95rem; color: var(--white); }
.quick-btn__sub { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.quick-btn--call { background: rgba(212,175,55,0.15); border-color: rgba(212,175,55,0.3); }
.quick-btn--call:hover { background: rgba(212,175,55,0.25); box-shadow: 0 8px 25px rgba(212,175,55,0.2); }
.quick-btn--call2 { background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.2); }
.quick-btn--call2:hover { background: rgba(212,175,55,0.2); }
.quick-btn--whatsapp { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.3); }
.quick-btn--whatsapp:hover { background: rgba(37,211,102,0.25); box-shadow: 0 8px 25px rgba(37,211,102,0.2); }
.quick-btn--email { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.quick-btn--email:hover { background: rgba(255,255,255,0.14); }

.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}
.contact__form {
  background: var(--white);
  padding: 40px;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E0DDD8;
  border-radius: 2px;
  font-family: var(--font-ar);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--cream);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--grey);
  margin: 8px 0 16px;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}
.form-status--ok {
  background: #e8f7ee;
  color: #0f7a3a;
}
.form-status--err {
  background: #fdecea;
  color: #b42318;
}
.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-actions .btn[disabled] {
  opacity: 0.65;
  pointer-events: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact__info { display: flex; flex-direction: column; gap: 16px; }
.contact__card {
  background: var(--white);
  padding: 24px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.contact__card:hover { transform: translateX(-4px); }
.contact__icon { font-size: 1.5rem; margin-bottom: 8px; }
.contact__card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--gold-dark);
}
.contact__card p { font-size: 0.9rem; color: var(--grey); }
.contact__card p a { color: var(--dark); transition: var(--transition); }
.contact__card p a:hover { color: var(--gold); }
.contact__card--whatsapp { background: #f0fdf4; border: 1px solid #bbf7d0; }
.contact__logo {
  text-align: center;
  padding: 20px;
  margin-top: auto;
}
.contact__logo img { width: 100px; margin: 0 auto; opacity: 0.8; }
.contact__card .btn--map {
  margin-top: 12px;
  padding: 8px 16px;
  font-size: 0.8rem;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 2px;
  display: inline-block;
}
.contact__card .btn--map:hover { background: var(--gold-light); }

/* ===== Map ===== */
.map-section { padding-top: 80px; padding-bottom: 80px; }
.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212,175,55,0.2);
}
.map-wrap__head {
  padding: 20px 24px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.map-wrap__head h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.map-wrap__head p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.map-frame {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}
.map-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px;
  background: rgba(255,255,255,0.04);
}
.map-btn-outline {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.map-btn-outline:hover {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__logo { width: 60px; margin-bottom: 16px; }
.footer__brand p { font-size: 0.9rem; line-height: 1.8; }
.footer__contact { margin-top: 12px; font-size: 0.85rem !important; color: rgba(255,255,255,0.55) !important; }
.footer__founded { display: inline-block; margin-top: 8px; color: var(--gold); font-weight: 600; letter-spacing: 1px; }
.footer__location { font-size: 0.85rem; line-height: 1.7; margin-bottom: 8px; color: rgba(255,255,255,0.6); }
.footer__links h4,
.footer__products h4 {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.footer__links a,
.footer__products a {
  display: block;
  padding: 6px 0;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer__links a:hover,
.footer__products a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
}

/* ===== Quick Float Contact ===== */
.quick-float {
  position: fixed;
  bottom: 28px;
  inset-inline-end: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.quick-float__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
}
.quick-float.open .quick-float__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.quick-float__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.quick-float__item:hover { transform: translateX(-4px); }
html[dir="ltr"] .quick-float__item:hover { transform: translateX(4px); }
.quick-float__item--call { background: var(--gold); color: var(--charcoal); }
.quick-float__item--whatsapp { background: #25D366; }
.quick-float__item--email { background: var(--dark); border: 1px solid rgba(255,255,255,0.15); }
.quick-float__toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(212,175,55,0.45);
  transition: var(--transition);
  position: relative;
}
.quick-float__toggle:hover { transform: scale(1.08); }
.quick-float.open .quick-float__toggle { background: var(--charcoal); color: var(--gold); }
.quick-float__icon--close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg);
  transition: var(--transition);
}
.quick-float__icon--open { transition: var(--transition); }
.quick-float.open .quick-float__icon--open { opacity: 0; transform: rotate(90deg); }
.quick-float.open .quick-float__icon--close { opacity: 1; transform: rotate(0); }

/* ===== Animations ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav__link { padding: 8px 10px; font-size: 0.82rem; }
}
@media (max-width: 992px) {
  .about__grid,
  .custom__inner,
  .contact__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .product-card--featured { grid-column: span 1; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about__image img { height: 350px; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    inset-inline-end: -100%;
    width: 280px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    padding: 80px 32px 32px;
    transition: var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }
  html[dir="ltr"] .nav { box-shadow: 4px 0 20px rgba(0,0,0,0.3); }
  .nav.open { inset-inline-end: 0; }
  .lang-switch button { min-width: 30px; padding: 5px 6px; font-size: 0.68rem; }
  .nav__link { width: 100%; padding: 14px 0; font-size: 1rem; }
  .menu-toggle { display: flex; z-index: 1001; }
  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .about__stats { gap: 20px; }
  .stat__num { font-size: 2rem; }
  .gallery__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { grid-template-columns: 1fr; }
  .quick-contact__buttons { grid-template-columns: repeat(2, 1fr); }
  .maps-grid { grid-template-columns: 1fr; }
  .map-frame { height: 300px; }
  .footer__inner { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }
  .section { padding: 70px 0; }
}
