@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pfuko-dark: #0F0F0F;
  --pfuko-charcoal: #1A1A1A;
  --pfuko-gold: #C9A84C;
  --pfuko-gold-light: #D9C278;
  --pfuko-gold-muted: #B89840;
  --pfuko-cream: #F8F5EE;
  --pfuko-light: #F0EDE6;
  --pfuko-white: #FFFFFF;
  --pfuko-gray: #6B6B6B;
  --pfuko-muted: #999999;
  --pfuko-green: #2D5016;
  --pfuko-sage: #4A6741;
  --pfuko-bottle-blue: #003366;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
  font-family: var(--font-body);
  background-color: var(--pfuko-white);
  color: var(--pfuko-charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: var(--pfuko-gold);
  color: var(--pfuko-dark);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Utility ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.text-gradient-gold {
  background: linear-gradient(135deg, #C9A84C, #D9C278, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider-gold { width: 48px; height: 2px; background: var(--pfuko-gold); margin-bottom: 1.5rem; }

.badge {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.badge-outline {
  border: 1px solid var(--pfuko-gold);
  color: var(--pfuko-gold);
  background: transparent;
}
.badge-filled {
  background: rgba(201,168,76,0.12);
  color: var(--pfuko-gold);
  border: 1px solid rgba(201,168,76,0.2);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-body);
}
.btn-primary { background: var(--pfuko-gold); color: var(--pfuko-dark); }
.btn-primary:hover { background: var(--pfuko-gold-light); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-gold-outline { background: transparent; color: var(--pfuko-gold); border: 1px solid rgba(201,168,76,0.2); }
.btn-gold-outline:hover { background: rgba(201,168,76,0.1); }
.btn svg { width: 1.2rem; height: 1.2rem; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.5s ease;
  background: transparent;
}
header.scrolled {
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  padding: 0.75rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo img { width: 4rem; height: 4rem; object-fit: contain; }
@media (min-width: 768px) { .nav-logo img { width: 5rem; height: 5rem; } }
.nav-logo-text { display: none; }
@media (min-width: 640px) { .nav-logo-text { display: block; } }
.nav-logo-name {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) { .nav-logo-name { font-size: 1.3rem; } }
@media (min-width: 1024px) { .nav-logo-name { font-size: 1.5rem; } }
.nav-logo-slogan {
  color: var(--pfuko-gold);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
@media (min-width: 768px) { .nav-logo-slogan { font-size: 0.65rem; } }
@media (min-width: 1024px) { .nav-logo-slogan { font-size: 0.75rem; } }

.nav-links { display: none; list-style: none; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--pfuko-gold); }

.mobile-toggle {
  display: flex;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle svg { width: 1.75rem; height: 1.75rem; }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(15,15,15,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--pfuko-gold); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg-new.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.hero-content .badge { margin-bottom: 1.5rem; }
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  max-width: 56rem;
  font-size: 2.5rem;
}
@media (min-width: 640px) { .hero h1 { font-size: 3.25rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 5rem; } }
.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 40rem;
  line-height: 1.7;
}
@media (min-width: 768px) { .hero-sub { font-size: 1.25rem; } }
.hero-buttons { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}
.scroll-indicator-dot {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 1rem;
  display: flex;
  justify-content: flex-start;
  padding-top: 0.5rem;
}
.scroll-indicator-dot span {
  width: 0.375rem;
  height: 0.75rem;
  background: var(--pfuko-gold);
  border-radius: 1rem;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about { padding: 6rem 0; background: var(--pfuko-white); }
.about-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) { .about h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .about h2 { font-size: 2.75rem; } }
.about p {
  color: var(--pfuko-gray);
  line-height: 1.75;
  font-size: 1rem;
}
@media (min-width: 768px) { .about p { font-size: 1.06rem; } }
.about p + p { margin-top: 1rem; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-card {
  border: 1px solid rgba(201,168,76,0.1);
  background: rgba(248,245,238,0.4);
  padding: 1.5rem;
  border-radius: 2px;
  transition: box-shadow 0.3s;
}
.stat-card:hover { box-shadow: 0 4px 12px rgba(201,168,76,0.05); }
.stat-value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--pfuko-gold);
}
@media (min-width: 768px) { .stat-value { font-size: 3rem; } }
.stat-label {
  font-size: 0.8rem;
  color: var(--pfuko-gray);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════════════════ */
.section-dark { background: var(--pfuko-dark); color: #fff; }
.section-bottle-blue { background: var(--pfuko-bottle-blue); color: #fff; }
.section-cream { background: var(--pfuko-cream); }
.section-charcoal { background: var(--pfuko-charcoal); color: #fff; }
.section-padding { padding: 6rem 0; }
@media (min-width: 768px) { .section-padding { padding: 8rem 0; } }

.section-heading { text-align: center; margin-bottom: 4rem; }
.section-heading h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) { .section-heading h2 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .section-heading h2 { font-size: 3rem; } }
.section-heading h2.gold { color: var(--pfuko-gold); }
.section-heading .subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--pfuko-gray);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.section-heading .subtitle.light { color: rgba(255,255,255,0.6); }

/* ── Full-width page image ── */
.page-image {
  width: 100%;
  display: block;
  overflow: hidden;
  line-height: 0;
}
.page-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   PAGE BANNER
   ═══════════════════════════════════════════════════════════ */
.page-banner {
  background: var(--pfuko-dark);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
@media (min-width: 768px) { .page-banner { padding: 7rem 0 5rem; } }
.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1rem;
}
@media (min-width: 768px) { .page-banner h1 { font-size: 2.75rem; } }
.page-banner .subtitle {
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   PILLARS
   ═══════════════════════════════════════════════════════════ */
.pillars-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pillars-grid { grid-template-columns: 1fr 1fr 1fr; } }
.pillar-card {
  background: var(--pfuko-white);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.5s;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pillar-card:hover { box-shadow: 0 6px 20px rgba(201,168,76,0.08); transform: translateY(-2px); }
.pillar-img {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
.pillar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.pillar-card:hover .pillar-img img { transform: scale(1.05); }
.pillar-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--pfuko-dark), rgba(15,15,15,0.5), transparent);
}
.pillar-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(201,168,76,0.9);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-icon svg { width: 1.25rem; height: 1.25rem; color: var(--pfuko-dark); }
.pillar-body { padding: 1.5rem; }
.pillar-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pfuko-dark);
  margin-bottom: 0.75rem;
}
.pillar-body p {
  color: var(--pfuko-gray);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   FOUNDER
   ═══════════════════════════════════════════════════════════ */
.founder-grid { display: grid; gap: 3rem; align-items: flex-start; }
@media (min-width: 1024px) { .founder-grid { grid-template-columns: auto 1fr; gap: 4rem; } }
.founder-img-wrap {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .founder-img-wrap { margin: 0; } }
.founder-img {
  position: relative;
  width: 100%;
  padding-top: 133%; /* 3:4 */
  overflow: hidden;
  border-radius: 2px;
}
.founder-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.founder-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.3), transparent);
}
.founder-deco-1 {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  width: 6rem;
  height: 6rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px;
  z-index: -1;
}
.founder-deco-2 {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 2px;
  z-index: -1;
}
.founder-text h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) { .founder-text h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .founder-text h2 { font-size: 2.75rem; } }
.founder-text p {
  color: var(--pfuko-charcoal);
  line-height: 1.75;
  font-size: 1rem;
}
@media (min-width: 768px) { .founder-text p { font-size: 1.06rem; } }
.founder-bio { margin-top: 2rem; }
.founder-bio p + p { margin-top: 1.25rem; }
.founder-credentials {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.founder-cred-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.founder-cred-item svg { width: 1.25rem; height: 1.25rem; color: var(--pfuko-gold); }
.founder-cred-item span { font-size: 0.875rem; font-weight: 500; color: var(--pfuko-charcoal); }

/* ═══════════════════════════════════════════════════════════
   VISION / MISSION / VALUES
   ═══════════════════════════════════════════════════════════ */
.vm-grid { display: grid; gap: 2rem; margin-bottom: 5rem; }
@media (min-width: 768px) { .vm-grid { grid-template-columns: 1fr 1fr; } }
.vm-card {
  background: var(--pfuko-dark);
  border: none;
  border-radius: 2px;
  padding: 2rem;
  height: 100%;
}
@media (min-width: 768px) { .vm-card { padding: 2.5rem; } }
.vm-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(201,168,76,0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.vm-icon svg { width: 1.5rem; height: 1.5rem; color: var(--pfuko-gold); }
.vm-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.vm-card p {
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-size: 1.1rem;
  font-style: italic;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.value-card {
  background: var(--pfuko-white);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 2px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s;
}
.value-card:hover { box-shadow: 0 4px 12px rgba(201,168,76,0.05); }
.value-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.value-card:hover .value-num { color: rgba(201,168,76,0.3); }
.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(201,168,76,0.08);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.value-icon svg { width: 1.25rem; height: 1.25rem; color: var(--pfuko-gold); }
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--pfuko-dark);
}
.value-card p {
  font-size: 0.875rem;
  color: var(--pfuko-gray);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
.service-card {
  background: var(--pfuko-white);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  height: 100%;
  transition: all 0.3s;
}
.service-card:hover { box-shadow: 0 4px 12px rgba(201,168,76,0.05); }
.service-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(201,168,76,0.08);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(201,168,76,0.15); }
.service-icon svg { width: 1.75rem; height: 1.75rem; color: var(--pfuko-gold); }
.service-num { font-size: 0.875rem; color: var(--pfuko-gold); font-weight: 600; margin-bottom: 0.25rem; }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--pfuko-dark);
}
.service-card p { font-size: 0.875rem; color: var(--pfuko-gray); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   AFRICA FOR AFRICA
   ═══════════════════════════════════════════════════════════ */
.africa-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .africa-grid { grid-template-columns: 1fr 1fr; } }
.africa-text h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--pfuko-charcoal);
}
@media (min-width: 768px) { .africa-text h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .africa-text h2 { font-size: 2.75rem; } }
.africa-text p {
  color: var(--pfuko-gray);
  line-height: 1.75;
  font-size: 1rem;
}
@media (min-width: 768px) { .africa-text p { font-size: 1.06rem; } }
.africa-text p + p { margin-top: 1rem; }

.mineral-stats h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pfuko-charcoal);
  margin-bottom: 2rem;
}
.mineral-item { margin-bottom: 1.25rem; }
.mineral-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.mineral-header span:first-child { color: var(--pfuko-gray); }
.mineral-header span:last-child { color: var(--pfuko-gold); font-weight: 600; }
.mineral-bar {
  width: 100%;
  height: 0.5rem;
  background: var(--pfuko-cream);
  border-radius: 1rem;
  overflow: hidden;
}
.mineral-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--pfuko-gold-muted), var(--pfuko-gold));
  border-radius: 1rem;
  transition: width 1s ease;
}

.trading-card {
  background: var(--pfuko-dark);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 5rem;
  padding: 2rem;
}
@media (min-width: 768px) { .trading-card { padding: 3rem; } }
.trading-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) { .trading-card h3 { font-size: 1.875rem; } }
.trading-card .subtitle {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .trading-card .subtitle { font-size: 1rem; } }
.minerals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .minerals-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1024px) { .minerals-grid { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; } }
.mineral-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.04);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  transition: background 0.3s;
}
.mineral-tag:hover { background: rgba(255,255,255,0.08); }
.mineral-tag svg { width: 1rem; height: 1rem; color: var(--pfuko-gold); flex-shrink: 0; }
.mineral-tag span { font-size: 0.875rem; color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════════════
   PROPERTY DEVELOPMENT
   ═══════════════════════════════════════════════════════════ */
.prop-card {
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4rem;
  display: grid;
}
@media (min-width: 1024px) { .prop-card { grid-template-columns: 1fr 1fr; } }
.prop-card.reverse .prop-img { order: -1; }
@media (min-width: 1024px) { .prop-card.reverse .prop-img { order: 2; } }
.prop-img { position: relative; min-height: 16rem; overflow: hidden; }
@media (min-width: 1024px) { .prop-img { min-height: auto; } }
.prop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.prop-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .prop-body { padding: 2.5rem; } }
.prop-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pfuko-dark);
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .prop-body h3 { font-size: 1.875rem; } }
.prop-body p {
  color: var(--pfuko-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.prop-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.prop-stat { background: var(--pfuko-cream); border-radius: 2px; padding: 0.75rem; }
.prop-stat-value { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--pfuko-gold); }
.prop-stat-label { font-size: 0.75rem; color: var(--pfuko-gray); }
.prop-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.prop-tag {
  font-size: 0.75rem;
  background: rgba(15,15,15,0.05);
  color: var(--pfuko-charcoal);
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
}
.prop-approval {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pfuko-green);
  font-size: 0.875rem;
  font-weight: 500;
}
.prop-approval svg { width: 1rem; height: 1rem; }
.prop-3col { grid-template-columns: 1fr 1fr 1fr; }
.prop-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.625rem 1.25rem;
  background: var(--pfuko-gold);
  color: var(--pfuko-dark);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2px;
  transition: background 0.3s;
}
.prop-link:hover { background: var(--pfuko-gold-light); color: var(--pfuko-dark); }
.prop-link svg { width: 1rem; height: 1rem; }

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--pfuko-charcoal);
}
@media (min-width: 768px) { .contact-info h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .contact-info h2 { font-size: 2.75rem; } }
.contact-info .subtitle {
  color: var(--pfuko-gray);
  margin-top: 1rem;
  line-height: 1.7;
}
.contact-items { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(201,168,76,0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 1.25rem; height: 1.25rem; color: var(--pfuko-gold); }
.contact-item-label {
  color: var(--pfuko-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.contact-item-value { color: var(--pfuko-charcoal); }
.contact-item-value a { color: var(--pfuko-charcoal); transition: color 0.3s; }
.contact-item-value a:hover { color: var(--pfuko-gold); }

.contact-map {
  background: var(--pfuko-cream);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 2px;
  min-height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-map-inner { text-align: center; padding: 2rem; }
.contact-map-inner svg { width: 4rem; height: 4rem; color: rgba(201,168,76,0.3); margin: 0 auto 1rem; }
.contact-map-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pfuko-charcoal);
  margin-bottom: 0.5rem;
}
.contact-map-inner p {
  color: var(--pfuko-gray);
  font-size: 0.875rem;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  background: var(--pfuko-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0;
}
.footer-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1fr auto 1fr; text-align: left; }
  .footer-inner > *:nth-child(2) { text-align: center; }
  .footer-inner > *:nth-child(3) { text-align: right; }
}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; justify-content: center; }
@media (min-width: 768px) { .footer-logo { justify-content: flex-start; } }
.footer-logo img { width: 3rem; height: 3rem; object-fit: contain; }
.footer-logo-name {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
}
.footer-logo-slogan {
  color: rgba(201,168,76,0.7);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-social-label { color: rgba(255,255,255,0.3); font-size: 0.875rem; margin-bottom: 0.5rem; }
.footer-social-links { display: flex; justify-content: center; gap: 1rem; }
.footer-social-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  transition: color 0.3s;
  cursor: pointer;
}
.footer-social-links a:hover { color: var(--pfuko-gold); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.875rem; }
.footer-badge { margin-top: 0.5rem; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--pfuko-gold);
  color: var(--pfuko-dark);
  border: none;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--pfuko-gold-light); }
.back-to-top svg { width: 1.25rem; height: 1.25rem; }

/* ── Animations ── */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-0.5rem); }
}
.fade-in {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--pfuko-dark); }
::-webkit-scrollbar-thumb { background: var(--pfuko-gold-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--pfuko-gold); }
