@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(30, 5%, 12%);
  --card: hsl(40, 20%, 97%);
  --card-foreground: hsl(30, 5%, 12%);
  --primary: hsl(45, 96%, 50%);
  --primary-foreground: hsl(30, 5%, 8%);
  --secondary: hsl(40, 15%, 93%);
  --secondary-foreground: hsl(30, 5%, 25%);
  --muted: hsl(40, 10%, 94%);
  --muted-foreground: hsl(30, 5%, 45%);
  --accent: hsl(45, 80%, 55%);
  --accent-foreground: hsl(30, 5%, 8%);
  --border: hsl(40, 15%, 88%);
  --input: hsl(40, 15%, 88%);
  --ring: hsl(45, 96%, 50%);
  --radius: 0.625rem;
  --hero-dark: hsl(30, 10%, 10%);
  --hero-dark-fg: hsl(0, 0%, 98%);
  --surface-dark: hsl(30, 8%, 14%);
  --surface-dark-fg: hsl(40, 20%, 90%);
}

::selection {
  background: var(--primary);
  color: var(--primary-foreground);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── LAYOUT ─── */
.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--hero-dark);
  color: var(--hero-dark-fg);
  font-size: 0.75rem;
  padding: 0.5rem 0;
}
.topbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1rem; }
.topbar a { display: flex; align-items: center; gap: 0.35rem; color: var(--hero-dark-fg); opacity: 0.85; transition: opacity 0.2s; }
.topbar a:hover { opacity: 1; color: var(--primary); }
.topbar-email { display: none; }
@media(min-width:768px) { .topbar-email { display: flex; } }
.topbar-fbtext { display: none; }
@media(min-width:640px) { .topbar-fbtext { display: inline; } }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--background);
  transition: box-shadow 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled {
  background: hsla(0,0%,100%,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media(min-width:768px) { .navbar-inner { height: 5rem; } }

/* Logo */
.logo { display: flex; align-items: center; gap: 0.625rem; }
.logo-icon-wrap {
  width: 2.25rem; height: 2.25rem;
  background: var(--primary);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media(min-width:768px) { .logo-icon-wrap { width: 2.5rem; height: 2.5rem; } }
.logo-icon-wrap svg { width: 1.5rem; height: 1.5rem; }
@media(min-width:768px) { .logo-icon-wrap svg { width: 1.75rem; height: 1.75rem; } }
.logo-text { line-height: 1.2; }
.logo-name { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 2rem; color: var(--foreground); }
@media(min-width:768px) { .logo-name { font-size: 2rem; } }
.logo-sub { display: block; font-size: 2rem; font-weight: 500; color: var(--muted-foreground); margin-top: -0.125rem; }
@media(min-width:768px) { .logo-sub { font-size: 2rem; } }

/* Desktop nav */
.nav-desktop { display: none; align-items: center; gap: 0.25rem; }
@media(min-width:768px) { .nav-desktop { display: flex; } }
.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--foreground); background: var(--muted); }
.nav-link.active { background: hsla(45,96%,50%,0.12); color: var(--primary-foreground); font-weight: 600; }
.nav-cta {
  margin-left: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: filter 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.nav-cta:hover { filter: brightness(1.05); }

/* Mobile hamburger */
.hamburger {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
}
.hamburger svg { width: 1.5rem; height: 1.5rem; stroke: var(--foreground); }
@media(min-width:768px) { .hamburger { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--background);
}
.mobile-menu.open { display: block; animation: slideDown 0.25s ease; }
@keyframes slideDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.mobile-menu-inner { padding: 0.75rem 1rem 1rem; }
.mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s, background 0.2s;
}
.mobile-link:hover, .mobile-link.active { color: var(--foreground); background: var(--muted); }
.mobile-cta {
  display: block;
  margin-top: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.875rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  transition: filter 0.2s;
}
.mobile-cta:hover { filter: brightness(1.05); }

/* ─── FOOTER ─── */
footer {
  background: var(--hero-dark);
  color: var(--hero-dark-fg);
}
.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media(min-width:640px) { .footer-inner { grid-template-columns: 1fr 1fr; padding: 4rem 1.5rem; } }
@media(min-width:768px) { .footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: 3rem; } }
.footer-tagline { font-size: 0.875rem; color: hsla(0,0%,98%,0.6); margin-top: 0.75rem; line-height: 1.6; }
.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.footer-link { display: flex; align-items: center; gap: 0.5rem; color: hsla(0,0%,98%,0.6); font-size: 0.875rem; margin-bottom: 0.75rem; transition: color 0.2s; }
.footer-link:hover { color: var(--primary); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(0,0%,98%,0.1);
  text-align: center;
  font-size: 0.75rem;
  color: hsla(0,0%,98%,0.4);
  padding-bottom: 2rem;
}
.footer-logo .logo-name { color: var(--hero-dark-fg); }
.footer-logo .logo-sub { color: hsla(0,0%,98%,0.6); }

/* ─── HERO SECTIONS ─── */
.hero-dark {
  position: relative;
  overflow: hidden;
  background: var(--hero-dark);
  color: var(--hero-dark-fg);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--hero-dark) 0%, hsla(30,10%,10%,0.9) 60%, hsla(30,10%,10%,0.5) 100%);
}
.hero-gradient-br {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--hero-dark) 0%, hsla(30,10%,10%,0.95) 60%, hsla(45,96%,50%,0.1) 100%);
}
.hero-content { position: relative; max-width: 80rem; margin: 0 auto; padding: 4rem 1rem; }
@media(min-width:640px) { .hero-content { padding: 6rem 1.5rem; } }
@media(min-width:768px) { .hero-content { padding: 9rem 1.5rem; } }
@media(min-width:1024px) { .hero-content { padding: 11rem 1.5rem; } }
.hero-content-sm { position: relative; max-width: 80rem; margin: 0 auto; padding: 3.5rem 1rem; }
@media(min-width:640px) { .hero-content-sm { padding: 5rem 1.5rem; } }
@media(min-width:768px) { .hero-content-sm { padding: 7rem 1.5rem; } }
.hero-inner { max-width: 42rem; }
.hero-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 6rem; background: linear-gradient(to top, var(--background), transparent); }
@media(max-width:639px) {
  .hero-fade { height: 2rem; }
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(45,96%,50%,0.15);
  border: 1px solid hsla(45,96%,50%,0.25);
  border-radius: 9999px;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}
@media(min-width:640px) { .hero-badge { font-size: 0.875rem; } }
.badge-dot { width: 0.5rem; height: 0.5rem; background: var(--primary); border-radius: 9999px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* Hero headings */
.hero-h1 {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
@media(min-width:640px) { .hero-h1 { font-size: 2.25rem; } }
@media(min-width:768px) { .hero-h1 { font-size: 3rem; } }
@media(min-width:1024px) { .hero-h1 { font-size: 3.75rem; } }
.hero-h1-sm {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
@media(min-width:640px) { .hero-h1-sm { font-size: 2.25rem; } }
@media(min-width:768px) { .hero-h1-sm { font-size: 3rem; } }
.text-primary { color: var(--primary); }
.block { display: block; }
.hero-p {
  font-size: 0.9375rem;
  color: hsla(0,0%,98%,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 32rem;
}
@media(min-width:640px) { .hero-p { font-size: 1.125rem; } }
@media(min-width:768px) { .hero-p { font-size: 1.25rem; } }

/* ─── BUTTONS ─── */
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: filter 0.2s;
  box-shadow: 0 8px 24px hsla(45,96%,50%,0.25);
  cursor: pointer;
  border: none;
}

.arrow-icon { transition: transform 0.2s ease; }
.btn-outline-dark:hover .arrow-icon,
.btn-primary-lg:hover .arrow-icon { transform: translateX(4px); }

@media(min-width:640px) { .btn-primary-lg { font-size: 1rem; padding: 1rem 1.75rem; } }
.btn-primary-lg:hover { filter: brightness(1.05); }
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border: 1px solid hsla(0,0%,98%,0.2);
  color: var(--hero-dark-fg);
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background 0.2s;
  cursor: pointer;
}
@media(min-width:640px) { .btn-outline-dark { font-size: 1rem; padding: 1rem 1.75rem; } }
.btn-outline-dark:hover { background: hsla(0,0%,98%,0.1); }
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}
@media(min-width:640px) { .btn-outline-light { padding: 1rem 1.75rem; font-size: 1rem; } }
.btn-outline-light:hover { background: var(--muted); }
.btn-group { display: flex; flex-direction: column; gap: 0.75rem; }
@media(min-width:640px) { .btn-group { flex-direction: row; gap: 1rem; } }
.btn-full { width: 100%; }
@media(min-width:640px) { .btn-full { width: auto; } }

/* ─── SECTION LABELS ─── */
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
@media(min-width:640px) { .section-label { font-size: 0.875rem; } }
.section-h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--foreground);
  line-height: 1.2;
}
@media(min-width:640px) { .section-h2 { font-size: 1.875rem; } }
@media(min-width:768px) { .section-h2 { font-size: 2.25rem; } }
.section-h2-light { color: var(--hero-dark-fg); }
.section-sub {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
  max-width: 36rem;
  line-height: 1.6;
}
@media(min-width:640px) { .section-sub { font-size: 1rem; } }

/* ─── SECTION WRAPPERS ─── */
.section { padding: 3.5rem 0; }
@media(min-width:640px) { .section { padding: 5rem 0; } }
@media(min-width:768px) { .section { padding: 7rem 0; } }
.section-card { background: var(--card); }
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media(min-width:640px) { .container { padding: 0 1.5rem; } }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── SERVICES PREVIEW ─── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media(min-width:640px) { .services-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
@media(min-width:1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: box-shadow 0.3s, border-color 0.3s;
  animation: fadeUp 0.5s both;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); border-color: hsla(45,96%,50%,0.3); }
.service-icon {
  width: 3rem; height: 3rem;
  background: hsla(45,96%,50%,0.1);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.2s;
}
.service-card:hover .service-icon { background: hsla(45,96%,50%,0.2); }
.service-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); stroke: var(--primary); }
.service-card h3 { font-weight: 700; font-size: 1.125rem; color: var(--foreground); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
.link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--primary); margin-top: 3rem; }
.link-arrow:hover { text-decoration: underline; }
.link-arrow svg { width: 1rem; height: 1rem; }

/* ─── WHY US ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media(min-width:640px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
.why-item { display: flex; gap: 1rem; animation: fadeUp 0.5s both; }
.why-icon {
  width: 2.5rem; height: 2.5rem;
  background: hsla(45,96%,50%,0.1);
  border-radius: 0.625rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 1.25rem; height: 1.25rem; stroke: var(--primary); }
.why-item h3 { font-weight: 600; font-size: 0.9375rem; color: var(--foreground); }
.why-item p { font-size: 0.8125rem; color: var(--muted-foreground); margin-top: 0.25rem; line-height: 1.5; }
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media(min-width:1024px) { .two-col-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.img-rounded { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 1rem; box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.badge-float {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
@media(min-width:640px) { .badge-float { bottom: -1.5rem; left: -1.5rem; padding: 1.25rem; } }
.badge-float-num { font-size: 1.5rem; font-weight: 800; }
@media(min-width:640px) { .badge-float-num { font-size: 1.875rem; } }
.badge-float-label { font-size: 0.75rem; font-weight: 500; opacity: 0.8; }
@media(min-width:640px) { .badge-float-label { font-size: 0.875rem; } }
.relative { position: relative; }
.img-wrap { position: relative; margin-top: 1.5rem; }
@media(min-width:1024px) { .img-wrap { margin-top: 0; } }

/* ─── CTA SECTION ─── */
.cta-card {
  position: relative;
  overflow: hidden;
  background: var(--hero-dark);
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  color: var(--hero-dark-fg);
}
@media(min-width:640px) { .cta-card { border-radius: 1.5rem; padding: 2.5rem; } }
@media(min-width:768px) { .cta-card { padding: 4rem; } }
.cta-glow-1 {
  position: absolute;
  top: 0; right: 0;
  width: 18rem; height: 18rem;
  background: hsla(45,96%,50%,0.1);
  border-radius: 9999px;
  filter: blur(60px);
  transform: translate(50%,-50%);
}
.cta-glow-2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 14rem; height: 14rem;
  background: hsla(45,96%,50%,0.05);
  border-radius: 9999px;
  filter: blur(60px);
  transform: translate(-50%,50%);
}
.cta-content { position: relative; z-index: 1; }
.cta-h2 {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--hero-dark-fg);
}
@media(min-width:768px) { .cta-h2 { font-size: 2.25rem; } }
.cta-p { color: hsla(0,0%,98%,0.6); margin-top: 1rem; max-width: 32rem; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; margin-top: 2rem; }
@media(min-width:640px) { .cta-buttons { flex-direction: row; } }

/* ─── SERVICES PAGE ─── */
.services-list { padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media(min-width:640px) { .services-list { padding-top: 5rem; padding-bottom: 5rem; } }
@media(min-width:768px) { .services-list { padding-top: 7rem; padding-bottom: 7rem; } }
.service-entry { margin-bottom: 3.5rem; animation: fadeUp 0.5s both; }
@media(min-width:640px) { .service-entry { margin-bottom: 5rem; } }
.service-entry:last-child { margin-bottom: 0; }
.service-text h2 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 1.25rem;
}
@media(min-width:640px) { .service-text h2 { font-size: 1.5rem; } }
@media(min-width:768px) { .service-text h2 { font-size: 1.875rem; } }
.service-text-header { display: flex; align-items: flex-start; gap: 0.875rem; margin-bottom: 1.25rem; }
.service-text-icon {
  width: 2.75rem; height: 2.75rem;
  background: hsla(45,96%,50%,0.1);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media(min-width:640px) { .service-text-icon { width: 2.875rem; height: 2.875rem; } }
.service-text-icon svg { width: 1.35rem; height: 1.35rem; stroke: var(--primary); }
.service-items { margin-top: 1.25rem; }
.service-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.service-item svg { width: 1rem; height: 1rem; stroke: var(--primary); flex-shrink: 0; margin-top: 0.2rem; }
.service-item span { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
.services-cta { background: var(--card); text-align: center; padding: 3.5rem 0; }
@media(min-width:640px) { .services-cta { padding: 5rem 0; } }
.services-cta-inner { max-width: 48rem; margin: 0 auto; padding: 0 1rem; }
@media(min-width:640px) { .services-cta-inner { padding: 0 1.5rem; } }
.services-cta h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.025em; }
@media(min-width:640px) { .services-cta h2 { font-size: 1.875rem; } }
@media(min-width:768px) { .services-cta h2 { font-size: 2.25rem; } }
.services-cta p { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 1rem; line-height: 1.6; }
@media(min-width:640px) { .services-cta p { font-size: 1rem; } }
.services-cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; margin-top: 2rem; }
@media(min-width:640px) { .services-cta-buttons { flex-direction: row; gap: 1rem; } }

/* ─── ABOUT PAGE ─── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media(min-width:1024px) { .values-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 1.5rem; } }
.value-card {
  text-align: center;
  padding: 1.5rem;
  animation: fadeUp 0.5s both;
}
.value-icon {
  width: 3.5rem; height: 3.5rem;
  background: hsla(45,96%,50%,0.1);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.value-icon svg { width: 1.75rem; height: 1.75rem; stroke: var(--primary); }
.value-card h3 { font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; font-size: 0.9375rem; }
.value-card p { font-size: 0.8125rem; color: var(--muted-foreground); line-height: 1.5; }

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
@media(min-width:640px) { .gallery-grid { gap: 1rem; } }
@media(min-width:1024px) { .gallery-grid { grid-template-columns: 1fr 1fr 1fr; } }
.gallery-item { cursor: pointer; overflow: hidden; border-radius: 0.75rem; background: var(--muted); aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: hsla(30,10%,10%,0.92);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; animation: fadeIn 0.2s ease; }
.lightbox img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 0.75rem; box-shadow: 0 24px 64px rgba(0,0,0,0.5); animation: zoomIn 0.2s ease; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: hsla(0,0%,98%,0.8);
  padding: 0.5rem;
}
.lightbox-close svg { width: 2rem; height: 2rem; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes zoomIn { from{transform:scale(0.9);opacity:0} to{transform:scale(1);opacity:1} }

/* ─── CONTACT ─── */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media(min-width:640px) { .contact-cards { grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; margin-bottom: 4rem; } }
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  transition: box-shadow 0.3s, border-color 0.3s;
  display: block;
  animation: fadeUp 0.5s both;
}
@media(min-width:640px) { .contact-card { padding: 1.75rem; } }
.contact-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); border-color: hsla(45,96%,50%,0.3); }
.contact-card-icon {
  width: 3rem; height: 3rem;
  background: hsla(45,96%,50%,0.1);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  transition: background 0.2s;
}
@media(min-width:640px) { .contact-card-icon { width: 3.5rem; height: 3.5rem; } }
.contact-card:hover .contact-card-icon { background: hsla(45,96%,50%,0.2); }
.contact-card-icon svg { width: 1.5rem; height: 1.5rem; stroke: var(--primary); }
@media(min-width:640px) { .contact-card-icon svg { width: 1.75rem; height: 1.75rem; } }
.contact-card h3 { font-weight: 700; font-size: 0.9375rem; color: var(--foreground); margin-bottom: 0.25rem; }
@media(min-width:640px) { .contact-card h3 { font-size: 1.125rem; } }
.contact-card .desc { font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
@media(min-width:640px) { .contact-card .desc { font-size: 0.875rem; margin-bottom: 0.75rem; } }
.contact-card .val { font-size: 0.75rem; font-weight: 600; color: var(--primary); word-break: break-all; }
@media(min-width:640px) { .contact-card .val { font-size: 0.875rem; } }

.detail-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  animation: fadeUp 0.5s 0.2s both;
}
@media(min-width:1024px) { .detail-card { grid-template-columns: 1fr 1fr; } }
.detail-img-wrap { position: relative; min-height: 12rem; }
.detail-img-wrap img { width: 100%; height: 100%; object-fit: cover; min-height: 12rem; }
@media(min-width:1024px) { .detail-img-wrap::after { background: linear-gradient(to right, hsla(30,10%,10%,0.6), transparent); } }
@media(max-width:1023px) {
  .detail-img-wrap { max-height: 16rem; overflow: hidden; }
  .detail-img-wrap img { min-height: unset; height: 16rem; }
}
.detail-right { padding: 1.5rem; display: flex; flex-direction: column; justify-content: center; }
@media(min-width:640px) { .detail-right { padding: 2rem; } }
@media(min-width:768px) { .detail-right { padding: 3rem; } }
.detail-right h2 { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
@media(min-width:640px) { .detail-right h2 { font-size: 1.5rem; margin-bottom: 1.5rem; } }
@media(min-width:768px) { .detail-right h2 { font-size: 1.875rem; } }
.info-rows { display: flex; flex-direction: column; gap: 1.25rem; }
.info-row { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon {
  width: 2.5rem; height: 2.5rem;
  background: hsla(45,96%,50%,0.1);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 1.25rem; height: 1.25rem; stroke: var(--primary); }
.info-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; color: var(--muted-foreground); }
.info-value { font-weight: 600; color: var(--foreground); margin-top: 0.125rem; font-size: 0.9375rem; }
.info-value a { color: var(--foreground); transition: color 0.2s; }
.info-value a:hover { color: var(--primary); }
.info-value .sub { font-size: 0.875rem; color: var(--muted-foreground); font-weight: 400; }
.detail-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.detail-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 1.75rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  transition: filter 0.2s;
  box-shadow: 0 8px 24px hsla(45,96%,50%,0.25);
}
.detail-cta a:hover { filter: brightness(1.05); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.fade-up { animation: fadeUp 0.5s both; }
.fade-up-1 { animation: fadeUp 0.5s 0.1s both; }
.fade-up-2 { animation: fadeUp 0.5s 0.2s both; }
.fade-up-3 { animation: fadeUp 0.5s 0.3s both; }

/* ─── UTILS ─── */
.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; }
.mb-4 { margin-bottom: 1rem; }
.mb-10 { margin-bottom: 2.5rem; }
.strong { font-weight: 700; color: var(--foreground); }
.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-xs { width: 1rem; height: 1rem; }
.about-body { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.75; }
@media(min-width:640px) { .about-body { font-size: 1rem; } }
.about-body + .about-body { margin-top: 1rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }

/* Intersection observer fade */
.io-fade { opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s; }
.io-fade.visible { opacity: 1; transform: translateY(0); }
.io-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.5s, transform 0.5s; }
.io-scale.visible { opacity: 1; transform: scale(1); }
.io-left { opacity: 0; transform: translateX(-20px); transition: opacity 0.5s, transform 0.5s; }
.io-left.visible { opacity: 1; transform: translateX(0); }
.io-right { opacity: 0; transform: translateX(20px); transition: opacity 0.5s, transform 0.5s; }
.io-right.visible { opacity: 1; transform: translateX(0); }

/* About paragraphs */
.about-paras { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }

/* ─── LOCAL AREAS SECTION ─── */
.section-areas { background: var(--muted); }

.areas-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media(min-width:768px) {
  .areas-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.areas-header-left { max-width: 32rem; }
.areas-intro {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}
.areas-header-right { flex-shrink: 0; }
.areas-transport-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: hsla(45,96%,50%,0.12);
  border: 1px solid hsla(45,96%,50%,0.3);
  border-radius: 2rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  white-space: nowrap;
}

/* Pills */
.areas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: 0.875rem;
  color: var(--foreground);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.area-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px hsla(45,96%,50%,0.3);
}
.area-pill strong { font-weight: 600; }

.area-pill--highlight {
  background: var(--foreground);
  border-color: var(--foreground);
  color: var(--background);
}
.area-pill--highlight:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}