/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark:  #2d4f35;
  --green:       #4a7a52;
  --green-light: #a8bf78;
  --terracotta:  #c87840;
  --orange:      #e07038;
  --orange-dark: #c8602a;
  --cream:       #fdf8f2;
  --beige:       #f0e8d8;
  --text:        #2c2c2c;
  --text-muted:  #6b6b6b;
  --white:       #ffffff;
  --radius-sm:   8px;
  --radius:      16px;
  --radius-full: 999px;
  --shadow:      0 4px 24px rgba(0,0,0,0.12);
  --max-width:   1100px;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
.page-content img { margin: 1.5rem; }
a   { color: var(--green); }

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== NAVIGATION ===== */
.site-nav {
  background: var(--green-dark);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nav-logo {
  color: var(--white);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.nav-logo span {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.75;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-links a.nav-active {
  color: var(--white);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}

.nav-links .btn-nav.btn-nav-active {
  background: var(--orange-dark);
}

.nav-links .btn-nav {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: background 0.2s;
}

.nav-links .btn-nav:hover { background: var(--orange-dark); }

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

/* Decorative background shapes */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,191,120,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,120,64,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.bacp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-dark);
  border: 1.5px solid var(--green-dark);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.bacp-badge svg { fill: var(--white); }

.hero-eyebrow {
  font-size: 1.1rem;
  color: var(--terracotta);
  font-style: italic;
  margin-bottom: 0.2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.55;
}

.hero-credentials {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.06em;
}

.btn-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.15s;
}

.btn-cta:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.95rem;
}

.hero-badge svg {
  flex-shrink: 0;
  fill: var(--green);
}

.hero-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 5px solid var(--green-light);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 4.5rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border-left: 4px solid var(--green);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

a.service-card-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

a.service-card-link:hover {
  border-left-color: var(--green-dark);
}

.service-card-coming-soon {
  opacity: 0.65;
  cursor: default;
}

.service-card-coming-soon:hover {
  transform: none;
  box-shadow: none;
}

.coming-soon-label {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  background: var(--terracotta);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-card .duration {
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 700;
  margin-top: 0.75rem;
}

.services-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  background: var(--beige);
  padding: 4rem 0;
  text-align: center;
}

.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.65;
  font-style: italic;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ===== INNER PAGES ===== */
.page-header {
  background: var(--green-dark);
  padding: 2.5rem 0;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 2.25rem;
}

.page-subtitle {
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
  font-size: 1rem;
}

.page-content {
  padding: 3rem 0 4rem;
}

.page-content .inner {
  max-width: 720px;
}

.page-content h2,
.page-content h3 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
  margin: 1.75rem 0 0.75rem;
}

.page-content h2 { font-size: 1.6rem; }
.page-content h3 { font-size: 1.2rem; }

.page-content p,
.page-content li {
  line-height: 1.8;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.page-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--green-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--green);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== TABLE (book page) ===== */
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.page-content th {
  background: var(--green-dark);
  color: var(--white);
  text-align: left;
  padding: 0.65rem 1rem;
  font-weight: 700;
}

.page-content td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--beige);
  color: var(--text);
}

.page-content tr:nth-child(even) td {
  background: var(--cream);
}

/* ===== MAP EMBED (location page) ===== */
.map-embed {
  margin: 1.5rem 0;
}

/* ===== SERVICES PAGE ===== */
.services-page {
  padding: 3.5rem 0;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.service-page-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.service-page-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-page-card .badge {
  display: inline-block;
  background: var(--beige);
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-page-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== BOOKING ===== */
.booking-section {
  padding: 3rem 0;
}

.calendly-placeholder {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  border: 2px dashed var(--green);
  color: var(--text-muted);
}

.calendly-placeholder p {
  margin-bottom: 0.5rem;
}

.booking-widget {
  margin-top: 1.5rem;
}

.booking-widget h2 {
  margin-top: 0;
}

.booking-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.booking-type {
  border: 1px solid var(--green);
  background: var(--white);
  color: var(--green-dark);
  border-radius: var(--radius-full);
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.booking-type:hover {
  background: var(--beige);
}

.booking-type.is-active {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.booking-request {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e6dccf;
}

.booking-request select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 2rem 0;
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}

.site-footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0.25rem;
}

/* ===== PRESS PAGE ===== */
.press-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.press-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e8e0d4;
}

.press-item a {
  color: var(--green-dark);
  text-decoration: none;
  font-size: 1.05rem;
  flex: 1;
}

.press-item a:hover {
  color: var(--terracotta);
  text-decoration: underline;
}

.press-publication {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
  font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-photo-wrap { order: -1; }

  .hero-photo {
    width: 220px;
    height: 220px;
  }

  .hero h1 { font-size: 2.5rem; }

  .hero-badges { align-items: center; }

  .page-content .inner { max-width: 100%; }
}

/* ===== DJANGO BOOKING (slot picker) ===== */
.hero-photo-placeholder {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 5px solid var(--green-light);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, var(--beige) 0%, var(--green-light) 100%);
}

@media (max-width: 768px) {
  .hero-photo-placeholder {
    width: 220px;
    height: 220px;
  }
}

.booking-slots-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e6dccf;
}

.booking-slots-section h2 {
  font-family: "Playfair Display", serif;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.day-group {
  margin-top: 1.25rem;
}

.day-group h3 {
  font-family: "Playfair Display", serif;
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.slot-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.slot-button {
  border: 2px solid var(--green);
  background: var(--white);
  color: var(--green-dark);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.slot-button:hover {
  background: var(--green-dark);
  color: var(--white);
}

.messages {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.msg {
  background: #f3e8e8;
  border: 1px solid #d4a5a5;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text);
}

.msg.error {
  background: #f3e8e8;
  border-color: #c08080;
}

/* ===== DJANGO WEEK VIEW (session type + start time picker) ===== */
.session-type-form {
  margin-top: 1rem;
}

.session-type-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}

.session-type-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  background: var(--white);
}

.week-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.day-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}

.time-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.time-form {
  margin: 0;
}

.time-button {
  border: 2px solid var(--green);
  background: var(--white);
  color: var(--green-dark);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.time-button:hover {
  background: var(--green-dark);
  color: var(--white);
}

.time-button.disabled {
  border-color: #d4d0c4;
  background: var(--cream);
  color: var(--text-muted);
  cursor: not-allowed;
}

.muted {
  color: var(--text-muted);
}

.link {
  color: var(--green-dark);
  font-weight: 700;
}

.message.error {
  background: #f3e8e8;
  border: 1px solid #c08080;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

/* These classes are used by the booking templates (Django). */
.site-header {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.25rem 0;
}

.site-header a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.tagline {
  margin-top: 0.25rem;
  opacity: 0.75;
  font-size: 0.95rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  margin-top: 1.25rem;
}

/* ===== BLOG ===== */
.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--beige);
}

.blog-item:last-child {
  border-bottom: none;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--green-dark);
  text-decoration: none;
}

.blog-title:hover {
  text-decoration: underline;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}
