:root {
  --maroon-900: #5c1e16;
  --maroon-800: #732619;
  --maroon-700: #ac3a30;
  --maroon-600: #c14a3a;
  --terracotta-500: #b9503a;
  --gold-500: #c99a4a;
  --gold-400: #e3c485;
  --gold-300: #f1dfb7;
  --cream: #fdf8ee;
  --ink: #2a1913;
  --muted: #6b5a4f;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(92, 30, 22, 0.14);

  /* subtle 8-point star motif, used as a repeating background */
  --star-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cg fill='none' stroke='%23e3c485' stroke-width='1'%3E%3Cpath d='M28 6 L34 20 L28 24 L22 20 Z M28 32 L34 36 L28 50 L22 36 Z M6 28 L20 22 L24 28 L20 34 Z M32 28 L36 22 L50 28 L36 34 Z' /%3E%3C/g%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

a { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  color: var(--maroon-900);
}

.brand img { width: 42px; height: 42px; border-radius: 8px; }

.brand-text { font-size: 15px; line-height: 1.2; }
.brand-text small { display: block; font-weight: 400; color: var(--muted); font-size: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.btn-primary { background: #25d366; color: #fff; }
.btn-primary:hover { background: #1eb959; }
.btn-outline { border: 1.5px solid var(--maroon-700); color: var(--maroon-700); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(circle at 15% 20%, var(--terracotta-500) 0%, var(--maroon-900) 55%, #3a120c 100%);
  color: var(--white);
  padding: 64px 0 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--star-pattern);
  opacity: 0.35;
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(217, 181, 101, 0.18);
  color: var(--gold-400);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 16px;
  line-height: 1.2;
}

.hero p {
  color: #f0dfd2;
  font-size: 16px;
  margin: 0 0 28px;
  max-width: 46ch;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }

.hero-photo {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid rgba(255,255,255,0.12);
  /* mosque-arch silhouette: rounded pointed top, square-ish base */
  border-radius: 50% 50% 14px 14px / 30% 30% 14px 14px;
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }

/* Ornamental section divider - repeating diamond motif */
.motif-divider {
  height: 22px;
  background-image: var(--star-pattern);
  background-position: center;
  opacity: 0.6;
}

/* Sections */
section { padding: 64px 0; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head .eyebrow {
  color: var(--gold-500);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-head h2 { font-size: clamp(24px, 3vw, 32px); color: var(--maroon-900); margin: 8px 0 12px; }
.section-head p { color: var(--muted); margin: 0; }

/* About */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.about-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.about-card .icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
}
.about-card .icon svg { width: 24px; height: 24px; stroke: var(--maroon-800); }
.about-card h3 { margin: 0 0 8px; color: var(--maroon-900); font-size: 17px; }
.about-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.product-card:hover { transform: translateY(-4px); }
.product-card img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.product-card .label {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--maroon-900);
}

.products-note {
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: 15px;
}
.products-note a { color: var(--maroon-700); font-weight: 600; text-decoration: underline; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--gold-500), var(--gold-400));
  color: #26210b;
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  margin: 0 20px;
}
.cta-banner h2 { margin: 0 0 10px; font-size: 24px; }
.cta-banner p { margin: 0 0 22px; }
.cta-banner .btn-primary { background: var(--maroon-900); }
.cta-banner .btn-primary:hover { background: #431509; }

/* Contact */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.contact-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-card h3 { margin-top: 0; color: var(--maroon-900); }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: 10px; margin-bottom: 14px; font-size: 15px; align-items: flex-start; }
.contact-list li span.icon { flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; }
.contact-list li span.icon svg { width: 100%; height: 100%; stroke: var(--maroon-700); }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid #e2ddce;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--maroon-900);
}
.social-links a svg { width: 15px; height: 15px; stroke: var(--maroon-700); }
.contact-card h3 { display: flex; align-items: center; gap: 8px; }
.contact-card h3 svg { width: 19px; height: 19px; stroke: var(--maroon-700); flex-shrink: 0; }

/* Footer */
.site-footer {
  position: relative;
  background: var(--maroon-900);
  color: #e6cfc4;
  padding: 32px 0;
  font-size: 13px;
  text-align: center;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--star-pattern);
  opacity: 0.15;
  pointer-events: none;
}
.site-footer .container { position: relative; }
.site-footer strong { color: #fff; }

/* Responsive */
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  section { padding: 48px 0; }
  .hero { padding: 48px 0 56px; }
}
