/*
Theme Name:  TLC VA Agency
Theme URI:   https://www.tlc-creativemarketing.co.uk
Author:      Tracey Egan
Author URI:  https://www.tlc-creativemarketing.co.uk
Description: Landing page theme for the TLC Creative Marketing VA Agency Partnership campaign.
Version:     1.0
License:     Private
Text Domain: tlc-va-agency
*/

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

    :root {
      --dark:       #1A0D0F;
      --coral:      #FF5757;
      --coral-deep: #FF4537;
      --coral-warm: #FF6F44;
      --taupe:      #A2958A;
      --peach:      #FFA4A4;
      --peach-light:#FFF0F0;
      --light:      #FDF9F8;
      --white:      #FFFFFF;
      --border:     #EDE5E3;
      --text:       #1A0D0F;
    }

    body {
      font-family: 'Georgia', 'Times New Roman', serif;
      color: var(--text);
      background: var(--white);
      font-size: 17px;
      line-height: 1.7;
    }

    h1, h2, h3, h4, nav, .label, .cta-btn, .service-title {
      font-family: 'Helvetica Neue', Arial, sans-serif;
    }

    a { color: var(--teal); text-decoration: none; }
    a:hover { text-decoration: underline; }

    .container {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── NAV ── */
    nav {
      background: var(--dark);
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-brand {
      color: var(--white);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    .nav-brand span {
      color: var(--peach);
    }
    .nav-cta {
      background: var(--coral);
      color: var(--white);
      padding: 9px 20px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 600;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--coral-deep); text-decoration: none; }

    /* ── HERO ── */
    .hero {
      background: var(--dark);
      color: var(--white);
      padding: 80px 24px 72px;
      text-align: left;
    }
    .hero .container { max-width: 760px; }
    .hero-label {
      display: inline-block;
      background: rgba(255,87,87,0.18);
      color: var(--peach);
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 3px;
      margin-bottom: 24px;
    }
    .hero h1 {
      font-size: clamp(28px, 5vw, 42px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 22px;
      color: var(--white);
    }
    .hero h1 em {
      font-style: normal;
      color: var(--coral);
    }
    .hero-sub {
      font-size: 18px;
      font-weight: 700;
      color: var(--taupe);
      max-width: 620px;
      margin-bottom: 36px;
      line-height: 1.65;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }
    .cta-btn {
      display: inline-block;
      background: var(--coral);
      color: var(--white);
      padding: 14px 28px;
      border-radius: 4px;
      font-size: 15px;
      font-weight: 700;
      transition: background 0.2s;
    }
    .cta-btn:hover { background: var(--coral-deep); text-decoration: none; }
    .cta-secondary {
      color: var(--taupe);
      font-size: 14px;
      font-weight: 700;
      font-family: 'Helvetica Neue', Arial, sans-serif;
    }

    /* ── SECTIONS ── */
    section { padding: 72px 24px; }
    section:nth-child(even) { background: var(--light); }

    .section-label {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 12px;
    }
    h2 {
      font-size: clamp(22px, 4vw, 32px);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.25;
      margin-bottom: 18px;
    }
    .section-intro {
      font-size: 17px;
      color: var(--taupe);
      max-width: 660px;
      margin-bottom: 44px;
      line-height: 1.7;
    }

    /* ── PROBLEM ── */
    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 40px;
    }
    @media (max-width: 600px) { .problem-grid { grid-template-columns: 1fr; } }
    .problem-card {
      background: var(--white);
      border: 1px solid var(--coral);
      border-radius: 8px;
      padding: 24px 26px;
    }
    .problem-card h3 {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
      font-family: 'Helvetica Neue', Arial, sans-serif;
    }
    .problem-card p {
      font-size: 15px;
      color: var(--taupe);
      line-height: 1.65;
    }
    .problem-resolution {
      background: var(--peach-light);
      border-left: 4px solid var(--coral);
      padding: 22px 26px;
      border-radius: 0 6px 6px 0;
      font-size: 17px;
      color: var(--dark);
      line-height: 1.65;
    }

    /* ── WHAT I DO ── */
    .what-i-do-body {
      font-size: 17px;
      color: var(--dark);
      line-height: 1.75;
      max-width: 700px;
    }
    .what-i-do-body p { margin-bottom: 18px; }
    .what-i-do-body p:last-child { margin-bottom: 0; }
    .highlight-block {
      margin-top: 36px;
      background: var(--dark);
      color: var(--white);
      border-radius: 8px;
      padding: 30px 32px;
      font-size: 18px;
      line-height: 1.6;
      font-style: italic;
    }
    .highlight-block strong {
      font-style: normal;
      color: var(--coral);
    }

    /* ── SERVICES ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 700px) { .services-grid { grid-template-columns: 1fr; } }
    .service-card {
      background: var(--white);
      border: 1px solid var(--coral);
      border-radius: 8px;
      padding: 28px 24px;
    }
    .service-icon {
      width: 40px;
      height: 40px;
      background: var(--peach-light);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .service-icon svg { width: 22px; height: 22px; stroke: var(--coral); fill: none; stroke-width: 1.8; }
    .service-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 14px;
    }
    .service-list {
      list-style: none;
      padding: 0;
    }
    .service-list li {
      font-size: 14px;
      color: var(--taupe);
      padding: 5px 0;
      padding-left: 14px;
      position: relative;
      line-height: 1.5;
    }
    .service-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 13px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--coral);
    }

    /* ── WHY THIS WORKS ── */
    .benefits-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    @media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }
    .benefit-card {
      background: var(--white);
      border-radius: 8px;
      padding: 26px 28px;
      border: 1px solid var(--coral);
    }
    .benefit-card h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
      font-family: 'Helvetica Neue', Arial, sans-serif;
    }
    .benefit-card p {
      font-size: 14px;
      color: var(--taupe);
      line-height: 1.6;
    }

    /* ── SOCIAL PROOF ── */
    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 16px;
    }
    @media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }
    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 26px;
      position: relative;
    }
    .testimonial-placeholder-label {
      display: inline-block;
      background: #fff3cd;
      border: 1px solid #ffc107;
      color: #856404;
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 3px;
      margin-bottom: 14px;
    }
    .testimonial-quote {
      font-size: 15px;
      color: var(--slate);
      line-height: 1.65;
      font-style: italic;
      margin-bottom: 16px;
    }
    .testimonial-attr {
      font-size: 13px;
      font-weight: 700;
      color: var(--dark);
      font-family: 'Helvetica Neue', Arial, sans-serif;
    }
    .testimonial-attr span {
      display: block;
      font-weight: 400;
      color: var(--taupe);
      font-size: 12px;
      margin-top: 2px;
    }
    .proof-note {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 13px;
      color: #856404;
      background: #fff3cd;
      border: 1px solid #ffc107;
      border-radius: 6px;
      padding: 12px 16px;
      margin-top: 8px;
    }

    /* ── ABOUT ── */
    .about-inner {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 40px;
      align-items: start;
    }
    @media (max-width: 600px) { .about-inner { grid-template-columns: 1fr; } }
    .about-photo {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: var(--peach-light);
      border: 3px solid var(--coral);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .about-photo-placeholder {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 11px;
      color: var(--coral);
      text-align: center;
      line-height: 1.4;
      padding: 12px;
    }
    .about-content h2 { margin-bottom: 16px; }
    .about-content p { margin-bottom: 16px; color: var(--text); line-height: 1.75; }
    .about-content p:last-child { margin-bottom: 0; }
    .credentials-row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 24px;
    }
    .credential {
      background: var(--peach-light);
      border-radius: 6px;
      padding: 12px 18px;
      font-family: 'Helvetica Neue', Arial, sans-serif;
    }
    .credential-number {
      font-size: 22px;
      font-weight: 700;
      color: var(--coral);
      display: block;
    }
    .credential-label {
      font-size: 12px;
      color: var(--taupe);
      display: block;
      margin-top: 2px;
    }

    /* ── FAQ ── */
    .faq-list { max-width: 700px; }
    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 22px 0;
    }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-q {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }
    .faq-a {
      font-size: 15px;
      color: var(--taupe);
      line-height: 1.7;
    }

    /* ── FINAL CTA ── */
    .final-cta {
      background: var(--dark);
      color: var(--white);
      text-align: center;
      padding: 80px 24px;
    }
    .final-cta h2 {
      color: var(--white);
      margin-bottom: 16px;
    }
    .final-cta p {
      color: var(--taupe);
      font-size: 17px;
      max-width: 520px;
      margin: 0 auto 36px;
      line-height: 1.65;
    }
    .contact-options {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      align-items: center;
    }
    .contact-item {
      color: var(--taupe);
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 14px;
    }
    .contact-item a { color: var(--peach); }

    /* ── FOOTER ── */
    footer {
      background: #0f0608;
      color: var(--taupe);
      text-align: center;
      padding: 24px;
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 13px;
    }
    footer a { color: var(--taupe); }