:root {
  --bg: #f4efe6;
  --ink: #1c1814;
  --muted: #6b6258;
  --line: #d8cfc3;
  --card: #fffaf3;
  --accent: #7a5340;
  --max: 1080px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", "Noto Sans Arabic", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-mark strong {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark span {
  font-size: 0.85rem;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--accent);
}

.hero {
  padding: 96px 0 72px;
  text-align: center;
}

.hero-logo {
  width: 112px;
  height: 112px;
  object-fit: cover;
  margin: 0 auto 28px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 0.95;
}

.hero .ar-name {
  margin-top: 16px;
  font-family: "Noto Sans Arabic", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--accent);
}

.hero p {
  max-width: 520px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero .ar-tag {
  margin-top: 8px;
  font-size: 1.05rem;
}

section {
  padding: 72px 0;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.section-title h2 {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  font-weight: 520;
}

.section-title span {
  color: var(--muted);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-grid p,
.contact-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product {
  background: var(--card);
  border: 1px solid var(--line);
  min-height: 280px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.product-visual {
  flex: 1;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, #efe6d8 0%, #e4d7c4 100%);
  position: relative;
  overflow: hidden;
}

.product-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-stamp {
  font-family: "Fraunces", serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--accent);
}

.product h3 {
  margin-top: 14px;
  font-size: 1.05rem;
  font-weight: 600;
}

.product .ar {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px;
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 800px) {
  nav {
    display: none;
  }

  .about-grid,
  .contact-grid,
  .products {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  section,
  .hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
