/* =========================================================
   COACHING LANDING PAGE
   Palette: warm off-white + deep reddish pink + charcoal
   ========================================================= */

:root {
  --bg: #f6f3ef;
  --bg-soft: #ece8e3;
  --surface: #fffdf9;
  --ink: #252321;
  --muted: #6f6964;
  --accent: #a73555;
  --accent-dark: #822640;
  --accent-soft: #ead4da;
  --line: #d9d3cd;
  --white: #fffdf9;
  --radius: 22px;
  --max: 1180px;
  --shadow: 0 18px 50px rgba(37, 35, 33, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.03em;
  font-size: 1.05rem;
}
.brand-mark {
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1;
}
.brand-dot { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .9rem;
  font-weight: 600;
}
.nav a:not(.nav-cta) { color: #514b47; }
.nav a:not(.nav-cta):hover { color: var(--accent); }
.nav-cta {
  background: var(--ink);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 999px;
  transition: .2s ease;
}
.nav-cta:hover { background: var(--accent); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  width: min(calc(100% - 48px), var(--max));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
  padding: 55px 0 85px;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
}
.hero h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.02;
}
.hero h1 {
  font-size: clamp(3.5rem, 6vw, 5.6rem);
  margin: 0;
  max-width: 760px;
}
em { color: var(--accent); font-style: normal; }
.hero-text {
  max-width: 600px;
  margin: 30px 0 32px;
  font-size: 1.13rem;
  color: var(--muted);
}
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: var(--white); }
.button-primary:hover { background: var(--accent-dark); }
.button-light { background: var(--white); color: var(--accent); }
.text-link { font-weight: 700; font-size: .9rem; }
.text-link:hover { color: var(--accent); }

.hero-proof {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .76rem;
}
.proof-line { width: 35px; height: 1px; background: var(--accent); }

.hero-visual {
  min-height: 530px;
  display: grid;
  place-items: center;
  position: relative;
}
.portrait-card {
  width: min(380px, 80%);
  aspect-ratio: .79;
  position: relative;
  transform: rotate(3deg);
  z-index: 2;
}
.portrait-placeholder, .about-photo {
  width: 100%;
  height: 100%;
  border-radius: 45% 45% 20px 20px;
  background:
   /* radial-gradient(circle at 55% 35%, #d8b8b9 0 16%, transparent 16.5%),
   radial-gradient(ellipse at 50% 70%, #c69a9e 0 30%, transparent 30.5%),*/
    linear-gradient(135deg, #d8d0ca, #e7d9d2);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.portrait-label {
  color: rgba(37,35,33,.55);
  font-size: .7rem;
  letter-spacing: .16em;
  font-weight: 700;
  text-align: center;
}
.orbit {
  position: absolute;
  border: 1px solid var(--accent-soft);
  border-radius: 50%;
}
.orbit-one { width: 510px; height: 510px; transform: rotate(-18deg); }
.orbit-two { width: 390px; height: 600px; transform: rotate(28deg); border-color: #d9d3cd; }
.floating-note {
  position: absolute;
  z-index: 3;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(37,35,33,.12);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.floating-note strong { color: var(--accent); margin-left: 6px; }
.note-one { top: 17%; left: 4%; }
.note-two { bottom: 18%; right: 1%; }

.statement {
  background: var(--ink);
  color: var(--white);
  padding: 115px 24px;
}
.statement-inner { max-width: 930px; margin: auto; text-align: center; }
.statement .eyebrow { color: #df9bad; }
.statement h2 { font-size: clamp(2.5rem, 5vw, 4.4rem); margin: 0 0 28px; }
.statement h2 span { color: #e4d8d5; }
.statement p:last-child {
  max-width: 680px;
  margin: auto;
  color: #bdb6b1;
  font-size: 1.05rem;
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 120px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 55px;
}
.section-heading h2 {
  font-size: clamp(2.6rem, 4.7vw, 4.2rem);
  margin: 0;
}
.section-intro {
  max-width: 430px;
  color: var(--muted);
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 35px;
  min-height: 440px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card.featured {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.service-number { font-size: .7rem; color: var(--muted); font-weight: 700; }
.featured .service-number { color: #efbdc9; }
.service-icon {
  margin: 55px 0 20px;
  color: var(--accent);
  font-size: 1.4rem;
}
.featured .service-icon { color: #fff; }
.service-card h3 { font-size: 1.5rem; margin: 0 0 12px; letter-spacing: -.04em; }
.service-card > p { color: var(--muted); font-size: .92rem; }
.featured > p { color: #f0dbe0; }
.service-card ul { padding: 10px 0 0 18px; margin: 0; color: var(--muted); font-size: .82rem; }
.featured ul { color: #f4dfe4; }
.service-card li { margin: 7px 0; }

.audience { padding-top: 30px; }
.audience-panel {
  background: var(--bg-soft);
  border-radius: 30px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.audience h2 { font-size: clamp(2.4rem, 4vw, 3.7rem); margin: 0; }
.check-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.check-list span { color: var(--accent); font-weight: 700; font-size: .75rem; }
.check-list p { margin: 0; font-size: .92rem; color: #5d5752; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.approach-item {
  padding: 32px 35px 15px 0;
  margin-right: 35px;
  border-right: 1px solid var(--line);
}
.approach-item:last-child { border: 0; }
.approach-item > span { color: var(--accent); font-weight: 700; font-size: .75rem; }
.approach-item h3 { margin: 45px 0 10px; font-size: 1.25rem; }
.approach-item p { color: var(--muted); font-size: .9rem; }

.about {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  align-items: center;
  padding-top: 40px;
}
.about-image { max-width: 410px; }
.about-photo { aspect-ratio: .82; }
.about-copy h2 { font-size: clamp(2.5rem, 4.4vw, 4rem); margin: 0 0 30px; }
.about-copy > p { max-width: 650px; color: var(--muted); }
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.credentials span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: .7rem;
  font-weight: 600;
  color: #59534e;
}

.offer { padding-top: 20px; }
.offer-box {
  background: var(--accent);
  color: var(--white);
  border-radius: 30px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.offer-box .eyebrow { color: #f1b5c4; }
.offer-box h2 { font-size: clamp(2.3rem, 4vw, 3.5rem); margin: 0 0 18px; max-width: 690px; }
.offer-box p { color: #f1dce1; max-width: 620px; }
.offer-action { text-align: right; min-width: 260px; }
.price { display: block; font-size: 1.65rem; font-weight: 700; margin-bottom: 20px; }
.price small { font-size: .75rem; font-weight: 500; opacity: .75; }

.faq-list { max-width: 820px; margin-left: auto; }
details { border-top: 1px solid var(--line); padding: 22px 0; }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; font-weight: 700; font-size: 1.02rem; display: flex; justify-content: space-between; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--accent); font-size: 1.2rem; }
details[open] summary::after { content: "−"; }
details p { max-width: 700px; color: var(--muted); font-size: .9rem; padding: 12px 0 0; }

.contact {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 100px;
  align-items: start;
  padding-bottom: 130px;
}
.contact-copy h2 { font-size: clamp(3rem, 5vw, 4.6rem); margin: 0 0 25px; }
.contact-copy > p { max-width: 530px; color: var(--muted); }
.contact-links { margin-top: 35px; display: grid; gap: 8px; }
.contact-links a { color: var(--accent); font-weight: 700; }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: 0 10px 35px rgba(37,35,33,.04);
}
.contact-form label { display: block; margin-bottom: 18px; font-size: .78rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  display: block;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--bg);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.contact-form .button { width: 100%; margin-top: 5px; }
.form-note { margin: 14px 0 0; text-align: center; font-size: .7rem; color: var(--muted); }

.footer {
  border-top: 1px solid var(--line);
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  padding: 28px 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
  color: var(--muted);
}
.footer a:last-child { color: var(--accent); font-weight: 700; }

.toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 120px);
  background: var(--ink);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 999px;
  font-size: .82rem;
  opacity: 0;
  transition: .35s ease;
  z-index: 20;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav { gap: 17px; }
  .hero { grid-template-columns: 1fr; gap: 20px; padding-top: 35px; }
  .hero-visual { min-height: 470px; }
  .service-grid, .approach-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .approach-item { border-right: 0; border-bottom: 1px solid var(--line); margin-right: 0; padding-right: 0; }
  .audience-panel, .about, .contact { grid-template-columns: 1fr; gap: 55px; }
  .about-image { max-width: 350px; }
  .offer-box { flex-direction: column; align-items: flex-start; }
  .offer-action { text-align: left; }
}

@media (max-width: 650px) {
  .site-header, .hero, .section, .footer { width: min(calc(100% - 30px), var(--max)); }
  .site-header { height: 74px; }
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 68px;
    right: 0;
    width: 220px;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero { min-height: auto; padding: 60px 0 80px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  .hero-visual { min-height: 390px; }
  .portrait-card { width: 260px; }
  .orbit-one { width: 340px; height: 340px; }
  .orbit-two { width: 280px; height: 440px; }
  .statement { padding: 85px 18px; }
  .section { padding: 85px 0; }
  .section-heading { display: block; }
  .section-intro { margin-top: 25px; }
  .audience-panel, .offer-box, .contact-form { padding: 30px; }
  .footer { flex-direction: column; gap: 15px; align-items: flex-start; }
}
