/* Rachel Levine-Katz Counselling - Brand Style Guide Colors */
:root {
    --deep-blue-green: #2F4F5B;
    --warm-off-white: #F7F8F6;
    --soft-teal-sage: #6FA6A3;
    --mist-blue-grey: #E6EEF0;
    --moonlight-blue: #8FBBC7;
    --soft-gold: #E6C77A;
    --text-dark: #2F4F5B;
    --text-muted: #5a7179;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--warm-off-white);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 18px;
  }
  
  /* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.3;
  }
  
  h1 { font-size: clamp(2rem, 5vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
  h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
  
  /* Layout */
  .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  section {
    padding: 4rem 0;
    min-height: 60vh;
  }
  
  /* Navigation */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--warm-off-white);
    border-bottom: 1px solid var(--mist-blue-grey);
    padding: 1rem 0;
    transition: background-color 0.3s ease;
  }
  
  nav .nav-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
nav .logo {
  display: none;
}
  
  nav ul {
    list-style: none;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  
  nav a {
    color: var(--deep-blue-green);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
  }
  
  nav a:hover {
    color: var(--soft-teal-sage);
  }
  
  /* Mobile menu */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--deep-blue-green);
  }
  
  .menu-toggle svg {
    width: 28px;
    height: 28px;
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    nav ul {
      position: fixed;
      top: 65px;
      left: 0;
      right: 0;
      background: var(--warm-off-white);
      flex-direction: column;
      padding: 2rem;
      gap: 1.5rem;
      border-bottom: 1px solid var(--mist-blue-grey);
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
  
    nav ul.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
  }
  
  /* Hero / Home */
  .hero {
    padding-top: 4rem;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
    min-height: auto;
  }
  
  .hero .container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
  }
  
  .hero.hero-centered .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  
  .hero-logo {
    margin-top: 1rem;
    margin-bottom: 1rem;
    overflow: visible;
  }
  
.hero-logo img {
  max-width: 520px;
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  object-fit: contain;
  vertical-align: bottom;
}
  
  .hero-content h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 0.5rem;
  }
  
  .hero-content h1 {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .hero-content p {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 1.1rem;
  }

  .hero-content .btn {
    margin-top: 1.25rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-image {
    max-width: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(47, 79, 91, 0.12);
  }
  
  .hero-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  @media (max-width: 768px) {
    .hero .container:not(.hero-centered) {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .hero-image {
      margin: 0 auto;
      order: -1;
    }
  
    .hero-logo img {
      max-width: 400px;
    }
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    background-color: var(--deep-blue-green);
    color: var(--warm-off-white) !important;
    text-decoration: none;
    font-family: inherit;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    letter-spacing: 0.02em;
  }
  
  .btn:hover {
    background-color: var(--soft-teal-sage);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--deep-blue-green) !important;
    border: 2px solid var(--deep-blue-green);
  }
  
  .btn-outline:hover {
    background-color: var(--deep-blue-green);
    color: var(--warm-off-white) !important;
  }
  
  /* Intro section (Home) */
  .intro-section {
    background-color: var(--mist-blue-grey);
  }
  
  .intro-section .container {
    max-width: 720px;
  }
  
  /* Page headers */
  .page-header {
    padding-top: 7rem;
    padding-bottom: 2rem;
  }
  
  .page-header h1 {
    margin-bottom: 1rem;
  }
  
  /* About page */
  .about-content {
    overflow: auto;
  }
  
  .about-image {
    float: right;
    max-width: 280px;
    margin: 0 0 1.5rem 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(47, 79, 91, 0.12);
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .about-content .btn {
    clear: both;
  }
  
  @media (max-width: 768px) {
    .about-image {
      float: none;
      max-width: 100%;
      margin: 0 0 1.5rem 0;
    }
  }
  
  /* Services - Areas list */
  .areas-list {
    list-style: none;
    margin: 1.5rem 0;
  }
  
  .areas-list li {
    padding: 0.15rem 0;
    padding-left: 1.5rem;
    position: relative;
  }
  
  .areas-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--soft-teal-sage);
    font-weight: bold;
  }
  
  /* Pricing */
  .pricing-card {
    background-color: var(--mist-blue-grey);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
  }
  
  .pricing-card h3 {
    color: var(--deep-blue-green);
    margin-bottom: 1rem;
  }
  
  /* Contact */
  .contact-info {
    margin: 2rem 0;
  }
  
  .contact-info p {
    margin-bottom: 0.5rem;
  }
  
  .contact-info a {
    color: var(--soft-teal-sage);
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  .contact-form {
    margin-top: 2rem;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid var(--mist-blue-grey);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
  }
  
  .contact-form textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--soft-teal-sage);
  }
  
  /* Footer */
  footer {
    background-color: var(--deep-blue-green);
    color: var(--warm-off-white);
    padding: 2rem 1.5rem;
    text-align: center;
    font-size: 0.9rem;
  }
  
  footer a {
    color: var(--soft-gold);
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }