/*
Theme Name: Raw Potential Coaching
Theme URI: https://www.rawpotentialcoaching.co.uk
Author: Kristianne Gray
Author URI: https://www.rawpotentialcoaching.co.uk
Description: Raw Potential Coaching
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: raw-potential-coaching
*/

:root {
  --rp-olive: #415A23;
  --rp-sage: #9AAE7A;
  --rp-bg: #F7F5EF;
  --rp-text: #2F3A22;
  --rp-muted: #6E7A5D;
  --rp-white: #ffffff;
  --rp-border: #E6E1D7;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--rp-text);
  background: var(--rp-bg);
  line-height: 1.7;
}
a { color: var(--rp-olive); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.site-header {
  background: rgba(247,245,239,.95);
  border-bottom: 1px solid var(--rp-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.site-branding img { max-height: 72px; width: auto; }
.site-title {
  margin: 0;
  font-size: 1.5rem;
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hero {
  padding: 5rem 0 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  color: var(--rp-muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .85rem;
  margin-bottom: .75rem;
}
.hero h1,
.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--rp-olive);
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 4.5rem); margin: 0 0 1rem; }
.hero p { font-size: 1.125rem; max-width: 38rem; }
.button-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.btn {
  display: inline-block;
  padding: .95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--rp-olive);
}
.btn-primary { background: var(--rp-olive); color: var(--rp-white); }
.btn-secondary { background: transparent; color: var(--rp-olive); }
.card,
.service-card,
.testimonial,
.contact-box {
  background: var(--rp-white);
  border: 1px solid var(--rp-border);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(62,73,45,.06);
}
.hero-card { padding: 1.5rem; }
.hero-card img { border-radius: 18px; }
.section { padding: 4rem 0; }
.section-muted { background: #FBFAF6; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card, .testimonial, .contact-box { padding: 1.5rem; }
.service-card h3, .testimonial h3, .contact-box h3 { margin-top: 0; color: var(--rp-olive); font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-top: 0; margin-bottom: .75rem; }
.section-intro { max-width: 42rem; margin-bottom: 2rem; }
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.check-list li { margin: .5rem 0; padding-left: 1.5rem; position: relative; }
.check-list li:before { content: '•'; position: absolute; left: 0; color: var(--rp-sage); }
.quote { font-style: italic; color: var(--rp-muted); }
.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--rp-border);
  background: #FBFAF6;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-grid img { max-height: 48px; }
@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .main-nav ul { gap: .9rem; }
}
