:root {
      --ivory: #faf7f1;
      --white: #ffffff;
      --charcoal: #172033;
      --text: #1f2937;
      --muted: #6b7280;
      --rose: #c8a29a;
      --champagne: #d9c3a5;
      --sage: #6f8c7a;
      --gold: #b99154;
      --border: #e7dccf;
      --orange: #ff8200;
      --blue: #005fd6;
      --dark: #0f172a;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: var(--ivory);
      color: var(--text);
      line-height: 1.6;
    }

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

    .page {
      max-width: 1180px;
      margin: 0 auto;
      padding: 24px;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0 28px;
    }

    .logo {
      font-size: 24px;
      font-weight: 800;
      color: var(--charcoal);
      letter-spacing: -0.5px;
    }

    nav {
      display: flex;
      gap: 22px;
      font-size: 15px;
      color: var(--charcoal);
    }

    nav a:hover { color: var(--gold); }

    .hero {
      background:
        linear-gradient(135deg, rgba(23, 32, 51, 0.82), rgba(200, 162, 154, 0.55)),
        url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1600&q=80");
      background-size: cover;
      background-position: center;
      border-radius: 34px;
      min-height: 430px;
      padding: 70px 54px;
      color: white;
      display: flex;
      align-items: center;
      box-shadow: 0 30px 80px rgba(23, 32, 51, 0.22);
    }

    .hero-content { max-width: 690px; }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 13px;
      font-weight: 700;
      color: #f5e7d6;
      margin-bottom: 16px;
    }

    h1 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(42px, 7vw, 76px);
      line-height: 1.02;
      margin: 0 0 22px;
      letter-spacing: -1.5px;
    }

    .hero p {
      font-size: 20px;
      max-width: 620px;
      margin: 0 0 30px;
      color: #fff7ee;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 24px;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.2s ease;
    }

    .btn-primary {
      background: white;
      color: var(--charcoal);
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.75);
      color: white;
    }

    .btn:hover { transform: translateY(-2px); }

    .section {
      margin-top: 56px;
      background: var(--white);
      border-radius: 30px;
      padding: 36px;
      box-shadow: 0 20px 60px rgba(23, 32, 51, 0.08);
    }

    .section-title {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .section-title span {
      width: 5px;
      height: 34px;
      background: var(--rose);
      border-radius: 10px;
    }

    h2 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 34px;
      line-height: 1.15;
      margin: 0;
      color: var(--charcoal);
    }

    .section-intro {
      max-width: 820px;
      margin: 0 0 28px;
      color: #374151;
      font-size: 18px;
    }

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

    .card {
      overflow: hidden;
      border-radius: 24px;
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: 0 12px 35px rgba(23, 32, 51, 0.06);
      transition: 0.22s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(23, 32, 51, 0.12);
    }

    .card-top {
      min-height: 160px;
      padding: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      font-size: 27px;
      font-weight: 900;
      line-height: 1.1;
    }

    .dream { background: linear-gradient(135deg, #6d2f48, #d1a37f); }
    .luxury { background: linear-gradient(135deg, #172033, #b99154); }
    .style { background: linear-gradient(135deg, #9f3154, #e9b7a5); }
    .shop { background: linear-gradient(135deg, #2c4a3e, #9bbf9a); }
    .planner { background: linear-gradient(135deg, #314b7c, #c8a29a); }
    .vendor { background: linear-gradient(135deg, #111827, #6f8c7a); }

    .ma { background: linear-gradient(135deg, #0f1f3a, #0f5bd3); }
    .fargo { background: linear-gradient(135deg, #16823e, #22b85f); }
    .kooham { background: linear-gradient(135deg, #b3123f, #f23d63); }

    .card-body { padding: 24px; }

    .card-body h3 {
      margin: 0 0 8px;
      font-size: 22px;
      color: var(--charcoal);
    }

    .card-body p {
      margin: 0 0 18px;
      color: #374151;
    }

    .card-link {
      color: var(--gold);
      font-weight: 800;
    }

    .ad-box {
      border: 2px dashed var(--orange);
      background: #fff3e3;
      border-radius: 24px;
      padding: 76px 30px;
      text-align: center;
      margin-top: 34px;
    }

    .ad-box h2 {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--blue);
      font-size: 30px;
      margin: 0 0 10px;
    }

    .ad-box p {
      color: var(--blue);
      font-weight: 700;
      font-size: 22px;
      margin: 0;
    }

    .banner {
      margin-top: 36px;
      border-radius: 28px;
      padding: 38px;
      background: var(--dark);
      color: white;
      display: flex;
      gap: 24px;
      justify-content: space-between;
      align-items: center;
    }

    .banner h2 {
      color: white;
      margin-bottom: 10px;
    }

    .banner p {
      margin: 0;
      color: #e5e7eb;
      font-size: 17px;
    }

    .banner .btn {
      background: white;
      color: var(--charcoal);
      flex-shrink: 0;
    }

    .disclosure {
      margin-top: 28px;
      font-size: 13px;
      color: var(--muted);
    }

    footer {
      padding: 42px 0 20px;
      text-align: center;
      color: var(--muted);
      font-size: 14px;
    }

    @media (max-width: 900px) {
      header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      nav { flex-wrap: wrap; }

      .hero {
        padding: 50px 28px;
        border-radius: 26px;
      }

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

      .banner {
        flex-direction: column;
        align-items: flex-start;
      }

      .section { padding: 26px; }
    }

/* PROJECT CARDS - Useful Links & Recommendations */
#projects .project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

#projects .project-card {
  display: block;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#projects .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.14);
}


#projects .project-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
}

#projects .project-card-body {
  padding: 18px 20px 22px;
}

#projects .project-card-body h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--charcoal);
}

#projects .project-card-body p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  color: #243044;
}

/* Make all standard cards fully clickable after converting them to <a class="card"> */
a.card {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.card-link {
  display: inline-block;
}

@media (max-width: 900px) {
  #projects .project-grid {
    grid-template-columns: 1fr;
  }

  #projects .project-card img {
    height: 240px;
  }
}
