@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #ffffff;
  --ink: #2a2a2a;
  --muted: #5e5e5e;
  --accent: #7c6c9a;
  --accent-light: #b8a9d4;
  --accent-bg: #f0ecf5;
  --line: #e5e2ea;
  --container: 1020px;
  --footer-bg: #1a1a1a;
  --warm-bg: #faf9fb;
  --shadow-sm: 0 1px 3px rgba(124,108,154,0.06);
  --shadow-md: 0 4px 20px rgba(124,108,154,0.10);
  --shadow-lg: 0 8px 32px rgba(124,108,154,0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1, h2, h3, h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

/* ─── HEADER ─── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 3px solid var(--accent-light);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 50px;
  width: auto;
}

/* ─── DROPDOWN NAV ─── */

.nav-shell {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
}

.nav-item-link:hover {
  color: var(--accent);
}

.nav-item-link .chevron {
  font-size: 0.7rem;
  transition: transform 200ms ease;
}

.nav-sep {
  color: #ccc;
  font-size: 0.9rem;
  padding: 0 0.15rem;
  user-select: none;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  z-index: 50;
  padding: 0.4rem 0;
}

.nav-item:hover .nav-dropdown {
  display: block;
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: #f5f5f5;
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.6rem;
  border: 2px solid var(--accent-light);
  border-radius: 30px;
  background: rgba(184,169,212,0.1);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 200ms ease, border-color 200ms ease;
}

.btn-contact:hover {
  background: rgba(184,169,212,0.22);
  border-color: var(--accent);
}

.btn-contact .icon-mail {
  font-size: 1rem;
}

/* ─── MOBILE NAV ─── */

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

/* ─── HERO ─── */

.hero {
  padding: 3.5rem 0 4rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.08;
  color: var(--ink);
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
}

.hero-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.5rem;
  background: #fff;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.btn-primary:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary .arrow {
  font-size: 1.1rem;
}

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

/* ─── LET'S TALK SECTION ─── */

.talk-section {
  padding: 3rem 0 4rem;
}

.talk-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.talk-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 420px;
  object-fit: cover;
}

.talk-eyebrow {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
}

.talk-copy h2 {
  margin: 0 0 1rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.talk-copy p {
  color: var(--muted);
  margin: 0 0 1.5rem;
  line-height: 1.8;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.5rem;
  background: #fff;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline .arrow {
  font-size: 1.1rem;
}

/* ─── HIGHLIGHTS / FEATURES GRID ─── */

.highlights-section {
  padding: 3rem 0 4rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.highlight-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-top: 3px solid var(--accent-light);
  border-radius: 4px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.highlight-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.3rem;
  font-weight: 800;
  font-style: italic;
  color: var(--accent);
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ─── TESTIMONIALS ─── */

.testimonials-section {
  padding: 3rem 0 4rem;
  text-align: center;
}

.testimonials-section h2 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  font-weight: 800;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 2rem;
}

.stars svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-light);
}

.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 140px;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 500ms ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial-slide blockquote {
  margin: 0 0 0.75rem;
  padding: 0 1.5rem;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.8;
  font-style: normal;
  position: relative;
}

.testimonial-slide blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 2rem;
  color: var(--accent-light);
  font-weight: 700;
}

.testimonial-slide .author {
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--accent-light);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease;
}

.carousel-dot.active {
  background: var(--accent-light);
}

/* ─── CONSULTANTS ─── */

.consultants-section {
  padding: 3rem 0 4rem;
}

.consultants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.consultant-circle {
  text-align: center;
}

.consultant-circle .photo-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
}

.consultant-circle .photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultant-circle h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.consultant-circle .role {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ─── PARTNERS ─── */

.partners-section {
  padding: 3rem 0 4rem;
  text-align: center;
}

.partners-section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.partners-section .divider {
  width: 60px;
  height: 2px;
  background: var(--accent-light);
  margin: 0.8rem auto;
}

.partners-section h4 {
  margin: 0 0 2.5rem;
  font-weight: 400;
  color: #999;
  font-style: italic;
  font-size: 0.95rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}

.partner-item {
  text-align: center;
}

.partner-logo-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
}

.partner-logo-wrap img {
  max-height: 60px;
  width: auto;
  max-width: 100%;
}

.partner-logo-wrap .initials {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-bg);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.partner-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 700;
}

.partner-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ─── FAQ ─── */

.faq-section {
  padding: 3rem 0 0;
  position: relative;
  background: linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)), url('/assets/hero-work.jpg') center/cover no-repeat;
}

.faq-section h2 {
  text-align: center;
  margin: 0 0 0.3rem;
  font-size: 1.8rem;
  font-weight: 800;
}

.faq-divider {
  width: 60px;
  height: 2px;
  background: var(--accent-light);
  margin: 0.8rem auto;
}

.faq-subtitle {
  text-align: center;
  color: var(--muted);
  margin: 0 0 2rem;
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.faq-item {
  background: rgba(255,255,255,0.85);
  border: 1px solid #e0e0e0;
  padding: 1rem 1.2rem;
  backdrop-filter: blur(4px);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--ink);
  padding-right: 2rem;
  position: relative;
  font-size: 0.95rem;
  text-align: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
  line-height: 1.7;
}

/* ─── FLOATING LOGIN BUTTON ─── */

.login-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 1rem 0.5rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px 0 0 4px;
  text-decoration: none;
  transition: background 200ms ease;
}

.login-float:hover {
  background: #5a4c78;
}

/* ─── FOOTER ─── */

.site-footer {
  background: var(--footer-bg);
  color: #ccc;
  padding: 3rem 0 1rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
}

.footer-col h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.footer-col .footer-divider {
  width: 50px;
  height: 2px;
  background: var(--accent-light);
  margin-bottom: 1.2rem;
}

.footer-col p {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #bbb;
}

.footer-col a {
  color: #bbb;
}

.footer-col a:hover {
  color: #fff;
}

.footer-meta {
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #888;
}

/* ─── SUPPORT BAND ─── */

.support-band {
  padding: 3rem 0;
  background: #f8f8f8;
}

.support-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.support-copy,
.support-panel {
  padding: 2rem;
}

.support-copy {
  background: #fff;
  border: 1px solid var(--line);
}

.support-panel {
  background: var(--accent);
  color: #fff;
  border-radius: 0;
}

.support-panel .eyebrow {
  color: rgba(255,255,255,0.7);
}

.support-panel h2 {
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.support-panel p {
  color: rgba(255,255,255,0.85);
}

.support-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.support-actions .button {
  padding: 0.7rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 200ms ease;
}

.support-actions .button:hover {
  background: rgba(255,255,255,0.15);
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ─── INNER PAGE HERO ─── */

.page-hero {
  padding: 2.5rem 0 2rem;
}

.page-hero-shell {
  padding: 0;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2.2rem;
  font-weight: 800;
}

.page-intro {
  color: var(--muted);
  max-width: 60ch;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumbs a {
  color: var(--accent);
  font-weight: 600;
}

.breadcrumb-sep {
  color: #ccc;
}

/* ─── GENERIC SECTIONS (inner pages) ─── */

.section {
  padding: 2rem 0 3rem;
}

.section--soft {
  background: #f8f8f8;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 1.25rem;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
}

.section-copy {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

.card-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.info-card,
.process-card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.info-card:hover,
.process-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}

.info-card h3,
.process-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.info-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.process-step {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 0.75rem;
}

/* ─── CONSULTANT CARDS (inner pages) ─── */

.consultant-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.consultant-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.consultant-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.consultant-card__body {
  padding: 1rem;
}

.consultant-card__body h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
}

.consultant-card__body p {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
}

.text-link::after {
  content: " \2192";
}

/* ─── PARTNER CARD (inner pages) ─── */

.partner-card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: grid;
  gap: 0.5rem;
  align-content: start;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}

.partner-media {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent-bg);
  color: var(--accent);
  font-weight: 700;
}

.partner-media.has-image {
  width: auto;
  height: 4rem;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 1px solid var(--line);
}

.partner-media img {
  max-height: 100%;
  width: auto;
}

.partner-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.partner-tag {
  margin: 0;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

/* ─── SPLIT, OFFER, QUOTE (inner pages) ─── */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stack-list {
  display: grid;
  gap: 0.8rem;
}

.quote-card {
  padding: 1.2rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
}

.quote-card p {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-card footer {
  font-weight: 700;
  color: var(--accent);
}

.offer-card {
  padding: 1.5rem;
  background: var(--accent);
  color: #fff;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.offer-price strong {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.offer-price span {
  color: rgba(255,255,255,0.7);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.check-list li {
  position: relative;
  padding-left: 1.3rem;
  color: #fff;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

/* ─── PROMO CARDS ─── */

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.promo-card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.promo-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.promo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.promo-meta {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── BUTTON ─── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.button--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.button--primary:hover {
  background: #5a4c78;
  border-color: #5a4c78;
}

.button--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.button--ghost:hover {
  background: var(--ink);
  color: #fff;
}

/* ─── POLICY / LEGAL PAGES ─── */

.legal-shell {
  display: grid;
  gap: 1.2rem;
  max-width: 780px;
}

.legal-card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
}

.legal-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.legal-card p {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-card--note {
  background: var(--accent-bg);
  border-color: var(--accent-light);
}

.policy-callout {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--line);
}

.policy-callout h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

/* ─── MARKET CARD ─── */

.market-card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
}

.market-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.market-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ─── CONSULTANT DETAIL PAGE ─── */

.consultant-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 0;
}

.consultant-photo-wrap {
  overflow: hidden;
  border-radius: 8px;
  min-height: 340px;
}

.consultant-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.contact-chips span {
  padding: 0.4rem 0.75rem;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.85rem;
}

.belief-card {
  margin: 1rem 0 0;
  padding: 1rem;
  border-left: 3px solid var(--accent);
  background: #f8f8f8;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
}

.tag-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag-list li {
  padding: 0.4rem 0.75rem;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.85rem;
}

.timeline-grid {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
}

.timeline-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.timeline-period {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
}

.timeline-org {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
}

/* ─── ACCENT PANEL / PROSE ─── */

.prose-card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
}

.prose-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.accent-panel {
  padding: 1.5rem;
  background: var(--accent);
  color: #fff;
}

.accent-panel .eyebrow {
  color: rgba(255,255,255,0.7);
}

.accent-panel h2 {
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
}

.accent-panel p {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}

/* ─── HIDDEN UTILITY BAR ─── */

.utility-bar {
  display: none;
}

.page-bg {
  display: none;
}

/* ─── COOKIE CONSENT BANNER ─── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 1.5rem;
  text-align: center;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  animation: slideUp 400ms ease;
}

.cookie-banner.hidden {
  display: none;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.cookie-text {
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  min-width: 250px;
}

.cookie-text a {
  color: var(--accent-light);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-actions button {
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 200ms ease, transform 200ms ease;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .accept:hover {
  background: #6b5a89;
  transform: translateY(-2px);
}

.cookie-actions .decline {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
}

.cookie-actions .decline:hover {
  background: rgba(255,255,255,0.05);
}

/* ─── RESPONSIVE ─── */

@media (max-width: 960px) {
  .hero-shell,
  .talk-shell,
  .split-section,
  .consultant-hero,
  .support-shell,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .highlights-grid,
  .promo-grid,
  .card-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }

  .consultants-grid,
  .partners-grid,
  .card-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-shell {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    flex-direction: column;
    align-items: stretch;
  }

  body.nav-open .nav-shell {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-sep {
    display: none;
  }

  .nav-item-link {
    padding: 0.6rem 0;
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }

  .nav-item .nav-dropdown {
    display: block;
  }

  .header-actions {
    margin-top: 0.5rem;
  }

  .header-shell {
    position: relative;
  }

  .login-float {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .talk-copy h2 {
    font-size: 1.8rem;
  }

  .highlights-grid,
  .promo-grid,
  .card-grid--three,
  .card-grid--four,
  .consultants-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2rem 0;
  }

  .consultant-circle .photo-wrap {
    width: 120px;
    height: 120px;
  }
}
