/* Luo Coaching — shared stylesheet */

:root {
  --bg: #FDFAF8;
  --text: #2E2B28;
  --text-secondary: #4A453D;
  --text-muted: #6B655A;
  --rose: #C98A8F;
  --rose-dark: #B5666D;
  --rose-border: #EDD9D7;
  --rose-fill: #F1DEDC;
  --rose-fill-text: #A5464E;
  --neutral-border: #DCD5C8;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --hero-max-width: 700px;

  /* Type scale — 5 sizes total. Change one here, it updates everywhere it's used. */
  --text-display: 24px;   /* Home hero headline only */
  --text-large: 18px;     /* lede statements, section titles, page title */
  --text-sub: 15px;       /* h3-level headings: cards, service rows, emphasis lines */
  --text-body: 13px;      /* all regular paragraph text, list items, form fields */
  --text-meta: 11px;      /* labels, nav, footer, buttons */
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.6;
}

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

img { max-width: 100%; display: block; }

.wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 2.25rem 2rem;
}

.wrap.wide { max-width: 720px; }

.divider {
  border-top: 0.5px solid var(--rose-border);
}

/* Nav */
.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 1.25rem 1rem;
  font-size: var(--text-meta);
  color: var(--text-muted);
  border-bottom: 0.5px solid var(--rose-border);
}

.site-nav a { transition: color 0.15s; }
.site-nav a:hover, .site-nav a.active { color: var(--rose-dark); }

/* Hero */
.hero {
  text-align: center;
  padding: 0.5rem 2rem 1.5rem;
}

.hero img {
  width: 100%;
  max-width: var(--hero-max-width);
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: 60% 30%;
  border-radius: 8px;
  margin: 0 auto 1.75rem;
}

.photo-frame {
  max-width: var(--hero-max-width);
  padding: 0 2rem;
  box-sizing: content-box;
  margin: 0.5rem auto;
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--text-display);
  max-width: 520px;
  margin: 0 auto 0.75rem;
  line-height: 1.35;
}

.subhead {
  font-size: var(--text-body);
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
}

.hero-rule {
  width: 40px;
  height: 2px;
  background: var(--rose);
  margin: 1.5rem auto 0;
  border: none;
}

/* Section labels */
.label {
  font-size: var(--text-meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin: 0 0 0.75rem;
}

.center { text-align: center; }

h1.page-title,
.page-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--text-large);
  margin: 0 0 1.25rem;
  color: var(--text);
}

/* Reusable text roles — change a size here once, it updates everywhere */
.lede {
  font-family: var(--font-serif);
  font-size: var(--text-large);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: var(--text-large);
  margin-bottom: 1.25rem;
}

.emphasis-line {
  font-family: var(--font-serif);
  font-size: var(--text-sub);
  margin-bottom: 1rem;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-body);
  color: #6B5A4A;
  line-height: 1.8;
  margin: 1.5rem 0;
  padding-left: 14px;
  border-left: 2px solid var(--rose);
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  text-align: left;
}

.plain-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.plain-list li::before {
  content: "\2022";
  position: absolute;
  left: 0.15em;
  color: var(--rose-dark);
}

.plain-list strong {
  font-weight: 700;
  color: var(--text);
}

.service-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 0.6rem;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.service-toggle h3 {
  margin: 0;
  color: var(--text);
}

.service-toggle .chevron {
  font-size: 20px;
  color: var(--rose-dark);
  transition: transform 0.2s ease;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 12px;
}

.service-row.open .chevron { transform: rotate(45deg); }

.service-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.service-row.open .service-detail { max-height: 400px; }

.service-detail .plain-list {
  padding-top: 0.75rem;
  margin: 0;
}

.service-detail .plain-list li {
  font-size: var(--text-body);
  color: var(--text-secondary);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

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

.card {
  background: #fff;
  border: 0.5px solid var(--rose-border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}

.card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--text-sub);
  margin: 0 0 6px;
}

.card p {
  font-size: var(--text-body);
  color: var(--text-muted);
  margin: 0;
}

/* Service list — stacked, spacious boxed rows for the Coaching page */
.service-list {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-row {
  background: #fff;
  border: 0.5px solid var(--rose-border);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
}

.service-row h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--text-sub);
  margin: 0 0 0.6rem;
}

.service-row p {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Buttons / links */
.btn {
  display: inline-block;
  font-size: var(--text-meta);
  padding: 10px 20px;
  border-radius: 20px;
  background: var(--rose-fill);
  color: var(--rose-fill-text);
}

.text-link {
  font-size: var(--text-meta);
  color: var(--rose-dark);
}

.btn-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Form */
.field {
  width: 100%;
  background: #fff;
  border: 0.5px solid var(--rose-border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: var(--text-body);
  font-family: var(--font-sans);
  color: var(--text);
  margin-bottom: 10px;
}

textarea.field { min-height: 90px; resize: vertical; }

/* Photo strip — 2-3 photos side by side, for showing more range in one moment */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 700px;
  margin: 0.5rem auto;
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.photo-strip a {
  position: relative;
  display: block;
}

.story-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 463px;
  margin: 0.5rem auto;
}

.story-links a {
  position: relative;
  display: block;
}

.story-links img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.story-links .ig-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

@media (max-width: 640px) {
  .photo-strip { grid-template-columns: repeat(3, 1fr); gap: 6px; }
}

.field::placeholder { color: #A79E8C; }

button.submit {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

footer {
  text-align: center;
  font-size: var(--text-meta);
  color: var(--text-muted);
  padding: 2rem 1rem 2.5rem;
}
