/* S&N Developers — standalone styles */
:root {
  --background: oklch(0.985 0.012 80);
  --foreground: oklch(0.255 0.04 45);
  --card: oklch(0.995 0.008 85);
  --primary: oklch(0.68 0.19 47);
  --primary-foreground: oklch(0.99 0.01 85);
  --secondary: oklch(0.94 0.03 75);
  --muted-foreground: oklch(0.48 0.04 50);
  --accent: oklch(0.55 0.16 35);
  --border: oklch(0.9 0.025 75);
  --gradient-sunset: linear-gradient(135deg, oklch(0.72 0.18 55), oklch(0.62 0.21 35) 55%, oklch(0.45 0.14 30));
  --gradient-warm: linear-gradient(180deg, oklch(0.985 0.012 80), oklch(0.94 0.03 75));
  --shadow-warm: 0 20px 50px -20px color-mix(in oklab, oklch(0.55 0.16 35) 40%, transparent);
  --shadow-soft: 0 8px 24px -12px color-mix(in oklab, oklch(0.3 0.05 45) 25%, transparent);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-serif); letter-spacing: -0.01em; font-weight: 600; }

.icon { width: 1rem; height: 1rem; }
.icon-sm { width: 0.875rem; height: 0.875rem; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--background) 70%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
}
.nav-inner {
  max-width: 72rem; margin: 0 auto; padding: 0 1.25rem;
  height: 4rem;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-serif); font-size: 1.125rem; font-weight: 600;
  justify-self: start;
}
.brand img { width: 2.25rem; height: 2.25rem; object-fit: contain; }
.brand.small { font-size: 1rem; }
.brand.small img { width: 1.75rem; height: 1.75rem; }
.nav-links {
  display: none; gap: 2rem; font-size: 0.875rem; color: var(--muted-foreground);
  justify-self: center;
}
.nav-links a:hover { color: var(--foreground); }
@media (min-width: 768px) { .nav-links { display: flex; } }

.btn-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px; padding: 0.5rem 1rem;
  font-size: 0.875rem; font-weight: 500;
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
  cursor: pointer; border: 0;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); justify-self: end; }
.btn-primary:hover { opacity: 0.9; }
.btn-light { background: var(--background); color: var(--foreground); padding: 0.75rem 1.5rem; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.2); }
.btn-light:hover { transform: translateY(-1px); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.4); color: #fff; padding: 0.75rem 1.5rem; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 640px) { .hide-sm { display: none; } }

/* Hero */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 4rem;
  color: var(--primary-foreground);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--primary) 35%, transparent) 0%,
    color-mix(in oklab, var(--primary) 55%, transparent) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 48rem; padding: 0 1.5rem; text-align: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px; background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 0.375rem 1rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em;
}
.hero h1 {
  margin-top: 1.5rem; font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
}
.hero-sub {
  margin: 1.5rem auto 0; max-width: 36rem;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: color-mix(in oklab, var(--primary-foreground) 90%, transparent);
}
.hero-ctas {
  margin-top: 2.25rem; display: flex; flex-direction: column;
  gap: 0.75rem; align-items: center; justify-content: center;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
.hero-tag {
  margin-top: 2rem; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: color-mix(in oklab, var(--primary-foreground) 70%, transparent);
}

/* Sections */
.section { padding: 6rem 0; }
@media (min-width: 640px) { .section { padding: 8rem 0; } }
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.container.narrow { max-width: 56rem; }
.grid-2 { display: grid; gap: 3rem; align-items: center; }
.grid-2.align-start { align-items: start; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--accent); font-size: 0.875rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.15em;
}
.section h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15;
}
.lead { font-size: 1.25rem; color: var(--muted-foreground); line-height: 1.7; }
.muted-lead { margin-top: 1.5rem; font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.7; }

.vision { background: var(--gradient-warm); }
.mission { background: var(--background); }

.pillars { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.pillar {
  border-radius: 1rem; border: 1px solid var(--border);
  background: var(--card); padding: 1.25rem;
  display: flex; gap: 1rem; align-items: flex-start;
  box-shadow: var(--shadow-soft);
}
.pillar-icon {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 0.75rem;
  background: var(--secondary); color: var(--accent);
}
.pillar-icon .icon { width: 1.25rem; height: 1.25rem; }
.pillar h3 { font-size: 1.25rem; }
.pillar p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* Team */
.team { background: var(--gradient-warm); }
.team-head { max-width: 36rem; }
.team-head .muted-lead { margin-top: 1rem; font-size: 1.125rem; }
.team-grid {
  margin-top: 3rem; display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.member {
  border-radius: 1rem; border: 1px solid var(--border);
  background: var(--card); padding: 1.75rem; text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s;
}
.member:hover { transform: translateY(-4px); }
.avatar {
  margin: 0 auto; width: 6rem; height: 6rem;
  border-radius: 9999px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.5rem;
  color: var(--primary-foreground);
  background: var(--gradient-sunset);
}
.member h3 { margin-top: 1.25rem; font-size: 1.25rem; }
.role { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 500; color: var(--accent); }

/* Contact */
.contact { background: var(--background); }
.contact-card {
  position: relative; overflow: hidden; border-radius: 1.5rem;
  padding: 2.5rem; text-align: center; color: var(--primary-foreground);
  box-shadow: var(--shadow-warm);
}
@media (min-width: 640px) { .contact-card { padding: 4rem; } }
.contact-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--primary) 55%, transparent) 0%,
    color-mix(in oklab, var(--primary) 75%, transparent) 100%);
}
.contact-inner { position: relative; }
.contact h2 { margin-top: 1.25rem; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; }
.phone-cta {
  margin-top: 2.25rem;
  display: inline-flex; align-items: center; gap: 0.75rem;
  border-radius: 9999px; background: var(--background); color: var(--foreground);
  padding: 1rem 1.75rem;
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
.phone-cta:hover { transform: translateY(-1px); }
.phone-cta .icon { width: 1.25rem; height: 1.25rem; }
.reply { margin-top: 1.25rem; font-size: 0.875rem; color: color-mix(in oklab, var(--primary-foreground) 80%, transparent); }

/* Footer */
.footer { border-top: 1px solid var(--border); background: var(--background); }
.footer-inner {
  padding: 2.5rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 1rem; font-size: 0.875rem; color: var(--muted-foreground);
}
@media (min-width: 640px) { .footer-inner { flex-direction: row; } }

/* Animations */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise-in 0.8s ease-out both; }
@media (prefers-reduced-motion: reduce) { .rise { animation: none; } }
