:root {
  --green: #0f5132;
  --green-2: #1f7a52;
  --gold: #c4962c;
  --ink: #17211d;
  --muted: #66736d;
  --paper: #fffaf0;
  --surface: #ffffff;
  --line: #e9dec8;
  --rose: #a83b6d;
  --blue: #182760;
  --shadow: 0 18px 50px rgba(23, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(196, 150, 44, 0.13), transparent 32rem),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 48%, #f5fbf8 100%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(233, 222, 200, 0.75);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand strong {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.brand small {
  margin-top: 0.2rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.76rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem 1.1rem;
  color: #3d4b45;
  font-weight: 700;
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

main {
  overflow: hidden;
}

.hero {
  min-height: min(700px, calc(82vh - 75px));
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 5vw, 5rem) 2rem;
}

.hero-media {
  justify-self: center;
  width: min(460px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 240, 0.72));
  box-shadow: var(--shadow);
  border: 1px solid rgba(196, 150, 44, 0.32);
}

.hero-media img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  border-radius: 50%;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green-2);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
}

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

h1 {
  margin: 0;
  max-width: 12ch;
  color: var(--green);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.arabic-name {
  margin: 1rem 0 0;
  color: var(--gold);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 700;
}

.lead {
  max-width: 60ch;
  margin: 1rem 0 0;
  color: #43504a;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.button,
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 81, 50, 0.18);
}

.button.secondary,
.map-link {
  color: var(--green);
  background: #fff;
  border: 1px solid rgba(15, 81, 50, 0.18);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(1rem, 5vw, 5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-info article {
  padding: clamp(1rem, 2.4vw, 1.6rem);
  background: rgba(255, 255, 255, 0.88);
}

.quick-info span,
.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.quick-info strong,
.contact-list strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1.18fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section p {
  color: #4e5c56;
  line-height: 1.7;
  font-size: 1.03rem;
}

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

.service-grid article {
  min-height: 210px;
  padding: 1.35rem;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(23, 33, 29, 0.07);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  font-weight: 800;
}

h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}

.visit {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(260px, 1.15fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(24, 39, 96, 0.08), transparent 38%),
    linear-gradient(135deg, rgba(168, 59, 109, 0.12), rgba(255, 255, 255, 0));
}

.visit-card {
  padding: clamp(1.4rem, 4vw, 2.3rem);
  border-left: 6px solid var(--rose);
  background: rgba(255, 255, 255, 0.78);
}

.business-card {
  width: min(420px, 100%);
  justify-self: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
}

.contact-list a {
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(23, 33, 29, 0.06);
}

footer {
  padding: 1.5rem clamp(1rem, 5vw, 5rem) 2rem;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .split,
  .visit,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    width: min(360px, 88vw);
  }

  h1 {
    max-width: 11ch;
  }

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

@media (max-width: 420px) {
  .brand img {
    width: 46px;
    height: 46px;
  }

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

  h1 {
    font-size: clamp(2.65rem, 18vw, 3.35rem);
  }
}
