/* Import Elegant serif and modern sans-serif fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Color Palette - Serene, Natural, Calming */
  --primary: #4a6b5d;
  /* Calm Sage Green */
  --primary-hover: #3b564a;
  /* Darker Sage */
  --primary-light: #f0f4f2;
  /* Very soft green-grey tint */
  --secondary: #d4b58e;
  /* Muted Sand Gold */
  --secondary-hover: #c4a178;
  --bg-color: #fcfbfa;
  /* Soft Linen/Off-white background */
  --bg-secondary: #f6f3ed;
  /* Warm Light Sand for sections */
  --text-color: #2c3531;
  /* Dark Charcoal for readability */
  --text-light: #5d6763;
  /* Muted text */
  --border-color: #e5e0d8;
  /* Soft border */
  --white: #ffffff;
  --accent: #b3634e;
  /* Terracotta accent for CTA highlight */

  /* Fonts */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout tokens */
  --max-width: 1100px;
  --border-radius: 12px;
  --border-radius-sm: 6px;
  --transition-speed: 0.3s;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  --box-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-color);
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

/* Elegant bottom accent line for H2 */
h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

/* Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.section-padding {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition-speed);
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.btn:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 107, 93, 0.2);
}

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

.btn-secondary:hover {
  background-color: var(--primary-light);
  color: var(--primary-hover);
  box-shadow: none;
}

.btn-accent {
  background-color: var(--accent);
}

.btn-accent:hover {
  background-color: #9c4b37;
  box-shadow: 0 4px 12px rgba(179, 99, 78, 0.2);
}

/* Header & Navigation */
header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-top: 0.2rem;
}

/* Pure CSS hamburger toggler using checkbox hack */
.menu-toggle-checkbox {
  display: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 101;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

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

.nav-links a {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

/* Content Area */
main {
  flex: 1;
}

/* Hero Section */
.hero {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

/* Soft atmospheric abstract circles */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background-color: var(--primary-light);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.hero-content .subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
}

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

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-color);
}

/* Quotes & Testimonials Card */
.quote-card {
  background-color: var(--white);
  border-left: 4px solid var(--secondary);
  padding: 2.5rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  box-shadow: var(--box-shadow);
  margin: 3rem 0;
  position: relative;
}

.quote-card::before {
  content: '“';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--secondary);
  opacity: 0.15;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.quote-author {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 600;
}

/* Feature Cards Grid (Home Page Specialties) */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.specialty-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
  transition: all var(--transition-speed);
  display: flex;
  flex-direction: column;
}

.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--secondary);
}

.specialty-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.specialty-card h3 {
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.specialty-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
  flex: 1;
}

/* About Page Styles */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}

.about-image-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile-img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  object-fit: cover;
  aspect-ratio: 1/1;
  border: 1px solid var(--border-color);
}

.credentials-list {
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.credentials-list h3 {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
  font-size: 1.25rem;
  font-family: var(--font-heading);
}

.credentials-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credentials-list li {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.credentials-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

.about-content h2 {
  margin-bottom: 2rem;
}

.about-content p {
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
  color: var(--text-color);
}

/* Counselling Experience Page Styles */
.experience-intro {
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.experience-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
}

.experience-text-block h3 {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.modalities-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.modality-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: all var(--transition-speed);
}

.modality-item:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.modality-item h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.modality-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

.client-focus-card {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius);
  padding: 3rem;
  border: 1px solid var(--border-color);
  margin-top: 4rem;
}

.client-focus-card h3 {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.75rem;
}

.client-focus-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.focus-column h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.focus-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.focus-column li {
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.focus-column li::before {
  content: '•';
  color: var(--secondary);
  font-size: 1.5rem;
  line-height: 1;
}

/* Contact, Fees, Location Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}

.details-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow);
}

.info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fee-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--border-color);
}

.fee-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fee-name {
  font-weight: 500;
}

.fee-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
}

.insurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.insurance-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}

.insurance-item::before {
  content: '✓';
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: bold;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-text {
  font-size: 1rem;
}

.office-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.office-photo {
  width: 100%;
  border-radius: var(--border-radius-sm);
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

/* Contact Form & Card */
.contact-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 110px;
}

.contact-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-intro {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-method-text h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.contact-method-text p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 1.05rem;
}

/* Call to Action Banner */
.cta-banner {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-banner h2::after {
  display: none;
}

.cta-banner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* Footer styling */
footer {
  background-color: #1a221f;
  color: #d1d6d4;
  padding: 4rem 0 2rem 0;
  font-size: 0.9rem;
  border-top: 1px solid #2a3330;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.footer-col p {
  color: #a0aba7;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #a0aba7;
  transition: color var(--transition-speed);
}

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

.footer-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: #a0aba7;
}

.footer-bottom {
  border-top: 1px solid #2a3330;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #808c87;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #808c87;
}

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

/* Mobile Toggler & Responsive Layouts */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

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

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

  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-image-column {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .experience-section-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .experience-section-grid img {
    order: -1;
  }

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

  .contact-card {
    position: static;
  }
}

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

  /* When checkbox is checked, slide menu in */
  .menu-toggle-checkbox:checked~.nav-links {
    left: 0;
  }

  /* When checkbox is checked, animate hamburger bars into X */
  .menu-toggle-checkbox:checked~.hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle-checkbox:checked~.hamburger span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle-checkbox:checked~.hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    z-index: 99;
  }

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

  .modalities-container {
    grid-template-columns: 1fr;
  }

  .client-focus-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}