:root {
  --deep-ocean: #0c2340;
  --warm-sand: #f5efe6;
  --coral-accent: #c4653a;
  --sea-glass: #4a8b7f;
  --soft-gray: #6b7b8d;
  --light-wash: #faf8f5;
  --card-bg: #ffffff;
}

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

body {
  background: var(--light-wash);
  color: var(--deep-ocean);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
}

/* Hero */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(160deg, var(--deep-ocean) 0%, #1a3a5c 40%, #2d5a7b 100%);
  padding: 4rem 2rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 139, 127, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 101, 58, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sea-glass);
  border: 1px solid rgba(74, 139, 127, 0.4);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--warm-sand);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: rgba(245, 239, 230, 0.8);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(245, 239, 230, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services */
.services {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral-accent);
  margin-bottom: 1rem;
}

.services-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--deep-ocean);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(12, 35, 64, 0.06);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12, 35, 64, 0.08);
}

.service-icon {
  font-size: 1.5rem;
  color: var(--sea-glass);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--deep-ocean);
}

.service-card p {
  color: var(--soft-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Why Section */
.why {
  background: var(--deep-ocean);
  padding: 6rem 2rem;
}

.why-content {
  max-width: 1100px;
  margin: 0 auto;
}

.why .section-label {
  color: var(--sea-glass);
}

.why h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--warm-sand);
  margin-bottom: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.why-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--warm-sand);
  margin-bottom: 0.6rem;
}

.why-item p {
  color: rgba(245, 239, 230, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 6rem 2rem;
  text-align: center;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--deep-ocean);
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--soft-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.closing-note {
  font-weight: 600;
  color: var(--sea-glass);
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* Footer */
.site-footer {
  background: var(--deep-ocean);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(74, 139, 127, 0.2);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--warm-sand);
}

.footer-details p {
  color: rgba(245, 239, 230, 0.5);
  font-size: 0.85rem;
  text-align: right;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 3rem 1.5rem;
  }

  .services, .why, .closing {
    padding: 4rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-details p {
    text-align: center;
  }
}