/* ═══════════════════════════════════════════════════════════════
   Golden Desert Ltd. — Premium Corporate Stylesheet
   Palette: Midnight Charcoal · Burnished Gold · Sandstone · Pearl
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-bright: #E8C96D;
  --gold-deep:   #9A7228;
  --charcoal:    #0D0F14;
  --charcoal-2:  #141720;
  --charcoal-3:  #1C2030;
  --charcoal-4:  #252A3A;
  --sand:        #D4B483;
  --sand-light:  #F0E2C4;
  --pearl:       #F5F2EC;
  --white:       #FFFFFF;
  --muted:       #8A8FA8;
  --border:      rgba(201,168,76,0.18);
  --glass:       rgba(255,255,255,0.04);
  --glass-border:rgba(201,168,76,0.12);

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-label:   'Inter', sans-serif;

  --ease-luxury:  cubic-bezier(0.22, 1, 0.36, 1);
  --transition:   0.35s var(--ease-luxury);

  --section-pad:  clamp(5rem, 10vw, 9rem);
  --container:    1320px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--charcoal);
  color: var(--pearl);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────────── */
.display-headline {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.section-eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.section-title .accent { color: var(--gold); }
.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Gold gradient text utility ──────────────────────────────── */
.text-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.1rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
  background-size: 200% 200%;
  color: var(--charcoal);
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition), background-position 0.5s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-gold:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
  color: var(--charcoal);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--pearl);
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ── Navbar ──────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(13,15,20,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 22px; fill: var(--charcoal); }
.nav-brand-text { line-height: 1.1; }
.nav-brand-text span:first-child {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-brand-text span:last-child {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.navbar-nav .nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75) !important;
  padding: 0.3rem 0 !important;
  margin: 0 0.9rem;
  position: relative;
  transition: color var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}
.navbar-toggler {
  border: 1px solid var(--border);
  padding: 0.4rem 0.6rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(201,168,76,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ── Hero ─────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(13,15,20,0.55) 0%, rgba(13,15,20,0.35) 50%, rgba(13,15,20,0.75) 100%),
    url('https://images.unsplash.com/photo-1586864387967-d02ef85d93e8?w=1920&q=80') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }

/* Desert texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
    linear-gradient(to bottom, transparent 60%, rgba(13,15,20,0.9) 100%);
}

/* Animated particle lines */
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  animation: scan 6s linear infinite;
}
.hero-lines::before { animation-delay: 0s; }
.hero-lines::after  { animation-delay: 3s; }
@keyframes scan {
  0%   { top: -1px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hero-content { position: relative; z-index: 2; padding-top: 6rem; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-label-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline .line-gold { color: var(--gold-bright); display: block; }

.hero-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 2.5rem;
}
.hero-sector {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  position: relative;
}
.hero-sector:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -0.85rem;
  color: var(--gold);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── Marquee strip ────────────────────────────────────────────── */
.marquee-strip {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  flex-shrink: 0;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--charcoal); opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section base ────────────────────────────────────────────── */
section { padding: var(--section-pad) 0; }
section:nth-child(even) { background: var(--charcoal-2); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ── About ───────────────────────────────────────────────────── */
#about { background: var(--charcoal-2); }
.about-image-wrap {
  position: relative;
}
.about-image-frame {
  position: relative;
  overflow: hidden;
}
.about-image-frame::before {
  content: '';
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  right: 1.5rem; bottom: 1.5rem;
  border: 1px solid var(--gold);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
.about-image-frame img {
  width: 100%; height: 520px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  filter: brightness(0.9) saturate(0.85);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--charcoal);
  padding: 1.4rem 1.8rem;
  text-align: center;
}
.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: border-color var(--transition);
}
.about-feat:hover { border-color: rgba(201,168,76,0.35); }
.about-feat-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.9rem;
}
.about-feat-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.about-feat-text span { font-size: 0.76rem; color: var(--muted); }

/* ── Services ─────────────────────────────────────────────────── */
#services { background: var(--charcoal); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--charcoal);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--gold-bright), var(--gold-deep));
  transition: height 0.5s var(--ease-luxury);
}
.service-card:hover { background: var(--charcoal-3); }
.service-card:hover::before { height: 100%; }
.service-number {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(201,168,76,0.35);
  margin-bottom: 1.2rem;
  font-family: var(--font-label);
}
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
  transition: background var(--transition), border-color var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(201,168,76,0.22), rgba(201,168,76,0.08));
  border-color: rgba(201,168,76,0.45);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.service-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(201,168,76,0.18);
  color: rgba(201,168,76,0.65);
  transition: var(--transition);
}
.service-card:hover .service-tag {
  border-color: rgba(201,168,76,0.35);
  color: var(--gold);
}

/* ── Why Us / Stats ───────────────────────────────────────────── */
#why {
  background: linear-gradient(160deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.why-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}
.why-pillar {
  background: var(--charcoal-2);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background var(--transition);
}
.why-pillar:hover { background: var(--charcoal-3); }
.why-pillar-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  transition: var(--transition);
}
.why-pillar:hover .why-pillar-icon {
  background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.08));
  box-shadow: 0 0 30px rgba(201,168,76,0.15);
}
.why-pillar h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.why-pillar p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; }

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.stat-item {
  padding: 2.2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.08em; margin-top: 0.4rem; text-transform: uppercase; }

/* ── Projects ─────────────────────────────────────────────────── */
#projects { background: var(--charcoal); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5px;
  background: var(--border);
}
.project-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal-3);
  cursor: pointer;
}
.project-card:nth-child(1),
.project-card:nth-child(2) { grid-column: span 6; }
.project-card:nth-child(3),
.project-card:nth-child(4),
.project-card:nth-child(5) { grid-column: span 4; }
.project-img {
  width: 100%; height: 300px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury), filter 0.7s ease;
  filter: brightness(0.65) saturate(0.7);
}
.project-card:nth-child(1) .project-img,
.project-card:nth-child(2) .project-img { height: 380px; }
.project-card:hover .project-img {
  transform: scale(1.06);
  filter: brightness(0.55) saturate(0.8);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,15,20,0.92) 0%, rgba(13,15,20,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.project-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.project-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.project-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.project-arrow {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.project-card:hover .project-arrow { opacity: 1; transform: translateY(0); }

/* ── Sustainability ───────────────────────────────────────────── */
#sustainability {
  background: var(--charcoal-2);
  position: relative;
  overflow: hidden;
}
#sustainability::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.025'%3E%3Cpath d='M30 0L60 30L30 60L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.sustain-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.sustain-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 2rem 1.75rem;
  transition: border-color var(--transition), background var(--transition);
}
.sustain-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.03);
}
.sustain-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.sustain-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.sustain-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; }

/* ── Contact ──────────────────────────────────────────────────── */
#contact { background: var(--charcoal); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-card {
  background: var(--charcoal-3);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.office-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.office-item:last-of-type { border-bottom: none; }
.office-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.office-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.office-item p { font-size: 0.84rem; color: var(--muted); }
.contact-email-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 500;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}
.contact-email-link:hover { background: rgba(201,168,76,0.05); border-color: rgba(201,168,76,0.4); }

/* Form */
.contact-form { position: relative; }
.form-group { margin-bottom: 1.25rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  background: var(--charcoal-3);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--pearl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1.1rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  border-radius: 0;
  appearance: none;
}
.form-control::placeholder { color: rgba(255,255,255,0.2); }
.form-control:focus {
  border-color: rgba(201,168,76,0.5);
  background: var(--charcoal-4);
}
select.form-control { cursor: pointer; }
option { background: var(--charcoal-3); }
textarea.form-control { resize: vertical; min-height: 130px; }
.honeypot-field { display: none !important; }
#form-message {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  display: none;
  margin-top: 1rem;
}
#form-message.success { background: rgba(74,181,120,0.1); border: 1px solid rgba(74,181,120,0.3); color: #4ab578; }
#form-message.error   { background: rgba(220,68,68,0.1); border: 1px solid rgba(220,68,68,0.3); color: #e05c5c; }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-brand span:first-child {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.2rem;
}
.footer-brand span:last-child {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.75; margin-top: 1rem; max-width: 280px; }
.footer-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.84rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }

/* ── AOS overrides ───────────────────────────────────────────── */
[data-aos] { will-change: transform, opacity; }

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .project-card:nth-child(1),
  .project-card:nth-child(2) { grid-column: span 6; }
  .project-card:nth-child(3),
  .project-card:nth-child(4),
  .project-card:nth-child(5) { grid-column: span 6; }
}
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .about-features { grid-template-columns: 1fr; }
  .about-image-frame img { height: 360px; }
}
@media (max-width: 768px) {
  .form-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .project-card { grid-column: span 12 !important; }
  .project-img,
  .project-card:nth-child(1) .project-img,
  .project-card:nth-child(2) .project-img { height: 250px; }
  .hero-headline { font-size: clamp(2.4rem, 8vw, 4rem); }
}
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .about-badge { right: 0; }
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
