/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  color: #1a1a2e;
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  color: #2a9d8f;
  margin-bottom: 48px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: #2a9d8f;
  color: #fff;
  border-color: #2a9d8f;
}

.btn-primary:hover {
  background: #21867a;
  border-color: #21867a;
}

.btn-outline {
  background: transparent;
  color: #2a9d8f;
  border-color: #2a9d8f;
}

.btn-outline:hover {
  background: #2a9d8f;
  color: #fff;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #1a1a2e;
}

.logo-accent {
  color: #2a9d8f;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #1a1a2e;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #2a9d8f;
}

.nav-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.cart-count {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  background: #2a9d8f;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0faf9 0%, #e8f4f8 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 24px;
}

.hero-points {
  margin-bottom: 36px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.hero-points li::before {
  content: "✓";
  color: #2a9d8f;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ============================================================
   WHAT WE OFFER
   ============================================================ */
.offerings {
  padding: 96px 0;
  background: #fff;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.offer-card {
  background: #f8fffe;
  border: 1px solid #d4ede9;
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-icon {
  font-size: 2.4rem;
}

.offer-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1a2e;
}

.offer-card p {
  color: #555;
  font-size: 0.95rem;
  flex: 1;
}

.workshop-schedule {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.workshop-schedule li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #444;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a9d8f;
  flex-shrink: 0;
}

/* ============================================================
   OFFERINGS DETAIL
   ============================================================ */
.offerings-detail {
  padding: 96px 0;
  background: #1a1a2e;
}

.offerings-detail .section-subtitle {
  color: #2a9d8f;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.detail-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(42,157,143,0.3);
}

.detail-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #2a9d8f;
  margin-bottom: 16px;
}

.detail-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.detail-card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   FOUNDER
   ============================================================ */
.founder {
  padding: 96px 0;
  background: #f0faf9;
}

.founder-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}

.founder-placeholder {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a9d8f, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 16px 48px rgba(42,157,143,0.3);
}

.founder-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #2a9d8f;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.founder-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.founder-handle {
  font-size: 0.95rem;
  color: #2a9d8f;
  font-weight: 600;
  margin-bottom: 20px;
}

.founder-content p {
  color: #444;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.founder-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ============================================================
   ASSESSMENT CTA
   ============================================================ */
.assessment-cta {
  padding: 96px 0;
  background: #2a9d8f;
}

.assessment-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.assessment-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.assessment-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.assessment-content .btn-primary {
  background: #fff;
  color: #2a9d8f;
  border-color: #fff;
}

.assessment-content .btn-primary:hover {
  background: #e8faf9;
  border-color: #e8faf9;
}

.graphic-box {
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
}

.graphic-item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  padding: 16px 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  text-align: center;
}

/* ============================================================
   CONTACT / PLANNING FORM
   ============================================================ */
.contact {
  padding: 96px 0;
  background: #fff;
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a1a2e;
}

.form-group input,
.form-group textarea {
  border: 1.5px solid #d0d0d0;
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #1a1a2e;
  background: #fafafa;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2a9d8f;
  background: #fff;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #444;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2a9d8f;
  cursor: pointer;
}

.form-success {
  display: none;
  margin-top: 16px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #2a9d8f;
  font-size: 1.1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1a1a2e;
  padding: 48px 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer .logo-text {
  color: #fff;
  font-size: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 24px;
  font-size: 1.4rem;
}

.footer-social a {
  color: #aaa;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #2a9d8f;
}

.footer-copy {
  color: #666;
  font-size: 0.85rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-container,
  .founder-container,
  .assessment-container {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .offerings-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .founder-placeholder {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-headline {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.7rem;
  }
}
