/* ============================================
   Brent Clark Therapy — Style
   Palette: Sky #B8D4E3, Cream #FFF8F0,
           Charcoal #2C3E50, Gold #C9933A
   ============================================ */

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

:root {
  --sky: #B8D4E3;
  --sky-light: #e4eff5;
  --cream: #FFF8F0;
  --charcoal: #2C3E50;
  --charcoal-light: #4a6274;
  --gold: #C9933A;
  --gold-light: #e8c47a;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 2px 20px rgba(44, 62, 80, 0.08);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--charcoal);
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ---- NAV ---- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 212, 227, 0.3);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
}

.nav-logo:hover {
  color: var(--gold);
}

.nav-credentials {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 400;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
}

/* ---- HERO ---- */

.hero {
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sky-light) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-credentials {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--charcoal-light);
  margin-bottom: 1.5rem;
}

.hero-desc {
  color: var(--charcoal-light);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(44, 62, 80, 0.12);
  max-height: 550px;
  width: auto;
  margin: 0 auto;
}

/* ---- ABOUT ---- */

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
}

.about-copy p {
  margin-bottom: 1.2rem;
  color: var(--charcoal-light);
}

.about-specialisms h3 {
  color: var(--gold);
}

.about-specialisms ul {
  list-style: none;
  margin-bottom: 2rem;
}

.about-specialisms li {
  padding: 0.5rem 0;
  padding-left: 1.2rem;
  position: relative;
  color: var(--charcoal-light);
}

.about-specialisms li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
}

.credentials-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--sky-light);
  color: var(--charcoal);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 400;
}

/* ---- SERVICES ---- */

.services {
  background: var(--cream);
}

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

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

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(44, 62, 80, 0.12);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  color: var(--charcoal);
}

.service-card p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

/* ---- FEES ---- */

.fees {
  background: var(--sky-light);
}

.fees-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.fees-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.fees-main p {
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}

.fees-faq h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

details {
  margin-bottom: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform var(--transition);
}

details[open] summary::after {
  content: '\2212';
}

details p {
  margin-top: 0.75rem;
  color: var(--charcoal-light);
  font-size: 0.92rem;
}

/* ---- BOOKING ---- */

.booking {
  background: var(--white);
  text-align: center;
}

.booking-intro {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.calendly-inline-widget {
  border-radius: var(--radius);
  overflow: hidden;
}

.booking-fallback {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--charcoal-light);
}

/* ---- CONTACT ---- */

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h3 {
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-item a {
  color: var(--charcoal);
  font-size: 1.05rem;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-item ul {
  list-style: none;
}

.contact-item li {
  color: var(--charcoal-light);
  padding: 0.2rem 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-top: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--sky);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition);
}

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

.contact-form .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

/* ---- FOOTER ---- */

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-badges .badge {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---- RESPONSIVE ---- */

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--sky);
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 2rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-height: 300px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .fees-content {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
}
