    /* ═══════════════════════════════════════════════
       DESIGN: Pacific Northwest Craftsman
       Colors: Forest green, warm cream, charcoal, amber
       Typography: DM Serif Display + DM Sans
       ═══════════════════════════════════════════════ */

    :root {
      --forest: #1a3c2a;
      --forest-light: #2a5c3f;
      --forest-dark: #122a1e;
      --cream: #f5f0e8;
      --cream-dark: #e8dfd2;
      --amber: #d4943a;
      --amber-dark: #b87a2a;
      --charcoal: #2c2a26;
      --charcoal-light: #6b6860;
      --warm-white: #faf8f5;
      --white: #ffffff;
      --shadow-sm: 0 2px 8px rgba(26, 60, 42, 0.06);
      --shadow-md: 0 8px 24px rgba(26, 60, 42, 0.08);
      --shadow-lg: 0 16px 40px rgba(26, 60, 42, 0.10);
      --shadow-xl: 0 24px 56px rgba(26, 60, 42, 0.14);
      --radius: 16px;
      --radius-sm: 12px;
      --max: 1200px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    ::selection {
      background-color: rgba(26, 60, 42, 0.2);
    }

    body {
      font-family: 'DM Sans', system-ui, sans-serif;
      color: var(--charcoal);
      background: var(--cream);
      line-height: 1.7;
      font-size: 17px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4 {
      font-family: 'DM Serif Display', Georgia, serif;
      line-height: 1.15;
      letter-spacing: -0.01em;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(92%, var(--max));
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 16px;
      font-size: 0.78rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 999px;
    }

    .eyebrow-green {
      color: var(--forest);
      background: rgba(26, 60, 42, 0.1);
    }

    .eyebrow-amber {
      color: var(--amber);
      background: rgba(212, 148, 58, 0.15);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.95rem;
      transition: all 0.25s ease;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }

    .btn-amber {
      background: var(--amber);
      color: var(--charcoal);
      box-shadow: var(--shadow-lg);
    }

    .btn-amber:hover {
      background: var(--amber-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-xl);
    }

    .btn-forest {
      background: var(--forest);
      color: var(--white);
      box-shadow: var(--shadow-lg);
    }

    .btn-forest:hover {
      background: var(--forest-light);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.25);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.4);
    }

    /* Arrow SVG for buttons */
    .arrow-icon {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ─── Scroll Animations ─── */
    .fade-up {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.35s; }

    /* ─── Header ─── */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: all 0.3s ease;
      background: transparent;
    }

    .header.scrolled {
      background: rgba(26, 60, 42, 0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      height: 80px;
    }

    .brand {
      color: var(--white);
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: 0.2px;
      white-space: nowrap;
    }

    .brand span {
      color: var(--amber);
    }

    .nav-toggle {
      display: none;
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      padding: 8px 12px;
      font: inherit;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav a {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.2s;
    }

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

    .nav .btn-amber {
      margin-left: 8px;
      padding: 10px 22px;
    }

    /* ─── Hero ─── */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(18, 42, 30, 0.92),
        rgba(18, 42, 30, 0.80),
        rgba(18, 42, 30, 0.50)
      );
    }

    .hero .container {
      position: relative;
      z-index: 2;
      padding: 140px 0 100px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
    }

    .hero h1 {
      color: var(--white);
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      margin-bottom: 24px;
    }

    .hero-text {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.08rem;
      max-width: 58ch;
      margin-bottom: 32px;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-card {
      background: var(--warm-white);
      border-radius: var(--radius);
      box-shadow: var(--shadow-xl);
      padding: 28px;
      border: 1px solid rgba(232, 223, 210, 0.5);
    }

    .hero-card h3 {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 1.15rem;
      margin-bottom: 16px;
      color: var(--charcoal);
    }

    .hero-card ul {
      list-style: none;
      padding: 0;
    }

    .hero-card li {
      display: flex;
      gap: 12px;
      color: var(--charcoal-light);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .hero-card li + li {
      margin-top: 14px;
    }

    .check-icon {
      width: 18px;
      height: 18px;
      color: var(--forest);
      flex-shrink: 0;
      margin-top: 3px;
    }

    /* ─── Services ─── */
    .services {
      padding: 100px 0;
      background: var(--cream);
    }

    .services h2 {
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      margin-bottom: 12px;
    }

    .services .section-intro {
      color: var(--charcoal-light);
      font-size: 1.08rem;
      max-width: 62ch;
      margin-bottom: 56px;
      line-height: 1.75;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .service-card {
      background: var(--warm-white);
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(232, 223, 210, 0.4);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-xl);
    }

    .service-card-img {
      height: 210px;
      overflow: hidden;
    }

    .service-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .service-card:hover .service-card-img img {
      transform: scale(1.05);
    }

    .service-card-body {
      padding: 28px;
    }

    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(26, 60, 42, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: var(--forest);
    }

    .service-icon svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-card h3 {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 1.15rem;
      margin-bottom: 8px;
    }

    .service-card p {
      color: var(--charcoal-light);
      line-height: 1.7;
    }

    .serving-note {
      margin-top: 40px;
      text-align: center;
      color: var(--charcoal-light);
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .serving-note svg {
      width: 16px;
      height: 16px;
      color: var(--forest);
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    /* ─── Why Us ─── */
    .why-us {
      padding: 100px 0;
      background: var(--warm-white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 60px;
      align-items: center;
    }

    .why-img {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }

    .why-img img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .why-us h2 {
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      margin-bottom: 12px;
    }

    .why-intro {
      color: var(--charcoal-light);
      font-size: 1.08rem;
      line-height: 1.75;
      margin-bottom: 40px;
    }

    .why-card {
      background: var(--cream);
      border-radius: var(--radius-sm);
      padding: 24px;
      border: 1px solid rgba(232, 223, 210, 0.4);
    }

    .why-card + .why-card {
      margin-top: 20px;
    }

    .why-card h3 {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 1.08rem;
      margin-bottom: 6px;
    }

    .why-card p {
      color: var(--charcoal-light);
      line-height: 1.7;
    }

    /* ─── Process ─── */
    .process {
      padding: 100px 0;
      background: var(--forest);
      position: relative;
      overflow: hidden;
    }

    .process::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .process .container {
      position: relative;
      z-index: 2;
    }

    .process h2 {
      color: var(--white);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      margin-bottom: 12px;
    }

    .process .section-intro {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.08rem;
      max-width: 62ch;
      margin-bottom: 56px;
      line-height: 1.75;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .step-card {
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(4px);
      border-radius: var(--radius);
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: background 0.3s ease;
    }

    .step-card:hover {
      background: rgba(255, 255, 255, 0.12);
    }

    .step-num {
      font-family: 'DM Serif Display', serif;
      font-size: 2.4rem;
      color: var(--amber);
      margin-bottom: 16px;
      display: block;
    }

    .step-card h3 {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      color: var(--white);
      font-size: 1.08rem;
      margin-bottom: 8px;
    }

    .step-card p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
      line-height: 1.65;
    }

    /* ─── Good Fit / Values ─── */
    .good-fit {
      padding: 100px 0;
      background: var(--cream);
    }

    .fit-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .fit-card {
      background: var(--warm-white);
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      padding: 36px 40px;
      border: 1px solid rgba(232, 223, 210, 0.4);
    }

    .fit-card h2 {
      font-size: clamp(1.4rem, 2.5vw, 1.8rem);
      margin-bottom: 20px;
    }

    .fit-list {
      list-style: none;
      padding: 0;
    }

    .fit-list li {
      display: flex;
      gap: 12px;
      color: var(--charcoal-light);
      line-height: 1.65;
    }

    .fit-list li + li {
      margin-top: 14px;
    }

    .fit-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--forest);
      flex-shrink: 0;
      margin-top: 8px;
    }

    .fit-card p {
      color: var(--charcoal-light);
      font-size: 1.08rem;
      line-height: 1.75;
    }

    .fit-card p + p {
      margin-top: 16px;
    }

    /* ─── Quote Section ─── */
    .quote-section {
      padding: 100px 0;
      background: var(--warm-white);
    }

    .quote-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 28px;
    }

    .quote-box {
      background: var(--cream);
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      padding: 36px 40px;
      border: 1px solid rgba(232, 223, 210, 0.4);
    }

    .quote-box h2 {
      font-size: clamp(1.4rem, 2.5vw, 1.8rem);
      margin-bottom: 8px;
    }

    .quote-box > p {
      color: var(--charcoal-light);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .quote-form {
      display: grid;
      gap: 14px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
      width: 100%;
      padding: 14px 20px;
      border: 1px solid var(--cream-dark);
      border-radius: var(--radius-sm);
      font: inherit;
      font-size: 0.95rem;
      color: var(--charcoal);
      background: var(--warm-white);
      transition: all 0.2s ease;
    }

    .quote-form input:focus,
    .quote-form select:focus,
    .quote-form textarea:focus {
      outline: none;
      border-color: var(--forest);
      box-shadow: 0 0 0 3px rgba(26, 60, 42, 0.12);
    }

    .quote-form input::placeholder,
    .quote-form textarea::placeholder {
      color: rgba(107, 104, 96, 0.6);
    }

    .quote-form textarea {
      min-height: 140px;
      resize: vertical;
    }

    .contact-box {
      display: flex;
      flex-direction: column;
    }

    .contact-links {
      margin-bottom: 28px;
    }

    .contact-link {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
      transition: color 0.2s;
    }

    .contact-link:hover {
      color: var(--forest);
    }

    .contact-link + .contact-link {
      margin-top: 14px;
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(26, 60, 42, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon svg {
      width: 18px;
      height: 18px;
      color: var(--forest);
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .contact-divider {
      border: none;
      border-top: 1px solid var(--cream-dark);
      margin: 0 0 24px;
    }

    .contact-detail h3 {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 1.08rem;
      margin-bottom: 4px;
    }

    .contact-detail p {
      color: var(--charcoal-light);
      line-height: 1.7;
    }

    .contact-detail + .contact-detail {
      margin-top: 20px;
    }

    /* ─── FAQ ─── */
    .faq {
      padding: 100px 0;
      background: var(--cream);
    }

    .faq-inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .faq h2 {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      background: var(--warm-white);
      border-radius: var(--radius-sm);
      border: 1px solid rgba(232, 223, 210, 0.4);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 24px;
      background: none;
      border: none;
      font: inherit;
      text-align: left;
      cursor: pointer;
    }

    .faq-question h3 {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 1.02rem;
      color: var(--charcoal);
    }

    .faq-chevron {
      width: 20px;
      height: 20px;
      color: var(--charcoal-light);
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                  opacity 0.3s ease;
      opacity: 0;
    }

    .faq-item.open .faq-answer {
      max-height: 200px;
      opacity: 1;
    }

    .faq-answer p {
      padding: 0 24px 22px;
      color: var(--charcoal-light);
      line-height: 1.7;
    }

    /* ─── CTA Band ─── */
    .cta-band {
      padding: 88px 0;
      background: var(--forest);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .cta-band::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.06;
      background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    }

    .cta-band .container {
      position: relative;
      z-index: 2;
    }

    .cta-band h2 {
      color: var(--white);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      margin-bottom: 12px;
    }

    .cta-band p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.08rem;
      max-width: 56ch;
      margin: 0 auto 28px;
      line-height: 1.75;
    }

    /* ─── Footer ─── */
    .footer {
      background: var(--forest-dark);
      padding: 56px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 32px;
    }

    .footer-brand {
      color: var(--white);
      font-weight: 800;
      font-size: 1.12rem;
      margin-bottom: 12px;
    }

    .footer-brand span {
      color: var(--amber);
    }

    .footer p,
    .footer a {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.65;
    }

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

    .footer-title {
      color: var(--white);
      font-weight: 700;
      margin-bottom: 12px;
    }

    .footer-links a {
      display: block;
    }

    .footer-links a + a {
      margin-top: 8px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 40px;
      padding: 28px 0;
      text-align: center;
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.88rem;
    }

    /* ─── Responsive ─── */
    @media (max-width: 900px) {
      .hero-grid,
      .services-grid,
      .steps-grid,
      .fit-grid,
      .quote-grid,
      .why-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

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

      .nav-toggle {
        display: inline-flex;
      }

      .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0 0 18px;
        background: rgba(18, 42, 30, 0.98);
        backdrop-filter: blur(12px);
      }

      .nav.open {
        display: flex;
      }

      .nav a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
      }

      .nav .btn-amber {
        margin: 14px 0 0;
        width: 100%;
        text-align: center;
      }

      .nav-wrap {
        flex-wrap: wrap;
        height: auto;
        padding: 16px 0;
      }

      .hero {
        min-height: auto;
      }

      .hero .container {
        padding: 120px 0 80px;
      }

      .why-grid {
        gap: 32px;
      }

      .quote-box,
      .fit-card {
        padding: 28px;
      }
    }

    @media (max-width: 600px) {
      .steps-grid {
        grid-template-columns: 1fr;
      }
    }

/* ─── Thank You Page Specific Styles ─── */
.thank-you-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 60px;
  background: var(--cream);
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  background: rgba(26, 60, 42, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--forest);
  stroke-width: 2;
  fill: none;
}

.thank-you-content h1 {
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.thank-you-content .eyebrow {
  display: inline-block;
  margin-bottom: 24px;
}

.thank-you-content p {
  color: var(--charcoal-light);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.thank-you-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.thank-you-actions a {
  display: inline-block;
}

@media (max-width: 600px) {
  .thank-you-container {
    padding: 60px 20px 40px;
  }

  .thank-you-content h1 {
    font-size: 1.8rem;
  }
}

/* ─── Service Page Hero Background ─── */
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18, 42, 30, 0.92),
    rgba(18, 42, 30, 0.80),
    rgba(18, 42, 30, 0.50)
  );
}


/* ─── Screen Reader Only (Accessibility) ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Secondary Page Shared Styles ─── */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
  text-align: center;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section {
  padding: 80px 0;
  background: var(--cream);
}

.section-alt {
  background: var(--warm-white);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

/* ─── Area Cards ─── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.area-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 28px;
  border: 1px solid rgba(232, 223, 210, 0.4);
}

.area-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--forest);
}

.area-card ul {
  list-style: none;
  padding: 0;
}

.area-card li {
  color: var(--charcoal-light);
  padding: 4px 0;
  line-height: 1.6;
}

.area-card li::before {
  content: "\2022";
  color: var(--forest);
  font-weight: bold;
  display: inline-block;
  width: 1em;
}

.testimonial {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
  font-style: italic;
  color: var(--charcoal-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ─── Founder Cards (About Page) ─── */
.founder-card {
  background: var(--warm-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 28px;
  border: 1px solid rgba(232, 223, 210, 0.4);
}

.founder-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--forest);
}

.founder-card p {
  color: var(--charcoal-light);
  line-height: 1.7;
}

.founder-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.story-content p {
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ─── Community Section ─── */
.community-card {
  background: var(--warm-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 28px;
  border: 1px solid rgba(232, 223, 210, 0.4);
}

.community-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--forest);
}

.community-card p {
  color: var(--charcoal-light);
  line-height: 1.7;
}
