/* ===========================
   ACCORDIS MEDIATION — STYLES
   =========================== */

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

:root {
  --navy:      #1a2744;
  --navy-deep: #111b33;
  --gold:      #b8923a;
  --gold-light:#d4a84b;
  --cream:     #f8f6f1;
  --warm-grey: #f2efe8;
  --mid-grey:  #6b7280;
  --dark-grey: #374151;
  --white:     #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-width: 1140px;
  --section-pad: 5rem;
  --radius: 2px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--dark-grey);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Utilities ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--warm-grey); }
.section-dark { background: var(--navy-deep); color: var(--white); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--gold-light); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-intro {
  color: var(--mid-grey);
  font-size: 1.05rem;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; font-weight: 400; }

.section-dark h2 { color: var(--white); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--gold-light);
}
.btn-outline-light:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.btn-full { width: 100%; text-align: center; }

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 1px 20px rgba(0,0,0,0.25);
}

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

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo-sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.main-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold-light) !important; }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-deep);
  padding: 1.5rem 2rem;
  gap: 1.2rem;
}
.mobile-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.mobile-nav.open { display: flex; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17,27,51,0.92) 0%, rgba(26,39,68,0.85) 60%, rgba(17,27,51,0.95) 100%),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===========================
   ABOUT
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-image-col { display: flex; flex-direction: column; gap: 1.5rem; }

.about-image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 3/4;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(184, 146, 58, 0.3);
  pointer-events: none;
}

.about-credential {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.credential-icon { color: var(--gold); font-size: 0.6rem; }
.about-credential strong { display: block; font-size: 0.78rem; color: var(--navy); }
.about-credential span { font-size: 0.72rem; color: var(--mid-grey); }
.credential-title { font-size: 1rem; font-weight: 700; color: var(--navy) !important; }
.credential-sub { font-size: 0.78rem; font-weight: 700; color: var(--navy) !important; }

.cmc-logo-wrap {
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cmc-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: normal;
}

.cmc-logo {
  width: auto;
  height: 55px;
  display: block;
  object-fit: contain;
}

.about-text-col h2 { margin-bottom: 1.5rem; }
.about-text-col p { color: var(--mid-grey); font-size: 1.02rem; }

.about-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat strong { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; color: var(--navy); line-height: 1; }
.stat span { font-size: 0.72rem; color: var(--mid-grey); letter-spacing: 0.02em; }
.stat-divider { width: 1px; height: 40px; background: #e5e7eb; }

/* ===========================
   SERVICES
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: #e5e7eb;
  border: 1.5px solid #e5e7eb;
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
}
.service-card:hover { background: var(--cream); }
.service-icon {
  font-size: 0.4rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 4px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.service-card p { font-size: 0.92rem; color: var(--mid-grey); margin: 0; }

/* ===========================
   WHY MEDIATION
   =========================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.why-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.why-text p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

.why-points { display: flex; flex-direction: column; gap: 2rem; }
.why-point {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.why-point:last-child { border-bottom: none; padding-bottom: 0; }
.why-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 48px;
}
.why-point strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 0.4rem; }
.why-point p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0; }

/* ===========================
   PROCESS
   =========================== */
.process-steps {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 60px;
}
.step-content h3 { margin-bottom: 0.6rem; color: var(--navy); }
.step-content p { color: var(--mid-grey); font-size: 0.95rem; }
.process-connector {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-left: 29px;
}

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-text h2 { margin-bottom: 1.25rem; }
.contact-text > p { color: var(--mid-grey); margin-bottom: 2rem; }

.contact-details { margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.contact-icon { color: var(--gold); font-size: 1rem; min-width: 24px; }
.contact-item a { color: var(--navy); }
.contact-item a:hover { color: var(--gold); }
.contact-note { font-size: 0.82rem; color: var(--mid-grey); font-style: italic; }

/* Form */
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.optional { color: var(--mid-grey); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark-grey);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,58,0.1);
}
.form-group textarea { resize: vertical; }
.form-note {
  font-size: 0.72rem;
  color: var(--mid-grey);
  margin-top: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 0 1.5rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-main {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  display: block;
}
.footer-brand .logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.82rem; max-width: 280px; line-height: 1.6; }

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Tablet ── */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-col { flex-direction: row; align-items: flex-start; gap: 2rem; }
  .about-image-frame { width: 240px; min-width: 240px; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { max-width: 100%; }
}

/* ── Mobile ── */
@media (max-width: 640px) {
  :root { --section-pad: 3rem; }

  /* Nav */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }

  /* Hero */
  .hero-content { padding-top: 120px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }

  /* About */
  .about-grid { gap: 2rem; }
  .about-image-col { flex-direction: column; gap: 1rem; }
  .about-image-frame { width: 100%; aspect-ratio: 4/3; }
  .about-image-frame::after { inset: 10px; }
  .about-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .stat-divider { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2rem 1.5rem; }

  /* Why */
  .why-point { gap: 1rem; }
  .why-num { font-size: 1.6rem; min-width: 36px; }

  /* Process */
  .process-step { gap: 1.5rem; }
  .step-num { font-size: 2.2rem; min-width: 44px; }
  .process-connector { margin-left: 21px; }

  /* Contact */
  .contact-grid { gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem 1.25rem; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-links { flex-direction: column; gap: 0.85rem; }
  .footer-bottom { flex-direction: column; gap: 0.35rem; }
}
