  :root {
    /* Metallic Soft Gold system: reflective accents with a deeper accessible text shade. */
    --crevo-gold: #C9A86A;
    --crevo-gold-hover: #D9BC7D;
    --crevo-gold-deep: #84651F;
    --crevo-gold-light: #F5E6C8;
    --crevo-gold-soft: #FAF3DF;
    --crevo-gold-dark: #4F3A14;
    --crevo-gold-metallic:
      radial-gradient(circle at 28% 18%, rgba(255,255,255,.96) 0 5%, rgba(255,244,211,.72) 7%, transparent 23%),
      linear-gradient(145deg, #F4E5BE 0%, #D9BD7D 25%, #C9A86A 48%, #E9CF91 66%, #A77E39 100%);
  }

  @font-face {
    font-family: "garretbook";
    src: url("fonts/garet.book.ttf");
    font-weight: normal;
    font-style: normal;
  }


    html {
      scroll-behavior: smooth;
    }

    html, body {
      overflow-x: hidden;
      max-width: 100%;
    }

    body {
      background-color: white;
      font-family: Georgia, 'Times New Roman', serif;
    }

    /* ── Navbar ── */
    .navbar {
      background-color: white;
      border-bottom: 1px solid #ddd;
      padding: 0.6rem 1.5rem;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      width: 100%;
    }
    .navbar .container-fluid {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .navbar-brand {
      font-family: Georgia, serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #1a1a1a;
      letter-spacing: -0.01em;
      display: flex;
      align-items: center;
    }
    .navbar-brand span,
    .navbar-brand .dot {
      color: #1a1a1a;
    }
    .navbar-logo {
      height: 60px;
      width: auto;
      display: block;
    }

    /* ── Inline nav links ── */
    .navbar-nav-inline {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .navbar-nav-inline a {
      color: #1a1a1a;
      /* font-size: 0.82rem; */
      font-size: 1rem;
      letter-spacing: 0.04em;
      /* text-transform: capitalize; */
      text-decoration: none;
      font-weight: 600;
      font-family: "garretbook", Arial, sans-serif;
      white-space: nowrap;
      transition: color 0.2s;
    }
    .navbar-nav-inline a:hover {
      color: var(--crevo-gold-deep);
    }

    /* ── Hamburger toggle ── */
    .hamburger-btn {
      background: none;
      border: none;
      padding: 0;
      margin-left: 1.5rem;
      cursor: pointer;
      color: #888;
      font-size: 1rem;
      line-height: 1;
      transition: color 0.2s;
    }
    .hamburger-btn:hover {
      color: #1a1a1a;
    }
    .hamburger-btn .bar {
      display: block;
      width: 18px;
      height: 2px;
      background-color: var(--crevo-gold-deep);
      margin: 3px 0;
      transition: background-color 0.2s;
    }

    /* ── Navbar responsive: inline links on desktop, hamburger+offcanvas on mobile ── */
    @media (min-width: 992px) {
      .hamburger-btn {
        display: none;
      }
    }
    @media (max-width: 991.98px) {
      .navbar-nav-inline {
        display: none;
      }
    }

    /* ── Offcanvas panel ── */
    .offcanvas.offcanvas-end {
      width: 280px;
      background-color: #1a1a1a;
      border-left: none;
    }
    .offcanvas-header {
      border-bottom: 1px solid #333;
      padding: 1.2rem 1.5rem;
    }
    .offcanvas-title {
      font-family: Georgia, serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #f0f0f0;
      letter-spacing: -0.01em;
    }
    .btn-close-custom {
      background: none;
      border: none;
      color: #888;
      font-size: 1.2rem;
      cursor: pointer;
      padding: 0;
      transition: color 0.2s;
    }
    .btn-close-custom:hover {
      color: #f0f0f0;
    }

    .offcanvas-body {
      padding: 1.5rem;
    }

    /* ── Nav links inside offcanvas ── */
    .offcanvas-nav {
      list-style: none;
      padding: 0;
      margin: 0 0 2rem 0;
    }
    .offcanvas-nav li {
      border-bottom: 1px solid #2e2e2e;
    }
    .offcanvas-nav li:last-child {
      border-bottom: none;
    }

    .offcanvas-nav a {
      display: block;
      padding: 0.85rem 0;
      color: #c8c8c8;
      text-decoration: none;
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      text-transform: capitalize;
      font-family: "garretbook", Arial, sans-serif;
      transition: color 0.2s;
    }
    .offcanvas-nav a:hover {
      color: #ffffff;
    }

    /* ── Social icons inside offcanvas ── */
    .offcanvas-social {
      display: flex;
      gap: 1rem;
      margin-top: auto;
    }
    .offcanvas-social a {
      color: #666;
      font-size: 0.85rem;
      text-decoration: none;
      transition: color 0.2s;
    }
    .offcanvas-social a:hover {
      color: #f0f0f0;
    }

    /* ── Hero ── */
    .hero-section {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 8rem 2rem 6rem;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero-bg-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10, 9, 8, 0.55) 0%, rgba(10, 9, 8, 0.35) 45%, rgba(10, 9, 8, 0.65) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 900px;
    }
    .hero-heading {
      font-family: "Poppins", Georgia, serif;
      font-size: 3.6rem;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    .hero-heading span {
      display: block;
    }
    .hero-heading-gold {
      color: var(--crevo-gold);
    }
    .hero-heading-white {
      color: #fff;
    }
    .hero-subheading {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 1.15rem;
      font-weight: 500;
      color: #f0efec;
      line-height: 1.7;
      margin: 0 auto 2.25rem;
      max-width: 720px;
    }
    .hero-cta-group {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    @media (max-width: 767.98px) {
      .hero-section {
        min-height: 70vh;
        padding: 7rem 1.25rem 4rem;
      }
      .hero-heading {
        font-size: 2.4rem;
      }
    }
    .btn-hero-primary {
      background-color: var(--crevo-gold);
      color: #111;
      border: none;
      padding: 0.75rem 1.75rem;
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: 4px;
      text-decoration: none;
      display: inline-block;
      transition: background-color 0.2s;
    }
    .hero-section .btn-hero-primary {
      font-size: 1.25rem;
    }
    .btn-hero-primary:hover {
      background-color: var(--crevo-gold-hover);
      color: #111;
    }
    .btn-hero-secondary {
      background: none;
      border: none;
      color: #1a1a1a;
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-left: 1.5rem;
      transition: color 0.2s;
    }
    .btn-hero-secondary .play-icon {
      width: 32px;
      height: 32px;
      border: 2px solid #1a1a1a;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
    }
    .btn-hero-secondary:hover {
      color: var(--crevo-gold-deep);
    }
    .btn-hero-secondary:hover .play-icon {
      border-color: var(--crevo-gold-deep);
    }

    /* ── Shared section label ── */
    .section-label {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--crevo-gold-deep);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    .industries-label {
      text-align: center;
    }
    .about-label,
    .contact-label {
      margin-bottom: 1rem;
    }

    /* ── Shared section heading ── */
    .section-heading {
      font-family: "Poppins", Georgia, serif;
      font-weight: 700;
      color: #1a1a1a;
      
    }
    .why-heading {
      max-width: 100%;
    }
    .why-heading .nowrap-line {
      white-space: nowrap;
    }

    .why-heading,
    .testimonials-heading,
    .industries-heading {
      font-size: 2.22rem;
      line-height: 1.25;
      margin: 0;
    }
    .industries-heading {
      text-align: center;
      margin-bottom: 0.75rem;
    }
    @media (max-width: 991.98px) {
      .why-heading,
      .industries-heading {
        font-size: 2.1rem;
      }
    }
    @media (max-width: 767.98px) {
      .why-heading,
      .industries-heading {
        font-size: 1.5rem;
      }
    }
    @media (max-width: 575.98px) {
      .why-heading,
      .industries-heading {
        font-size: 1.8rem;
      }
      .why-heading .nowrap-line {
        white-space: normal;
      }
    }
    .testimonials-heading .nowrap-line {
      white-space: nowrap;
    }
    .about-heading {
      font-size: 2.22rem;
      line-height: 1.25;
      margin: 0 0 1.5rem;
    }
    .contact-heading {
      font-size: 2.6rem;
      line-height: 1.25;
      margin: 0 0 1.25rem;
    }

    /* ── Gallery ── */
    .gallery-section {
      padding: 4rem 0;
      background-color: #fafaf9;
    }
    .gallery-carousel {
      overflow: hidden;
    }
    .gallery-track {
      display: flex;
      transition: transform 0.5s ease;
    }
    .gallery-slide {
      flex: 0 0 100%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.75rem;
    }
    .gallery-item {
      position: relative;
      aspect-ratio: 1 / 1;
      border-radius: 4px;
      overflow: hidden;
      background-color: #e2e0da;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .gallery-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      margin-top: 2.5rem;
    }
    .gallery-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 1px solid #1a1a1a;
      background: transparent;
      padding: 0;
      cursor: pointer;
      display: inline-block;
      transition: background-color 0.2s, border-color 0.2s;
    }
    .gallery-dot.active {
      background-color: var(--crevo-gold);
      border-color: var(--crevo-gold);
    }
    @media (max-width: 991.98px) {
      .gallery-slide {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 575.98px) {
      .gallery-slide {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
    }

    /* ── Projects ── */
    .projects-section {
      padding: 5rem 0;
      background-color: #ffffff;
    }
    .projects-subheading {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 1rem;
      color: #666;
      max-width: 620px;
      margin: 0 0 2.5rem;
    }
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .project-item {
      position: relative;
      display: block;
      width: 100%;
      aspect-ratio: 4 / 3;
      border: 0;
      padding: 0;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      background: none;
      -webkit-tap-highlight-color: transparent;
    }
    .project-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .project-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(20, 18, 14, 0.45);
      color: #fff;
      font-size: 1.4rem;
      opacity: 0;
      transition: opacity 0.25s ease;
    }
    .project-item:hover .project-overlay,
    .project-item:focus-visible .project-overlay {
      opacity: 1;
    }
    .project-video-link .project-video-overlay {
      align-items: flex-end;
      justify-content: flex-start;
      padding: 1.1rem;
      background: linear-gradient(to top, rgba(12, 11, 9, 0.82), rgba(12, 11, 9, 0.08) 68%);
      opacity: 1;
      text-align: left;
    }
    .project-video-title {
      max-width: calc(100% - 3rem);
      font-family: 'Poppins', sans-serif;
      font-size: clamp(0.95rem, 1.3vw, 1.2rem);
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }
    .project-video-overlay > .fa-play {
      position: absolute;
      right: 1rem;
      bottom: 1rem;
      display: grid;
      width: 2.25rem;
      height: 2.25rem;
      place-items: center;
      border-radius: 50%;
      background: var(--crevo-gold);
      color: #111;
      font-size: 0.8rem;
    }
    .project-item:hover .project-photo,
    .project-item:focus-visible .project-photo {
      transform: scale(1.05);
    }
    .project-item:focus-visible {
      outline: 2px solid var(--crevo-gold-deep);
      outline-offset: 3px;
    }
    /* Reflective metallic finish for gold circles and round controls. */
    .gallery-dot.active,
    .project-video-overlay > .fa-play,
    .process-step-number,
    .testimonial-avatar,
    .testimonial-arrow:hover,
    .showcase-card:hover .showcase-play-icon,
    .footer-social a:hover,
    .faq-question[aria-expanded="true"] .faq-icon {
      background-color: var(--crevo-gold);
      background-image: var(--crevo-gold-metallic);
      border-color: var(--crevo-gold);
      color: #111;
      box-shadow:
        inset 0 1px 1px rgba(255,255,255,.9),
        inset 0 -3px 5px rgba(84,57,13,.26),
        0 4px 12px rgba(94,68,22,.24);
    }
    .gallery-dot.active {
      box-shadow:
        inset 0 1px 1px rgba(255,255,255,.92),
        inset 0 -2px 3px rgba(84,57,13,.25),
        0 0 0 3px rgba(201,168,106,.22),
        0 2px 7px rgba(94,68,22,.24);
    }
    @media (max-width: 991.98px) {
      .projects-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 575.98px) {
      .projects-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── Project modal ── */
    .project-modal {
      position: fixed;
      inset: 0;
      z-index: 1060;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
    .project-modal.is-open {
      display: flex;
    }
    .project-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(12, 11, 9, 0.88);
    }
    .project-modal-dialog {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 1rem;
      max-width: 1000px;
      width: 100%;
    }
    .project-modal-content {
      position: relative;
      width: 100%;
      max-height: 86vh;
      background-color: #1a1a1a;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .project-modal-content img {
      width: 100%;
      max-height: 68vh;
      object-fit: contain;
      background-color: #000;
      display: block;
    }
    .project-modal-caption {
      padding: 1.25rem 1.5rem;
    }
    .project-modal-caption h3 {
      font-family: "Poppins", Georgia, serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: #fff;
      margin: 0 0 0.35rem;
    }
    .project-modal-caption p {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.9rem;
      color: #b8b6b1;
      margin: 0;
    }
    .project-modal-close {
      position: absolute;
      top: -3rem;
      right: 0;
      z-index: 2;
      width: 40px;
      height: 40px;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }
    .project-modal-close:hover {
      background: rgba(255, 255, 255, 0.25);
    }
    .project-modal-nav {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }
    .project-modal-nav:hover {
      background: rgba(255, 255, 255, 0.25);
    }
    @media (max-width: 767.98px) {
      .project-modal {
        padding: 1rem;
      }
      .project-modal-dialog {
        gap: 0.5rem;
      }
      .project-modal-close {
        top: -2.75rem;
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
      }
      .project-modal-nav {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
      }
    }

    /* ── Industries We Serve ── */
    .industries-section {
      padding: 4rem 0 3rem;
      background-color: white;
    }
    .industries-quote {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.95rem;
      color: #666;
      text-align: center;
      max-width: 560px;
      margin: 0 auto 2.5rem;
      line-height: 1.6;
      /* 2 lines */
    }
    .industries-quote .nowrap-line {
      white-space: nowrap;
    }
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background-color: #fafaf9;
    }
    .industry-card {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: #1a1a1a;
      border: 1px solid #eee;
      padding: 1.5rem 1.75rem;
      display: flex;
      align-items: center;
    }
    @media (max-width: 991.98px) {
      .industries-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 575.98px) {
      .industries-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── Core Services ── */
    .services-section {
      padding: 5rem 0 6rem;
      background-color: white;
    }
    .services-header {
      max-width: 1140px;
      margin: 0 auto 3.5rem;
      text-align: center;
    }
    .services-header .services-eyebrow {
      justify-content: center;
    }
    .services-subheading .nowrap-line {
      white-space: nowrap;
    }
    .services-subheading {
      font-family: "Poppins", Georgia, serif;
      font-size: 2.22rem;
      font-weight: 700;
      line-height: 1.4;
      color: black;
      margin: 0 auto;
      max-width: 100%;
    }
    @media (max-width: 991.98px) {
      .services-subheading {
        font-size: 1.4rem;
      }
    }
    @media (max-width: 767.98px) {
      .services-subheading {
        font-size: 1rem;
      }
    }
    @media (max-width: 575.98px) {
      .services-subheading {
        font-size: 1.2rem;
      }
      .services-subheading .nowrap-line {
        white-space: normal;
      }
    }
    .services-column {
      padding-top: 1.5rem;
      margin-bottom: 3rem;
      /* border-top: 1px solid #1a1a1a; */
    }
    .services-column-placeholder {
      width: 100%;
      aspect-ratio: 4 / 3;
      background-color: #eee;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #bbb;
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }
    .services-column-image {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 8px;
      display: block;
      margin-bottom: 1.5rem;
    }
    .services-column-label {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--crevo-gold-deep);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 1.75rem;
    }
    .services-item {
      margin-bottom: 1.75rem;
    }
    .services-item:last-child {
      margin-bottom: 0;
    }
    .services-item-title {
      font-family: "Poppins", Georgia, serif;
      font-size: 1.65rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }
    .services-item-body {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.9rem;
      color: #555;
      line-height: 1.65;
      margin: 0;
    }

    /* ── What We Help Solve ── */
    .solve-section {
      padding: 5rem 0 6rem;
      background-color: white;
    }
    .solve-header {
      max-width: 580px;
      margin-bottom: 3rem;
    }
    .solve-heading {
      font-size: 2.6rem;
      line-height: 1.25;
      margin: 0;
      white-space: nowrap;
    }
    .solve-grid {
      border-top: 1px solid #ccc;
      border-left: 1px solid #ccc;
    }
    .solve-item {
      display: flex;
      align-items: flex-start;
      gap: 1.1rem;
      padding: 1.75rem 2rem;
      border-right: 1px solid #ccc;
      border-bottom: 1px solid #ccc;
    }
    .solve-icon {
      flex-shrink: 0;
      color: var(--crevo-gold-deep);
      font-size: 1.05rem;
      margin-top: 0.1rem;
    }
    .solve-text {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.93rem;
      color: #333;
      line-height: 1.65;
      margin: 0;
    }

    /* ── How We Work ── */
    .process-section {
      padding: 6rem 0;
      background-color: white;
    }
    .process-header {
      max-width: 780px;
      margin: 0 auto 3.5rem;
      text-align: center;
    }
    .process-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    .process-eyebrow .process-label {
      margin-bottom: 0;
    }
    .process-heading {
      font-size: 2.22rem;
      line-height: 1.25;
      margin: 0;
      color: #1a1a1a;
    }
    .process-list {
      position: relative;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .process-line {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 180px;
      z-index: 0;
    }
    .process-line path {
      fill: none;
      stroke: #bbb;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-dasharray: 1 16;
    }
    .process-step {
      position: relative;
      z-index: 1;
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: none;
      border: none;
      padding: 0 0.75rem;
      cursor: pointer;
      text-align: center;
    }
    .process-step:nth-of-type(2n) {
      margin-top: 90px;
    }
    .process-step-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      font-family: Georgia, serif;
      font-style: italic;
      font-size: 1.9rem;
      color: #111;
      background-color: var(--crevo-gold);
      background-image: var(--crevo-gold-metallic);
      line-height: 1;
      flex-shrink: 0;
      margin-bottom: 1.5rem;
      transition: transform 0.25s ease;
    }
    .process-step:nth-of-type(2n) .process-step-number {
      background-color: var(--crevo-gold);
      color: #111;
    }
    .process-step:hover .process-step-number {
      transform: translateY(-4px);
    }
    .process-step-content {
      width: 100%;
    }
    .process-step-title {
      font-family: "Poppins", Georgia, serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
    }
    .process-step-desc {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.92rem;
      color: #666;
      line-height: 1.6;
      margin: 0;
    }
    @media (max-width: 767.98px) {
      .process-line {
        display: none;
      }
      .process-list {
        flex-direction: column;
        gap: 2.5rem;
      }
      .process-step:nth-of-type(2n) {
        margin-top: 0;
      }
    }

    /* ── Process Modals ── */
    .process-modal .modal-content {
      background-color: #fff;
      border: none;
      border-radius: 12px;
      overflow: hidden;
    }
    .process-modal .modal-header {
      background-color: #1a1a1a;
      border-bottom: 1px solid #2e2e2e;
      padding: 1.75rem 2rem;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
    }
    .modal-step-number {
      display: block;
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--crevo-gold-deep);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.4rem;
    }
    .process-modal .modal-title {
      font-family: Georgia, serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: #f0f0f0;
      margin: 0;
    }
    .process-modal .modal-body {
      padding: 2rem;
    }
    .modal-lead {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.97rem;
      color: #333;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    .modal-body-text {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.95rem;
      color: #555;
      line-height: 1.8;
      margin: 0;
    }
    .modal-sub-heading {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--crevo-gold-deep);
      margin-bottom: 0.75rem;
    }
    .modal-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .modal-list li {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.93rem;
      color: #444;
      line-height: 1.6;
      padding: 0.55rem 0;
      border-bottom: 1px solid #f0f0f0;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .modal-list li::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: var(--crevo-gold-deep);
      flex-shrink: 0;
    }
    .modal-list li:last-child {
      border-bottom: none;
    }

    /* ── Why Crevo ── */
    .why-section {
      padding: 5rem 0 6rem;
      background-color: white;
    }
    .why-header {
      max-width: 900px;
      margin: 0 auto 3rem;
    }
    .why-header .why-eyebrow {
      justify-content: center;
    }
    .why-subheading .nowrap-line {
      white-space: nowrap;
    }
    .why-subheading {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.95rem;
      color: #666;
      line-height: 1.6;
      margin: 1rem 0 0;
    }
    .why-bento {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 360px 360px;
      gap: 1.5rem;
    }
    .why-card {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 2.25rem 2.25rem 0;
      border-radius: 16px;
      background-color: #f2efe6;
      overflow: visible;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .why-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.09);
    }
    .why-card-flat {
      padding-bottom: 2.25rem;
      justify-content: flex-start;
    }
    .why-card-icon {
      font-size: 1.35rem;
      color: #1a1a1a;
      margin-bottom: 1.25rem;
    }
    .why-card-text .nowrap-line {
      white-space: nowrap;
    }
    .why-card-text {
      font-family: "Poppins", Georgia, serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: #1a1a1a;
      line-height: 1.4;
      margin: 0 0 1.5rem;
      max-width: 260px;
    }
    .why-card-flat .why-card-text {
      margin-bottom: 0;
    }
    .why-card-photo-card {
      justify-content: flex-start;
    }
    .why-card-photo {
      flex: 1;
      width: 100%;
      min-height: 120px;
      margin: 0 -0.5rem -1.25rem;
      border-radius: 14px;
      background-size: cover;
      background-position: center;
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
    }
    @media (max-width: 991.98px) {
      .why-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 340px 340px 340px;
      }
    }
    @media (max-width: 575.98px) {
      .why-bento {
        grid-template-columns: 1fr;
        grid-template-rows: none;
      }
      .why-card {
        min-height: 320px;
      }
    }

    /* ── About Crevo ── */
    .about-section {
      padding: 6rem 0;
      background-color: white;
    }
    .about-eyebrow {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    .about-eyebrow .about-label {
      margin-bottom: 0;
      font-size: 1.5rem;
    }
    .about-body {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 1rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 1.25rem;
    }
    .about-body strong {
      color: #1a1a1a;
      font-weight: 600;
    }
    .about-portrait {
      position: relative;
      width: 70%;
      aspect-ratio: 4 / 5;
      border-radius: 12px;
      overflow: hidden;
      background-color: #1a1a1a;
    }
    .about-section .about-portrait {
      width: 78%;
      margin-top: 80px;
    }
    .about-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    .about-portrait::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 45%);
      pointer-events: none;
    }
    .about-portrait-caption {
      position: absolute;
      left: 1.75rem;
      right: 1.75rem;
      bottom: 1.75rem;
      z-index: 1;
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: #fff;
    }

    /* ── Meet Jennifer (Founder) ── */
    .founder-section {
      padding: 6rem 0;
      background-color: white;
    }
    .founder-image-wrapper {
      border-radius: 12px;
      overflow: hidden;
    }
    .founder-image-wrapper img {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }
    .founder-heading {
      font-size: 2.1rem;
      line-height: 1.25;
      margin: 0 0 1.25rem;
    }
    .founder-role {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 1rem;
    }
    .founder-body {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.95rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 1.25rem;
    }

    /* Stats row */
    .about-stats-row {
      display: flex;
      gap: 0;
      margin-top: 4rem;
      border-top: 1px solid #ccc;
    }
    .about-stat {
      flex: 1;
      padding: 2rem 2rem 0;
      border-right: 1px solid #ccc;
    }
    .about-stat:first-child {
      padding-left: 0;
    }
    .about-stat:last-child {
      border-right: none;
    }
    .about-stat-value {
      display: block;
      font-family: Georgia, serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--crevo-gold-deep);
      line-height: 1.1;
      margin-bottom: 0.4rem;
    }
    .about-stat-label {
      display: block;
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.78rem;
      color: #888;
      letter-spacing: 0.04em;
    }

    /* ── Testimonials ── */
    .testimonials-section {
      padding: 4rem 0;
      background-color: white;
    }
    .testimonials-header {
      max-width: 580px;
      margin: 0 auto 2rem;
      text-align: center;
    }
    .testimonials-carousel {
      position: relative;
      width: 100%;
      max-width: 780px;
      margin: 0 auto;
    }
    .testimonial-viewport {
      overflow: hidden;
      border-radius: 12px;
    }
    .testimonial-track {
      display: flex;
      transition: transform 0.5s ease;
    }
    .testimonial-slide {
      flex: 0 0 100%;
      min-width: 0;
    }
    .testimonial-card {
      position: relative;
      background-color: #fff;
      border: 1px solid #e2e2e2;
      border-radius: 12px;
      padding: 1.75rem 1.75rem 1.5rem;
      margin: 0;
      overflow: hidden;
      text-align: center;
    }
    .testimonial-quote-mark {
      position: absolute;
      top: 1.1rem;
      right: 1.25rem;
      font-size: 1.6rem;
      color: var(--crevo-gold-deep);
      opacity: 0.12;
    }
    .testimonial-text {
      font-family: "garretbook", Georgia, serif;
      font-size: 0.92rem;
      font-style: italic;
      color: #333;
      line-height: 1.6;
      margin: 0 auto 1.25rem;
      max-width: 480px;
    }
    .testimonial-author {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      padding-top: 1rem;
      border-top: 1px solid #eee;
    }
    .testimonial-avatar {
      flex-shrink: 0;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background-color: var(--crevo-gold);
      color: #111;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.03em;
    }
    .testimonial-author-info {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .testimonial-name {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: #1a1a1a;
    }
    .testimonial-role {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.75rem;
      color: #888;
      margin-top: 0.1rem;
    }
    .testimonial-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: #fff;
      border: 1px solid #e2e2e2;
      color: #1a1a1a;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      cursor: pointer;
      transition: background-color 0.2s, color 0.2s, border-color 0.2s;
      z-index: 2;
    }
    .testimonial-arrow:hover {
      background-color: var(--crevo-gold);
      border-color: var(--crevo-gold);
      color: #111;
    }
    .testimonial-arrow-prev {
      left: -18px;
    }
    .testimonial-arrow-next {
      right: -18px;
    }
    .testimonial-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.25rem;
    }
    .testimonial-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #ddd;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background-color 0.2s, width 0.2s;
    }
    .testimonial-dot.active {
      width: 18px;
      border-radius: 5px;
      background-color: var(--crevo-gold-deep);
    }
    @media (max-width: 767.98px) {
      .testimonial-card {
        padding: 1.5rem 1.25rem 1.25rem;
      }
      .testimonial-text {
        font-size: 0.88rem;
      }
      .testimonial-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
      }
      .testimonial-arrow-prev {
        left: -8px;
      }
      .testimonial-arrow-next {
        right: -8px;
      }
    }
    @media (max-width: 575.98px) {
      .testimonial-arrow {
        display: none;
      }
    }

    /* ── CREVO + AI ── */
    .ai-section {
      padding: 6rem 0;
      background-color: #1a1a1a;
    }
    .ai-section .section-label {
      color: var(--crevo-gold);
      font-size: 1.5rem;
    }
    .ai-heading {
      font-size: 2.6rem;
      line-height: 1.25;
      margin: 0 0 1.5rem;
      color: #f0f0f0;
    }
    .ai-body {
      font-family: "garretbook", Arial, sans-serif;
      font-weight: bold;
      color: #aaa;
      line-height: 1.8;
      margin: 0;
      max-width: 480px;
    }
    .ai-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .ai-label {
      text-transform: none;
    }
    .ai-list li {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 1.3rem;
      color: #e6e6e6;
      padding: 1.1rem 0;
      border-bottom: 1px solid #333;
      transition: color 0.2s;
    }
    .ai-list li:hover {
      color: var(--crevo-gold);
    }

    /* ── Projects ── */
    .projects-section {
      padding: 6rem 0;
      background-color: white;
    }
    .projects-header {
      max-width: 580px;
      margin: 0 auto 3.5rem;
      text-align: center;
    }
    .projects-heading {
      font-size: 2.6rem;
      line-height: 1.25;
      margin: 0;
    }
    /* Bento-style project grid */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .project-card {
      position: relative;
      border-radius: 20px;
      padding: 2.5rem 2.5rem 0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      min-height: 460px;
    }
    .project-card-a {
      background-color: #f7f6f1;
    }
    .project-card-b {
      background-color: #ffffff;
      border: 1px solid #e6e6e0;
    }
    .project-card-body {
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }
    .project-card-media {
      margin-top: 1.5rem;
      border-radius: 14px 14px 0 0;
      overflow: hidden;
      flex: 1;
      min-height: 0;
    }
    .project-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .project-card:hover .project-card-media img {
      transform: scale(1.04);
    }
    .project-number {
      display: block;
      font-family: "garretbook", Arial, sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--crevo-gold-deep);
      letter-spacing: 0.08em;
      margin-bottom: 0.75rem;
    }
    .project-title {  /* MAKE IT MORE BOLDER */
      font-family:"garretbook", Arial, sans-serif;
      font-size: 1.65rem;
      font-weight: bolder;
      color: #1a1a1a;
      line-height: 1.25;
      margin-bottom: 1rem;
    }
    .project-text {
      font-family: "garretbook", Arial, sans-serif;
      color: #555;
      font-weight: bold;
      line-height: 1.8;
      margin: 0;
    }
    .project-card .project-title {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }
    .project-card .project-text {
      font-size: 0.95rem;
      font-weight: 400;
      color: #666;
      line-height: 1.55;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    @media (max-width: 767.98px) {
      .projects-grid {
        grid-template-columns: 1fr;
      }
      .project-card {
        min-height: 380px;
      }
    }

    /* ── Project Video Showcase ── */
    .showcase-section {
      padding: 5rem 1.5rem 6rem;
      background-color: white;
    }
    .showcase-panel {
      max-width: 1100px;
      margin: 0 auto;
      background-color: #ffffff;
      border-radius: 20px;
      padding: 3rem 2.5rem;
    }
    .showcase-heading {
      font-family: "Poppins", Georgia, serif;
      font-weight: 700;
      font-size: 1.4rem;
      color: #1a1a1a;
      text-align: center;
      margin: 0 0 2.5rem;
    }
    .showcase-row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
    }
    .showcase-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 9 / 14;
      padding: 0;
      margin: 0;
      border: none;
      background: none;
      cursor: pointer;
    }
    .showcase-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }
    .showcase-card:hover img {
      transform: scale(1.05);
    }
    .showcase-play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background-color: #fff;
      color: #1a1a1a;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      box-shadow: 0 8px 20px rgba(0,0,0,0.22);
      transition: transform 0.2s, background-color 0.2s, color 0.2s;
    }
    .showcase-card:hover .showcase-play-icon {
      transform: translate(-50%, -50%) scale(1.08);
      background-color: var(--crevo-gold);
      color: #111;
    }
    @media (max-width: 991.98px) {
      .showcase-row {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    @media (max-width: 575.98px) {
      .showcase-panel {
        padding: 2.5rem 1.25rem;
      }
      .showcase-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }
    }

    /* Project showcase video modal */
    .video-modal .modal-body {
      padding: 0;
    }
    .video-modal video {
      width: 100%;
      display: block;
      max-height: 70vh;
    }

    /* ── Contact ── */
    .contact-section {
      padding: 6rem 0 7rem;
      background-color: white;
    }
    .contact-body {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.95rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 2.5rem;
      max-width: 420px;
    }

    /* Contact detail list */
    .contact-details {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .contact-details li {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.1rem 0;
      border-top: 1px solid #ccc;
    }
    .contact-details li:last-child {
      border-bottom: 1px solid #ccc;
    }
    .contact-detail-icon {
      flex-shrink: 0;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background-color: #e6e6e6;
      color: var(--crevo-gold-deep);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
    }
    .contact-detail-text {
      display: flex;
      flex-direction: column;
    }
    .contact-detail-label {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--crevo-gold-deep);
      margin-bottom: 0.15rem;
    }
    .contact-detail-text a,
    .contact-detail-text span:not(.contact-detail-label) {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.95rem;
      color: #1a1a1a;
      text-decoration: none;
      transition: color 0.2s;
    }
    .contact-detail-text a:hover {
      color: var(--crevo-gold-deep);
    }

    /* Form card */
    .contact-form {
      background-color: #fff;
      border-radius: 12px;
      padding: 2.5rem;
      box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    }
    .contact-field-row {
      display: flex;
      gap: 1.25rem;
    }
    .contact-field-row .contact-field {
      flex: 1;
    }
    .contact-field {
      margin-bottom: 1.25rem;
    }
    .contact-field label {
      display: block;
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
    }
    .contact-field input,
    .contact-field textarea {
      width: 100%;
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.92rem;
      color: #1a1a1a;
      background-color: #f7f7f7;
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 0.75rem 0.9rem;
      transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
    }
    .contact-field input::placeholder,
    .contact-field textarea::placeholder {
      color: #aaa;
    }
    .contact-field input:focus,
    .contact-field textarea:focus {
      outline: none;
      background-color: #fff;
      border-color: var(--crevo-gold-deep);
      box-shadow: 0 0 0 3px rgba(132,101,31,0.18);
    }
    .contact-field textarea {
      resize: vertical;
      min-height: 120px;
    }
    .contact-form .btn-hero-primary {
      width: 100%;
      cursor: pointer;
      margin-top: 0.5rem;
    }

    @media (max-width: 575.98px) {
      .contact-field-row {
        flex-direction: column;
        gap: 0;
      }
      .contact-form {
        padding: 1.75rem;
      }
    }

    /* ── Footer ── */
    .site-footer {
      background-color: #1a1a1a;
      padding: 4.5rem 0 2rem;
    }
    @media (min-width: 992px) {
      .site-footer .container > .row {
        display: grid;
        grid-template-columns: minmax(0, 38fr) minmax(0, 12fr) minmax(0, 22fr) minmax(0, 22fr);
        column-gap: 2%;
        margin: 0;
      }
      .site-footer .container > .row > [class*="col-"] {
        width: auto;
        max-width: none;
        padding: 0;
        margin-top: 0;
      }
      .site-footer .footer-services {
        font-size: clamp(0.76rem, 1vw, 0.9rem);
      }
    }
    .footer-logo {
      /* height: 130px; */
      width: 320px;
      display: block;
      margin-bottom: 1.25rem;
      filter: brightness(0) invert(1);
    }
    .footer-blurb {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.9rem;
      color: #fff;
      line-height: 1.75;
      margin-bottom: 1.5rem;
      max-width: none;
    }
    .footer-services {
      display: block;
      white-space: nowrap;
      font-size: clamp(0.63rem, 2.7vw, 0.9rem);
      color: var(--crevo-gold);
    }
    .footer-social {
      display: flex;
      gap: 0.9rem;
    }
    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: #262626;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      text-decoration: none;
      transition: background-color 0.2s, color 0.2s;
    }
    .footer-social a:hover { 
      background-color: var(--crevo-gold);
      color: #111;
    }
    .footer-heading {
      font-family: "Poppins", Georgia, serif;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #fff;
      margin-bottom: 1.25rem;
    }
    .footer-links,
    .footer-contact {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 0.7rem;
    }
    .footer-links a {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.9rem;
      color: #fff;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover {
      color: var(--crevo-gold);
    }
    .footer-contact li {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 0.85rem;
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.9rem;
      color: #fff;
    }
    .footer-contact li i {
      color: var(--crevo-gold);
      font-size: 0.85rem;
      width: 16px;
      text-align: center;
    }
    .footer-contact a {
      color: #fff;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-contact a:hover {
      color: var(--crevo-gold);
    }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 3.5rem;
      padding-top: 1.75rem;
      border-top: 1px solid #2e2e2e;
    }
    .footer-copy {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.82rem;
      color: #fff;
      margin: 0;
    }
    .footer-legal {
      display: flex;
      gap: 1.5rem;
    }
    .footer-legal a {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.82rem;
      color: #fff;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-legal a:hover {
      color: var(--crevo-gold);
    }

    /* ── FAQ Page ── */
    .faq-hero-section {
      padding: 9.5rem 0 4.5rem;
    }
    .faq-hero-label {
      color: var(--crevo-gold-deep);
      margin-bottom: 1rem;
      text-transform: none;
    }
    .faq-hero-label .small-s {
      font-size: 0.65em;
      text-transform: lowercase;
    }
    .faq-hero-heading {
      font-family: "Poppins", Georgia, serif;
      font-weight: 700;
      font-size: 2.22rem;
      line-height: 1.25;
      color: #1a1a1a;
      margin: 0 0 1.25rem;
    }
    .faq-hero-subheading {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #666;
      line-height: 1.6;
      max-width: 650px;
      margin: 0 auto;
      text-align: center;
      white-space: normal;
    }
    .faq-hero-subheading .nowrap-line {
      white-space: nowrap;
    }
    .faq-section {
      padding: 5rem 0 6rem;
      background-color: white;
    }
    .faq-list {
      max-width: 820px;
      margin: 0 auto;
      border-top: 1px solid #ccc;
    }
    .faq-item {
      border-bottom: 1px solid #ccc;
    }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      background: none;
      border: none;
      padding: 1.75rem 0;
      cursor: pointer;
      text-align: left;
      transition: color 0.2s;
    }
    .faq-question-text {
      font-family: "Poppins", Georgia, serif;
      font-size: 1.5rem; 
      /* font-weight: 700; */
      color: #1a1a1a;
      line-height: 1.4;
      transition: color 0.2s;
    }
    .faq-question:hover .faq-question-text {
      color: var(--crevo-gold-deep);
    }
    .faq-icon {
      flex-shrink: 0;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background-color: #e6e6e6;
      color: #1a1a1a;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      transition: transform 0.25s, background-color 0.2s, color 0.2s;
    }
    .faq-question[aria-expanded="true"] .faq-icon {
      transform: rotate(135deg);
      background-color: var(--crevo-gold);
      color: #111;
    }
    .faq-question[aria-expanded="true"] .faq-question-text {
      color: var(--crevo-gold-deep);
    }
    .faq-answer {
      padding: 0 2.5rem 1.75rem 0;
      max-width: 680px;
    }
    .faq-answer p {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 1.20rem;
      color: black;
      /* line-height: 1.75; */
      margin: 0;
    }

    /* ── FAQ CTA ── */
    .faq-cta-section {
      padding: 5rem 0 6rem;
      background-color: white;
      text-align: center;
    }
    .faq-cta-heading {
      font-family: "Poppins", Georgia, serif;
      font-weight: 700;
      font-size: 2.22rem;
      line-height: 1.25;
      color: #1a1a1a;
      margin: 0 0 0.75rem;
    }
    .faq-cta-body {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 1rem;
      color: #666;
      max-width: 500px;
      margin: 0 auto 1.75rem;
      line-height: 1.7;
    }

    @media (max-width: 575.98px) {
      .faq-hero-heading,
      .faq-hero-subheading {
        font-size: 2.3rem;
      }
      .faq-answer {
        padding-right: 0;
      }
    }

    /* ── Founder Letter Page ── */
    .letter-hero-section {
      padding: 9.5rem 0 4.5rem;
      
    }
    .letter-hero-label {
      color: var(--crevo-gold-deep);
      margin-bottom: 1rem;
    }
    .letter-hero-heading {
      font-family: "Poppins", Georgia, serif;
      font-weight: 700;
      font-size: 2.95rem;
      line-height: 1.25;
      color: #1a1a1a;;
      margin: 0 0 1.25rem;
    }
    .letter-hero-subheading {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 1rem;
      color: #1a1a1a;;
      line-height: 1.7;
      max-width: 500px;
      margin: 0 auto;
    }
    .letter-section {
      padding: 6rem 0 7rem;
      background-color: white;
    }
    .letter-portrait-col .about-portrait {
      width: 100%;
    }
    .letter-portrait-col .about-portrait img {
      object-position: center 72%;
    }
    @media (min-width: 992px) {
      .letter-portrait-col {
        position: sticky;
        top: 120px;
      }
    }
    .letter-content {
      max-width: 720px;
    }
    .letter-body {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 1rem;
      font-weight: 400;
      color: black;
      line-height: 1.85;
      margin: 0 0 1.5rem;
    }
    .letter-pull-line {
      font-family: "Poppins", Georgia, serif;
      font-weight: 700;
      font-size: 1.3rem;
      color: var(--crevo-gold-deep);
      line-height: 1.4;
      margin: 0 0 1.75rem;
    }
    .letter-callout {
      border-left: 3px solid var(--crevo-gold-deep);
      background-color: #f3f3f3;
      border-radius: 0 8px 8px 0;
      padding: 1.5rem 1.75rem;
      margin: 0 0 1.75rem;
    }
    .letter-callout p {
      font-family: "garretbook", Georgia, serif;
      font-style: italic;
      font-weight: 700;
      font-size: 1rem;
      color: black;
      line-height: 1.75;
      margin: 0 0 0.75rem;
    }
    .letter-callout p:last-child {
      margin-bottom: 0;
    }
    .letter-closing-line {
      font-family: "Poppins", Georgia, serif;
      font-weight: 700;
      font-size: 1.3rem;
      color: #1a1a1a;
      margin: 2rem 0 2.5rem;
    }
    .letter-signature {
      padding-top: 1.5rem;
      margin-top: 0.5rem;
    }
    .letter-signature-name {
      font-family: "Poppins", Georgia, serif;
      font-weight: 700;
      font-size: 1.2rem;
      color: black;
      margin: 0 0 0.01rem;
      max-width: 310px;
    }
    .letter-signature-role {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.85rem;
      color: black;
      letter-spacing: 0.03em;
      margin: 0;
    }

    @media (max-width: 575.98px) {
      .letter-hero-heading {
        font-size: 2.3rem;
      }
    }

    /* ── Legal Pages (Privacy Policy / Terms) ── */
    .legal-section {
      padding: 5rem 0 6rem;
      background-color: white;
    }
    .legal-content {
      max-width: 780px;
      margin: 0 auto;
    }
    .legal-updated {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 0.9rem;
      color: #888;
      margin: 0 0 2.5rem;
    }
    .legal-heading {
      font-family: "Poppins", Georgia, serif;
      font-weight: 700;
      font-size: 1.35rem;
      color: #1a1a1a;
      line-height: 1.35;
      margin: 2.75rem 0 1rem;
    }
    .legal-content > .legal-heading:first-child {
      margin-top: 0;
    }
    .legal-subheading {
      font-family: "Poppins", Georgia, serif;
      font-weight: 700;
      font-size: 1.02rem;
      color: #1a1a1a;
      margin: 1.5rem 0 0.75rem;
    }
    .legal-body {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 1rem;
      color: #333;
      line-height: 1.85;
      margin: 0 0 1.25rem;
    }
    .legal-list {
      font-family: "garretbook", Arial, sans-serif;
      font-size: 1rem;
      color: #333;
      line-height: 1.85;
      margin: 0 0 1.25rem;
      padding-left: 1.25rem;
    }
    .legal-list li {
      margin-bottom: 0.35rem;
    }
    .legal-body a,
    .legal-list a {
      color: var(--crevo-gold-deep);
      text-decoration: underline;
    }

    /* ── Section body paragraphs: uniform size & weight ── */
    .project-text,
    .industries-quote,
    .services-item-body,
    .solve-text,
    .process-step-desc,
    .why-subheading,
    .about-body,
    .founder-role,
    .founder-body,
    .testimonial-text,
    .ai-body,
    .project-text,
    .contact-body {
      font-size: 1.3rem;
      font-weight: 700;
    }
