/* style.css — BrightSide Brand Studio Design System */

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

:root {
  --sky-blue: #bfeaff;
  --sunshine-yellow: #ffd84a;
  --white: #ffffff;
  --dark-text: #20262d;
  --light-cream: #fff9ea;
  --coral: #ff6d5a;
  --deeper-blue: #1976A8;
  --heading-font: 'Plus Jakarta Sans', sans-serif;
  --body-font: 'Inter', sans-serif;
  --max-width: 1100px;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  color: var(--dark-text);
  background: var(--sky-blue);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand { font-family: var(--heading-font); font-weight: 700; font-size: 1.1rem; color: var(--dark-text); text-decoration: none; }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }

.nav-links a { text-decoration: none; color: var(--dark-text); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }

.nav-links a:hover { color: var(--deeper-blue); }

/* Sections */
.section { padding: 80px 0; }

.section-heading {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.7;
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 0 80px;
  background: var(--sky-blue);
}

.location-tag {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  opacity: 0.7;
}

.hero h1 {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 32px;
  opacity: 0.85;
}

.btn:focus-visible,
.nav-links a:focus-visible {
  outline: 3px solid var(--deeper-blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

.btn-primary { background: var(--sunshine-yellow); color: var(--dark-text); }

.btn-secondary { background: var(--dark-text); color: var(--white); }

/* Value Prop Bar */
.value-prop {
  background: var(--sunshine-yellow);
  text-align: center;
  padding: 48px 24px;
}

.value-prop .tag {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.7;
}

.value-prop h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.service-card h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* Approach Steps */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.step-number {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--sunshine-yellow);
  margin-bottom: 8px;
  line-height: 1;
}

.step-card h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  background: var(--sky-blue);
}

.cta-section h2 {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 24px;
}

/* Footer */
footer {
  background: var(--dark-text);
  color: var(--white);
  text-align: center;
  padding: 48px 24px;
}

footer .brand { color: var(--white); opacity: 0.9; font-size: 1rem; display: block; margin-bottom: 4px; }

footer .tagline { opacity: 0.6; font-size: 0.9rem; margin-bottom: 12px; }

.footer-links { font-size: 0.75rem; opacity: 0.5; }

.footer-links a { color: var(--white); text-decoration: none; }

.footer-links a:hover { color: var(--sky-blue); text-decoration: underline; }

.footer-sep { margin: 0 8px; }

/* Contact Form */
.contact-section {
  max-width: 640px;
  margin: 60px auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  font-family: var(--heading-font);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-family: var(--body-font);
  font-size: 1rem;
  background: #f8fafc;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--deeper-blue);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.contact-info {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}

.contact-info a {
  color: var(--deeper-blue);
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover { text-decoration: underline; }

/* Policy Pages */
.policy-section {
  background: var(--white);
  min-height: 60vh;
}

.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.policy-content h1 {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 32px;
  line-height: 1.15;
}

.policy-content h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.policy-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  opacity: 0.85;
}

.policy-content ul {
  margin: 12px 0 20px;
  padding-left: 24px;
}

.policy-content li {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 6px;
  opacity: 0.85;
}

.policy-content a {
  color: var(--deeper-blue);
  text-decoration: none;
  font-weight: 500;
}

.policy-content a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .hero { padding: 60px 0 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; gap: 20px; }
  .contact-section { padding: 28px; margin: 32px 16px; }
  .nav-links { gap: 16px; }
}
