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

/* ==========================
   ROOT VARIABLES
   ========================== */
:root {
  --radius: 0.75rem;
  --background: #F2EFEA;
  --foreground: #2D2428;
  --card: #FFFFFF;
  --card-foreground: #2D2428;
  --primary: #1A1518;
  --primary-foreground: #FFFFFF;
  --secondary: #E8E3DD;
  --secondary-foreground: #443B3F;
  --muted: #DED8D1;
  --muted-foreground: #6D6065;
  --accent: #e8070a;
  --accent-foreground: #FFFFFF;
  --border: #D6CFC8;
  --ring: #e8070a;
  --gradient-hero: linear-gradient(135deg, rgba(26,21,24,0.94) 0%, rgba(45,36,40,0.82) 40%, rgba(61,49,54,0.55) 100%);
  --gradient-accent: linear-gradient(135deg, #B52E42, #7A1C2A);
  --shadow-elevated: 0 25px 50px -15px rgba(26,21,24,0.3);
  --shadow-card: 0 8px 24px -12px rgba(26,21,24,0.12);
  --shadow-lg: 0 20px 40px -15px rgba(0,0,0,0.25);
}



/* ==========================
   MISSION / VISION CARDS
   ========================== */

.mv-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .mv-grid { grid-template-columns: repeat(2, 1fr); }
}

.mv-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.75rem;
  transition: all 0.35s ease;
}

.mv-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-elevated);
  transform: translateY(-6px);
}
.mv-card-dark {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 1.75rem;
  color: var(--primary-foreground);
  background: var(--gradient-hero);
  background-color: #1A1518;
  transition: all 0.35s ease;
}

.mv-card-dark:hover {
  box-shadow: 0 25px 50px -15px rgba(0,0,0,0.4);
  transform: translateY(-6px);
}

.mv-deco {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 8rem;
  height: 8rem;
  opacity: 0.1;
  color: var(--accent);
  transition: all 0.5s ease;
  pointer-events: none;
}

.mv-card:hover .mv-deco {
  opacity: 0.2;
  transform: scale(1.1) rotate(12deg);
}

.mv-card-dark:hover .mv-deco {
  opacity: 0.2;
  transform: scale(1.1);
}
/* Vision card — maroon accent with texture */
.mv-card-accent {
  background: linear-gradient(145deg, #e8070a 0%, #7A1C2A 50%, #5C1520 100%);
  border: none;
  color: #fff;
}

/* Subtle texture overlay on vision card */
.mv-card-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  opacity: 0.06;
  background-image: 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='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.mv-card-accent .mv-title {
  color: #fff;
}

.mv-card-accent .mv-desc {
  color: rgba(255,255,255,0.82);
}

.mv-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: #fff;
  margin-bottom: 1.25rem;
}

.mv-card-accent .mv-icon {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}

.mv-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.mv-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

/* Download button */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(155,35,53,0.2);
  background: rgba(155,35,53,0.04);
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  transition: all 0.25s ease;
}

.download-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.download-btn .download-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  background: rgba(155,35,53,0.1);
  color: var(--accent);
  transition: all 0.25s ease;
}

.download-btn:hover .download-tag {
  background: rgba(255,255,255,0.2);
  color: #fff;
}


/* ==========================
   BASE STYLES
   ========================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 600;
}

a { text-decoration: none; color: inherit; transition: color 0.25s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

::selection {
  background: var(--accent);
  color: #fff;
}

/* ==========================
   UTILITIES
   ========================== */
.container { max-width: 80rem; margin-inline: auto; padding-inline: 1.5rem; }
.section-padding { padding-top: 6rem; padding-bottom: 6rem; }

@media (min-width: 768px) {
  .section-padding { padding-top: 8rem; padding-bottom: 8rem; }
}

/* ==========================
   TYPOGRAPHY ENHANCEMENTS
   ========================== */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-title {
  letter-spacing: -0.025em;
}

.stat-label {
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Progress Rings */
.stat-card {
  text-align: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.25);
}

.progress-ring {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.progress-ring-svg {
  width: 100px;
  height: 100px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

@media (min-width: 640px) {
  .progress-ring-svg {
    width: 120px;
    height: 120px;
  }
}

.progress-ring-bg {
  transition: stroke 0.2s;
}

.progress-ring-fill {
  transition: stroke-dashoffset 1.4s cubic-bezier(0.22, 0.95, 0.36, 1);
  stroke: url(#accentGradient);
  filter: drop-shadow(0 0 4px rgba(155,35,53,0.4));
}

.stat-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Space Grotesk', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .stat-number {
    font-size: 2.2rem;
  }
}

.stat-number .suffix {
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: 0.1rem;
}

.stat-card .stat-label {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}

/* Layout */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.grid { display: grid; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

/* Display */
.hidden { display: none !important; }
.block { display: block; }
.inline-flex { display: inline-flex; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }

/* Z-index */
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Spacing */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.pl-5 { padding-left: 1.25rem; }
.pt-24 { padding-top: 6rem; }

/* Typography */
.text-xs { font-size: 0.8125rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.0625rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: clamp(1.75rem, 4vw, 2.25rem); }
.text-4xl { font-size: clamp(2rem, 5vw, 2.75rem); }
.text-5xl { font-size: clamp(2.5rem, 7vw, 4rem); }
.text-6xl { font-size: clamp(3rem, 9vw, 5.5rem); }
.text-center { text-align: center; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.tracking-widest { letter-spacing: 0.12em; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.leading-tight { line-height: 1.15; }
.leading-relaxed { line-height: 1.7; }

/* Colors */
.text-white { color: #FFFFFF; }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/40 { color: rgba(255,255,255,0.4); }
.text-white\/15 { color: rgba(255,255,255,0.15); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }

.bg-white { background: #FFFFFF; }
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-accent { background: var(--accent); }

.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.rounded-lg { border-radius: 0.625rem; }
.rounded-xl { border-radius: 0.875rem; }
.rounded-2xl { border-radius: 1.125rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Width/Height */
.w-full { width: 100%; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-sm { max-width: 24rem; }

/* Transitions */
.transition { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.duration-500 { transition-duration: 0.5s; }
.duration-700 { transition-duration: 0.7s; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.shrink-0 { flex-shrink: 0; }

/* ==========================
   HERO FIXES
   ========================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,21,24,0.92) 0%, rgba(45,36,40,0.78) 40%, rgba(61,49,54,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: end;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 2fr 1fr; }
}

/* Heading fix — ensure full text shows */
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  word-break: keep-all;
}

.hero h1 br {
  display: block;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(155,35,53,0.25);
  border: 1px solid rgba(155,35,53,0.35);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 2s ease-in-out infinite;
}

/* CTAs */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 9999px;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
  background: linear-gradient(135deg, #B52E42, #7A1C2A);
  box-shadow: 0 8px 22px rgba(155,35,53,0.35);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(155,35,53,0.45);
}

.hero-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 9999px;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.hero-cta-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
}

/* ==========================
   STATS RINGS (FIXED)
   ========================== */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.stat-ring {
  position: relative;
  width: 85px;
  height: 85px;
  flex-shrink: 0;
}

.stat-ring svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 6px rgba(155,35,53,0.3));
}

.stat-ring-track {
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Number sits ON TOP of the ring */
.stat-ring-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.stat-ring-value .stat-suffix {
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 1px;
  opacity: 0.85;
}

.stat-text {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  text-align: center;
  line-height: 1.3;
}

/* Responsive stats */
@media (min-width: 640px) {
  .stat-ring { width: 110px; height: 110px; }
  .stat-ring-value { font-size: 1.8rem; }
  .stat-ring-value .stat-suffix { font-size: 0.9rem; }
  .stat-text { font-size: 0.75rem; }
}

@media (min-width: 1024px) {
  .stat-ring { width: 125px; height: 125px; }
  .stat-ring-value { font-size: 2.1rem; }
  .stat-ring-value .stat-suffix { font-size: 1rem; }
  .stat-text { font-size: 0.8125rem; }
}

/* Pulse animation for badge dot */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}


/* ==========================
   COMPONENTS
   ========================== */

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(242, 239, 234, 0.82);
  border-bottom: 1px solid rgba(214, 207, 200, 0.45);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(242, 239, 234, 0.95);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.nav-inner {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img { height: 2.5rem; width: auto; }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--accent);
  color: #fff;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #7A1C2A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(155,35,53,0.35);
}

/* Stats Grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.stat-ring {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.stat-ring svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 6px rgba(155,35,53,0.25));
}

.stat-ring-track {
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-ring-track.animated {
  transition: stroke-dashoffset 1.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-ring-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.stat-ring-value .stat-suffix {
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 1px;
  opacity: 0.85;
}

.stat-text {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.3;
  max-width: 80px;
}

/* Responsive */
@media (min-width: 640px) {
  .stat-ring { width: 110px; height: 110px; }
  .stat-ring-value { font-size: 1.85rem; }
  .stat-ring-value .stat-suffix { font-size: 0.9rem; }
  .stat-text { font-size: 0.75rem; max-width: 110px; }
}

@media (min-width: 1024px) {
  .stat-ring { width: 130px; height: 130px; }
  .stat-ring-value { font-size: 2.2rem; }
  .stat-ring-value .stat-suffix { font-size: 1rem; }
  .stat-text { font-size: 0.8125rem; max-width: 130px; }
}


/* --- Mobile Menu --- */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  z-index: 52;
  position: relative;
  transition: all 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(155,35,53,0.08);
  border-color: rgba(155,35,53,0.2);
}

.menu-toggle svg {
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle svg:first-child { opacity: 0; transform: rotate(-90deg); position: absolute; }
.menu-open .menu-toggle svg:last-child { opacity: 1; transform: rotate(0deg); position: relative; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,21,24,0.4);
  backdrop-filter: blur(4px);
  z-index: 45;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-overlay.active { opacity: 1; visibility: visible; }

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 80vw);
  background: var(--card);
  z-index: 48;
  padding: 6rem 1.75rem 2rem;
  box-shadow: -10px 0 40px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.mobile-panel.open { transform: translateX(0); }

.mobile-panel nav { display: flex; flex-direction: column; gap: 0.25rem; }

.mobile-panel nav a {
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  transition: all 0.2s ease;
}

.mobile-panel nav a:hover,
.mobile-panel nav a:active {
  background: rgba(155,35,53,0.06);
  color: var(--accent);
}

.mobile-panel .mobile-cta {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  border-radius: 9999px;
  background: var(--accent);
  color: #fff;
  padding: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.mobile-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.mobile-contact p {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.mobile-contact a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(155,35,53,0.35);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(10px);
}

.back-to-top.visible {
  display: inline-flex;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  background: #7A1C2A;
  box-shadow: 0 8px 24px rgba(155,35,53,0.4);
}

/* --- WhatsApp --- */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}

.wa-ping {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: waPing 2s cubic-bezier(0,0,0.2,1) infinite;
}

.wa-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-btn:hover .wa-icon {
  transform: scale(1.1);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 5rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: end;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 2fr 1fr; }
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stat-card {
  border-radius: 0.875rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  padding: 1rem 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.stat-card .stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

.stat-card .stat-label {
  font-size: 0.6875rem;
  margin-top: 0.375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}

@media (min-width: 640px) {
  .stat-card { padding: 1.25rem 1rem; }
  .stat-card .stat-value { font-size: 2.25rem; }
  .stat-card .stat-label { font-size: 0.75rem; }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 9999px;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
  background: var(--gradient-accent);
  box-shadow: 0 8px 22px rgba(155,35,53,0.35);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(155,35,53,0.45);
}

.hero-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 9999px;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.hero-cta-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(155,35,53,0.2);
  border: 1px solid rgba(155,35,53,0.3);
  backdrop-filter: blur(8px);
  padding: 0.375rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

/* --- Section Header --- */
.section-header {
  max-width: 42rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}

.section-desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* --- Content Cards (Enhanced) --- */
.service-card {
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(155,35,53,0.35);
  box-shadow: 0 20px 35px -12px rgba(26,21,24,0.2);
  transform: translateY(-5px);
}

.icon-box {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: #fff;
  flex-shrink: 0;
}

.icon-box-sm {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(155,35,53,0.08);
  color: var(--accent);
  flex-shrink: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.625rem;
  transition: transform 0.2s ease, color 0.2s;
}
.check-list li:hover {
  transform: translateX(4px);
  color: var(--foreground);
}

.check-list svg {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  color: var(--accent);
  flex-shrink: 0;
}


/* --- Feature Cards (Enhanced) --- */
.feature-card {
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: all 0.35s ease;
}

.feature-card:hover {
  box-shadow: 0 12px 28px -12px rgba(26,21,24,0.12);
  transform: translateY(-3px);
  border-color: rgba(155,35,53,0.25);
  background: #FFFFFF;
}

.feature-card svg {
  color: var(--accent);
  width: 1.75rem;
  height: 1.75rem;
}

/* --- Project Cards --- */
.project-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-card img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,24,0.92) 0%, rgba(45,36,40,0.4) 55%, transparent 100%);
}

.project-card .project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.project-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #fff;
}

.project-card p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.72);
  margin-top: 0.25rem;
}

/* --- Portfolio List --- */
.portfolio-list {
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 1.75rem;
}

.portfolio-list h4 {
  font-size: 1.125rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.portfolio-list ul {
  display: grid;
  gap: 0.625rem 2rem;
}

@media (min-width: 640px) {
  .portfolio-list ul { grid-template-columns: repeat(2, 1fr); }
}

.portfolio-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.72);
}

.portfolio-list .bullet {
  color: var(--accent);
  margin-top: 0.125rem;
  font-size: 0.625rem;
  flex-shrink: 0;
}

/* --- Gallery --- */
.gallery {
  columns: 2;
  column-gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery { columns: 3; }
}

@media (min-width: 1024px) {
  .gallery { columns: 4; }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.875rem;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,24,0.85), rgba(26,21,24,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
}

/* --- Contact Section --- */
.contact-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elevated);
  background: #fff;
}

@media (min-width: 1024px) {
  .contact-wrapper { display: grid; grid-template-columns: 5fr 7fr; }
}

.contact-info {
  padding: 2rem;
}

@media (min-width: 640px) {
  .contact-info { padding: 3rem; }
}

.contact-info h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
}

.contact-info > p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  margin: -0.75rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.contact-item:hover {
  background: rgba(155,35,53,0.04);
}

.contact-item:hover .contact-text-main {
  color: var(--accent);
}

.contact-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.125rem;
}

.contact-text-main {
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.contact-form-section {
  position: relative;
  padding: 2rem;
  background: var(--primary);
  color: #fff;
  overflow: hidden;
}

@media (min-width: 640px) {
  .contact-form-section { padding: 3rem; }
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.08;
  filter: blur(80px);
  pointer-events: none;
}

.contact-form-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  position: relative;
}

.contact-form-section > p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
  position: relative;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  padding: 0.875rem 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-input:hover {
  background: rgba(255,255,255,0.09);
}

.form-input:focus {
  background: rgba(255,255,255,0.1);
  border-color: rgba(155,35,53,0.5);
  box-shadow: 0 0 0 3px rgba(155,35,53,0.15);
}

textarea.form-input { min-height: 5.5rem; resize: vertical; }

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border-radius: 0.75rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
  background: var(--gradient-accent);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 14px rgba(155,35,53,0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(155,35,53,0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

/* --- Buttons --- */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(155,35,53,0.25);
  background: rgba(155,35,53,0.05);
  padding: 0.75rem 1.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  transition: all 0.25s ease;
}

.download-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* --- Quote Block --- */
.quote-block {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  font-style: italic;
  color: var(--foreground);
  opacity: 0.85;
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Footer --- */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-inner p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* --- Pattern Dots --- */
.pattern-dots {
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ==========================
   SCROLL REVEAL ANIMATIONS
   ========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94) translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.2s; }
.d4 { transition-delay: 0.28s; }
.d5 { transition-delay: 0.36s; }

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.48s; }

/* ==========================
   KEYFRAMES
   ========================== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

@keyframes waPing {
  0% { transform: scale(1); opacity: 0.45; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Footer --- */
/* --- Footer --- */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: var(--background);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand img {
  height: 2rem;         /* reduced from 2.5rem to 2rem = 32px */
  width: auto;
  max-width: 140px;     /* optional: prevent excessive width */
  display: block;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .footer-brand img {
    height: 1.75rem;    /* slightly smaller on mobile */
  }
}


/* ==========================
   RESPONSIVE
   ========================== */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .md\:flex { display: flex !important; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:hidden { display: none !important; }
  .md\:inline-flex { display: inline-flex !important; }
  .md\:text-sm { font-size: 0.875rem; }
  .md\:mt-8 { margin-top: 2rem; }
  .md\:h-80 { height: 20rem; }
  .md\:p-14 { padding: 3.5rem; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .nav-links { display: flex; }
  .nav-btn { display: inline-flex; }
  .menu-toggle { display: none !important; }
}

@media print {
  .nav, .whatsapp-btn, .back-to-top, .menu-toggle { display: none !important; }
}