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

:root {
  --navy: #070f79;
  --navy-dark: #0b0449;
  --pink: #f3c8cf;
  --cream: #fcf9f5;
  --taupe: #595769;
  --white: #ffffff;
  --font-heading: 'Marcellus', serif;
  --font-body: 'Fraunces', serif;
  --font-ui: 'Hind', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: clamp(0.875rem, 0.875rem + 0.4vw, 1.125rem);
}

/* NAV */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(7,15,121,0.08);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--taupe);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: 0.3s;
}

/* SECTIONS */
section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; }
h1 { font-size: clamp(2.25rem, 2.25rem + 2.5vw, 3.75rem); line-height: 1.15; }
h2 { font-size: clamp(1.85rem, 1.85rem + 1.9vw, 3rem); line-height: 1.2; margin-bottom: 1.5rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.subtitle {
  color: var(--taupe);
  font-size: clamp(0.95rem, 0.95rem + 0.2vw, 1.1rem);
  max-width: 600px;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 60%, var(--pink) 100%);
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text h1 { margin-bottom: 1.5rem; color: var(--navy); }
.hero-text p { margin-bottom: 2rem; color: var(--taupe); max-width: 500px; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 12px 12px 40px rgba(7,15,121,0.15);
  object-fit: cover;
}

/* ABOUT */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p { color: var(--taupe); margin-bottom: 1.5rem; }
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 6px 6px 20px rgba(0,0,0,0.1);
  object-fit: cover;
  max-height: 300px;
}
.about-stats {
  background: var(--cream);
  border-radius: 4px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.about-stat {
  text-align: center;
  padding: 1rem;
}
.about-stat .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--navy);
  display: block;
}
.about-stat .label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--taupe);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* SERVICES */
#services { background: var(--cream); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .subtitle { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 20px rgba(0,0,0,0.08);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.service-card p { color: var(--taupe); font-size: 0.95rem; }

/* FEATURES */
#features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.features-img {
  width: 100%;
  border-radius: 8px;
  margin-top: 1rem;
  box-shadow: 6px 6px 20px rgba(0,0,0,0.1);
  object-fit: cover;
  max-height: 280px;
}
.feature-list { display: flex; flex-direction: column; gap: 1.5rem; }
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}
.feature-item p { color: var(--taupe); font-size: 0.95rem; }

/* TESTIMONIALS */
#testimonials { background: var(--navy); color: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header h2 { color: var(--white); }
.testimonials-header .subtitle { color: rgba(255,255,255,0.7); margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2.5rem;
}
.testimonial-card blockquote {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}
.testimonial-author {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
}
.testimonial-role {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--pink);
}

/* CTA */
#cta {
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink) 100%);
  text-align: center;
}
#cta h2 { color: var(--navy); }
#cta .subtitle { margin: 0 auto 2rem; }

/* CONTACT */
#contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--taupe); margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--taupe);
}
.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.contact-form input,
.contact-form textarea {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(7,15,121,0.15);
  border-radius: 2px;
  background: var(--cream);
  color: var(--navy-dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--navy); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-status {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  display: none;
}
.form-status.success { color: #2e7d32; display: block; }
.form-status.error { color: #c62828; display: block; }

/* FOOTER */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 3rem 2rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-content a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-content a:hover { color: var(--white); }
.social-links { display: flex; gap: 1.5rem; }
.social-links a { font-family: var(--font-ui); font-size: 0.85rem; }
.footer-copy { font-family: var(--font-ui); font-size: 0.85rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content,
  .about-grid,
  .features-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-img { max-width: 400px; }
}
@media (max-width: 600px) {
  section { padding: 4rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(7,15,121,0.08);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
}
