/* =============================================
   STILL RUNNING ROOMS — stylesheet
   Palette: stone bg, deep navy ink, cobalt blue accent
   Type: Barlow Condensed (display) + Barlow (body)
   ============================================= */

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

:root {
  --bg:      #EDE8DF;
  --ink:     #0F2D70;
  --blue:    #1B4FBF;
  --mid:     #4a5568;
  --light:   #d4cfc5;
  --white:   #ffffff;

  --ff-display: 'Barlow Condensed', Georgia, sans-serif;
  --ff-body:    'Barlow', system-ui, sans-serif;

  --max-w: 960px;
  --section-pad: 5rem 2rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- HEADER / LOGO ---- */
.site-header {
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-logo {
  width: 420px;
  height: auto;
  display: block;
  filter: contrast(1.15) saturate(1.2);
}

/* ---- HERO ---- */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 2rem;
}

.hero-sub {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--mid);
  letter-spacing: 0.02em;
}

/* ---- SALONNIÈRE + BRIDGE ---- */
.salonniere-bridge {
  padding: var(--section-pad);
  border-top: 1px solid var(--light);
}

.salonniere-bridge-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.salonniere-col {
  text-align: center;
}

.salonniere-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.salonniere-quote {
  margin-top: 1.5rem;
  font-family: var(--ff-display);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

.bridge-col h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2rem;
  line-height: 1.15;
}

.bridge-col p {
  color: var(--mid);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.bridge-col p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-style: italic;
}

@media (max-width: 768px) {
  .salonniere-bridge-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ---- SHARED ---- */
.section-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--blue); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* ---- WORKBOOK ---- */
.workbook {
  background: var(--white);
  padding: var(--section-pad);
}

.workbook-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.workbook-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.workbook-text p {
  color: var(--mid);
  font-size: 0.975rem;
  margin-bottom: 1rem;
  max-width: 48ch;
}

.workbook-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.workbook-list li {
  font-size: 0.9rem;
  color: var(--mid);
  padding-left: 1rem;
  position: relative;
}

.workbook-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

/* ---- FORMS ---- */
.srr-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  border: 1px solid var(--light);
  background: var(--bg);
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ink);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--light);
}

.form-note {
  font-size: 0.8rem;
  color: var(--mid);
  font-style: italic;
}

.form-success {
  font-size: 0.9rem;
  color: var(--blue);
}

.workbook-form-wrap {
  padding-top: 3.5rem;
}

/* ---- EXPLAINER ---- */
.explainer {
  background: var(--ink);
  padding: var(--section-pad);
}

.explainer-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.explainer-lead {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: var(--bg);
  line-height: 1.5;
}

.explainer-body {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--bg);
  opacity: 0.75;
  line-height: 1.75;
}

.explainer-close {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--bg);
  line-height: 1.4;
}

.explainer-contact {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--bg);
  opacity: 0.7;
}

.explainer-contact a {
  color: var(--bg);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 1;
}

.explainer-contact a:hover {
  opacity: 0.9;
}

/* ---- ABOUT ---- */
.about {
  padding: var(--section-pad);
  background: var(--white);
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
}

.about-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.about-intro {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.about-divider {
  width: 40px;
  height: 1px;
  background: var(--light);
  margin: 1.75rem 0;
}

.about-text p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-closing {
  color: var(--ink) !important;
  font-style: italic;
  margin-top: 0.5rem;
}

/* ---- TESTIMONIALS ---- */
.testimonial {
  padding: 2rem 2rem 5rem;
  background: var(--white);
}

.testimonial-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.testimonial-quote p {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-quote cite {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  font-style: normal;
}

@media (max-width: 768px) {
  .testimonial-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about { padding: 3rem 1.5rem; }
}

/* ---- FOOTER ---- */
.footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer a {
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.footer a:hover {
  color: var(--blue);
}

.footer-divider {
  color: var(--light);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .workbook-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .workbook-form-wrap {
    padding-top: 0;
  }

  .hero { padding: 2rem 1.5rem 3rem; }
  .salonniere { padding: 2.5rem 1.5rem; }
  .bridge { padding: 3rem 1.5rem; }
  .workbook { padding: 3rem 1.5rem; }
  .explainer { padding: 3rem 1.5rem; }
  .about { padding: 3rem 1.5rem; }
  .footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ---- SCROLL REVEAL ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  .fade-in { opacity: 1; transform: none; }
}
