/* ═══════════════════════════════════════════════════════
   IMTIYAZ — SHARED STYLES
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #1A1A1A;
  background: #FAFAF8;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

:root {
  --green:       #063D31;
  --green-mid:   #0A5C46;
  --green-light: #D6EDE6;
  --green-pale:  #EEF7F4;
  --gold:        #C9A84C;
  --gold-light:  #F5EDD4;
  --gold-pale:   #FDF8EE;
  --cream:       #FAFAF8;
  --stone:       #F2F0EB;
  --gray-2:      #E8E6E0;
  --gray-4:      #B8B4AA;
  --gray-6:      #6B6660;
  --gray-8:      #2E2B27;
  --red-light:   #FAECE7;
  --red:         #8B2E1A;
  --shadow-sm:   0 1px 3px rgba(6,61,49,.08);
  --shadow-md:   0 4px 16px rgba(6,61,49,.10);
  --shadow-lg:   0 12px 40px rgba(6,61,49,.14);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
}

.display { font-family: 'Playfair Display', Georgia, serif; }
.serif   { font-family: 'Playfair Display', Georgia, serif; }

.arabesque-bg {
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.4' opacity='0.07'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3Ccircle cx='30' cy='30' r='12'/%3E%3Cline x1='10' y1='30' x2='50' y2='30'/%3E%3Cline x1='30' y1='10' x2='30' y2='50'/%3E%3Cline x1='15.9' y1='15.9' x2='44.1' y2='44.1'/%3E%3Cline x1='44.1' y1='15.9' x2='15.9' y2='44.1'/%3E%3Ccircle cx='30' cy='10' r='2'/%3E%3Ccircle cx='30' cy='50' r='2'/%3E%3Ccircle cx='10' cy='30' r='2'/%3E%3Ccircle cx='50' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

/* ── NAVBAR (shared across all pages) ─────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6, 61, 49, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 2rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: #fff; letter-spacing: 0.02em;
  cursor: pointer;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links li { list-style: none; display: inline-flex; }
.nav-links a, .nav-links button.navlink {
  font-size: .875rem; color: rgba(255,255,255,.75);
  font-weight: 500; transition: color .2s;
  background: none; border: none; padding: 0;
}
.nav-links a:hover, .nav-links button.navlink:hover { color: var(--gold); }
.nav-links a.active, .nav-links button.navlink.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--green);
  font-size: .8125rem; font-weight: 600;
  padding: .5rem 1.125rem; border-radius: 99px;
  border: none; white-space: nowrap;
  transition: opacity .2s;
}
.nav-cta:hover { opacity: .88; }
.nav-mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.25rem; }
.nav-breadcrumb-bar {
  position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background: var(--cream); border-bottom: 1px solid var(--gray-2);
  padding: .625rem 2rem;
  font-size: .8125rem; color: var(--gray-6);
}
.nav-breadcrumb-bar a { color: var(--green-mid); font-weight: 500; }
.nav-breadcrumb-bar a:hover { text-decoration: underline; }
.nav-breadcrumb-bar .sep { margin: 0 .5rem; color: var(--gray-4); }
.nav-breadcrumb-bar .current { color: var(--gray-8); font-weight: 500; }

section { width: 100%; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

.eyebrow { font-size: .6875rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow.red   { color: var(--red); }
.eyebrow.green { color: var(--green-mid); }
.eyebrow.gold  { color: var(--gold); }
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600; line-height: 1.3;
  color: var(--gray-8); margin: .875rem 0 .875rem;
}
.section-sub { font-size: 1rem; color: var(--gray-6); line-height: 1.75; max-width: 560px; }

.btn-primary {
  display: flex; align-items: center; justify-content: center; gap: .625rem;
  background: var(--gold); color: var(--green);
  font-size: .9375rem; font-weight: 600;
  padding: .875rem 1.5rem; border-radius: var(--radius-md);
  border: none; transition: opacity .2s, transform .15s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-ghost {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: transparent; color: rgba(255,255,255,.8);
  font-size: .875rem; font-weight: 500;
  padding: .75rem 1.5rem; border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.2);
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost-light {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: transparent; color: var(--gray-6);
  font-size: .875rem; font-weight: 500;
  padding: .75rem 1.5rem; border-radius: var(--radius-md);
  border: 1px solid var(--gray-2);
  transition: border-color .2s, color .2s;
}
.btn-ghost-light:hover { border-color: var(--green); color: var(--green); }
.btn-icon { font-size: 1.125rem; }
.dot-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.footer-min {
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 2.5rem 2rem 1.25rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem; max-width: 1120px; margin: 0 auto 2rem;
}
.footer-col-title { font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin-bottom: .875rem; }
.footer-links-col { display: flex; flex-direction: column; gap: .625rem; }
.footer-links-col a, .footer-links-col button {
  font-size: .8125rem; color: rgba(255,255,255,.55); transition: color .2s;
  background: none; border: none; text-align: left; padding: 0;
}
.footer-links-col a:hover, .footer-links-col button:hover { color: rgba(255,255,255,.9); }
.footer-desc { font-size: .8125rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 280px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.25rem; max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-text { font-size: .75rem; color: rgba(255,255,255,.4); }

/* ── Page transition wrapper ───────────────────────────── */
.page { display: none; }
.page.active { display: block; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .container { padding: 0 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}
