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

:root {
  --sage: #8a9e8c;
  --sage-dark: #4f7353;
  --sage-light: #b8c9ba;
  --sage-pale: #edf2ee;
  --clay: #c17f5e;
  --clay-dark: #8f5a3c;
  --clay-light: #e8c4a8;
  --clay-pale: #fdf5ef;
  --warm-white: #faf8f5;
  --parchment: #f2ede6;
  --charcoal: #2d2d2a;
  --mid: #6b6860;
  --light: #a09d98;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(250,248,245,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(138,158,140,0.15);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--clay-dark); font-style: italic; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--clay); }
.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--clay-dark);
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #7a4d33; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 5rem;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  position: relative;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: 15%; left: -8%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--clay-light) 0%, transparent 70%);
  opacity: 0.35;
  border-radius: 50%;
  pointer-events: none;
}
.hero-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 2rem; height: 1px;
  background: var(--sage-dark);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
}
.hero-title em { font-style: italic; color: var(--clay); }
.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.btn-primary {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--clay);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #a86b4d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(193,127,94,0.3); }
.btn-secondary {
  font-size: 0.85rem;
  color: var(--mid);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--clay); }
.btn-secondary::after { content: '→'; transition: transform 0.2s; }
.btn-secondary:hover::after { transform: translateX(4px); }
.hero-badges { display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--parchment);
  border: 1px solid rgba(138,158,140,0.2);
  border-radius: 2rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  color: var(--mid);
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

.hero-right {
  position: relative;
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  bottom: -10%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--clay-light) 0%, transparent 65%);
  opacity: 0.3;
  border-radius: 50%;
}
.hero-image-wrap {
  position: relative; z-index: 1;
  width: 340px; height: 420px;
  border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(45,45,42,0.12);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── SECTION BASE ── */
section { padding: 6rem 5rem; }
.section-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-tag::before { content: ''; display: inline-block; width: 1.5rem; height: 1px; background: var(--sage-dark); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--clay-dark); }

/* ── ABOUT ── */
#about {
  background: var(--parchment);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p { font-size: 1rem; color: var(--mid); font-weight: 300; line-height: 1.85; margin-bottom: 1.2rem; }
.about-image-side { position: relative; display: flex; justify-content: center; }
.about-blob {
  width: 300px; height: 360px;
  border-radius: 50% 40% 60% 40% / 45% 55% 45% 55%;
  background: linear-gradient(135deg, var(--sage-light), var(--clay-light));
  opacity: 0.5;
  position: absolute;
  top: -20px; left: 50%; transform: translateX(-50%);
}
.about-quote {
  position: relative; z-index: 1;
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  max-width: 320px;
  box-shadow: 0 12px 48px rgba(45,45,42,0.08);
  margin-top: 2rem;
}
.about-quote-mark { font-family: var(--serif); font-size: 4rem; line-height: 0.5; color: var(--clay-light); margin-bottom: 1rem; display: block; }
.about-quote p { font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: var(--charcoal); line-height: 1.6; }
.about-quote cite { display: block; margin-top: 1rem; font-size: 0.78rem; color: var(--mid); font-style: normal; letter-spacing: 0.06em; }

/* ── APPROACH ── */
#approach { background: var(--warm-white); }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.approach-card {
  background: var(--parchment);
  border: 1px solid rgba(138,158,140,0.15);
  border-radius: 1.2rem;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.approach-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(45,45,42,0.08); }
.approach-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--clay-pale); border: 1px solid var(--clay-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1.2rem; }
.approach-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.7rem; }
.approach-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.75; font-weight: 300; }

/* ── SPECIALISMS ── */
#specialisms { background: var(--parchment); }
.specialisms-intro { max-width: 560px; margin-bottom: 3rem; }
.specialisms-intro p { font-size: 1rem; color: var(--mid); font-weight: 300; line-height: 1.85; margin-top: 1rem; }
.specialisms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.specialism-card {
  background: white;
  border-radius: 1.2rem;
  padding: 2rem;
  border: 1px solid rgba(138,158,140,0.15);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.specialism-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--clay-light), var(--sage-light));
  opacity: 0; transition: opacity 0.25s;
}
.specialism-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(45,45,42,0.08); }
.specialism-card:hover::before { opacity: 1; }
.specialism-card.highlight { background: var(--clay-pale); border-color: var(--clay-light); }
.specialism-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.specialism-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.7rem; }
.specialism-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.75; font-weight: 300; }
.safety-banner {
  margin-top: 2rem;
  background: #fff8f5;
  border: 1px solid var(--clay-light);
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.safety-banner-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.safety-banner p { font-size: 0.85rem; color: var(--mid); line-height: 1.7; font-weight: 300; }
.safety-banner strong { color: var(--charcoal); font-weight: 500; }
.safety-banner a { color: var(--clay-dark); text-decoration: underline; text-underline-offset: 2px; }
.safety-banner a:hover { text-decoration-thickness: 2px; }

/* ── QUALIFICATIONS ── */
#qualifications { background: var(--warm-white); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.qual-list { list-style: none; margin-top: 0.5rem; }
.qual-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(138,158,140,0.15);
  font-size: 0.9rem; color: var(--mid); font-weight: 300; line-height: 1.5;
}
.qual-list li::before { content: '✓'; color: var(--sage); font-size: 0.8rem; flex-shrink: 0; margin-top: 0.15rem; }
.credentials-box {
  background: var(--parchment);
  border-radius: 1.2rem;
  padding: 2rem;
  border: 1px solid rgba(138,158,140,0.15);
}
.credentials-box h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--charcoal); margin-bottom: 1rem; }
.credentials-box p { font-size: 0.88rem; color: var(--mid); font-weight: 300; line-height: 1.8; margin-bottom: 0.8rem; }
.credentials-box a { color: var(--clay-dark); text-decoration: underline; text-underline-offset: 2px; }
.credentials-box a:hover { text-decoration-thickness: 2px; }
.cred-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
.cred-badge {
  background: white;
  border: 1px solid rgba(138,158,140,0.2);
  border-radius: 0.5rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  color: var(--mid);
  font-weight: 400;
}
.cred-divider { border: none; border-top: 1px solid rgba(138,158,140,0.2); margin: 1.5rem 0 0; }
.bacp-seal {
  display: inline-flex;
  align-items: center;
  background: white;
  border: 1px solid rgba(138,158,140,0.2);
  border-radius: 0.8rem;
  padding: 0.75rem 1.1rem;
  margin-top: 1rem;
  box-shadow: 0 2px 8px rgba(45,45,42,0.05);
}
.bacp-seal img { max-width: 100px; height: auto; display: block; }

/* ── FEES ── */
#fees { background: var(--sage-pale); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.fees-text p { font-size: 1rem; color: var(--mid); font-weight: 300; line-height: 1.85; margin-bottom: 1rem; }
.fees-card { background: white; border-radius: 1.5rem; padding: 2.5rem; box-shadow: 0 8px 32px rgba(45,45,42,0.07); }
.fee-item { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; border-bottom: 1px solid var(--sage-pale); }
.fee-item:last-child { border-bottom: none; }
.fee-label { font-size: 0.9rem; color: var(--mid); font-weight: 300; }
.fee-price { font-family: var(--serif); font-size: 1.5rem; color: var(--clay); font-weight: 400; }
.fee-price span { font-family: var(--sans); font-size: 0.75rem; color: var(--mid); font-weight: 300; }
.fee-note { margin-top: 1.5rem; padding: 1rem; background: var(--clay-pale); border-radius: 0.75rem; font-size: 0.82rem; color: var(--mid); line-height: 1.6; }

/* ── FAQ ── */
#faq { background: var(--warm-white); }
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; margin-top: 1rem; }
.faq-intro { font-size: 1rem; color: var(--mid); font-weight: 300; line-height: 1.85; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(138,158,140,0.2); padding: 1.4rem 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--serif); font-size: 1.1rem; color: var(--charcoal); font-weight: 400; user-select: none; gap: 1rem; }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--parchment); border: 1px solid rgba(138,158,140,0.2); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--clay); transition: all 0.2s; flex-shrink: 0; }
.faq-item.open .faq-toggle { background: var(--clay); color: white; transform: rotate(45deg); }
.faq-answer { font-size: 0.9rem; color: var(--mid); line-height: 1.8; font-weight: 300; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s; }
.faq-item.open .faq-answer { max-height: 300px; padding-top: 0.9rem; }

/* ── CONTACT ── */
#contact {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 6rem 5rem;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
#contact::before {
  content: '';
  position: absolute; top: -30%; left: 20%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(193,127,94,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.contact-left { position: relative; z-index: 1; }
#contact .section-tag { color: var(--sage-light); }
#contact .section-tag::before { background: var(--sage-light); }
#contact .section-title em { color: var(--clay-light); }
#contact .section-title { color: var(--warm-white); }
.contact-left p { font-size: 0.95rem; color: rgba(250,248,245,0.6); font-weight: 300; line-height: 1.8; margin-bottom: 2rem; }
.contact-detail-list { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.9rem; color: rgba(250,248,245,0.75);
  text-decoration: none; transition: color 0.2s;
}
.contact-detail:hover { color: var(--clay-light); }
.contact-detail-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.social-links { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.social-link { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(250,248,245,0.75); transition: background 0.2s, color 0.2s; }
.social-link:hover { color: var(--warm-white); }
.social-link:hover { background: rgba(193,127,94,0.3); }

/* ── CONTACT FORM ── */
.contact-form-wrap { position: relative; z-index: 1; }
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  padding: 2rem;
}
.contact-form h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--warm-white); font-weight: 400; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,248,245,0.45); }
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.6rem;
  padding: 0.75rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--warm-white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,248,245,0.2); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--clay-light); background: rgba(255,255,255,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--warm-white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--clay-light); transform: translateY(-2px); }
.form-note { font-size: 0.73rem; color: rgba(250,248,245,0.3); text-align: center; margin-top: 0.8rem; line-height: 1.6; }
.required { color: var(--clay-light); font-style: normal; }
.form-error { font-size: 0.82rem; color: #f4a58a; background: rgba(244,165,138,0.1); border: 1px solid rgba(244,165,138,0.25); border-radius: 0.4rem; padding: 0.6rem 0.9rem; margin-bottom: 0.8rem; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success .checkmark { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.form-success h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--warm-white); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: rgba(250,248,245,0.55); margin-bottom: 0; }

/* ── FOOTER ── */
footer {
  background: #1e1e1c;
  padding: 2rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(250,248,245,0.65);
  flex-wrap: wrap; gap: 1rem;
}
footer a { color: rgba(250,248,245,0.75); text-decoration: none; }
footer a:hover { color: var(--clay-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp 0.7s ease both; }
.hero-tag { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-desc { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.4s; }
.hero-badges { animation-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 320px; }
  .hero-left { padding: 3rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
  #about, #fees, #qualifications, #contact { grid-template-columns: 1fr; gap: 2.5rem; }
  .approach-grid, .specialisms-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 1.5rem; flex-direction: column; text-align: center; }
}
