/* =========================================================
   Kehkee LLC — Shared Stylesheet
   ========================================================= */

:root {
  --font-brand: 'Varela Round', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;

  --color-bg: #ffffff;
  --color-surface: #f8fafc;
  --color-border: #e2e8f0;
  --color-text: #0f172a;
  --color-muted: #64748b;
  --color-accent: #4f46e5;
  --color-accent-hover: #4338ca;
  --color-hero-bg: #0f172a;

  --max-width: 1060px;
  --radius: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-hover); text-decoration: underline; }

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* =========================================================
   SITE HEADER / NAV
   ========================================================= */
.site-header {
  background: var(--color-hero-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.brand {
  font-family: var(--font-brand);
  font-size: 1.45rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.brand:hover { color: #f9a8d4; text-decoration: none; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: #ffffff; text-decoration: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--color-hero-bg);
  color: #ffffff;
  padding: 6rem 0 5.5rem;
  text-align: center;
}

.hero-brand {
  font-family: var(--font-brand);
  font-size: clamp(3.5rem, 10vw, 6rem);
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.1;
}

.hero-tagline {
  margin-top: 1rem;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: #94a3b8;
  max-width: 520px;
  margin-inline: auto;
}

.hero-cta {
  margin-top: 2.25rem;
  display: inline-block;
  background: var(--color-accent);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.1s;
}
.hero-cta:hover {
  background: var(--color-accent-hover);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* =========================================================
   SECTIONS
   ========================================================= */
section { padding: 5rem 0; }

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

.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--color-text);
}

.section-sub {
  margin-top: 0.85rem;
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

/* =========================================================
   SERVICES GRID
   ========================================================= */
#services { background: var(--color-surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* =========================================================
   ABOUT
   ========================================================= */
#about .about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-text p {
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.about-highlight {
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
}

.about-highlight p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}

@media (max-width: 700px) {
  #about .about-body { grid-template-columns: 1fr; gap: 2rem; }
}

/* =========================================================
   CONTACT
   ========================================================= */
#contact { background: var(--color-surface); }

.contact-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}

.contact-card a {
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-card .contact-note {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--color-hero-bg);
  color: #94a3b8;
  padding: 2.5rem 0;
  font-size: 0.875rem;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-brand);
  color: #ffffff;
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a { color: #94a3b8; }
.footer-links a:hover { color: #f9a8d4; text-decoration: none; }

.footer-brand:hover { color: #f9a8d4; text-decoration: none; }

/* =========================================================
   PRIVACY POLICY PAGE
   ========================================================= */
.policy-hero {
  background: var(--color-hero-bg);
  color: #ffffff;
  padding: 4rem 0 3rem;
}

.policy-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.policy-hero .meta {
  margin-top: 0.75rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.policy-body {
  padding: 3.5rem 0 5rem;
}

.policy-content {
  max-width: 780px;
}

.policy-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  color: var(--color-text);
}

.policy-content h2:first-child { margin-top: 0; }

.policy-content p {
  color: var(--color-muted);
  margin-bottom: 0.9rem;
  font-size: 0.975rem;
}

.policy-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--color-muted);
  font-size: 0.975rem;
}

.policy-content ul li { margin-bottom: 0.35rem; }

.policy-content strong { color: var(--color-text); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 600px) {
  .nav-links { gap: 1.25rem; }
  .hero { padding: 4rem 0 3.5rem; }
  section { padding: 3.5rem 0; }
  .site-footer .container { flex-direction: column; align-items: flex-start; }
}
