/* ============================================================
   Luca Casablanca Coaching — shared stylesheet — VARIANT A (Navy-Plum gradient)
   Palette from the kintsugi brand:
   navy #0A1F3D · gold #F5B301 · mist #E9EEF6
   ============================================================ */

:root {
  --navy: #0A1F3D;
  --navy-soft: #14294a;
  --gold: #F5B301;
  --gold-deep: #d99a00;
  --mist: #E9EEF6;
  --paper: #FBFBFD;
  --ink: #16233a;
  --muted: #5b6675;
  --line: #e4e8ef;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(10, 31, 61, 0.10);
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Google Sans Flex', Georgia, 'Times New Roman', serif;
  line-height: 1.12;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin: 0 0 .5em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin: 0 0 .6em; }
h3 { font-size: 1.28rem; margin: 0 0 .4em; }

p { margin: 0 0 1.1em; }
a { color: var(--navy); text-decoration-color: var(--gold); text-underline-offset: 3px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; }

.eyebrow {
  font-family: 'Google Sans Flex', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin: 0 0 1em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(245,179,1,.35); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: linear-gradient(140deg, #0A1F3D 0%, #2A2247 55%, #5E2E63 100%); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,251,253,.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand-name {
  font-family: 'Google Sans Flex', serif; font-weight: 600; font-size: 1.12rem; color: var(--navy);
  line-height: 1;
}
.brand-name small { display: block; font-family: 'Google Sans Flex', sans-serif; font-weight: 600;
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.96rem; }
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a.active { color: var(--gold-deep); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--navy); cursor: pointer; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 72px; background: linear-gradient(180deg, #f1eef6 0%, var(--paper) 70%); }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-lead { font-size: 1.22rem; color: var(--muted); max-width: 40ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-card {
  background: linear-gradient(140deg, #0A1F3D 0%, #2A2247 55%, #5E2E63 100%); color: #fff; border-radius: 24px; padding: 40px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero-card h3 { color: #fff; }
.hero-card .mark { position: absolute; right: -30px; bottom: -30px; width: 190px; opacity: .13; }
.hero-card ul { list-style: none; padding: 0; margin: 18px 0 0; }
.hero-card li { padding: 9px 0 9px 30px; position: relative; color: #dfe6f2; }
.hero-card li::before { content: "✳"; position: absolute; left: 0; color: var(--gold); font-size: 1.05rem; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-tint { background: var(--mist); }
.section-navy { background: linear-gradient(140deg, #0A1F3D 0%, #2A2247 55%, #5E2E63 100%); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: #cdd6e6; }
.center { text-align: center; }
.center .eyebrow { }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: transform .18s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .num { font-family: 'Google Sans Flex', serif; font-size: 2rem; color: var(--gold-deep); display:block; margin-bottom: 8px; }
.card h3 { margin-bottom: .3em; }
.card p { color: var(--muted); margin-bottom: 0; font-size: 0.98rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; display:flex; flex-direction:column;
}
.price.featured { border: 2px solid var(--gold); box-shadow: var(--shadow); position: relative; }
.price.featured::after {
  content:"Most popular first step"; position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background: var(--gold); color: var(--navy); font-size:.7rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; padding:5px 14px; border-radius:999px; white-space:nowrap;
}
.price h3 { margin-bottom:.2em; }
.price .amount { font-family:'Google Sans Flex',serif; font-size:2.2rem; color:var(--navy); margin:.2em 0; }
.price .amount small { font-size:.9rem; color:var(--muted); font-family:'Google Sans Flex',sans-serif; }
.price ul { list-style:none; padding:0; margin:16px 0 26px; flex:1; }
.price li { padding:8px 0 8px 26px; position:relative; color:var(--ink); font-size:.96rem; border-bottom:1px solid var(--line); }
.price li:last-child { border-bottom:0; }
.price li::before { content:"✳"; position:absolute; left:0; color:var(--gold-deep); }

/* ---------- Prose (blog) ---------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose p, .prose li { font-size: 1.08rem; color: #26324a; }
.prose h2 { margin-top: 1.6em; }
.prose blockquote {
  border-left: 4px solid var(--gold); margin: 1.6em 0; padding: 6px 0 6px 24px;
  font-family: 'Google Sans Flex', serif; font-size: 1.3rem; color: var(--navy); font-style: italic;
}
.prose ul { padding-left: 1.2em; }

/* ---------- Blog list ---------- */
.post-list { display: grid; gap: 22px; }
.post-item {
  display:grid; grid-template-columns: 150px 1fr; gap: 26px; align-items:center;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 24px 28px;
  text-decoration:none; transition: transform .18s ease, box-shadow .2s ease;
}
.post-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post-item .date { color: var(--gold-deep); font-weight:600; font-size:.85rem; letter-spacing:.04em; }
.post-item h3 { margin:.15em 0 .3em; }
.post-item p { color: var(--muted); margin:0; font-size:.96rem; }

/* ---------- Callout / newsletter ---------- */
.callout {
  background: linear-gradient(135deg, #0A1F3D, #6a3570);
  color:#fff; border-radius: 24px; padding: 48px; text-align:center;
}
.callout h2 { color:#fff; }
.callout p { color:#cdd6e6; max-width: 52ch; margin: 0 auto 24px; }
.newsletter-form { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top: 8px; }
.newsletter-form input {
  padding: 14px 18px; border-radius: 999px; border: 0; min-width: 280px; font-size: 1rem;
}

/* ---------- Contact / embed ---------- */
.embed-frame {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden;
  min-height: 640px;
}
.embed-note {
  background: #fff7e0; border:1px dashed var(--gold-deep); border-radius: 12px;
  padding: 16px 20px; font-size:.92rem; color:#6b5600; margin-bottom: 22px;
}

/* ---------- Stat band ---------- */
.stats { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; text-align:center; }
.stat .big { font-family:'Google Sans Flex',serif; font-size:2.6rem; color:var(--gold); line-height:1; }
.stat .lbl { color:#cdd6e6; font-size:.95rem; margin-top:6px; }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(140deg, #0A1F3D 0%, #3a2450 100%); color:#c3cee0; padding: 56px 0 34px; margin-top: 0; }
.site-footer a { color:#fff; text-decoration:none; }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 34px; }
.footer-grid h4 { color:#fff; font-family:'Google Sans Flex',sans-serif; font-size:.8rem; letter-spacing:.14em; text-transform:uppercase; }
.footer-grid ul { list-style:none; padding:0; margin:0; }
.footer-grid li { padding: 5px 0; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); padding-top: 22px; font-size:.85rem; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }

/* ---------- Utility ---------- */
.mt0{margin-top:0}.mb0{margin-bottom:0}
.disclaimer { font-size:.82rem; color:var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 34px; }
  .grid-3, .price-grid, .stats, .footer-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .post-item { grid-template-columns: 1fr; gap: 8px; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; background: var(--paper); padding: 18px 28px;
    border-bottom: 1px solid var(--line); gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* Fix: centered heroes must not inherit the two-column homepage hero grid */
.hero .wrap.narrow { display: block; }


/* ---------- Photos: hero portrait + meet band ---------- */
.hero-photo { position: relative; }
.hero-photo img { width: 100%; height: 520px; object-fit: cover; object-position: center 20%;
  border-radius: 24px; box-shadow: var(--shadow); display: block; }
.hero-photo-cap { margin: 14px 4px 0; text-align: center; font-size: .85rem; color: var(--muted); }
.meet { display: grid; grid-template-columns: 320px 1fr; gap: 42px; align-items: center; }
.meet-photo img { width: 100%; height: auto; border-radius: 20px; box-shadow: var(--shadow); display: block; }
.cred-line { font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 600;
  color: var(--gold-deep); margin-bottom: 14px; }
.meet-body p:last-child { font-size: 1.12rem; color: var(--ink); margin-bottom: 0; }
@media (max-width: 860px) { .meet { grid-template-columns: 1fr; gap: 24px; } .hero-photo img { height: 440px; } }

/* Fix: light teaser card needs dark list text (was inheriting the dark-card light color) */
.hero-card--light li { color: var(--ink); }
.hero-card--light h3 { color: var(--navy); }
