/* =============================================
   HOW2THINK CORPORATE V2 — STYLES
   Brand: iamcoachkemi.com aligned
   Palette: Deep navy, warm ivory, gold
   Fonts: Cormorant Garamond + Jost
   ============================================= */

:root {
  --navy:       #0d1b2a;
  --navy-mid:   #162235;
  --navy-light: #1e3048;
  --navy-faint: #2a3f56;
  --gold:       #b8952a;
  --gold-light: #d4af4a;
  --gold-pale:  #f0e0a8;
  --ivory:      #f8f4ee;
  --ivory-mid:  #ede5d8;
  --ivory-dark: #d4c9b8;
  --white:      #ffffff;
  --text-dim:   #8a9ab0;
  --text-faint: #4a5a6a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --nav-h:  72px;
  --max-w:  1200px;
  --narrow: 720px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184,149,42,0.12);
  transition: border-color 0.3s;
}
.nav.scrolled { border-bottom-color: rgba(184,149,42,0.25); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 48px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { height: 40px; width: 40px; border-radius: 50%; object-fit: cover; }
.logo-text {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--ivory); letter-spacing: 0.02em;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: var(--text-dim); text-decoration: none;
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ivory); }
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid rgba(184,149,42,0.4) !important;
  padding: 8px 20px; border-radius: 2px;
  font-weight: 500 !important;
  transition: all 0.25s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
}
.nav-mobile-btn {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-mobile-btn span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ivory); transition: 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 80px) 48px 80px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,149,42,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(30,48,72,0.8) 0%, transparent 50%),
    var(--navy);
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; gap: 48px;
}
.hero-content { max-width: 700px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.1s forwards;
}
.eyebrow-line {
  display: block; width: 40px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.01em; color: var(--ivory);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero-headline em {
  font-style: italic; color: var(--gold-light);
  font-weight: 400;
}
.hero-sub {
  font-size: 17px; line-height: 1.75;
  color: var(--text-dim); max-width: 520px;
  margin-bottom: 44px; font-weight: 300;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.hero-actions {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-body); font-size: 13px;
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  padding: 15px 32px; border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block; color: var(--text-dim);
  font-size: 14px; font-weight: 400;
  text-decoration: none; letter-spacing: 0.04em;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--ivory); border-color: var(--ivory-dark); }
.hero-proof {
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid rgba(184,149,42,0.12);
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}
.proof-item { display: flex; flex-direction: column; gap: 4px; }
.proof-num {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--ivory); letter-spacing: 0.01em;
}
.proof-label {
  font-size: 11px; color: var(--text-dim);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-family: var(--font-mono);
}
.proof-divider { width: 1px; height: 40px; background: rgba(184,149,42,0.15); }

/* ─── HERO DECORATION ─── */
.hero-decoration {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 50%; pointer-events: none; z-index: 0;
}
.deco-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(184,149,42,0.08);
}
.deco-ring-1 { width: 600px; height: 600px; top: 50%; right: -200px; transform: translateY(-50%); }
.deco-ring-2 { width: 400px; height: 400px; top: 50%; right: -50px; transform: translateY(-50%); border-color: rgba(184,149,42,0.12); }
.deco-ring-3 { width: 200px; height: 200px; top: 50%; right: 100px; transform: translateY(-50%); border-color: rgba(184,149,42,0.18); }
.deco-cross {
  position: absolute;
  width: 20px; height: 1px; background: rgba(184,149,42,0.3);
}
.deco-cross::after { content: ''; position: absolute; top: -10px; left: 10px; width: 1px; height: 20px; background: inherit; }
.deco-cross-1 { top: 30%; right: 200px; }
.deco-cross-2 { top: 65%; right: 350px; width: 12px; }
.deco-cross-2::after { top: -6px; left: 6px; height: 12px; }

/* ─── TRUSTED ─── */
.trusted {
  background: var(--navy-mid);
  border-top: 1px solid rgba(184,149,42,0.1);
  border-bottom: 1px solid rgba(184,149,42,0.1);
  padding: 28px 48px;
}
.trusted .container {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.trusted-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint); white-space: nowrap;
}
.trusted-logos {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.trusted-logo-text {
  font-family: var(--font-body); font-size: 13px;
  font-weight: 500; color: var(--text-dim);
  letter-spacing: 0.04em; white-space: nowrap;
  transition: color 0.2s;
}
.trusted-logo-text:hover { color: var(--ivory); }
.trusted-sep { color: var(--text-faint); }

/* ─── SECTIONS ─── */
.section { padding: 100px 48px; }
.section-alt {
  background: var(--navy-mid);
  border-top: 1px solid rgba(184,149,42,0.08);
  border-bottom: 1px solid rgba(184,149,42,0.08);
}
.section-form { background: var(--navy-light); }
.container { max-width: var(--max-w); margin: 0 auto; }
.container-narrow { max-width: var(--narrow); margin: 0 auto; }

.section-label {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.label-line { display: block; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.01em; color: var(--ivory);
  margin-bottom: 48px;
}
.section-headline.centered { text-align: center; }
.section-quote {
  font-family: var(--font-display);
  font-style: italic; font-size: 15px;
  color: var(--gold); margin-top: -32px;
  margin-bottom: 48px;
}

/* ─── TWO COL ─── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-bottom: 80px;
}
.two-col-left .section-headline { margin-bottom: 12px; }
.two-col-right p {
  color: var(--text-dim); font-size: 16px;
  line-height: 1.8; margin-bottom: 16px; font-weight: 300;
}
.btn-text-link {
  display: inline-block; color: var(--gold);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-decoration: none;
  border-bottom: 1px solid rgba(184,149,42,0.3);
  padding-bottom: 2px; margin-top: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-text-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ─── PILLARS ─── */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(184,149,42,0.1); }
.pillar {
  background: var(--navy); padding: 44px 36px;
  transition: background 0.25s;
}
.pillar:hover { background: var(--navy-mid); }
.pillar-num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; color: var(--gold);
  margin-bottom: 18px;
}
.pillar h3 {
  font-family: var(--font-display); font-size: 24px;
  font-weight: 600; color: var(--ivory);
  margin-bottom: 14px; line-height: 1.2;
}
.pillar p {
  font-size: 14.5px; color: var(--text-dim);
  line-height: 1.75; margin-bottom: 20px;
  font-weight: 300;
}
.pillar ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pillar ul li {
  font-size: 13px; color: var(--text-dim);
  padding-left: 20px; position: relative;
}
.pillar ul li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold); font-size: 11px;
}

/* ─── OUTCOMES ─── */
.outcomes-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.outcome-card {
  border: 1px solid rgba(184,149,42,0.12);
  padding: 44px 40px; border-radius: 2px;
  background: rgba(184,149,42,0.02);
  transition: border-color 0.25s, background 0.25s;
}
.outcome-card:hover {
  border-color: rgba(184,149,42,0.3);
  background: rgba(184,149,42,0.05);
}
.outcome-num {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; color: var(--gold);
  margin-bottom: 14px;
}
.outcome-card h4 {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 600; color: var(--ivory);
  margin-bottom: 12px;
}
.outcome-card p {
  font-size: 14.5px; color: var(--text-dim);
  line-height: 1.75; font-weight: 300;
}

/* ─── TESTIMONIAL ─── */
.testimonial-block {
  max-width: 800px; margin: 0 auto;
  text-align: center; position: relative;
  padding: 40px 0;
}
.testimonial-quote-mark {
  font-family: var(--font-display); font-size: 120px;
  color: rgba(184,149,42,0.15); line-height: 0.6;
  margin-bottom: 24px;
}
.testimonial-text {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400; color: var(--ivory);
  line-height: 1.6; margin-bottom: 32px;
}
.testimonial-attr { display: flex; flex-direction: column; gap: 4px; }
.testimonial-name {
  font-family: var(--font-body); font-size: 14px;
  font-weight: 600; color: var(--gold);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.testimonial-title {
  font-size: 13px; color: var(--text-dim);
}

/* ─── FORM ─── */
.form-intro {
  font-size: 15px; color: var(--text-dim);
  line-height: 1.75; margin-bottom: 48px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  font-weight: 300;
}
.enquiry-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1/-1; }
.form-group label {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim);
}
.req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,149,42,0.15);
  border-radius: 2px; color: var(--ivory);
  font-family: var(--font-body); font-size: 15px;
  font-weight: 300; padding: 14px 18px;
  transition: border-color 0.25s, background 0.25s;
  outline: none; -webkit-appearance: none; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8952a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(138,154,176,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(184,149,42,0.5);
  background: rgba(255,255,255,0.06);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #e05a5a; }
.form-consent { margin-top: 4px; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 14px;
  cursor: pointer; font-size: 13.5px; color: var(--text-dim);
  line-height: 1.6; font-weight: 300;
}
.checkbox-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-custom {
  flex-shrink: 0; width: 18px; height: 18px;
  border: 1px solid rgba(184,149,42,0.35);
  border-radius: 2px; background: rgba(255,255,255,0.03);
  margin-top: 2px; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--gold); border-color: var(--gold);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '✓'; color: var(--navy); font-size: 11px; font-weight: 700;
}
.link { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(184,149,42,0.3); }
.link:hover { border-color: var(--gold); }
.form-status {
  font-size: 13px; min-height: 20px;
  transition: color 0.2s;
}
.form-status.error { color: #e05a5a; }
.form-status.loading { color: var(--text-dim); }
.btn-submit {
  background: var(--gold); color: var(--navy);
  border: none; font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 2px;
  cursor: pointer; display: flex; align-items: center; gap: 14px;
  transition: background 0.25s, transform 0.2s;
  align-self: flex-start; margin-top: 8px;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-arrow { font-size: 16px; transition: transform 0.2s; }
.btn-submit:hover .btn-arrow { transform: translateX(4px); }

/* ─── SUCCESS ─── */
.form-success {
  display: none; text-align: center;
  padding: 80px 40px;
  animation: fadeUp 0.6s var(--ease) both;
}
.form-success.visible { display: block; }
.success-icon {
  width: 64px; height: 64px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--gold); margin: 0 auto 28px;
}
.form-success h3 {
  font-family: var(--font-display); font-size: 40px;
  font-weight: 600; color: var(--ivory); margin-bottom: 16px;
}
.form-success p {
  color: var(--text-dim); font-size: 16px;
  line-height: 1.75; margin-bottom: 24px;
  max-width: 480px; margin-left: auto; margin-right: auto;
  font-weight: 300;
}
.success-link-text { font-size: 15px !important; }
.success-link {
  display: inline-block; margin-top: 12px;
  color: var(--gold); text-decoration: none;
  font-family: var(--font-display); font-style: italic;
  font-size: 20px; font-weight: 600;
  border-bottom: 1px solid rgba(184,149,42,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.success-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(184,149,42,0.1);
  padding: 64px 48px 36px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto 48px;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr;
  gap: 80px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.footer-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: 16px; color: var(--text-dim); line-height: 1.5;
}
.footer-copy { font-size: 12px; color: var(--text-faint); line-height: 1.7; }
.footer-nav,
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-title {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.footer-nav a,
.footer-contact a {
  font-size: 13.5px; color: var(--text-dim);
  text-decoration: none; transition: color 0.2s;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--ivory); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .nav-inner { padding: 0 24px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-mobile-btn { display: flex; }
  .hero { padding: calc(var(--nav-h) + 60px) 24px 60px; }
  .hero-decoration { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 72px 24px; }
  .trusted { padding: 24px; }
  .footer { padding: 48px 24px 28px; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-proof { gap: 20px; }
  .proof-divider { display: none; }
}
