:root {
  --bg: #f7f5f2;
  --surface: rgba(255, 254, 252, 0.92);
  --surface-strong: #fffaf8;
  --text: #4a5968;
  --text-muted: #7d8fa0;
  --primary: #5fa8c9;
  --primary-soft: #d4e8f5;
  --accent: #7fb898;
  --accent-warm: #d8825c;
  --accent-teal: #4ba8a8;
  --success: #6fa878;
  --highlight: #e8a957;
  --shadow: 0 24px 50px rgba(74, 89, 104, 0.08);
  --shadow-warm: 0 18px 32px rgba(216, 130, 92, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(107, 143, 163, 0.12), transparent 28%),
              radial-gradient(circle at bottom right, rgba(139, 168, 153, 0.12), transparent 30%),
              linear-gradient(180deg, #f9f7f4 0%, #f7f5f2 35%, #f5f2f0 100%);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(255, 250, 248, 0.88);
  border-bottom: 1px solid rgba(90, 107, 122, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--primary);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 999px;
}

.hero-section {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-warm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-section h1 {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1.04;
  margin: 0;
}

.hero-section p {
  max-width: 42rem;
  margin: 1.5rem 0 2rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  color: white;
  box-shadow: 0 18px 32px rgba(95, 168, 201, 0.25);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  box-shadow: 0 22px 40px rgba(95, 168, 201, 0.35);
}

.btn-secondary {
  background: var(--surface-strong);
  color: var(--primary);
  box-shadow: var(--shadow);
  font-weight: 700;
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary-soft);
}

.hero-image {
  display: flex;
  justify-content: flex-end;
}

.image-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.card-wave {
  position: absolute;
  inset: auto 0 0 0;
  height: 190px;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
}

.services-section,
.about-section,
.testimonials-section,
.contact-section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-warm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  background: rgba(216, 130, 92, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.section-header h2,
.about-copy h2 {
  font-size: clamp(2rem, 2.6vw, 3rem);
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.service-card,
.testimonial-card,
.stat-card {
  background: var(--surface);
  border: 2px solid rgba(95, 168, 201, 0.12);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease, transform 0.3s ease;
}

.service-card:hover,
.testimonial-card:hover,
.stat-card:hover {
  border-color: var(--primary);
  box-shadow: 0 24px 48px rgba(95, 168, 201, 0.15);
  transform: translateY(-4px);
}

.service-card h3,
.testimonial-card strong {
  margin-top: 0;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
  color: var(--primary);
  font-weight: 700;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.about-list {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.about-list li {
  color: var(--text-muted);
  line-height: 1.75;
}

.about-stats {
  display: grid;
  gap: 1.2rem;
}

.stat-card {
  text-align: center;
  padding: 2.2rem 1.6rem;
}

.stat-card span {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-card p {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  min-height: 200px;
}

.testimonial-card p {
  margin: 0 0 1.5rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: rgba(255, 254, 252, 0.98);
  border: 2px solid rgba(95, 168, 201, 0.15);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.65rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid rgba(95, 168, 201, 0.2);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  font: inherit;
  background: rgba(212, 232, 245, 0.3);
  color: var(--text);
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(95, 168, 201, 0.2);
  background: rgba(255, 254, 252, 0.95);
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .services-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 3.5rem;
  }

  .hero-image {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 0 0 auto auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 5rem 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    transform: translateX(110%);
    transition: transform 0.3s ease;
    width: min(320px, 100%);
    height: 100vh;
    box-shadow: -18px 0 45px rgba(16, 58, 95, 0.12);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .site-header {
    padding: 0 1rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.25s;
}

.delay-3 {
  transition-delay: 0.35s;
}
