:root {
  --ink: #1b1713;
  --muted: #675f55;
  --paper: #fffaf1;
  --cream: #f5efe3;
  --gold: #d59a2f;
  --green: #315f47;
  --red: #9f3d2e;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(38, 29, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 250, 241, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 35px rgba(40, 30, 17, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
  padding: 3px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.78;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: right 0.2s ease;
}

.nav-links a:hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(20, 15, 10, 0.78), rgba(20, 15, 10, 0.28) 56%, rgba(20, 15, 10, 0.05));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 140px clamp(18px, 7vw, 88px) 210px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 92px);
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
.contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary,
.contact-actions a {
  background: var(--gold);
  color: #18120b;
}

.button.whatsapp {
  background: #1fa463;
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.68);
  color: var(--white);
}

.arabic-name {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.4;
}

.hero-panel {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 7vw, 88px);
  right: clamp(18px, 7vw, 88px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 250, 241, 0.93);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 24px;
  border-right: 1px solid rgba(27, 23, 19, 0.13);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 96px clamp(18px, 6vw, 76px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.compact {
  margin-bottom: 28px;
}

.product-showcase {
  display: grid;
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: 520px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-feature-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.product-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease, transform 0.28s ease;
}

.product-feature-media span {
  position: absolute;
  left: 22px;
  top: 22px;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--gold);
  color: #17110b;
  font-size: 13px;
  font-weight: 900;
}

.product-feature-copy {
  align-self: center;
  padding: clamp(28px, 5vw, 56px);
}

.product-feature-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.product-feature-copy p:not(.eyebrow),
.quality-copy p,
.quality-item span {
  color: var(--muted);
  line-height: 1.7;
}

.product-feature-copy dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.product-feature-copy dl div {
  border: 1px solid rgba(27, 23, 19, 0.1);
  border-radius: 8px;
  padding: 15px;
  background: #fff7e8;
}

.product-feature-copy dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-feature-copy dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-tabs button {
  display: grid;
  gap: 6px;
  min-height: 122px;
  border: 1px solid rgba(27, 23, 19, 0.11);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.product-tabs button:hover,
.product-tabs button.active {
  border-color: var(--gold);
  background: var(--white);
  transform: translateY(-3px);
}

.product-tabs span {
  color: var(--red);
  font-weight: 900;
}

.product-tabs strong {
  font-size: 20px;
}

.product-tabs small {
  color: var(--muted);
  font-weight: 800;
}

.quality-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 86px clamp(18px, 6vw, 76px);
  background: var(--green);
  color: var(--white);
}

.quality-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.quality-list {
  display: grid;
  gap: 12px;
}

.quality-item {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.quality-item:hover,
.quality-item.active {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(6px);
}

.quality-item strong,
.quality-item span {
  display: block;
}

.quality-item span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
}

.gallery-dock {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(27, 23, 19, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.gallery-stage {
  position: relative;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #15110d;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-stage img {
  width: 100%;
  height: min(58vw, 640px);
  min-height: 460px;
  object-fit: cover;
  transition: opacity 0.18s ease, transform 0.35s ease;
}

.gallery-stage:hover img {
  transform: scale(1.025);
}

.gallery-rail {
  display: grid;
  gap: 10px;
  max-height: 640px;
  overflow: auto;
  padding-right: 4px;
}

.dock-thumb {
  height: 94px;
  border: 3px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: #15110d;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.72;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.dock-thumb:hover,
.dock-thumb.active {
  border-color: var(--gold);
  opacity: 1;
  transform: translateX(-4px);
}

.dock-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legacy-gallery {
  display: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  min-height: 520px;
  background: var(--ink);
  color: var(--white);
}

.contact-card {
  align-self: center;
  padding: clamp(32px, 6vw, 78px);
}

.contact-card h2 {
  max-width: 520px;
}

.contact-actions a {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-actions a:hover {
  background: var(--gold);
  color: #18120b;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  background: #120f0c;
  color: rgba(255, 255, 255, 0.82);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 18px;
  background: #1fa463;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(31, 164, 99, 0.34);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(15, 12, 8, 0.86);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 86vh;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero-panel,
  .product-feature,
  .quality-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -120px 18px 0;
  }

  .hero-content {
    padding: 130px 18px 190px;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(27, 23, 19, 0.13);
  }

  .product-feature {
    min-height: 0;
  }

  .product-feature-copy dl,
  .product-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-dock {
    grid-template-columns: 1fr;
  }

  .gallery-stage img {
    min-height: 360px;
  }

  .gallery-rail {
    grid-template-columns: repeat(6, minmax(92px, 1fr));
    overflow-x: auto;
    padding-right: 0;
    padding-bottom: 4px;
  }

  .dock-thumb {
    height: 82px;
  }

  .dock-thumb:hover,
  .dock-thumb.active {
    transform: translateY(-3px);
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 44px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-feature-copy dl,
  .product-tabs {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 18px;
  }
}
