/* ===========================
       BRAND FONTS — self-hosted
    =========================== */
    @font-face {
      font-family: 'Quine';
      src: url('assets/fonts/Quine.woff') format('woff'),
           url('assets/fonts/Quine.otf') format('opentype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Roboto';
      src: url('assets/fonts/Roboto-Regular.ttf') format('truetype');
      font-weight: 100 900;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Roboto Mono';
      src: url('assets/fonts/RobotoMono-Variable.ttf') format('truetype');
      font-weight: 100 900;
      font-style: normal;
      font-display: swap;
    }
    /* ===========================
       CSS RESET & BASE
    =========================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
      background-color: #eae5dc;
      color: #202020;
      font-size: 16px;
      line-height: 1.6;
      letter-spacing: 0.02em;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }

    /* ===========================
       DESIGN TOKENS
    =========================== */
    :root {
      --teal:         #2C5234;
      --wheat:        #eae5dc;
      --green:        #c8c284;
      --charcoal:     #202020;
      --white:        #ffffff;
      --teal-dark:    #1E3A24;
      --teal-mid:     #37663F;
      --shadow-soft:  0 4px 24px rgba(44,82,52,0.10);
      --shadow-card:  0 2px 16px rgba(44,82,52,0.08);
      --radius-card:  12px;
      --transition:   0.25s ease;
    }

    /* ===========================
       TYPOGRAPHY
    =========================== */
    /* H1: Quine, 62px, weight 400 */
    h1 {
      font-family: 'Quine', serif;
      font-weight: 400;
      font-size: 62px;
      line-height: 1.1;
      color: var(--charcoal);
    }
    /* H2: Roboto Mono, 20px, weight 400, letter-spacing .2em */
    h2 {
      font-family: 'Roboto Mono', monospace;
      font-weight: 400;
      font-size: 20px;
      letter-spacing: 0.2em;
      line-height: 1.4;
      color: var(--charcoal);
      text-transform: uppercase;
    }
    /* H3: Roboto Mono, 14px, weight 400, letter-spacing .2em */
    h3 {
      font-family: 'Roboto Mono', monospace;
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--charcoal);
    }
    /* Body: Roboto, 300, 16px, .02em, 1.6 */
    p {
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
      font-size: 16px;
      letter-spacing: 0.02em;
      line-height: 1.6;
      color: var(--charcoal);
    }
    /* Eyebrow label: Roboto Mono, uppercase */
    .eyebrow {
      font-family: 'Roboto Mono', monospace;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--green);
      display: block;
      margin-bottom: 16px;
    }
    /* Eyebrow on light/cream backgrounds — use teal for contrast */
    #pillars .eyebrow,
    #meet-lindsay .eyebrow { color: var(--teal); opacity: 0.65; }
    .section-divider {
      width: 140px;
      height: 9px;
      color: var(--green);
      margin-bottom: 18px;
    }
    .section-divider.centered {
      width: 200px;
      margin: 0 auto 18px;
    }
    .section-divider svg { width: 100%; height: 100%; display: block; }

    /* ===========================
       BUTTONS — PILL SHAPED
    =========================== */
    .btn {
      display: inline-block;
      padding: 14px 32px;
      font-family: 'Roboto Mono', monospace;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 100px;
      transition: background-color var(--transition), color var(--transition), border-color var(--transition);
      cursor: pointer;
      border: 2px solid transparent;
      white-space: nowrap;
    }
    /* Primary: Teal bg, white text → hover: Green bg */
    .btn-primary {
      background: var(--teal);
      color: var(--white);
      border-color: var(--teal);
    }
    .btn-primary:hover {
      background: var(--green);
      border-color: var(--green);
      color: var(--teal);
    }
    /* Outline on dark bg: white border/text → hover: green bg */
    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border-color: var(--white);
    }
    .btn-outline-white:hover {
      background: var(--green);
      border-color: var(--green);
      color: var(--teal);
    }
    /* Outline on light bg: teal border/text → hover: green bg */
    .btn-outline-teal {
      background: transparent;
      color: var(--teal);
      border-color: var(--teal);
    }
    .btn-outline-teal:hover {
      background: var(--green);
      border-color: var(--green);
      color: var(--teal);
    }

    /* ===========================
       LAYOUT HELPERS
    =========================== */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 48px;
    }
    .section-pad  { padding: 96px 0; }
    .section-pad-lg { padding: 120px 0; }
    .text-center  { text-align: center; }
    .green-divider {
      width: 48px;
      height: 2px;
      background: var(--green);
      margin: 20px auto 0;
    }

    /* ===========================
       SECTION 1: STICKY NAV
    =========================== */
    #navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--wheat);
      border-bottom: 1px solid rgba(200,194,132,0.30);
      box-shadow: 0 2px 12px rgba(44,82,52,0.06);
    }
    .nav-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 48px;
      height: 168px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .nav-logo img { height: 150px; width: auto; }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      font-family: 'Roboto Mono', monospace;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--teal);
      text-decoration: none;
      transition: color var(--transition);
    }
    .nav-links a:hover { color: var(--green); }
    .nav-right { display: flex; align-items: center; gap: 20px; }
    .nav-phone {
      font-family: 'Roboto Mono', monospace;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.12em;
      color: var(--teal);
      text-decoration: none;
    }
    .nav-phone:hover { color: var(--green); }

    /* ===========================
       SECTION 2: HERO
    =========================== */
    #hero {
      position: relative;
      width: 100%;
      height: 72vh;
      min-height: 560px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }
    .hero-video-placeholder {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, #16301C 0%, #2C5234 45%, #16301C 100%);
    }
    .hero-video-marker {
      position: absolute;
      top: 18%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }
    .hero-play-icon {
      width: 72px;
      height: 72px;
      border: 2px solid rgba(200,194,132,0.55);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.75;
    }
    .hero-play-icon svg { margin-left: 4px; }
    .hero-video-label {
      font-family: 'Roboto Mono', monospace;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(200,194,132,0.55);
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(14,38,36,0.82) 0%, rgba(14,38,36,0.38) 45%, rgba(14,38,36,0.04) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 0 48px 96px;
      text-align: center;
    }
    .hero-content .eyebrow { color: var(--green); font-size: 12px; }
    .hero-content h1 {
      color: var(--white);
      font-size: 62px;
      font-weight: 400;
      margin-bottom: 24px;
      text-shadow: 0 2px 24px rgba(0,0,0,0.28);
    }
    .hero-subhead {
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
      font-size: 18px;
      letter-spacing: 0.02em;
      color: rgba(255,255,255,0.85);
      max-width: 500px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }
    .hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .hero-bottom-line {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: var(--green);
      opacity: 0.5;
      z-index: 3;
    }

    /* ===========================
       SECTION 3: TRUST BAR
    =========================== */
    #trust-bar {
      background: var(--teal);
      padding: 52px 0;
    }
    .trust-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 48px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .trust-item {
      text-align: center;
      padding: 20px 32px;
      position: relative;
    }
    .trust-item + .trust-item::before {
      content: '';
      position: absolute;
      left: 0; top: 50%;
      transform: translateY(-50%);
      height: 60%; width: 1px;
      background: var(--green);
      opacity: 0.35;
    }
    .trust-icon { width: 36px; height: 36px; margin: 0 auto 14px; color: var(--green); }
    .trust-headline {
      font-family: 'Quine', serif;
      font-size: 1.7rem;
      font-weight: 400;
      color: var(--white);
      display: block;
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .trust-sub {
      font-family: 'Roboto Mono', monospace;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(234,229,220,0.60);
    }

    /* ===========================
       SECTION 4: THREE PILLARS
    =========================== */
    #pillars { background: var(--wheat); }
    .pillars-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
    .pillars-header h2 { color: var(--teal); margin-bottom: 20px; }
    .pillars-header p { color: #4a4a4a; }
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      align-items: stretch;
    }
    .pillar-card {
      background: var(--white);
      border-radius: var(--radius-card);
      padding: 44px 36px;
      box-shadow: var(--shadow-card);
      transition: transform var(--transition), box-shadow var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
    }
    .pillar-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(44,82,52,0.13);
    }
    .pillar-card.featured { border-top: 3px solid var(--green); }
    .pillar-icon { width: 44px; height: 44px; margin-bottom: 24px; color: var(--green); }
    .pillar-card h3 { color: var(--teal); margin-bottom: 14px; }
    .pillar-card p { color: #5a5a5a; font-size: 15px; margin-bottom: 24px; }
    .pillar-link {
      font-family: 'Roboto Mono', monospace;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--teal);
      text-decoration: none;
      transition: color var(--transition);
      margin-top: auto;
      padding-top: 24px;
    }
    .pillar-link:hover { color: var(--green); }

    /* ===========================
       SECTION 5: OUR TEAM
    =========================== */
    #meet-lindsay { background: #e2ddd4; }
    .team-header { text-align: center; margin-bottom: 64px; }
    .team-header h2 {
      font-family: 'Quine', serif;
      font-weight: 400;
      font-size: 52px;
      color: var(--teal);
      margin-bottom: 0;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    .team-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .team-photo {
      width: 100%;
      aspect-ratio: 3 / 4;
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 20px;
      position: relative;
    }
    .team-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    /* Warm placeholder for photos not yet supplied */
    .team-photo-ph {
      width: 100%; height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Quine', serif;
      font-size: 52px;
      color: rgba(44,82,52,0.30);
    }
    .team-ph-lamar  { background: linear-gradient(160deg, #cfc9bc 0%, #b8b09f 100%); }
    .team-ph-megan  { background: linear-gradient(160deg, #c9cec4 0%, #b0b8a8 100%); }
    .team-ph-jessica { background: linear-gradient(160deg, #cdc5bb 0%, #b8ae9f 100%); }
    .team-name {
      font-family: 'Roboto', sans-serif;
      font-weight: 400;
      font-size: 16px;
      color: var(--teal);
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .team-title {
      font-family: 'Roboto Mono', monospace;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(44,82,52,0.55);
      margin-bottom: 18px;
    }
    .credential-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 18px; }
    .tag {
      font-family: 'Roboto Mono', monospace;
      font-size: 9px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 100px;
      background: rgba(44,82,52,0.07);
      color: var(--teal);
      border: 1px solid rgba(44,82,52,0.18);
    }
    /* Responsive */
    @media (max-width: 900px) {
      .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    }
    @media (max-width: 500px) {
      .team-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
    }

    /* ===========================
       SECTION 6: SIGNATURE TREATMENTS
    =========================== */
    #treatments { background: var(--teal); }
    .treatments-header { text-align: center; margin-bottom: 56px; }
    .treatments-header h2 { color: var(--wheat); }
    .treatments-header .eyebrow { color: var(--green); }
    .treatments-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }
    .treatment-card {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      aspect-ratio: 3/4;
      cursor: pointer;
    }
    .treatment-card:hover .treatment-overlay { opacity: 1; }
    .treatment-card:hover .treatment-placeholder { filter: brightness(1.08); }
    .treatment-placeholder {
      width: 100%; height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: filter 0.4s ease;
      background-size: cover;
      background-position: center;
    }
    .treatment-placeholder svg { display: none; }
    .treatment-gradient {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(14,38,36,0.90) 0%, rgba(14,38,36,0.28) 55%, transparent 100%);
    }
    .treatment-overlay {
      position: absolute; inset: 0;
      background: rgba(200,194,132,0.10);
      opacity: 0;
      transition: opacity var(--transition);
    }
    .treatment-info {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 24px 20px 22px;
      z-index: 2;
    }
    .treatment-name {
      font-family: 'Quine', serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--white);
      display: block;
      margin-bottom: 4px;
    }
    .treatment-desc {
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
      font-size: 11px;
      letter-spacing: 0.04em;
      color: rgba(234,229,220,0.72);
      display: block;
      margin-bottom: 10px;
    }
    .treatment-link {
      font-family: 'Roboto Mono', monospace;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--green);
      text-decoration: none;
    }
    .treatment-link:hover { color: var(--white); }

    /* ===========================
       SECTION 7: UPLIFT EXPERIENCE
    =========================== */
    #experience { position: relative; overflow: hidden; }
    .experience-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 560px;
    }
    .experience-image { position: relative; overflow: hidden; min-height: 560px; }
    .experience-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.95) saturate(1.08);
    }
    .experience-text {
      background: var(--wheat);
      padding: 80px 72px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .experience-text h2 { color: var(--teal); margin-bottom: 20px; }
    /* Large serif display for experience section */
    .experience-display {
      font-family: 'Quine', serif;
      font-weight: 400;
      font-size: 48px;
      line-height: 1.15;
      color: var(--teal);
      margin-bottom: 24px;
    }
    .experience-text p { color: #4a4a4a; margin-bottom: 36px; }

    /* ===========================
       SECTION 8: REVIEWS
    =========================== */
    #reviews { background: var(--wheat); }
    .reviews-header { text-align: center; margin-bottom: 16px; }
    .reviews-header h2 { color: var(--teal); margin-bottom: 16px; }
    /* Large serif display for reviews heading */
    .reviews-display {
      font-family: 'Quine', serif;
      font-weight: 400;
      font-size: 48px;
      line-height: 1.15;
      color: var(--teal);
      margin-bottom: 16px;
    }
    .stars-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 56px;
    }
    .stars { color: #d4a843; font-size: 20px; letter-spacing: 2px; }
    .stars-label {
      font-family: 'Roboto Mono', monospace;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.12em;
      color: #777;
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-bottom: 48px;
    }
    .review-card {
      background: var(--white);
      border-radius: var(--radius-card);
      padding: 36px 32px;
      box-shadow: var(--shadow-card);
    }
    .review-stars { color: #d4a843; font-size: 16px; margin-bottom: 16px; }
    .review-quote {
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
      font-size: 15px;
      letter-spacing: 0.02em;
      color: #3a3a3a;
      line-height: 1.65;
      margin-bottom: 20px;
      font-style: italic;
    }
    .review-meta { display: flex; align-items: center; gap: 12px; }
    .review-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Roboto Mono', monospace;
      font-size: 14px;
      font-weight: 400;
    }
    .review-name {
      font-family: 'Roboto Mono', monospace;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--teal);
      display: block;
    }
    .review-source {
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
      font-size: 12px;
      color: #999;
    }
    .reviews-cta { text-align: center; }

    /* ===========================
       SECTION 9: BOOKING CTA BANNER
    =========================== */
    #booking-cta {
      background: var(--teal);
      padding: 80px 0;
    }
    .booking-inner {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 48px;
      text-align: center;
    }
    .booking-inner .eyebrow { color: var(--green); }
    /* Large serif display for booking CTA */
    .booking-display {
      font-family: 'Quine', serif;
      font-weight: 400;
      font-size: 52px;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 20px;
    }
    .booking-inner .subhead {
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
      font-size: 16px;
      letter-spacing: 0.02em;
      color: rgba(234,229,220,0.75);
      margin-bottom: 40px;
      line-height: 1.6;
    }
    .booking-ctas {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
    .booking-hours {
      font-family: 'Roboto Mono', monospace;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.12em;
      color: rgba(234,229,220,0.45);
    }

    /* ===========================
       SECTION 10: BLOG
    =========================== */
    #blog { background: var(--wheat); }
    .blog-header { text-align: center; margin-bottom: 56px; }
    .blog-header h2 { color: var(--teal); margin-bottom: 10px; }
    .blog-header p { color: #666; }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .blog-card {
      background: var(--white);
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(44,82,52,0.13);
    }
    .blog-thumb-placeholder {
      width: 100%;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .blog-body { padding: 28px; }
    .blog-tag {
      font-family: 'Roboto Mono', monospace;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 10px;
      display: block;
      opacity: 0.7;
    }
    .blog-title {
      font-family: 'Quine', serif;
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--teal);
      margin-bottom: 8px;
      line-height: 1.35;
    }
    .blog-date {
      font-family: 'Roboto Mono', monospace;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: #aaa;
      margin-bottom: 12px;
    }
    .blog-excerpt {
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
      font-size: 14px;
      letter-spacing: 0.02em;
      color: #5a5a5a;
      line-height: 1.65;
      margin-bottom: 18px;
    }
    .blog-read-more {
      font-family: 'Roboto Mono', monospace;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal);
      text-decoration: none;
      transition: color var(--transition);
    }
    .blog-read-more:hover { color: var(--green); }

    /* ===========================
       SECTION 11: FOOTER
    =========================== */
    #footer { background: var(--teal); padding: 72px 0 0; }
    .footer-top {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 48px 56px;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1.2fr;
      gap: 56px;
    }
    .footer-logo img {
      height: 120px; width: auto;
      margin-bottom: 20px;
      border-radius: 6px;
    }
    .footer-tagline {
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
      font-size: 14px;
      letter-spacing: 0.02em;
      color: rgba(234,229,220,0.55);
      line-height: 1.65;
      margin-bottom: 24px;
      max-width: 280px;
    }
    .social-icons { display: flex; gap: 14px; }
    .social-icon {
      width: 36px; height: 36px;
      border: 1px solid rgba(200,194,132,0.30);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(234,229,220,0.60);
      text-decoration: none;
      font-size: 14px;
      transition: all var(--transition);
    }
    .social-icon:hover { border-color: var(--green); color: var(--green); }
    .footer-col-title {
      font-family: 'Roboto Mono', monospace;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 20px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
      font-size: 14px;
      letter-spacing: 0.02em;
      color: rgba(234,229,220,0.60);
      text-decoration: none;
      transition: color var(--transition);
    }
    .footer-links a:hover { color: var(--green); }
    .footer-contact-item {
      display: flex; gap: 12px;
      margin-bottom: 14px;
      align-items: flex-start;
    }
    .footer-contact-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
    .footer-contact-text {
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
      font-size: 14px;
      letter-spacing: 0.02em;
      color: rgba(234,229,220,0.60);
      line-height: 1.5;
    }
    .footer-contact-text a { color: rgba(234,229,220,0.60); text-decoration: none; }
    .footer-contact-text a:hover { color: var(--green); }
    .footer-bottom {
      border-top: 1px solid rgba(200,194,132,0.15);
      padding: 20px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy {
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
      font-size: 12px;
      letter-spacing: 0.04em;
      color: rgba(234,229,220,0.35);
    }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a {
      font-family: 'Roboto Mono', monospace;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.12em;
      color: rgba(234,229,220,0.35);
      text-decoration: none;
    }
    .footer-legal a:hover { color: var(--green); }



    /* ===========================
       TREATMENT CARD PLACEHOLDER COLORS
    =========================== */
    .tc-1 { background: url("assets/treat_trilift.webp") center 20%/cover no-repeat; }
    .tc-2 { background: url("assets/treat_resurfx.webp") center 30%/cover no-repeat; }
    .tc-3 { background: url("assets/treat_botox.webp") center 20%/cover no-repeat; }
    .tc-4 { background: url("assets/treat_ipl.webp") center 25%/cover no-repeat; }
    .tc-5 { background: url("assets/treat_microneedling.webp") center 20%/cover no-repeat; }
    .blog-ph-1 { background: linear-gradient(135deg, #c4b49a 0%, #a89070 100%); }
    .blog-ph-2 { background: linear-gradient(135deg, #9aab9a 0%, #7a8f7a 100%); }
    .blog-ph-3 { background: linear-gradient(135deg, #b4a090 0%, #907060 100%); }

    /* ===========================
       MOBILE NAV — hamburger
    =========================== */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px; height: 20px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      flex-shrink: 0;
    }
    .nav-hamburger span {
      display: block;
      width: 100%;
      height: 1.5px;
      background: var(--teal);
      transition: transform 0.28s ease, opacity 0.28s ease;
      transform-origin: center;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(9.25px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-9.25px) rotate(-45deg); }

    .nav-mobile-drawer {
      display: none;
      position: fixed;
      top: 168px; left: 0; right: 0;
      background: var(--wheat);
      border-bottom: 1px solid rgba(200,194,132,0.35);
      box-shadow: 0 8px 24px rgba(44,82,52,0.12);
      z-index: 999;
      padding: 24px 32px 32px;
    }
    .nav-mobile-drawer.open { display: block; }
    .nav-mobile-drawer ul {
      list-style: none;
      margin-bottom: 24px;
    }
    .nav-mobile-drawer ul li {
      border-bottom: 1px solid rgba(200,194,132,0.25);
    }
    .nav-mobile-drawer ul li a {
      display: block;
      padding: 14px 0;
      font-family: 'Roboto Mono', monospace;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--teal);
      text-decoration: none;
    }
    .nav-mobile-phone {
      font-family: 'Roboto Mono', monospace;
      font-size: 13px;
      letter-spacing: 0.1em;
      color: var(--teal);
      text-decoration: none;
      display: block;
      margin-bottom: 20px;
    }

    /* ===========================
       RESPONSIVE — 1024px tablet
    =========================== */
    @media (max-width: 1024px) {
      .container { padding: 0 32px; }
      .nav-inner { padding: 0 32px; }
      .trust-inner { padding: 0 32px; grid-template-columns: repeat(2, 1fr); }
      .trust-item + .trust-item::before { display: none; }
      .trust-item:nth-child(1), .trust-item:nth-child(2) {
        border-bottom: 1px solid rgba(200,194,132,0.20);
      }
      .treatments-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-top { gap: 32px; padding: 0 32px 48px; }
    }

    /* ===========================
       RESPONSIVE — 768px mobile
    =========================== */
    @media (max-width: 768px) {
      /* Nav collapses to hamburger */
      .nav-links { display: none; }
      .nav-right { display: none; }
      .nav-hamburger { display: flex; }
      .nav-inner { padding: 0 24px; }
      .nav-logo img { height: 80px; }

      /* Layout helpers */
      .container { padding: 0 24px; }
      .section-pad { padding: 64px 0; }
      .section-pad-lg { padding: 72px 0; }

      /* Hero */
      #hero { min-height: 480px; }
      .hero-video-marker { top: 20%; }
      .hero-content { padding: 0 24px 72px; }
      .hero-content h1 { font-size: 42px; }
      .hero-subhead { font-size: 16px; max-width: 100%; }
      .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
      .hero-ctas .btn { width: 100%; max-width: 320px; text-align: center; }

      /* Trust bar */
      .trust-inner {
        padding: 0 24px;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
      }
      .trust-item { padding: 20px 16px; }

      /* Pillars */
      .pillars-grid { grid-template-columns: 1fr; gap: 20px; }
      .pillar-card.featured { padding-top: 44px; }
      .pillars-header { margin-bottom: 40px; }

      /* Lindsay */
      /* team grid collapses via its own media queries above */

      /* Treatments */
      .treatments-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .treatment-card { aspect-ratio: 4/5; }

      /* Experience */
      .experience-grid { grid-template-columns: 1fr; }
      .experience-image { min-height: 280px; max-height: 320px; }
      .experience-text { padding: 52px 24px; }
      .experience-display { font-size: 36px; }

      /* Reviews */
      .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
      .reviews-display { font-size: 36px; }

      /* Booking CTA */
      .booking-inner { padding: 0 24px; }
      .booking-display { font-size: 36px; }
      .booking-ctas { flex-direction: column; align-items: center; gap: 12px; }
      .booking-ctas .btn { width: 100%; max-width: 320px; text-align: center; }

      /* Blog */
      .blog-grid { grid-template-columns: 1fr; gap: 20px; }

      /* Footer */
      .footer-top {
        grid-template-columns: 1fr;
        padding: 0 24px 40px;
        gap: 40px;
      }
      .footer-legal { padding: 20px 24px; flex-direction: column; gap: 12px; text-align: center; }
    }

    /* ===========================
       RESPONSIVE — 480px small mobile
    =========================== */
    @media (max-width: 480px) {
      .hero-content h1 { font-size: 36px; }
      .trust-inner { grid-template-columns: 1fr; }
      .trust-item + .trust-item::before { display: none; }
      .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid rgba(200,194,132,0.20); }
      .treatments-grid { grid-template-columns: 1fr; gap: 12px; }
      .treatment-card { aspect-ratio: 4/3; }
    }

    /* ===========================
       SECTION FAQ — AEO
    =========================== */
    #faq { background: var(--teal); }
    .faq-header { text-align: center; margin-bottom: 56px; }
    .faq-header h2 { color: var(--wheat); }
    .faq-header .eyebrow { color: var(--green); }
    .faq-list { max-width: 860px; margin: 0 auto; }
    .faq-item {
      border-bottom: 1px solid rgba(200,194,132,0.20);
    }
    .faq-item:first-child { border-top: 1px solid rgba(200,194,132,0.20); }
    .faq-btn {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      padding: 26px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      text-align: left;
    }
    .faq-question {
      font-family: 'Roboto', sans-serif;
      font-weight: 400;
      font-size: 18px;
      letter-spacing: 0.01em;
      color: #ffffff;
      line-height: 1.5;
    }
    .faq-chevron {
      flex-shrink: 0;
      width: 20px; height: 20px;
      border: 1px solid rgba(200,194,132,0.45);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--green);
      font-size: 11px;
      transition: transform 0.28s ease, background-color 0.28s ease;
    }
    .faq-item.open .faq-chevron {
      transform: rotate(45deg);
      background: rgba(200,194,132,0.15);
    }
    .faq-answer {
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
      font-size: 17px;
      letter-spacing: 0.02em;
      line-height: 1.8;
      color: rgba(255,255,255,0.88);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding-bottom 0.3s ease;
      padding-bottom: 0;
    }
    .faq-answer p {
      color: rgba(255,255,255,0.88) !important;
      font-size: 17px;
      line-height: 1.8;
    }
    .faq-item.open .faq-answer {
      max-height: 400px;
      padding-bottom: 28px;
    }
    @media (max-width: 768px) {
      .faq-question { font-size: 16px; }
      .faq-answer { font-size: 16px; }
    }
/* ============================================================
   SERVICE CATEGORY PAGE  (Template 2)
============================================================ */
/* Category hero */
.cat-hero {
  position: relative;
  background: var(--teal);
  padding: 140px 0 90px;
  overflow: hidden;
}
.cat-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(44,82,52,0.0) 0%, rgba(44,82,52,0.55) 100%);
  pointer-events: none;
}
.cat-hero .container { position: relative; z-index: 2; }
.cat-hero .eyebrow { color: var(--green); }
.cat-hero h1 {
  font-family: 'Quine', serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 22px;
  max-width: 780px;
}
.cat-hero .cat-lead {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin-bottom: 34px;
}
.cat-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Breadcrumb */
.breadcrumb {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { margin: 0 8px; }

/* Intro band */
.cat-intro { background: var(--wheat); padding: 88px 0; }
.cat-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cat-intro h2 {
  font-family: 'Quine', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
  color: var(--teal);
  margin-bottom: 20px;
}
.cat-intro p { color: #3e3e3e; margin-bottom: 16px; }
.cat-intro-photo {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #cfc9bc 0%, #b0b8a8 100%);
  display: flex; align-items: center; justify-content: center;
}
.cat-intro-photo img { width: 100%; height: 100%; object-fit: cover; }
.cat-intro-photo .ph-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(44,82,52,0.4);
}

/* Sub-service grid */
.subsvc-section { background: #e2ddd4; padding: 96px 0; }
.subsvc-header { text-align: center; margin-bottom: 60px; }
.subsvc-header .eyebrow { color: var(--teal); opacity: 0.6; }
.subsvc-header h2 {
  font-family: 'Quine', serif; font-weight: 400; font-size: 44px; letter-spacing: 0; text-transform: none; color: var(--teal);
}
.subsvc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.subsvc-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.subsvc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.subsvc-card-photo {
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #cfc9bc 0%, #b0b8a8 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.subsvc-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.subsvc-card-photo .ph-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(44,82,52,0.4);
}
.subsvc-card-body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.subsvc-card-body h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--teal);
  margin-bottom: 10px;
}
.subsvc-card-body p {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.6;
  margin-bottom: 22px;
}
.subsvc-card-link {
  margin-top: auto;
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

/* Responsive */
@media (max-width: 900px) {
  .cat-hero h1 { font-size: 44px; }
  .cat-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .subsvc-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .cat-hero { padding: 120px 0 64px; }
  .cat-hero h1 { font-size: 36px; }
  .cat-hero .cat-lead { font-size: 16px; }
  .cat-hero-ctas { flex-direction: column; }
  .cat-hero-ctas .btn { width: 100%; text-align: center; }
  .subsvc-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TREATMENT / SERVICE DETAIL PAGE  (Template 3)
============================================================ */
/* Detail hero — compact version of category hero */
.detail-hero {
  position: relative;
  background: var(--teal);
  padding: 130px 0 80px;
  overflow: hidden;
}
.detail-hero .container { position: relative; z-index: 2; max-width: 900px; }
.detail-hero .eyebrow { color: var(--green); }
.detail-hero h1 {
  font-family: 'Quine', serif;
  font-weight: 400;
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 780px;
}
.detail-hero .detail-lead {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin-bottom: 32px;
}
.detail-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Detail body: two-column (content + sticky sidebar) */
.detail-body { background: var(--wheat); padding: 80px 0 90px; }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.detail-content h2 {
  font-family: 'Quine', serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  color: var(--teal);
  margin: 0 0 18px;
}
.detail-content h2:not(:first-child) { margin-top: 48px; }
.detail-content p {
  color: #3e3e3e;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.detail-content ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.detail-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #3e3e3e;
}
.detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.detail-photo {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, #cfc9bc 0%, #b0b8a8 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 8px 0 40px;
}
.detail-photo img { width: 100%; height: 100%; object-fit: cover; }
.detail-photo .ph-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(44,82,52,0.4);
}

/* Sticky sidebar card */
.detail-sidebar { position: sticky; top: 200px; }
.sidebar-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}
.sidebar-card h3 {
  font-family: 'Quine', serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--teal);
  margin-bottom: 8px;
}
.sidebar-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #5a5a5a;
  margin-bottom: 20px;
}
.sidebar-card .btn { width: 100%; text-align: center; margin-bottom: 10px; }
.sidebar-fact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(44,82,52,0.10);
}
.sidebar-fact:last-child { border-bottom: none; }
.sidebar-fact-icon { flex-shrink: 0; color: var(--green); margin-top: 2px; }
.sidebar-fact-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(44,82,52,0.5);
  display: block;
  margin-bottom: 3px;
}
.sidebar-fact-value { font-size: 14px; color: var(--teal); font-weight: 500; }

/* FAQ on detail pages (light background variant) */
.detail-faq { background: #e2ddd4; padding: 80px 0; }
.detail-faq-header { text-align: center; margin-bottom: 48px; }
.detail-faq-header .eyebrow { color: var(--teal); opacity: 0.6; }
.detail-faq-header h2 {
  font-family: 'Quine', serif; font-weight: 400; font-size: 40px;
  letter-spacing: 0; text-transform: none; color: var(--teal);
}
.detail-faq .faq-list { max-width: 820px; margin: 0 auto; }
.detail-faq .faq-item { border-bottom: 1px solid rgba(44,82,52,0.15); }
.detail-faq .faq-item:first-child { border-top: 1px solid rgba(44,82,52,0.15); }
.detail-faq .faq-question { color: var(--teal); }
.detail-faq .faq-chevron { border-color: rgba(44,82,52,0.4); color: var(--teal); }
.detail-faq .faq-answer p { color: #3e3e3e !important; }

/* Responsive */
@media (max-width: 900px) {
  .detail-hero h1 { font-size: 40px; }
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-sidebar { position: static; }
}
@media (max-width: 600px) {
  .detail-hero { padding: 118px 0 60px; }
  .detail-hero h1 { font-size: 32px; }
  .detail-hero .detail-lead { font-size: 16px; }
  .detail-hero-ctas { flex-direction: column; }
  .detail-hero-ctas .btn { width: 100%; text-align: center; }
  .detail-content h2 { font-size: 28px; }
}

/* ============================================================
   CONTACT PAGE  (Template 5)
============================================================ */
.contact-hero {
  background: var(--teal);
  padding: 130px 0 70px;
}
.contact-hero .container { max-width: 900px; }
.contact-hero .eyebrow { color: var(--green); }
.contact-hero h1 {
  font-family: 'Quine', serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
  margin-bottom: 18px;
}
.contact-hero p {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
}

.contact-body { background: var(--wheat); padding: 80px 0 90px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

/* Left column: info cards */
.contact-info h2 {
  font-family: 'Quine', serif; font-weight: 400; font-size: 32px;
  letter-spacing: 0; text-transform: none; color: var(--teal); margin-bottom: 8px;
}
.contact-info > p { color: #3e3e3e; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(44,82,52,0.12);
}
.contact-detail:first-of-type { border-top: 1px solid rgba(44,82,52,0.12); }
.contact-detail-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(44,82,52,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.contact-detail-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(44,82,52,0.5);
  display: block; margin-bottom: 4px;
}
.contact-detail-value { font-size: 16px; color: var(--teal); line-height: 1.5; }
.contact-detail-value a { color: var(--teal); text-decoration: none; }
.contact-detail-value a:hover { color: var(--green-dark, #a89a4a); text-decoration: underline; }

.contact-portal-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.contact-portal-btns .btn { width: 100%; text-align: center; }

/* Right column: form card */
.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.contact-form-card h2 {
  font-family: 'Quine', serif; font-weight: 400; font-size: 28px;
  letter-spacing: 0; text-transform: none; color: var(--teal); margin-bottom: 6px;
}
.contact-form-card > p { color: #5a5a5a; font-size: 14px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: 'Roboto Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(44,82,52,0.6);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(44,82,52,0.2);
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.contact-form-card .btn { width: 100%; text-align: center; margin-top: 6px; }
.form-disclaimer {
  font-size: 12px; color: #8a8a8a; line-height: 1.5; margin-top: 16px; text-align: center;
}

/* Map */
.contact-map { background: #e2ddd4; padding: 0; }
.contact-map iframe {
  width: 100%; height: 440px; border: 0; display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-hero h1 { font-size: 42px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .contact-hero { padding: 118px 0 56px; }
  .contact-hero h1 { font-size: 34px; }
  .contact-hero p { font-size: 16px; }
  .contact-form-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-map iframe { height: 320px; }
}

/* ============================================================
   DROPDOWN NAVIGATION (matches upliftmonteagle.com structure)
============================================================ */
.nav-links { height: 100%; align-items: center; }
.nav-links > li { display: flex; align-items: center; height: 100%; position: relative; }

.dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.dropdown-toggle svg { transition: transform 0.2s ease; margin-top: 1px; }
.has-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 250px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(44,82,52,0.18);
  padding: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 300;
}
/* invisible hover bridge so moving to the menu doesn't drop the hover */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li { display: block; }
.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  border-radius: 7px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--teal);
  white-space: nowrap;
  transition: background 0.15s ease;
}
.dropdown-menu a:hover { background: var(--wheat); color: var(--teal); }

/* ---- Mobile dropdown (accordion in drawer) ---- */
.m-has-dropdown .m-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: 'Roboto Mono', monospace;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 14px 0;
  cursor: pointer;
}
.m-dropdown-toggle .m-chev { font-size: 20px; line-height: 1; transition: transform 0.2s ease; }
.m-has-dropdown.open .m-chev { transform: rotate(45deg); }
.m-dropdown-menu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
}
.m-has-dropdown.open .m-dropdown-menu { max-height: 600px; }
.m-dropdown-menu li { padding: 0; }
.m-dropdown-menu a {
  display: block;
  padding: 11px 0 11px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(44,82,52,0.75);
}

@media (max-width: 980px) {
  .dropdown-menu { display: none; }
}

/* ============================================================
   TEAM BIO PAGE  (Template 4)
============================================================ */
.bio-hero { background: var(--teal); padding: 130px 0 0; }
.bio-hero .container { max-width: 1100px; }
.bio-hero .breadcrumb { margin-bottom: 28px; }
.bio-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: end;
}
.bio-photo {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  aspect-ratio: 3 / 3.4;
  background: linear-gradient(160deg, #cfc9bc 0%, #b0b8a8 100%);
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.bio-hero-text { padding-bottom: 56px; }
.bio-hero-text .eyebrow { color: var(--green); }
.bio-hero-text h1 {
  font-family: 'Quine', serif; font-weight: 400; font-size: 48px; line-height: 1.1;
  letter-spacing: 0; text-transform: none; color: #fff; margin-bottom: 10px;
}
.bio-role {
  font-family: 'Roboto Mono', monospace; font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 22px;
}
.bio-credentials { display: flex; flex-wrap: wrap; gap: 9px; }
.bio-credentials .tag {
  font-family: 'Roboto Mono', monospace; font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.22);
}
.bio-body { background: var(--wheat); padding: 72px 0 90px; }
.bio-body .container { max-width: 820px; }
.bio-body h2 {
  font-family: 'Quine', serif; font-weight: 400; font-size: 30px;
  letter-spacing: 0; text-transform: none; color: var(--teal); margin: 40px 0 16px;
}
.bio-body h2:first-child { margin-top: 0; }
.bio-body p { color: #3e3e3e; font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.bio-body ul { list-style: none; margin: 0 0 24px; padding: 0; }
.bio-body ul li {
  position: relative; padding-left: 28px; margin-bottom: 12px;
  font-size: 16px; line-height: 1.6; color: #3e3e3e;
}
.bio-body ul li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--green);
}
.bio-back {
  display: inline-block; margin-top: 20px;
  font-family: 'Roboto Mono', monospace; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal); text-decoration: none;
}
.bio-back:hover { color: var(--green-dark, #a89a4a); }

@media (max-width: 860px) {
  .bio-grid { grid-template-columns: 1fr; gap: 0; }
  .bio-photo { border-radius: 16px; max-width: 320px; aspect-ratio: 3/3.4; }
  .bio-hero-text { padding: 32px 0 48px; }
  .bio-hero-text h1 { font-size: 38px; }
}

/* ============================================================
   BLOG POST PAGE  (Template 6)
============================================================ */
.post-hero { background: var(--teal); padding: 130px 0 70px; }
.post-hero .container { max-width: 800px; }
.post-hero .eyebrow { color: var(--green); }
.post-hero .post-tag {
  display: inline-block;
  font-family: 'Roboto Mono', monospace; font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green);
  border: 1px solid rgba(200,194,132,0.4); border-radius: 100px;
  padding: 6px 14px; margin-bottom: 22px;
}
.post-hero h1 {
  font-family: 'Quine', serif; font-weight: 400; font-size: 46px; line-height: 1.15;
  letter-spacing: 0; text-transform: none; color: #fff; margin-bottom: 20px;
}
.post-meta {
  font-family: 'Roboto Mono', monospace; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.post-body { background: var(--wheat); padding: 64px 0 90px; }
.post-body .container { max-width: 720px; }
.post-featured {
  aspect-ratio: 16/8; border-radius: 14px; overflow: hidden; margin-bottom: 44px;
  background: linear-gradient(160deg, #cfc9bc 0%, #b0b8a8 100%);
  display: flex; align-items: center; justify-content: center;
}
.post-featured img { width: 100%; height: 100%; object-fit: cover; }
.post-featured .ph-label {
  font-family: 'Roboto Mono', monospace; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(44,82,52,0.4);
}
.post-body h2 {
  font-family: 'Quine', serif; font-weight: 400; font-size: 28px;
  letter-spacing: 0; text-transform: none; color: var(--teal); margin: 40px 0 14px;
}
.post-body p { color: #3e3e3e; font-size: 17px; line-height: 1.85; margin-bottom: 20px; }
.post-body ul { list-style: none; margin: 0 0 24px; padding: 0; }
.post-body ul li {
  position: relative; padding-left: 28px; margin-bottom: 12px;
  font-size: 17px; line-height: 1.7; color: #3e3e3e;
}
.post-body ul li::before {
  content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--green);
}
.post-disclaimer {
  margin-top: 40px; padding: 22px 26px; background: rgba(44,82,52,0.05);
  border-left: 3px solid var(--green); border-radius: 6px;
  font-size: 14px; color: #5a5a5a; line-height: 1.6;
}
.post-back {
  display: inline-block; margin-top: 36px;
  font-family: 'Roboto Mono', monospace; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal); text-decoration: none;
}

@media (max-width: 600px) {
  .post-hero h1 { font-size: 32px; }
  .post-body p, .post-body ul li { font-size: 16px; }
}

/* Blog post extra elements */
.post-body h3.post-h3 {
  font-family: 'Roboto', sans-serif; font-weight: 600; font-size: 19px;
  color: var(--teal); margin: 28px 0 12px; letter-spacing: 0;
}
.post-callout {
  margin: 24px 0; padding: 20px 24px; background: rgba(200,194,132,0.14);
  border-left: 3px solid var(--green); border-radius: 6px;
  font-size: 16px; line-height: 1.7; color: #3e3e3e;
}

/* ============================================================
   LEGAL / POLICY PAGES
============================================================ */
.legal-hero { background: var(--teal); padding: 130px 0 60px; }
.legal-hero .container { max-width: 800px; }
.legal-hero .eyebrow { color: var(--green); }
.legal-hero h1 {
  font-family: 'Quine', serif; font-weight: 400; font-size: 46px; line-height: 1.1;
  letter-spacing: 0; text-transform: none; color: #fff; margin-bottom: 12px;
}
.legal-hero .legal-updated {
  font-family: 'Roboto Mono', monospace; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.legal-body { background: var(--wheat); padding: 64px 0 90px; }
.legal-body .container { max-width: 780px; }
.legal-body h2 {
  font-family: 'Quine', serif; font-weight: 400; font-size: 26px;
  letter-spacing: 0; text-transform: none; color: var(--teal); margin: 38px 0 14px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: 'Roboto', sans-serif; font-weight: 600; font-size: 18px;
  color: var(--teal); margin: 26px 0 10px; letter-spacing: 0; text-transform: none;
}
.legal-body p { color: #3e3e3e; font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.legal-body ul { list-style: none; margin: 0 0 20px; padding: 0; }
.legal-body ul li {
  position: relative; padding-left: 26px; margin-bottom: 10px;
  font-size: 16px; line-height: 1.6; color: #3e3e3e;
}
.legal-body ul li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--green);
}
.legal-body a { color: var(--teal); text-decoration: underline; }
.legal-intro-note {
  padding: 18px 22px; background: rgba(44,82,52,0.05); border-left: 3px solid var(--green);
  border-radius: 6px; font-size: 15px; color: #5a5a5a; line-height: 1.65; margin-bottom: 32px;
}

@media (max-width: 600px) { .legal-hero h1 { font-size: 34px; } }

/* ============================================================
   DETAIL PAGE — recovered original content (benefits grid + what-is)
============================================================ */
.detail-expert-intro { margin-bottom: 8px; }
.detail-expert-intro h2 {
  font-family: 'Quine', serif; font-weight: 400; font-size: 30px;
  letter-spacing: 0; text-transform: none; color: var(--teal); margin-bottom: 24px;
}
.benefits-block { margin: 8px 0 12px; }
.benefits-label {
  font-family: 'Roboto Mono', monospace; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green-dark, #a89a4a); margin-bottom: 16px;
}
.benefits-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; margin-bottom: 8px;
}
.benefit-item {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 15px; line-height: 1.5; color: #3e3e3e;
  padding: 9px 0; border-bottom: 1px solid rgba(44,82,52,0.08);
}
.benefit-item svg { flex-shrink: 0; margin-top: 2px; color: var(--green); }
.whatis-block { margin-top: 36px; }
.whatis-block h2 {
  font-family: 'Quine', serif; font-weight: 400; font-size: 28px;
  letter-spacing: 0; text-transform: none; color: var(--teal); margin-bottom: 14px;
}
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; gap: 0; } }

/* Detail page — feature grid (premium aesthetic pages) */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 18px 0 8px;
}
.feature-chip {
  background: #fff; border: 1px solid rgba(44,82,52,0.1); border-radius: 10px;
  padding: 16px 18px; font-family: 'Roboto', sans-serif; font-weight: 500;
  font-size: 14px; color: var(--teal); text-align: center; line-height: 1.3;
  display: flex; align-items: center; justify-content: center; min-height: 60px;
}
.detail-content h3.sub-h { font-family:'Quine',serif; font-weight:400; font-size:22px; color:var(--teal); letter-spacing:0; text-transform:none; margin:28px 0 10px; }
@media (max-width:600px){ .feature-grid{grid-template-columns:1fr 1fr;} }


/* ============================================================
   FOOTER NEWSLETTER (Constant Contact)
   ============================================================ */
.footer-newsletter { border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 48px; }
.fn-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.fn-text .eyebrow { color: var(--green); }
.fn-text h3 { font-family: 'Quine', serif; font-weight: 400; font-size: 27px; line-height: 1.15; letter-spacing: 0; text-transform: none; color: #fff; margin: 8px 0; }
.fn-text p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.6; margin: 0; max-width: 440px; }
.fn-embed .ctct-inline-form { min-height: 44px; }
@media (max-width: 820px) { .fn-inner { grid-template-columns: 1fr; gap: 22px; } }


/* ============================================================
   reCAPTCHA badge hidden (compliance text shown by the form)
   ============================================================ */
.grecaptcha-badge { visibility: hidden; }
.fn-recaptcha-note { margin: 14px 0 0; font-size: 11px; line-height: 1.5; color: rgba(255,255,255,0.5); max-width: 440px; }
.fn-recaptcha-note a { color: rgba(255,255,255,0.72); text-decoration: underline; }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner { position: fixed; bottom: 20px; left: 20px; max-width: 400px; background: #fff; color: var(--charcoal); border: 1px solid rgba(44,82,52,0.12); border-radius: 12px; padding: 20px 22px; box-shadow: 0 12px 40px rgba(0,0,0,0.22); z-index: 9998; font-family: 'Roboto', sans-serif; }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: 13.5px; line-height: 1.55; color: #3e3e3e; margin: 0 0 15px; }
.cookie-banner p a { color: var(--teal); text-decoration: underline; }
.cookie-actions { display: flex; gap: 16px; align-items: center; }
.cookie-accept { background: var(--teal); color: #fff; border: none; border-radius: 100px; padding: 10px 26px; font-family: 'Roboto Mono', monospace; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.2s ease, color 0.2s ease; }
.cookie-accept:hover { background: var(--green); color: var(--teal); }
.cookie-decline { background: transparent; color: #8a8a8a; border: none; font-family: 'Roboto Mono', monospace; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; text-decoration: underline; padding: 0; }
.cookie-decline:hover { color: var(--teal); }
@media (max-width: 520px) { .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; } }


/* ============ Restored two-tier header (.uh-) ============ */
#uh-header { font-family: 'Roboto', sans-serif; background: #fff; }
.uh-top { background: var(--charcoal); color: #e7e4dc; font-size: 13px; }
.uh-top-inner { max-width: 1280px; margin: 0 auto; padding: 9px 48px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.uh-hours { display: flex; align-items: center; gap: 9px; }
.uh-hours svg { stroke: var(--green); flex: 0 0 auto; }
.uh-top-right { display: flex; align-items: center; gap: 22px; }
.uh-top-right a { color: #e7e4dc; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; letter-spacing: .02em; }
.uh-top-right a:hover { color: var(--green); }
.uh-top-right svg { stroke: var(--green); }
.uh-brand { background: var(--wheat); }
.uh-brand-inner { max-width: 1280px; margin: 0 auto; padding: 30px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.uh-logo img { height: 200px; width: auto; display: block; }
.uh-contacts { display: flex; align-items: center; gap: 40px; }
.uh-contact { display: flex; align-items: center; gap: 13px; }
.uh-ic { width: 46px; height: 46px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.uh-ic svg { stroke: #fff; }
.uh-contact-label { font-family: 'Quine', Georgia, serif; font-size: 18px; color: var(--teal); line-height: 1.1; }
.uh-contact-val { font-size: 14px; color: #4a4a45; line-height: 1.3; }
.uh-contact-val a { color: #4a4a45; text-decoration: none; }
.uh-contact-val a:hover { color: var(--teal); }
.uh-nav { background: #fff; border-top: 1px solid rgba(44,82,52,0.12); border-bottom: 1px solid rgba(44,82,52,0.12); }
.uh-nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; }
.uh-menu { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; gap: 30px; }
.uh-menu > li { position: relative; }
.uh-menu > li > a, .uh-menu > li > .uh-toggle { display: inline-flex; align-items: center; gap: 6px; font-family: 'Roboto', sans-serif; font-size: 15.5px; color: var(--charcoal); text-decoration: none; padding: 20px 0; background: none; border: none; cursor: pointer; letter-spacing: .01em; }
.uh-menu > li > a:hover, .uh-menu > li > .uh-toggle:hover { color: var(--teal); }
.uh-home { font-family: 'Quine', Georgia, serif !important; font-size: 17px !important; color: var(--teal) !important; }
.uh-toggle svg { transition: transform .2s ease; }
.uh-has:hover .uh-toggle svg { transform: rotate(180deg); }
.uh-sub { position: absolute; top: 100%; left: -14px; min-width: 250px; background: #fff; border: 1px solid rgba(44,82,52,0.12); border-radius: 10px; box-shadow: 0 14px 34px rgba(0,0,0,0.12); padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .18s ease; z-index: 60; list-style: none; margin: 0; }
.uh-has:hover .uh-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.uh-sub a { display: block; padding: 10px 20px; font-size: 14.5px; color: var(--charcoal); text-decoration: none; }
.uh-sub a:hover { background: var(--wheat); color: var(--teal); }
.uh-nav-cta { display: flex; align-items: center; gap: 14px; }
.uh-phone-pill { display: inline-block; background: var(--teal); color: #fff; text-decoration: none; font-family: 'Roboto', sans-serif; font-size: 15px; font-weight: 500; padding: 11px 22px; border-radius: 40px; }
.uh-phone-pill:hover { background: var(--teal-dark); }
#uh-header .nav-hamburger { display: none; }
@media (max-width: 1040px) {
  .uh-top-inner, .uh-brand-inner, .uh-nav-inner { padding-left: 24px; padding-right: 24px; }
  .uh-contacts { gap: 22px; }
  .uh-contact-val { display: none; }
  .uh-menu { gap: 20px; }
}
@media (max-width: 900px) {
  .uh-top { display: none; }
  .uh-contacts { display: none; }
  .uh-nav { display: none; }
  #uh-header .nav-hamburger { display: flex; }
  .uh-brand-inner { padding: 16px 24px; }
  .uh-logo img { height: 112px; }
  .nav-mobile-drawer { top: 144px; }
}
