:root {
  --ink: #171310;
  --muted: #70685f;
  --paper: #fffaf1;
  --surface: #ffffff;
  --line: #e7d9c5;
  --gold: #b98742;
  --teal: #0e6f65;
  --coral: #b84f41;
  --charcoal: #202326;
  --shadow: 0 18px 50px rgba(34, 27, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input {
  font: inherit;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.announcement {
  align-items: center;
  background: var(--charcoal);
  color: #fff8ed;
  display: none;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 1rem;
  justify-content: center;
  min-height: 34px;
  padding: 0.4rem 1rem;
  text-align: center;
}

.announcement span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 1rem;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1320px;
  min-height: 98px;
  padding: 0 1.5rem;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.9rem;
}

.brand-logo-wrap {
  align-items: center;
  background: transparent;
  border: 0;
  display: inline-flex;
  height: 76px;
  justify-content: center;
  overflow: hidden;
  width: 76px;
}

.brand-logo-wrap img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: #171310;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  align-items: center;
  color: #171310;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold);
}

.icon-button {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.icon-button svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 22px;
}

.hero {
  background: #191410;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 48vw, 580px);
  overflow: hidden;
  position: relative;
}

.hero-bg {
  background:
    radial-gradient(circle at 18% 32%, rgba(213, 165, 72, 0.38), rgba(213, 165, 72, 0) 28%),
    linear-gradient(115deg, rgba(202, 146, 56, 0.96) 0%, rgba(174, 121, 42, 0.88) 34%, rgba(77, 68, 55, 0.82) 54%, rgba(20, 16, 13, 0.92) 100%);
  inset: 0;
  position: absolute;
  z-index: -3;
}

.hero-bg::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 64px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 64px);
  content: "";
  inset: 0;
  opacity: 0.5;
  position: absolute;
}

.hero-bg::after {
  background: linear-gradient(90deg, rgba(15, 13, 11, 0.78) 0%, rgba(15, 13, 11, 0.3) 48%, rgba(15, 13, 11, 0.08) 70%, rgba(15, 13, 11, 0.56) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  color: #fff8ed;
  max-width: 580px;
  padding: 2.4rem 1.25rem;
  position: relative;
  width: min(100%, 1180px);
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.15rem);
  margin-bottom: 0.9rem;
  max-width: 560px;
}

.hero-arabic {
  border: 2px solid rgba(255, 248, 237, 0.72);
  color: #17110c;
  display: inline-block;
  font-family: Arial, Tahoma, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 1rem;
  padding: 0.5rem 0.85rem;
  text-align: right;
  background: rgba(255, 247, 226, 0.82);
}

.hero-copy {
  color: rgba(255, 248, 237, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.55;
  max-width: 520px;
}

.primary-button {
  background: var(--gold);
  color: #140f0b;
  display: inline-flex;
  font-weight: 800;
  margin-top: 0.8rem;
  padding: 0.95rem 1.35rem;
}

.hero-collage {
  height: min(86%, 500px);
  pointer-events: none;
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  top: 50%;
  transform: translateY(-50%);
  width: min(50vw, 760px);
  z-index: 1;
}

.hero-product {
  background: rgba(255, 255, 255, 0.92);
  border: 3px solid rgba(197, 141, 45, 0.85);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  display: grid;
  overflow: hidden;
  place-items: center;
  position: absolute;
}

.hero-product img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.hero-product-main {
  border-radius: 8px;
  height: min(82%, 450px);
  right: 12%;
  top: 9%;
  width: min(58%, 390px);
}

.hero-product-main img {
  object-position: center;
}

.hero-product-small {
  aspect-ratio: 1 / 1;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  height: min(28%, 170px);
  padding: 1.25rem;
}

.hero-product-small.top {
  right: 0;
  top: 0;
}

.hero-product-small.middle {
  left: 2%;
  top: 31%;
}

.hero-product-small.bottom {
  bottom: 0;
  right: 4%;
}

.toolbar-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.toolbar,
.product-section,
.ritual-band,
.company-band,
.service-band,
.contact-band,
.footer {
  margin: 0 auto;
  max-width: 1320px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.toolbar {
  align-items: end;
  display: flex;
  gap: 1.4rem;
  justify-content: space-between;
  padding-bottom: 2rem;
  padding-top: 2.2rem;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.55rem;
}

.toolbar h2,
.ritual-copy h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  margin-bottom: 0;
}

.control-row {
  display: flex;
  gap: 0.8rem;
}

.select-wrap {
  color: var(--muted);
  display: grid;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 0.35rem;
  text-transform: uppercase;
}

select,
input {
  appearance: none;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  min-width: 150px;
  padding: 0.75rem 2rem 0.75rem 0.8rem;
}

.search-wrap input {
  min-width: 240px;
}

.product-section {
  align-items: start;
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 230px 1fr;
  padding-bottom: 4.5rem;
  padding-top: 2rem;
}

.sidebar {
  background: #f6efe2;
  border: 1px solid var(--line);
  padding: 1.1rem;
  position: sticky;
  top: 126px;
}

.sidebar h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  margin-bottom: 0.45rem;
}

.sidebar p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chip {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.6rem 0.8rem;
}

.chip.active,
.chip:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

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

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:focus-visible,
.product-card:hover {
  box-shadow: var(--shadow);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  transform: translateY(-4px);
}

.product-media {
  aspect-ratio: 1.22 / 1;
  background: #f3eadb;
  overflow: hidden;
  position: relative;
}

.product-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.product-photo {
  background: #fff;
}

.product-photo > img {
  object-fit: contain;
  padding: 0.45rem;
  transform: none;
}

.media-black img {
  object-position: 38% 48%;
}

.media-white img {
  object-position: 48% 48%;
}

.media-gold img {
  object-position: 58% 48%;
}

.media-teal img {
  object-position: 70% 48%;
}

.media-stone img {
  filter: saturate(0.82) brightness(1.05);
  object-position: 44% 52%;
}

.media-onyx img {
  filter: contrast(1.08);
  object-position: 34% 50%;
}

.badge {
  background: var(--coral);
  color: white;
  font-size: 0.73rem;
  font-weight: 800;
  left: 0.8rem;
  padding: 0.42rem 0.58rem;
  position: absolute;
  top: 0.8rem;
}

.muted-badge {
  background: var(--muted);
}

.product-logo {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  bottom: 0.8rem;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  position: absolute;
  right: 0.8rem;
  width: 58px;
}

.product-logo img {
  display: block;
  height: 82%;
  object-fit: contain;
  padding: 0;
  width: 82%;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.9rem 0.9rem 0.95rem;
}

.product-info h3 {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.36;
  margin-bottom: 0.48rem;
}

.product-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 0.5rem;
  justify-content: space-between;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.product-info p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.product-details {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0 0 0.85rem;
  max-height: 3.1rem;
  overflow: hidden;
  padding-left: 1.1rem;
}

.product-bottom {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
  margin-top: auto;
}

.product-bottom span {
  color: var(--teal);
  font-weight: 900;
}

.ritual-band {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  padding-bottom: 4rem;
  padding-top: 4rem;
}

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

.ritual-steps div {
  background: var(--charcoal);
  color: #fff8ed;
  min-height: 150px;
  padding: 1rem;
}

.ritual-steps strong {
  color: var(--gold);
  display: block;
  font-size: 0.86rem;
  margin-bottom: 2rem;
}

.ritual-steps span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.company-band {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding-bottom: 4.5rem;
  padding-top: 4.5rem;
}

.company-copy h2,
.service-band h2,
.contact-band h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  margin-bottom: 1rem;
}

.company-copy p,
.contact-band p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 620px;
}

.company-points {
  display: grid;
  gap: 0.85rem;
}

.company-points div {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.1rem;
}

.company-points strong,
.contact-card span {
  color: var(--ink);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.company-points span {
  color: var(--muted);
  display: block;
  font-size: 0.92rem;
  line-height: 1.65;
}

.service-band {
  border-top: 1px solid var(--line);
  padding-bottom: 4.5rem;
  padding-top: 4.5rem;
}

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

.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
  max-width: 860px;
}

.country-list span {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.55rem 0.7rem;
}

.service-grid article {
  background: var(--charcoal);
  color: #fff8ed;
  min-height: 220px;
  padding: 1.15rem;
}

.service-grid span {
  color: var(--gold);
  display: block;
  font-size: 0.86rem;
  font-weight: 900;
  margin-bottom: 2.2rem;
}

.service-grid h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.service-grid p {
  color: rgba(255, 248, 237, 0.72);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-band {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 360px;
  padding-bottom: 4.5rem;
  padding-top: 4.5rem;
}

.contact-card {
  background: #f6efe2;
  border: 1px solid var(--line);
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
}

.contact-card a {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--teal);
  display: block;
  font-weight: 900;
  padding: 0.9rem;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.footer p {
  margin: 0.35rem 0 0;
}

.footer a {
  color: var(--teal);
  font-weight: 800;
}

.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 0.7rem;
}

.footer-brand img {
  background: #fff;
  border: 1px solid var(--line);
  display: block;
  height: 42px;
  object-fit: contain;
  padding: 0.2rem;
  width: 42px;
}

.is-hidden {
  display: none;
}

.product-count {
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  margin: 1rem 0 0;
  padding-top: 1rem;
}

.modal-open {
  overflow: hidden;
}

.modal {
  align-items: center;
  background: rgba(23, 19, 16, 0.68);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 1.25rem;
  position: fixed;
  z-index: 30;
}

.modal.is-open {
  display: flex;
}

.modal-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  max-height: min(860px, 92vh);
  max-width: 1040px;
  overflow: auto;
  padding: 1.25rem;
  position: relative;
  width: 100%;
}

.modal-close {
  align-items: center;
  background: var(--charcoal);
  border: 0;
  color: #fff8ed;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.6rem;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 42px;
  z-index: 2;
}

.modal-gallery {
  display: grid;
  gap: 0.8rem;
}

.modal-gallery > img {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--line);
  height: auto;
  object-fit: contain;
  padding: 0.8rem;
  width: 100%;
}

.modal-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modal-thumbs button {
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
  height: 68px;
  padding: 0.25rem;
  width: 68px;
}

.modal-thumbs button.active {
  border-color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--teal);
}

.modal-thumbs img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.modal-copy {
  align-self: center;
  padding-right: 2rem;
}

.modal-copy h2 {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.4rem);
  line-height: 1.18;
  margin-bottom: 1rem;
}

.modal-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.modal-copy ul {
  color: var(--muted);
  line-height: 1.7;
  padding-left: 1.1rem;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 23rem;
  }

  .hero-collage {
    height: 320px;
    left: 50%;
    right: auto;
    top: 1.5rem;
    transform: translateX(-50%);
    width: min(92vw, 620px);
  }

  .hero-product-main {
    height: 300px;
    right: 16%;
    top: 0;
    width: 320px;
  }

  .hero-product-small {
    height: 118px;
  }

  .toolbar,
  .product-section,
  .ritual-band,
  .company-band,
  .contact-band,
  .footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .control-row {
    flex-wrap: wrap;
  }

  .sidebar {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ritual-steps {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .modal-panel {
    grid-template-columns: 1fr;
  }

  .modal-copy {
    padding-right: 0;
  }
}

@media (max-width: 620px) {
  .announcement {
    display: none;
  }

  .nav {
    min-height: 66px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding-top: 21rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  .hero-arabic {
    font-size: 1.25rem;
  }

  .hero-collage {
    height: 290px;
    width: min(96vw, 420px);
  }

  .hero-product-main {
    height: 260px;
    right: 10%;
    width: 260px;
  }

  .hero-product-small {
    height: 92px;
    padding: 0.75rem;
  }

  .control-row,
  .select-wrap,
  .search-wrap input,
  select {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

}
