/* ==========================================================================
   Pasari Consulting LLC — shared styles
   ========================================================================== */

:root {
  --navy: #1b2a44;
  --navy-dark: #111b2e;
  --gold: #c9a15e;
  --gold-light: #e4c98a;
  --cream: #f6ecd6;
  --blob: #a9b3c1;
  --text: #222b3a;
  --muted: #5b6472;
  --bg-light: #f5f6f8;
  --white: #ffffff;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'Alfa Slab One', 'Georgia', serif;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.6em;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 20;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Alfa Slab One', serif;
  font-size: 20px;
  color: var(--navy);
}

.logo .mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--navy) 55%, var(--gold) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 6px;
}

.logo .mark span {
  display: block;
  width: 4px;
  background: var(--white);
  border-radius: 1px;
}
.logo .mark span:nth-child(1) { height: 8px; }
.logo .mark span:nth-child(2) { height: 14px; background: var(--gold-light); }
.logo .mark span:nth-child(3) { height: 20px; }

.main-nav {
  display: flex;
  gap: 34px;
  font-size: 15px;
}

.main-nav a {
  color: var(--text);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  cursor: pointer;
  border: none;
  font-family: 'Lora', serif;
}

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); }

.btn-gold { background: var(--gold); color: var(--navy); font-weight: 600; }
.btn-gold:hover { background: var(--gold-light); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, #7f8ba3 55%, var(--white) 100%);
  text-align: center;
  padding: 110px 32px 90px;
}

.hero h1 {
  color: var(--text);
  font-size: clamp(28px, 4vw, 44px);
  max-width: 900px;
  margin: 0 auto 36px;
}

.hero.small { padding: 70px 32px 60px; }
.hero .eyebrow {
  color: var(--white);
  opacity: .85;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ---------- Services (blob cards) ---------- */
.section { padding: 80px 32px; }
.section.light { background: var(--bg-light); }
.section.dark { background: var(--navy); color: var(--white); }
.section.dark h2 { color: var(--white); }
.section-title { text-align: center; font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 56px; }

.blob-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.blob-card {
  background: var(--blob);
  border-radius: 58% 42% 60% 40% / 46% 40% 60% 54%;
  padding: 56px 40px;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.blob-card:nth-child(3) { grid-column: 1 / span 2; max-width: 520px; margin: 0 auto; }

.blob-card h3 { font-size: 20px; margin-bottom: 4px; }
.blob-card p { color: var(--navy); font-size: 15px; max-width: 320px; }

/* ---------- Service detail cards (Services page) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 27, 46, 0.12);
}

.service-card .thumb {
  height: 140px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .thumb svg { width: 46px; height: 46px; }

.service-card .body { padding: 24px 26px 30px; }
.service-card h3 { font-size: 18px; margin-bottom: 12px; }
.service-card p, .service-card li { font-size: 14px; color: var(--muted); }
.service-card ul { padding-left: 18px; margin: 0 0 20px; }

/* ---------- Why choose us ---------- */
.list-plain { list-style: none; padding: 0; margin: 0 auto; max-width: 640px; }
.list-plain li { margin-bottom: 14px; font-size: 16px; }
.list-plain b { color: var(--navy); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(180deg, var(--cream) 0%, var(--gold) 100%);
  text-align: center;
  padding: 70px 32px;
}
.cta-band h2 { font-size: clamp(24px, 3vw, 32px); }
.cta-band .unlock { color: var(--navy-dark); opacity: .7; letter-spacing: 1px; text-transform: uppercase; font-size: 13px; margin-bottom: 30px; }

.cta-form { max-width: 420px; margin: 0 auto; text-align: left; }
.cta-form label { display: block; font-size: 14px; margin-bottom: 6px; }
.cta-form input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #d9c690;
  margin-bottom: 20px;
  font-family: 'Lora', serif;
}
.cta-form .btn { display: block; width: 100%; text-align: center; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial {
  background: var(--blob);
  border-radius: 55% 45% 60% 40% / 50% 44% 56% 50%;
  padding: 50px 40px;
  text-align: center;
}
.testimonial p { font-style: italic; color: var(--text); }
.testimonial .stars { color: var(--gold); margin-top: 10px; }
.testimonial .name { margin-top: 6px; font-weight: 700; color: var(--navy); font-family: 'Lora', serif; }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e5e5; padding: 22px 0; }
.faq-item h4 { margin: 0 0 8px; font-size: 17px; color: var(--navy); font-family: 'Alfa Slab One', serif; font-weight: 400; }
.faq-item p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Two-column content ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.two-col h4 { color: var(--navy); font-family: 'Alfa Slab One', serif; font-weight: 400; font-size: 17px; margin-bottom: 10px; }

.quote-block {
  border-left: 4px solid var(--gold);
  padding-left: 24px;
  margin: 30px 0 10px;
  font-style: italic;
  color: var(--navy);
}
.quote-block .who { margin-top: 10px; font-style: normal; font-weight: 700; color: var(--muted); font-size: 14px; }

/* ---------- Map ---------- */
.map-embed {
  border: 0;
  width: 100%;
  height: 320px;
  border-radius: 10px;
}
.map-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 70px 32px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
}
.site-footer h3 { color: var(--white); font-size: 22px; }
.site-footer .tagline { color: #b9c0cd; margin-bottom: 24px; }

.footer-form textarea {
  width: 100%;
  min-height: 90px;
  border-radius: 10px;
  border: none;
  padding: 12px 16px;
  font-family: 'Lora', serif;
  margin-bottom: 14px;
  resize: vertical;
}
.footer-form label { font-size: 13px; color: #b9c0cd; display: block; margin-bottom: 6px; }

.footer-detail { margin-bottom: 20px; }
.footer-detail .label { color: var(--gold); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.footer-detail .value { color: var(--white); font-size: 15px; }

.footer-bottom {
  max-width: 1180px;
  margin: 50px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #8b93a3;
  font-size: 13px;
  text-align: right;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .site-header { padding: 16px 20px; }
  .main-nav { gap: 18px; font-size: 14px; }
  .blob-grid, .card-grid, .testimonial-grid, .two-col, .map-row, .footer-grid {
    grid-template-columns: 1fr;
  }
  .blob-card:nth-child(3) { grid-column: auto; max-width: 100%; }
  .section { padding: 56px 20px; }
  .hero { padding: 70px 20px 60px; }
}
