/* ===================================================================
   Let's Attune — shared design system
   Palette sampled from assets/Lets attune pallet.jpeg
   Type: Fraunces (display/brand) + Poppins (body/UI)
   =================================================================== */

:root {
  /* brand palette */
  --navy:   #1d3557;
  --steel:  #457b9d;
  --coral:  #e63946;
  --green:  #0e4f47;
  --sage:   #abc9c9;

  /* derived surfaces */
  --bg:        #f3f7f6;   /* light sage-tinted base */
  --bg-sage:   #dbe8e6;   /* soft sage band */
  --white:     #ffffff;
  --ink:       #1d3557;   /* body text = navy */
  --muted:     #5a6b7a;   /* secondary text */
  --line:      #d8e3e1;   /* hairline borders */

  --maxw: 1080px;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --radius: 6px;
  --shadow-sm: 0 4px 18px rgba(29,53,87,0.06);
  --shadow-md: 0 14px 36px rgba(29,53,87,0.12);

  --ff-serif: 'Fraunces', Georgia, serif;
  --ff-sans:  'Poppins', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPE SCALE ─────────────────────────────────────────────
   Crisp brief: elegance from serif CONTRAST, not huge sizes. */
h1, h2, h3, .serif { font-family: var(--ff-serif); font-weight: 600; color: var(--navy); letter-spacing: -0.01em; line-height: 1.15; font-optical-sizing: auto; }

h1 { font-size: clamp(2rem, 4.5vw, 2.6rem); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2rem); }
h3 { font-size: 1.12rem; font-family: var(--ff-sans); font-weight: 600; }

p { font-size: 0.98rem; color: var(--muted); }
strong { color: var(--navy); font-weight: 600; }

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

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.7rem;
}

.rule { width: 44px; height: 3px; background: var(--coral); border-radius: 2px; margin: 1rem 0 1.6rem; }
.center .rule { margin-left: auto; margin-right: auto; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.center { text-align: center; }
.lead { font-size: 1.05rem; max-width: 620px; }
.center .lead { margin-left: auto; margin-right: auto; }

.band-sage  { background: var(--bg-sage); }
.band-white { background: var(--white); }
.band-navy  { background: var(--navy); }
.band-navy h1, .band-navy h2, .band-navy h3 { color: #fff; }
.band-navy p { color: rgba(255,255,255,0.78); }
.band-navy .eyebrow { color: var(--sage); }

/* ── ANNOUNCEMENT BAR ─────────────────────────────────────── */
.announce {
  background: #1a7a6e;
  color: #eafaf6;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 0.85rem 1rem;
  position: relative;
  z-index: 60;
}
.announce strong { color: #fff; font-weight: 600; }
.announce a { color: #fff; font-weight: 700; padding: 3px 14px; border: 1.5px solid rgba(255,255,255,0.8); border-radius: 20px; text-decoration: none; animation: flashBtn 1.4s ease-in-out infinite; }
.announce .pulse { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); margin-right: 0.5rem; vertical-align: middle; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.6);} 50% { box-shadow: 0 0 0 6px rgba(230,57,70,0);} }
@keyframes flashBtn { 0%,100% { background: rgba(255,255,255,0.15); color: #fff; } 50% { background: #fff; color: #0f6e56; } }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243,247,246,0.97);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; padding-bottom: 1rem; transition: padding .3s; }
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.site-header.scrolled .wrap { padding-top: 0.55rem; padding-bottom: 0.55rem; }

.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand img { width: 42px; transition: width .3s; }
.site-header.scrolled .brand img { width: 34px; }
.brand .name { font-family: var(--ff-serif); font-weight: 600; font-size: 1.15rem; color: var(--navy); }

.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a.link { font-size: 0.88rem; letter-spacing: 0.02em; color: var(--navy); position: relative; }
.nav a.link::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--coral); transition: width .25s; }
.nav a.link:hover::after, .nav a.link.active::after { width: 100%; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--ff-sans); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.03em; padding: 0.7rem 1.4rem; border-radius: var(--radius); cursor: pointer; border: 1.5px solid transparent; transition: transform .2s, background .25s, color .25s, box-shadow .25s; }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: #c92f3c; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230,57,70,0.3); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.band-navy .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.band-navy .btn-ghost:hover { background: #fff; color: var(--navy); }
.on-dark .btn-ghost { color:#fff; border-color: rgba(255,255,255,0.6); }
.on-dark .btn-ghost:hover { background:#fff; color: var(--navy); }

/* hamburger */
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--navy); transition: .3s; }

/* ── HERO (forest, atmospheric) ───────────────────────────── */
.hero { position: relative; min-height: 60vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0;
  background: url('assets/the-place-within.jpeg') center/cover no-repeat;
  filter: blur(4px) saturate(1.1); transform: scale(1.08); }
.hero__tint { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(150deg, rgba(29,53,87,0.92) 0%, rgba(14,79,71,0.78) 55%, rgba(29,53,87,0.85) 100%); }
.hero__grain { position: absolute; inset: 0; z-index: 2; opacity: 0.06; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero .wrap { position: relative; z-index: 3; padding-top: 2.6rem; padding-bottom: 2.6rem; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .accent { color: var(--coral); font-style: italic; }
.hero__quote { font-family: var(--ff-serif); font-style: italic; font-size: 1.05rem; color: var(--sage); margin: 0.9rem 0 0.4rem; }
.hero__sub { max-width: 48ch; margin-bottom: 1.6rem; }
.hero__sub p { color: #fff; font-weight: 400; text-shadow: 0 1px 12px rgba(0,0,0,0.6); }
.hero__sub p + p { margin-top: 0.7rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.cursor { display: inline-block; width: 3px; height: 1em; background: var(--coral); margin-left: 3px; vertical-align: -0.12em; animation: blink .8s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ── PAIN-POINT CHIPS ("Does this sound familiar?") ───────── */
.familiar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin-top: 2.2rem; }
.familiar { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--coral); border-radius: var(--radius); padding: 1.1rem 1.3rem; font-style: italic; color: var(--navy); box-shadow: var(--shadow-sm); }

/* ── STEPS (Understand → Explore → Align → Integrate) ─────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.2rem; margin-top: 2.4rem; counter-reset: step; }
.step { position: relative; background: var(--white); border-radius: var(--radius); padding: 1.8rem 1.4rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step::before { counter-increment: step; content: '0' counter(step); font-family: var(--ff-serif); font-size: 2.2rem; color: var(--sage); line-height: 1; display: block; margin-bottom: 0.6rem; }
.step h3 { color: var(--navy); margin-bottom: 0.35rem; }

/* ── SERVICE CARDS ────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.3rem; margin-top: 2.4rem; }
.card { background: var(--white); border-radius: var(--radius); padding: 1.8rem 1.5rem; box-shadow: var(--shadow-sm); border-top: 3px solid var(--steel); transition: transform .3s, box-shadow .3s; }
.card:nth-child(2) { border-top-color: var(--coral); }
.card:nth-child(3) { border-top-color: var(--green); }
.card:nth-child(4) { border-top-color: var(--navy); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .ic { font-size: 1.5rem; margin-bottom: 0.7rem; display: block; }
.card h3 { color: var(--navy); margin-bottom: 0.4rem; }
.card p { font-size: 0.9rem; }

/* ── WHO WE WORK WITH (pills) ─────────────────────────────── */
.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.center .pills { justify-content: center; }
.pill { background: var(--white); border: 1px solid var(--line); color: var(--navy); font-size: 0.84rem; padding: 0.5rem 1.05rem; border-radius: 30px; transition: background .2s, color .2s, transform .2s; }
.pill:hover { background: var(--steel); color: #fff; transform: translateY(-2px); }

/* ── COACH TEASER ─────────────────────────────────────────── */
.teaser { display: grid; grid-template-columns: 200px 1fr; gap: 2.4rem; align-items: center; }
.teaser__photo { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; object-position: center 18%; border: 4px solid var(--coral); box-shadow: var(--shadow-md); }

/* ── TESTIMONIALS (static 2-up) ───────────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 2.4rem; }
.quote { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 2rem 1.8rem; }
.quote p { color: #eaf1f0; font-style: italic; line-height: 1.85; }
.quote::before { content: '\201C'; font-family: var(--ff-serif); font-size: 3rem; color: var(--coral); line-height: 0.2; display: block; height: 1.4rem; }
.quote cite { display: block; margin-top: 1rem; font-style: normal; font-size: 0.84rem; color: var(--sage); letter-spacing: 0.04em; }

/* ── WHY (manifesto) ──────────────────────────────────────── */
.manifesto p { font-family: var(--ff-serif); font-size: clamp(1.15rem, 2.4vw, 1.45rem); font-style: italic; line-height: 1.7; color: var(--navy); max-width: 720px; }
.center .manifesto p { margin-left: auto; margin-right: auto; }
.manifesto p + p { margin-top: 1.2rem; }

/* ── CTA STRIP ────────────────────────────────────────────── */
.cta-strip { text-align: center; }
.cta-strip .btnrow { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.8rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer .name { font-family: var(--ff-serif); color: #fff; font-size: 1.3rem; margin-bottom: 0.5rem; }
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: var(--coral); }
.site-footer h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.8rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-qr { width: 96px; border-radius: 6px; margin-top: 0.4rem; background:#fff; padding:4px; }
.footer-motto { text-align: center; letter-spacing: 0.28em; font-size: 0.72rem; color: var(--sage); margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.12); }
.footer-copy { text-align: center; font-size: 0.76rem; color: rgba(255,255,255,0.5); margin-top: 0.8rem; }

/* ── COACH PAGE (bio fits one screen) ─────────────────────── */
.coach-hero { min-height: calc(100svh - 64px); display: flex; align-items: center; }
.coach-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3.4rem); align-items: center; width: 100%; }
.coach-photo { width: 100%; max-width: 360px; aspect-ratio: 1/1.05; object-fit: cover; object-position: center 12%; border-radius: 10px; box-shadow: var(--shadow-md); border: 4px solid var(--white); justify-self: center; }
.coach-bio h1 { margin-bottom: 0.2rem; }
.coach-bio .role { font-size: 0.84rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral); font-weight: 500; }
.coach-bio p { font-size: 0.95rem; margin-top: 0.85rem; }
.coach-bio .lead { font-family: var(--ff-serif); font-style: italic; font-size: 1.15rem; color: var(--navy); margin-top: 0.9rem; }
.cred-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.cred { background: var(--navy); color: #fff; font-size: 0.74rem; letter-spacing: 0.04em; padding: 0.32rem 0.85rem; border-radius: 20px; }
.coach-bio .btnrow { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.tagset { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.6rem; }
.tagset .pill { background: var(--white); }
.bloglinks { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }

@media (max-width: 820px) {
  .coach-hero { min-height: 0; padding: 2.6rem 0; }
  .coach-grid { grid-template-columns: 1fr; text-align: center; }
  .coach-photo { max-width: 240px; }
  .cred-row, .coach-bio .btnrow, .tagset { justify-content: center; }
}

/* ── WORKSHOPS PAGE ───────────────────────────────────────── */
/* Blurred cover photo (faces not identifiable) with workshop details overlaid */
.wk-cover { position: relative; min-height: clamp(300px, 50vh, 440px); display: flex; align-items: center; overflow: hidden; color: #fff; }
.wk-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 36%; filter: blur(4px) brightness(0.85) saturate(1.05); transform: scale(1.06); }
.wk-cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(29,53,87,0.64) 0%, rgba(14,79,71,0.5) 55%, rgba(29,53,87,0.62) 100%); }
.wk-cover .cover-inner { position: relative; z-index: 2; width: 100%; text-align: center; padding: clamp(2.4rem, 6vw, 4rem) 0; text-shadow: 0 2px 16px rgba(0,0,0,0.55); }
.wk-cover .kicker { font-family: var(--ff-serif); font-style: italic; font-size: clamp(1rem, 2.6vw, 1.35rem); color: var(--sage); margin-bottom: 0.6rem; }
.wk-cover h1 { color: #fff; max-width: 18ch; margin: 0 auto; text-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.wk-tagline { font-family: var(--ff-serif); font-style: italic; font-size: clamp(1.1rem, 2.6vw, 1.5rem); color: var(--coral); margin-top: 0.5rem; }
.wk-cover .wk-tagline { color: #ffd2d6; }
.wk-confnote { font-size: 0.82rem; color: rgba(255,255,255,0.78); margin-top: 1rem; letter-spacing: 0.02em; }
.wk-facts { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.center .wk-facts { justify-content: center; }
.fact { display: inline-flex; align-items: center; gap: 0.45rem; background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 0.45rem 1rem; font-size: 0.85rem; color: var(--navy); box-shadow: var(--shadow-sm); }
.fact b { font-weight: 600; }
.band-navy .fact, .wk-cover .fact { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #fff; }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2.4rem; }
.compare .col { background: var(--white); border-radius: var(--radius); padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm); }
.compare .col.now { border-top: 3px solid var(--steel); }
.compare .col.after { border-top: 3px solid var(--coral); }
.compare h3 { margin-bottom: 1rem; }
.compare ul { list-style: none; }
.compare li { position: relative; padding-left: 1.6rem; margin-bottom: 0.8rem; font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.compare .now li::before { content: '·'; position: absolute; left: 0.3rem; top: -0.1rem; color: var(--steel); font-size: 1.4rem; }
.compare .after li::before { content: '✓'; position: absolute; left: 0; color: var(--coral); font-weight: 700; }

@media (max-width: 680px) { .compare { grid-template-columns: 1fr; } }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 820px) {
  .teaser { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .menu-toggle { display: flex; }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(78vw, 300px); flex-direction: column; align-items: flex-start; gap: 1.4rem; background: var(--bg); padding: 5rem 2rem; box-shadow: -10px 0 40px rgba(0,0,0,0.12); transform: translateX(100%); transition: transform .3s; }
  .nav.open { transform: none; }
  .nav .btn { width: 100%; justify-content: center; }
  .hero { min-height: 0; padding: 1rem 0; }
  .hero .wrap { padding-top: 2.2rem; padding-bottom: 2.6rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-qr { margin-left: auto; margin-right: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
