/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */

 /* ============================================================
       TOKENS
    ============================================================ */
    :root {
      --evergreen:     #8b9eb5;
      --med-green:     #6e8aa3;
      --lime:          #8CA842;
      --honey:         #E0B03A;
      --rust:          #8B3B23;
      --med-blue:      #57667B;
      --soft-blue:     #8B9EB7;
      --butter:        #F9EAA4;
      --off-white:     #F9F9F7;

      --ink:           #1e1e1a;
      --ink-soft:      #3a3a34;
      --ink-muted:     #6a6a60;

      --font-display:  'Fraunces', Georgia, serif;
      --font-body:     'Poppins', sans-serif;
      --font-label:    'Poppins', sans-serif;

      --max-w:         1100px;
      --section-pad:   clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 4rem);
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--off-white);
      color: var(--ink);
      font-family: var(--font-body);
      font-size: clamp(15px, 1.05vw, 17px);
      line-height: 1.72;
      -webkit-font-smoothing: antialiased;
    }

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

    a { color: inherit; }

    /* ============================================================
       UTILITY
    ============================================================ */
    .container {
      max-width: var(--max-w);
      margin-inline: auto;
      padding-inline: clamp(1.25rem, 5vw, 4rem);
    }

    .label {
      font-family: var(--font-label);
      font-size: 0.8em;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ink-muted);
    }

    .rule {
      display: block;
      width: 2.5rem;
      height: 1px;
      background: var(--honey);
      margin-block: 1.25rem;
    }

    /* ============================================================
       NAV
    ============================================================ */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--off-white);
      border-bottom: 1px solid rgba(139,158,181,0.25);
      padding: 0.85rem clamp(1.25rem, 5vw, 4rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .nav-wordmark {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--evergreen);
      text-decoration: none;
      line-height: 1.2;
    }

    .nav-wordmark span {
      display: block;
      font-family: var(--font-label);
      font-size: 0.55rem;
      font-weight: 300;
      letter-spacing: 0.3em;
      color: var(--ink-muted);
      text-transform: uppercase;
    }

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

    .nav-links a {
      font-family: var(--font-label);
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--ink-soft);
      transition: color 0.2s;
    }

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

    .nav-cta {
      font-family: var(--font-label);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--off-white);
      background: var(--evergreen);
      padding: 0.55rem 1.25rem;
      border: 1px solid var(--evergreen);
      border-radius: 4px;
      transition: background 0.2s, color 0.2s;
    }

    .nav-cta:hover {
      background: transparent;
      color: var(--evergreen);
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      text-decoration: none;
    }

    .nav-logo {
      width: 38px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-family: var(--font-label);
      font-size: 0.45rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(139,158,181,0.7);
      text-align: center;
      line-height: 1.3;
    }

    /* Image placeholders */
    .img-placeholder {
      background: rgba(139,158,181,0.12);
      border: 1px dashed rgba(139,158,181,0.4);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      color: rgba(139,158,181,0.6);
      font-family: var(--font-label);
      font-size: 0.6rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-align: center;
    }

    .img-placeholder svg {
      opacity: 0.4;
    }

    .img-placeholder-hero {
      width: 100%;
      height: clamp(220px, 35vw, 420px);
      border-radius: 2px;
    }

    .img-placeholder-about {
      width: 100%;
      height: clamp(280px, 40vw, 480px);
    }

    .img-placeholder-band {
      width: 100%;
      height: clamp(140px, 18vw, 220px);
      margin-bottom: clamp(2rem, 4vw, 3rem);
    }

    .img-placeholder-resource {
      width: 100%;
      height: clamp(180px, 25vw, 280px);
      border-radius: 2px;
    }

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

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--evergreen);
      transition: transform 0.25s, opacity 0.25s;
    }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      background: var(--evergreen);
      color: var(--off-white);
      padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem);
      position: relative;
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 85% 50%, rgba(224,176,58,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(140,168,66,0.07) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: var(--max-w);
      margin-inline: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: center;
      position: relative;
    }

    .hero-label {
      font-family: var(--font-label);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--honey);
      background: var(--butter);
      display: inline-block;
      padding: 0.35rem 0.85rem;
      margin-bottom: 1.25rem;
      border-radius: 4px;
    }

    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.01em;
      color: var(--off-white);
      margin-bottom: 1.5rem;
    }

    .hero-headline em {
      font-style: italic;
      color: var(--butter);
    }

    .hero-sub {
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 1.8vw, 1.55rem);
      font-weight: 300;
      font-style: italic;
      letter-spacing: 0.03em;
      color: rgba(249,249,247,0.75);
      margin-bottom: 2rem;
      line-height: 1.55;
    }

    .hero-body {
      font-family: var(--font-body);
      font-size: 0.9rem;
      line-height: 1.8;
      color: rgba(249,249,247,0.8);
      margin-bottom: 2.5rem;
      max-width: 42ch;
    }

    .btn-primary {
      display: inline-block;
      font-family: var(--font-label);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--ink);
      background: var(--honey);
      padding: 0.9rem 2.2rem;
      border: 1px solid var(--honey);
      border-radius: 4px;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .btn-primary:hover {
      background: transparent;
      color: var(--honey);
    }

    .hero-aside {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      border-left: 1px solid rgba(249,249,247,0.12);
      padding-left: clamp(2rem, 4vw, 4rem);
    }

    .hero-quote {
      font-family: var(--font-display);
      font-size: clamp(1.15rem, 1.8vw, 1.5rem);
      font-style: italic;
      font-weight: 300;
      line-height: 1.55;
      color: var(--butter);
    }

    .hero-services-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0;
    }

    .hero-services-list span {
      font-family: var(--font-label);
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(249,249,247,0.55);
      border: 1px solid rgba(249,249,247,0.18);
      padding: 0.35rem 0.75rem;
      border-radius: 4px;
    }

    /* ============================================================
       PROBLEM
    ============================================================ */
    #problem {
      padding: var(--section-pad);
      background: var(--off-white);
    }

    .problem-inner {
      max-width: var(--max-w);
      margin-inline: auto;
    }

    .problem-header {
      max-width: 52ch;
      margin-bottom: clamp(2.5rem, 5vw, 4rem);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--evergreen);
      margin-bottom: 1rem;
    }

    .section-body {
      font-size: 0.92rem;
      line-height: 1.8;
      color: var(--ink-soft);
      padding-top:25px;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1.5rem, 3vw, 2.5rem);
    }

    .problem-card {
      background: var(--evergreen);
      color: var(--off-white);
      padding: clamp(1.75rem, 3vw, 2.5rem);
      position: relative;
    }

    .problem-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--honey);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }

    .problem-card:hover::after { transform: scaleX(1); }

    .problem-num {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 300;
      color: rgba(249,249,247,0.55);
      line-height: 1;
      margin-bottom: 0.75rem;
    }

    .problem-title {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 500;
      font-style: italic;
      color: var(--butter);
      margin-bottom: 0.85rem;
      line-height: 1.25;
    }

    .problem-text {
      font-size: 0.85rem;
      line-height: 1.75;
      color: rgba(249,249,247,0.78);
    }

    /* ============================================================
       SERVICES
    ============================================================ */
    #services {
      padding: var(--section-pad);
      background: #f2f2ee;
      border-top: 1px solid rgba(139,158,181,0.2);
      border-bottom: 1px solid rgba(139,158,181,0.2);
    }

    .services-inner {
      max-width: var(--max-w);
      margin-inline: auto;
    }

    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: start;
      margin-bottom: clamp(2.5rem, 5vw, 4rem);
    }

    .services-header .section-body { max-width: 48ch; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(139,158,181,0.18);
      border: 1px solid rgba(139,158,181,0.18);
    }

    .service-item {
      background: #f2f2ee;
      padding: clamp(1.5rem, 2.5vw, 2rem);
      transition: background 0.2s;
    }

    .service-item:hover { background: var(--off-white); }

    .service-header {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.75rem;
      padding-bottom: 0.75rem;
      position: relative;
    }

    .service-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 10%;
      height: 1px;
      background: var(--lime);
    }

    .service-icon {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--evergreen);
      line-height: 1;
      flex-shrink: 0;
    }

    .service-name {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--evergreen);
      margin-bottom: 0;
    }

    .service-desc {
      font-size: 0.82rem;
      line-height: 1.7;
      color: var(--ink-muted);
    }

    /* ============================================================
       ABOUT
    ============================================================ */
    #about {
      padding: var(--section-pad);
      background: var(--off-white);
    }

    .about-inner {
      max-width: var(--max-w);
      margin-inline: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: start;
    }

    .about-content { }

    .about-values {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      margin-top: 2rem;
    }

    .value-row {
      display: flex;
      align-items: baseline;
      gap: 1rem;
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(139,158,181,0.2);
    }

    .value-row:first-child { border-top: 1px solid rgba(139,158,181,0.2); }

    .value-label {
      font-family: var(--font-label);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--honey);
      min-width: 9rem;
      flex-shrink: 0;
    }

    .value-text {
      font-family: var(--font-body);
      font-size: 0.85rem;
      line-height: 1.65;
      color: var(--ink-soft);
    }

    .about-pull {
      padding: clamp(2rem, 4vw, 3rem);
      background: var(--evergreen);
      color: var(--off-white);
      position: sticky;
      top: 5rem;
    }

    .about-pull blockquote {
      font-family: var(--font-display);
      font-size: clamp(1.2rem, 1.8vw, 1.55rem);
      font-style: italic;
      font-weight: 300;
      line-height: 1.55;
      color: var(--butter);
      margin-bottom: 1.5rem;
    }

    .about-pull p {
      font-size: 0.85rem;
      line-height: 1.8;
      color: rgba(249,249,247,0.78);
    }

   /* ================================================
       TESTIMONIALS
    ================================================ */
     #proof {
      padding: var(--section-pad);
      background: var(--butter);
      border-top: 1px solid rgba(139,158,181,0.2);
    }

    .proof-inner {
      max-width: var(--max-w);
      margin-inline: auto;
    }

    .proof-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: clamp(2rem, 4vw, 3.5rem);
      flex-wrap: wrap;
    }

	
	
	
	.testimonials {
      padding: var(--section-pad);
      background: var(--butter);
    }
    .testimonials-header {
      text-align: center;
      margin-bottom: 72px;
    }
    .testimonials-header h2 { font-style: italic; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 28px;
    }
    .testimonial-card {
      padding: 44px 36px 36px;
      background: var(--off-white);
      border: 1px solid var(--evergreen);
      position: relative;
    }
    .testimonial-mark {
      font-family: var(--font-display);
      font-size: 6rem;
      line-height: 0.7;
      color: var(--evergreen);
      position: absolute;
      top: 28px;
      left: 28px;
      user-select: none;
    }
    .testimonial-text {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 1.1rem;
      line-height: 1.65;
      color: var(--evergreen);
      margin-top: 40px;
      margin-bottom: 28px;
    }
    .testimonial-author {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--med-green);
    }


    /* ============================================================
       FREE RESOURCE
    ============================================================ */
    #resource {
      padding: var(--section-pad);
      background: var(--med-green);
      color: var(--off-white);
    }

    .resource-inner {
      max-width: var(--max-w);
      margin-inline: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: center;
    }

    .resource-label {
      font-family: var(--font-label);
      font-size: 0.62rem;
      font-weight: 400;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--lime);
      margin-bottom: 1rem;
    }

    .resource-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--butter);
      margin-bottom: 1rem;
    }

    .resource-body {
      font-size: 0.88rem;
      line-height: 1.8;
      color: rgba(249,249,247,0.8);
      margin-bottom: 2rem;
    }

    .btn-secondary {
      display: inline-block;
      font-family: var(--font-label);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--med-green);
      background: var(--off-white);
      padding: 0.9rem 2.2rem;
      border: 1px solid var(--off-white);
      border-radius: 4px;
      transition: background 0.2s, color 0.2s;
    }

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

    .resource-aside {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .resource-card {
      background: rgba(249,249,247,0.08);
      border: 1px solid rgba(249,249,247,0.15);
      padding: 1.25rem 1.5rem;
    }

    .resource-card-title {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 600;
      color: var(--butter);
      margin-bottom: 0.35rem;
    }

    .resource-card-text {
      font-size: 0.8rem;
      line-height: 1.65;
      color: rgba(249,249,247,0.7);
    }

    /* ============================================================
       FINAL CTA
    ============================================================ */
    #cta {
      padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 4rem);
      background: var(--off-white);
      text-align: center;
      border-top: 1px solid rgba(139,158,181,0.2);
    }

    .cta-inner {
      max-width: 52ch;
      margin-inline: auto;
    }

    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1.15;
      color: var(--evergreen);
      margin-bottom: 1.25rem;
    }

    .cta-body {
      font-size: 0.9rem;
      line-height: 1.8;
      color: var(--ink-soft);
      margin-bottom: 2.5rem;
    }

    .cta-email {
      font-family: var(--font-label);
      font-size: 0.75rem;
      letter-spacing: 0.14em;
      color: var(--ink-muted);
      margin-top: 1.25rem;
    }

    .cta-email a {
      color: var(--evergreen);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--evergreen);
      color: rgba(249,249,247,0.6);
      padding: 2.5rem clamp(1.25rem, 5vw, 4rem);
    }

    .footer-inner {
      max-width: var(--max-w);
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .footer-wordmark {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--off-white);
      text-decoration: none;
    }

    .footer-copy {
      font-family: var(--font-label);
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .footer-email a {
      font-family: var(--font-label);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      color: var(--honey);
      text-decoration: none;
    }

    .footer-email a:hover { text-decoration: underline; }

    /* ============================================================
       ANIMATIONS
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }

      .hero-aside {
        border-left: none;
        border-top: 1px solid rgba(249,249,247,0.12);
        padding-left: 0;
        padding-top: 2rem;
      }

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

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

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

      .about-pull { position: static; }

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

      .resource-inner {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .nav-links, .nav-cta { display: none; }
      .nav-toggle { display: flex; }

      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--off-white);
        border-top: 1px solid rgba(139,158,181,0.2);
        border-bottom: 1px solid rgba(139,158,181,0.2);
        padding: 1.5rem clamp(1.25rem, 5vw, 4rem);
        gap: 1rem;
      }
    }