/* ==========================================================================
   The Conversationalist Limited — Stylesheet
   Brand palette pulled from logo:
   Navy #16274F | Magenta #E01870 | Slate #6C7A9C | Gold #C89B5C
   ========================================================================== */

:root {
  --navy: #16274F;
  --navy-dark: #0E1A38;
  --magenta: #E01870;
  --slate: #6C7A9C;
  --gold: #C89B5C;
  --off-white: #FAFAF8;
  --white: #FFFFFF;
  --ink: #23262F;
  --muted: #667085;
  --border: #E6E6EA;
  --shadow: 0 10px 30px rgba(22, 39, 79, 0.08);
  --radius: 10px;
  --max-width: 1180px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { color: var(--muted); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--magenta);
  margin-bottom: 12px;
}

.section {
  padding: 88px 0;
}

.section--tight { padding: 64px 0; }

.section--alt { background: var(--white); }

.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #C7CEDD; }

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--magenta);
  color: var(--white);
}
.btn--primary:hover { background: #c01260; transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

.btn--outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}
.brand img { height: 52px; width: auto; }
.brand span.tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--magenta);
}
.nav-links a.btn--primary { color: var(--white); padding: 10px 22px; }
.nav-links a.btn--primary:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 40px solid rgba(224, 24, 112, 0.14);
}
.hero::before {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -160px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 30px solid rgba(108, 122, 156, 0.18);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--white); max-width: 820px; }
.hero p.lead {
  color: #D6DCEA;
  font-size: 1.15rem;
  max-width: 700px;
  margin-top: 22px;
}
.hero p.lead + p.lead { margin-top: 14px; }
.hero .close-line {
  margin-top: 26px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
}

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 80px 0 64px;
  text-align: left;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: #D6DCEA; max-width: 680px; margin-top: 14px; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}

/* ---------- Cards / Grids ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  height: 100%;
}
.card .icon-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(224, 24, 112, 0.1);
  color: var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 18px;
}
.card ul {
  margin-top: 14px;
  padding-left: 20px;
  color: var(--muted);
}
.card ul li { margin-bottom: 6px; }
.card h3 { margin-bottom: 10px; }

/* ---------- Who we are / about split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--slate);
}
.stat-row {
  display: flex;
  gap: 36px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.stat-row .stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--magenta);
}
.stat-row .stat span {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Steps (Our Approach) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.step .num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0 auto 14px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; }

/* ---------- Timeline (Chronicle) ---------- */
.timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 32px;
  border-left: 3px solid var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--magenta);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--magenta);
}
.timeline-item .date {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: block;
}
.timeline-item h3 { margin-bottom: 8px; }
.timeline-item .theme {
  font-style: italic;
  color: var(--slate);
  margin-bottom: 10px;
  display: block;
}

/* ---------- Team ---------- */
.team-note {
  background: var(--white);
  border-left: 4px solid var(--magenta);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-top: 30px;
}
.team-note p:last-child {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--navy);
  font-size: 1.15rem;
  margin-top: 14px;
}

/* ---------- Locations ---------- */
.locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--magenta);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band .btn--outline { border-color: var(--white); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info .item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info .item .dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(224,24,112,0.1);
  color: var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #B9C0D4;
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a:hover { color: var(--magenta); }
.footer-brand img { height: 44px; margin-bottom: 14px; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.tag-list span {
  background: rgba(108,122,156,0.12);
  color: var(--navy);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
}
.img-placeholder {
  background: linear-gradient(135deg, var(--slate), var(--navy));
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
  padding: 20px;
  border-radius: var(--radius);
  min-height: 220px;
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ---------- Partners strip ---------- */
.partners-strip {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-strip .label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.partners-row .partner-word {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  opacity: 0.75;
  letter-spacing: 0.01em;
}
.partners-row .partner-logo-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.partners-row .partner-logo-wrap img {
  height: 46px;
  width: auto;
  display: block;
}

/* ---------- Footer extras ---------- */
.footer-bottom a { color: #B9C0D4; }
.footer-bottom a:hover { color: var(--magenta); }
.footer-social { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .split, .contact-grid, .locations { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: transform 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 70px; }
  .section { padding: 60px 0; }
}
