/* =====================================================================
   Pickd Coaching — style.css
   Content edits live in index.html; you should rarely need this file.
   Brand palette (sampled from the original PDF):
   ===================================================================== */
:root {
  color-scheme: light;      /* fixed light design — stops browser auto-darkening */
  --cream:       #f2ebe3;   /* page background            */
  --cream-light: #ece0d1;   /* raised panels (latte)      */
  --cream-deep:  #ddd0bd;   /* subtle borders / hairlines */
  --ink:         #1c1a17;   /* near-black text            */
  --ink-soft:    #3d3a35;   /* body text                  */
  --gold:        #96702f;   /* brand accent               */
  --gold-soft:   #b69a6d;   /* lighter accent lines       */

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Poppins", "Helvetica Neue", Arial, sans-serif;
  --logo:  "Baloo 2", var(--sans);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
.raw-file-notice { display: none; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink-soft);
  background:
    radial-gradient(ellipse 90rem 40rem at 50% -8rem, #f7ece4 0%, rgba(247, 236, 228, 0) 60%),
    var(--cream);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ---- navigation ---------------------------------------------------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 66rem;
  margin: 0 auto;
  padding: 1.4rem 2rem 0;
}
.nav-logo {
  font-family: var(--logo);
  font-weight: 800;
  font-size: 4.4rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.dot { color: var(--gold); }
.nav nav { display: flex; align-items: center; gap: 1.7rem; }
.nav nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.nav nav a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 2rem;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--cream-light) !important; }

/* ---- shared section scaffolding ------------------------------------ */
.section {
  max-width: 66rem;
  margin: 0 auto;
  padding: 5.5rem 2rem 2rem;
}

/* the gold bar + eyebrow + big serif heading that opens every section */
.frame {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.25rem 2.6rem;
  margin-bottom: 2.8rem;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  line-height: 1.4;
  color: var(--ink);
  margin-top: 1.6rem;
}

.gold-rule { width: 4.2rem; border-top: 1.5px solid var(--gold); margin: 1.4rem 0; }

/* ---- hero / services ------------------------------------------------ */
.feature-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-deep);
  padding: 2.2rem 2.6rem 2.4rem;
  margin-left: 2.6rem;
}
.feature-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.feature-card p { max-width: 28rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: 2.6rem;
  border-top: 1px solid var(--cream-deep);
}
.service {
  padding: 1.9rem 1.6rem 2.1rem;
  border-right: 1px solid var(--cream-deep);
}
.service:last-child { border-right: none; }
.service h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.service p { font-size: 0.86rem; line-height: 1.7; }

/* ---- meet your coach ------------------------------------------------ */
.coach-layout {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 4rem;
  margin-left: 2.6rem;
}
.coach-photo {
  width: 13.5rem;
  height: 13.5rem;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
  display: block;
}
.coach-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 1.8rem;
}
.coach-role {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.7rem;
}
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.35;
  color: var(--ink);
}
.coach-story { max-width: 34rem; }
.coach-story p + p { margin-top: 1.2rem; }

.logo-strip { margin-top: 2.4rem; border-top: 1px solid var(--cream-deep); padding-top: 1.6rem; }
.logo-strip-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.logo-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2.2rem;
}
.logo-row span {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  opacity: 0.75;
}
.logo-row img {
  max-height: 2rem;
  max-width: 8.5rem;
  width: auto;
  filter: grayscale(1);
  opacity: 0.75;
}
.logo-row img[src*="lse"] { max-height: 2.9rem; max-width: 10rem; }

/* ---- how it works --------------------------------------------------- */
.steps { list-style: none; margin-left: 2.6rem; border-top: 1px solid var(--cream-deep); }
.step {
  display: grid;
  grid-template-columns: 5rem 1fr 9rem;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--cream-deep);
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--gold);
}
.step-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.step-body p { max-width: 30rem; font-size: 0.92rem; }
.step-icon {
  max-width: 5.5rem;
  max-height: 6rem;
  width: auto;
  height: auto;
  justify-self: center;
  margin-right: 2cm;
}
.step-icon[src*="step-02"] {
  max-width: 9rem;
  max-height: 9.5rem;
}

/* ---- testimonials --------------------------------------------------- */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-left: 2.6rem;
}
.quote {
  background: var(--cream-light);
  border: 1px solid var(--cream-deep);
  padding: 2rem 2.2rem;
}
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
}
.quote blockquote::before { content: "\201C"; color: var(--gold); }
.quote blockquote::after  { content: "\201D"; color: var(--gold); }
.quote figcaption {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- enquiry form --------------------------------------------------- */
.enquiry-form { margin-left: 2.6rem; max-width: 44rem; }
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 1.6rem;
}
.field-grid .full { grid-column: 1 / -1; }
.field-grid label[hidden] { display: none; }
.field-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.field-grid input,
.field-grid select,
.field-grid textarea {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream-light);
  border: 1px solid var(--cream-deep);
  padding: 0.75rem 0.9rem;
  border-radius: 0;
}
.field-grid textarea { resize: vertical; }
.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.submit-btn {
  margin-top: 1.8rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-light);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.9rem 2.4rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.submit-btn:hover { background: var(--gold); border-color: var(--gold); }
.submit-btn:disabled { opacity: 0.6; cursor: default; }
.form-error {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #a33d2a;
}
.form-success { margin-left: 2.6rem; max-width: 44rem; }
@media (max-width: 760px) {
  .form-success { margin-left: 0; }
}

/* ---- footer --------------------------------------------------------- */
.footer { padding-bottom: 5rem; }
.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--cream-deep);
  padding-top: 3.2rem;
  margin-top: 2rem;
}
.logo {
  font-family: var(--logo);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}
.footer-cta { text-align: right; }
.footer-social { text-align: center; margin-top: calc(2.6rem - 5cm); }
.social-link { color: var(--gold); display: inline-block; }
.social-link svg { width: 1.7rem; height: 1.7rem; display: block; }
.social-link:hover { color: var(--ink); }
.cta-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.55rem;
  color: var(--ink);
}
.cta-email {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

/* ---- small screens -------------------------------------------------- */
.desktop-only { display: inline; }
@media (max-width: 760px) {
  .desktop-only { display: none; }
  .nav { flex-direction: column; gap: 1rem; }
  .nav nav { flex-wrap: wrap; justify-content: center; gap: 1rem 1.3rem; }
  .section { padding: 3.6rem 1.4rem 1.4rem; }
  .frame { padding-left: 1.4rem; }
  .feature-card, .service-grid, .coach-layout, .steps, .quote-grid, .enquiry-form { margin-left: 0; }
  .field-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 1.7rem 1.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service { border-right: none; border-bottom: 1px solid var(--cream-deep); }
  .service:last-child { border-bottom: none; }
  .coach-layout { grid-template-columns: 1fr; gap: 2.4rem; }
  .step { grid-template-columns: 3rem 1fr; }
  .step-icon { display: none; }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-cta { text-align: left; }
}
