/* ==========================================================================
   Home Page Styles
   ========================================================================== */

/* ---------- Hero (matches original site design) ---------- */
html,
body {
    width: 100%;
    overflow-x: hidden;
}

/* Removed: `overflow-x: hidden` here was redundant (body already
   clips horizontal overflow site-wide in style.css) and had a nasty
   side effect — per the CSS overflow spec, setting only one axis to
   a non-"visible" value silently forces the other axis to "auto",
   turning <main> into its own independent scroll container. On the
   team page, GSAP's pin-spacer for the last stacked section grows
   tall enough to overflow that hidden inner scrollbox, which is what
   showed up as a stray scrollbar right above the footer. */
.hero-section {
  position: relative;
  height: 100svh;
  max-height: 100svh;
  background: url("../assets/home/hero-bg.png") center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 1024px) {
  .hero-section {
    background-image: url("../assets/home/home-m.jpg");
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-content-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: clamp(60px, 10vh, 120px) 20px clamp(40px, 6vh, 90px);
}
.hero-center-logo {
  margin-bottom: clamp(15px, 3vh, 35px);
}
.hero-center-logo img {
  width: clamp(200px, 28vw, 340px);
  max-width: 90%;
  height: auto;
  display: block;
  margin-inline: auto;
}
.hero-subtitle {
  font-size: clamp(12px, 1.4vw, 16px);
  letter-spacing: 4px;
  color: var(--warm-ivory);
  text-transform: uppercase;
  margin-bottom: clamp(20px, 4vh, 45px);
  text-align: center;
}
.hero-cta-buttons {
  display: flex;
  justify-content: center;
}
.hero-cta-buttons .btn {
  padding: 14px 34px;
  font-size: 15px;
  border-radius: 10px;
  font-weight: 500;
  width: 170px;
}

/* ---------- Welcome ---------- */

/* =====================================
   WELCOME SECTION
===================================== */

/* =====================================
   WELCOME SECTION
===================================== */

.welcome-section {
  position: relative;
  width: 100%;

  /* Desktop only: one screen */
  height: 100vh;
  min-height: 650px;

  padding: 55px 60px 40px;

  background: #f4ecdf;

  box-sizing: border-box;
  overflow: hidden;

  z-index: 2;
}

/* =====================================
   CONTAINER
===================================== */

.welcome-container {
  width: 100%;
  height: 100%;

  max-width: 1780px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(380px, 0.95fr);

  align-items: center;

  gap: clamp(50px, 7vw, 130px);
  margin-top: 2%;
}

/* =====================================
   LEFT
===================================== */

.welcome-left {
  position: relative;

  z-index: 2;

  min-width: 0;

  display: flex;
  flex-direction: column;

  justify-content: center;
}

.welcome-eyebrow {
  color: #c79a4b;

  font-size: 13px;

  letter-spacing: 2px;

  font-weight: 600;

  margin: 0 0 14px;
}

.welcome-title {
  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(50px, 3.7vw, 72px);

  line-height: 1;

  color: #1c3527;

  margin: 0 0 18px;
}

.welcome-divider {
  width: 70px;
  height: 3px;

  flex-shrink: 0;

  background: #d4af6a;

  margin: 0 0 20px;
}

.welcome-text {
  width: 100%;

  max-width: 560px;

  color: #6b6357;

  font-size: clamp(14px, 1vw, 16px);

  line-height: 1.65;

  text-align: justify;

  margin: 0 0 26px;
}

/* =====================================
   ACTIONS
===================================== */

.welcome-actions {
  display: flex;

  align-items: center;

  gap: 26px;

  margin: 0 0 30px;
}

.btn-primary {
  background: var(--soft-gold, #d0ad67);

  color: var(--deep-forest);

  border: none;

  padding: 14px 28px;

  border-radius: 6px;

  font-size: 15px;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(199, 154, 75, 0.25);
}

.btn-primary2 {
  background: var(--soft-gold, #d0ad67);

  color: var(--deep-forest);

  border: none;

  padding: 14px 28px;

  border-radius: 6px;

  font-size: 15px;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-primary2:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(199, 154, 75, 0.25);
}

.watch-link {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #1c3527;

  text-decoration: none;

  font-size: 15px;

  font-weight: 500;
}

/* =====================================
   FEATURES
===================================== */

.welcome-features {
  width: 100%;

  max-width: 680px;

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  background: #efe4d1;

  border-radius: 14px;

  padding: 20px 10px;

  box-sizing: border-box;
}

.welcome-feature {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-start;

  gap: 7px;

  padding: 0 8px;

  color: #1c3527;

  text-align: center;

  font-size: 12.5px;

  line-height: 1.35;

  font-weight: 600;
}

.welcome-feature svg {
  width: 30px;
  height: 30px;

  flex-shrink: 0;

  color: #1c3527;
}

/* =====================================
   IMAGE
===================================== */

.welcome-right {
  position: relative;

  width: 100%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  z-index: 1;
}

.welcome-image-wrapper {
  position: relative;

  width: min(100%, 500px);

  height: min(78vh, 680px);

  padding: 14px;

  border: 1px solid #dfd1ba;

  border-radius: 250px 250px 28px 28px;

  box-sizing: border-box;

  overflow: hidden;
}

.welcome-arch-img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  border-radius: 235px 235px 18px 18px;
}

/* =====================================
   TABLET + MOBILE
===================================== */

@media (max-width: 900px) {
  /*
     CRITICAL FIX

     Remove 100vh on mobile.

     The section height must be calculated
     from its real content.
  */

  .welcome-section {
    position: relative;

    width: 100%;

    height: auto !important;
    min-height: 0 !important;

    padding: 70px 24px 60px;

    overflow: visible !important;

    box-sizing: border-box;

    z-index: 2;
  }

  .welcome-container {
    width: 100%;

    height: auto !important;
    min-height: 0;

    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 48px;

    margin: 0 auto;
    margin-top: 5%;
    margin-bottom: 5%;
  }

  /* LEFT */

  .welcome-left {
    width: 100%;

    height: auto;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: flex-start;
  }

  .welcome-eyebrow {
    width: 100%;

    font-size: 11px;

    letter-spacing: 1.5px;

    text-align: center;

    margin: 0 0 14px;
  }

  .welcome-title {
    width: 100%;

    font-size: clamp(42px, 8vw, 56px);

    line-height: 1.05;

    text-align: center;

    margin: 0 0 18px;
  }

  .welcome-divider {
    width: 65px;

    margin: 0 auto 20px;
  }

  .welcome-text {
    width: 100%;

    max-width: 100%;

    font-size: 15px;

    line-height: 1.65;

    text-align: left;

    margin: 0 0 25px;
  }

  /* ACTIONS */

  .welcome-actions {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    margin: 0 0 28px;
  }

  /* FEATURES */

  .welcome-features {
    width: 100%;

    max-width: 100%;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 25px 10px;

    padding: 28px 12px;

    border-radius: 14px;
  }

  .welcome-feature {
    width: 100%;

    padding: 0 4px;

    font-size: 12px;

    line-height: 1.3;
  }

  .welcome-feature svg {
    width: 29px;
    height: 29px;

    margin-bottom: 5px;
  }

  /* IMAGE */

  .welcome-right {
    position: relative !important;

    width: 100%;

    height: auto !important;
    min-height: 0 !important;

    display: block;

    flex: none;

    margin: 0;

    padding: 0;

    transform: none !important;
  }

  .welcome-image-wrapper {
    position: relative;

    width: 100%;

    max-width: 500px;

    height: auto !important;

    aspect-ratio: 4 / 5;

    margin: 0 auto;

    padding: 10px;

    border: 1px solid #dfd1ba;

    border-radius: 180px 180px 22px 22px;

    box-sizing: border-box;

    overflow: hidden;
  }

  .welcome-arch-img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    border-radius: 170px 170px 14px 14px;
  }
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 576px) {
  .welcome-section {
    /*
       FIX 1:
       Proper gap from section top
    */

    padding: 55px 18px 55px !important;
  }

  .welcome-container {
    gap: 42px;
  }

  .welcome-eyebrow {
    font-size: 10px;

    letter-spacing: 1.3px;

    margin-bottom: 12px;
  }

  .welcome-title {
    font-size: 40px;

    line-height: 1.05;

    margin-bottom: 16px;
  }

  .welcome-divider {
    width: 64px;
    height: 2px;

    margin-bottom: 20px;
  }

  .welcome-text {
    font-size: 13.5px;

    line-height: 1.6;

    margin-bottom: 20px;
  }

  .welcome-actions {
    flex-wrap: nowrap;

    gap: 16px;

    margin-bottom: 22px;
  }

  .btn-primary {
    padding: 13px 24px;

    font-size: 14px;

    white-space: nowrap;
  }

  .watch-link {
    font-size: 14px;

    white-space: nowrap;
  }

  .welcome-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px 6px;

    padding: 26px 8px;

    border-radius: 13px;
  }

  .welcome-feature {
    font-size: 11.5px;

    padding: 0 2px;
  }

  .welcome-feature svg {
    width: 28px;
    height: 28px;
  }

  /*
     FIX 2:
     Image stays in document flow.
  */

  .welcome-right {
    position: relative !important;

    width: 100%;

    height: auto !important;

    display: block !important;

    margin: 0 !important;

    padding: 0 !important;

    inset: auto !important;
  }

  .welcome-image-wrapper {
    position: relative !important;

    width: 100%;

    height: auto !important;

    aspect-ratio: 4 / 5;

    margin: 0 auto;

    padding: 9px;

    border-radius: 150px 150px 18px 18px;

    overflow: hidden;
  }

  .welcome-arch-img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    border-radius: 142px 142px 11px 11px;
  }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 390px) {
  .welcome-section {
    padding: 50px 15px 50px !important;
  }

  .welcome-title {
    font-size: 36px;
  }

  .welcome-text {
    font-size: 13px;
  }

  .welcome-actions {
    gap: 12px;
  }

  .btn-primary {
    padding: 12px 20px;

    font-size: 13px;
  }

  .watch-link {
    font-size: 13px;
  }

  .welcome-feature {
    font-size: 11px;
  }
}
/* ---------- Services ---------- */
.services-section {
  height: 100svh;
  max-height: 100svh;
  /* background: linear-gradient(
    rgba(30, 39, 25, 0.88),
    rgba(30, 39, 25, 0.93)
  ); */
  background: url("../assets/team/lightbg.png") center center / cover no-repeat;
  color: var(--warm-ivory);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
  position: relative;
  isolation: isolate;
}
.services-section::before {
  /* content: ""; */
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../assets/team/lightbg.png") center center / cover no-repeat;
  transform: scale(1.05);
}
.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(30, 39, 25, 0.15);
}
.services-section > * {
  position: relative;
  z-index: 2;
}
.services-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 4%;
}
.services-title {
  color:rgba(30, 39, 25);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
}
.services-columns {
  margin-top: clamp(16px, 3vh, 32px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 14px);
  max-width: 1200px;
  margin-inline: auto;
}
.service-col {
  background: rgba(30, 39, 25);
  border: 1px solid rgba(244, 232, 220, 0.12);
  border-radius: 16px;
  padding: clamp(14px, 2.5vh, 22px) clamp(10px, 1.2vw, 16px);
  transition: var(--transition-smooth);
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-col:hover {
  background: rgba(30, 39, 25, 0.9);
  border-color: var(--soft-gold);
  transform: translateY(-4px);
}
.service-icon-container {
  width: clamp(44px, 6vh, 60px);
  height: clamp(44px, 6vh, 60px);
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(8px, 1.5vh, 16px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}
.service-col:hover .service-icon-container {
  transform: scale(1.05);
  background-color: var(--warm-ivory);
}
.service-png-icon {
  width: 120%;
  height: 120%;
  object-fit: contain;
}
.service-col-title {
  color: var(--warm-ivory);
  font-size: clamp(0.85rem, 1vw, 0.98rem);
  margin-bottom: 6px;
}
.service-col-desc {
  font-size: clamp(0.75rem, 0.85vw, 0.82rem);
  color: var(--muted-sage);
  line-height: 1.45;
}

/* =========================================
   TESTIMONIAL SECTION
========================================= */

.testimonials-section {
  position: relative;

  width: 100%;
  height: 100svh;
  min-height: 650px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: var(--deep-forest);

  padding: 0;
}

/* =========================================
   BACKGROUND
========================================= */

.testimonials-section .together-bg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  z-index: 0;

  overflow: hidden;
}

.testimonials-section .together-bg img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  opacity: 0.55;
}

/* =========================================
   CONTAINER
========================================= */

.testimonials-container {
  position: relative;

  z-index: 2;

  width: 100%;

  max-width: var(--container-max);

  margin: 0 auto;

  padding-inline: var(--gutter);

  box-sizing: border-box;
  margin-top: 5%;
}

/* =========================================
   TITLE
========================================= */

.testimonials-title {
  margin: 0;

  color: var(--warm-ivory);

  font-size: clamp(2rem, 3.2vw, 3rem);

  line-height: 1.15;

  text-align: center;
}

/* =========================================
   CAROUSEL
========================================= */

.testimonial-carousel {
  position: relative;

  width: 100%;

  margin-top: clamp(28px, 6vh, 45px);

  display: flex;

  align-items: center;

  gap: 18px;
}

.testimonial-viewport {
  overflow: hidden;

  flex: 1 1 auto;

  min-width: 0;

  scroll-behavior: smooth;
}

.testimonial-track {
  display: flex !important;

  flex-direction: row !important;

  flex-wrap: nowrap !important;

  align-items: stretch;

  gap: 18px;

  transition: none;

  will-change: contents;
}

.testimonial-nav {
  flex: 0 0 auto;

  width: 48px;

  height: 48px;

  border-radius: 50%;

  background: var(--deep-forest);

  color: var(--warm-ivory);

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.testimonial-nav:hover {
  background: var(--soft-gold);

  color: var(--deep-forest);

  transform: scale(1.05);
}

/* =========================================
   CARD
========================================= */

.testimonial-card {
  width: 340px;

  flex: 0 0 340px !important;

  min-height: 300px;

  padding: 30px 28px;

  box-sizing: border-box;

  display: flex !important;

  flex-direction: column;

  align-items: flex-start;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 34px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  text-align: left;
}

/* =========================================
   CONTENT
========================================= */

.quote-icon {
  font-size: 2.6rem;

  color: var(--soft-gold);

  font-family: var(--font-heading);

  line-height: 1;
}

.testimonial-text {
  width: 100%;

  margin: 18px 0 24px;

  color: var(--warm-ivory);

  font-size: 0.98rem;

  line-height: 1.65;

  flex-grow: 1;
}

.testimonial-stars {
  color: var(--soft-gold);

  letter-spacing: 3px;

  margin-bottom: 10px;

  font-size: 0.9rem;
}

.testimonial-name {
  margin: 0;

  color: var(--warm-ivory);

  font-size: 0.9rem;

  font-weight: 500;
}

/* =========================================
   DESKTOP ANIMATION
========================================= */

@keyframes testimonialScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .testimonials-section {
    height: 100svh;

    min-height: 650px;
  }

  .testimonials-container {
    padding-inline: 24px;
  }

  .testimonials-title {
    font-size: 2.7rem;
  }

  .testimonial-carousel {
    width: calc(100% + 48px);

    margin-left: -24px;

    margin-top: 42px;

    padding-inline: 20px;
  }

  .testimonial-track {
    gap: 18px;
  }

  .testimonial-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    touch-action: pan-x;
  }

  .testimonial-viewport::-webkit-scrollbar {
    display: none;
  }

  .testimonial-viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
  }

  .testimonial-card {
    width: 360px;

    flex: 0 0 360px !important;

    min-height: 320px;

    padding: 32px 28px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {
  .testimonials-section {
    /*
      IMPORTANT

      Give section enough visual height.
    */

    height: 100svh;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;
  }

  /*
    DARKER OVERLAY

    Makes text/card easier to see.
  */

  .testimonials-section::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background: rgba(28, 53, 39, 0.18);

    pointer-events: none;
  }

  .testimonials-container {
    position: relative;

    z-index: 2;

    width: 100%;

    padding-inline: 20px;
  }

  /* TITLE */

  .testimonials-title {
    font-size: 2.5rem;

    line-height: 1.1;

    text-align: center;

    color: var(--warm-ivory);

    max-width: 330px;

    margin: 40px;
  }

  /* CAROUSEL */

  .testimonial-carousel {
    width: calc(100% + 40px);

    margin-left: -20px;

    margin-top: 45px;

    overflow: hidden;

    gap: 10px;

    padding-inline: 12px;
  }

  .testimonial-track {
    display: flex !important;

    flex-direction: row !important;

    flex-wrap: nowrap !important;

    width: max-content !important;

    gap: 18px;

    padding-left: 20px;
  }

  /*
    LARGE MOBILE CARD

    Approximately 88% of screen width.
  */

  .testimonial-card {
    width: 86vw !important;

    min-width: 86vw !important;

    max-width: 390px !important;

    flex: 0 0 86vw !important;

    min-height: 390px;

    padding: 38px 30px;

    border-radius: 34px;

    background: rgba(72, 67, 51, 0.58);

    border: 1px solid rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .quote-icon {
    font-size: 3rem;
  }

  .testimonial-text {
    margin: 22px 0 30px;

    font-size: 1.05rem;

    line-height: 1.7;
  }

  .testimonial-stars {
    font-size: 1rem;

    letter-spacing: 3px;

    margin-bottom: 12px;
  }

  .testimonial-name {
    font-size: 0.95rem;
  }

  .testimonial-nav {
    width: 40px;

    height: 40px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 390px) {
  .testimonials-section {
    min-height: 680px;
  }

  .testimonials-container {
    padding-inline: 16px;
  }

  .testimonials-title {
    font-size: 2.25rem;
  }

  .testimonial-carousel {
    width: calc(100% + 32px);

    margin-left: -16px;

    margin-top: 38px;
  }

  .testimonial-track {
    gap: 14px;

    padding-left: 16px;
  }

  .testimonial-card {
    width: 87vw !important;

    min-width: 87vw !important;

    flex: 0 0 87vw !important;

    min-height: 360px;

    padding: 32px 26px;
  }

  .quote-icon {
    font-size: 2.7rem;
  }

  .testimonial-text {
    font-size: 1rem;

    line-height: 1.65;
  }
}
/* ---------- CTA (matches original light theme with bg image) ---------- */
.cta-section {
  height: 100svh;
  max-height: 100svh;
  background: var(--warm-ivory) url("../assets/home/CTAbg.png") no-repeat center
    right / cover;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (max-width: 1024px) {
  .cta-section {
    background-image: url("../assets/home/ctabg-m.png");
  }
}
.cta-container {
  /* max-width: var(--container-max); */
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
  margin-top: 15%;
}
.cta-content-wrapper {
  max-width: 560px;
}
.cta-title {
  color: var(--deep-forest);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.2;
}
.cta-subtitle {
  margin: 14px 0 clamp(20px, 3.5vh, 34px);
  color: var(--deep-forest);
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  max-width: 480px;
}

/* ---------- FAQ (matches original dark glassmorphism theme) ---------- */
.faq-section {
  height: 100svh;
  max-height: 100svh;
  background: var(--deep-forest) url("../assets/home/FAQbg.png") no-repeat
    center right / cover;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.faq-container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-header {
  text-align: center;
  margin-bottom: clamp(16px, 3vh, 32px);
}

.faq-title {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  color: var(--warm-ivory);
}

.faq-content-wrapper {
  display: block;
  max-width: 840px;
  margin-inline: auto;
  width: 100%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.5vh, 14px);
  max-height: 65vh;
  overflow-y: auto;
  padding-right: 6px;
  scroll-behavior: smooth;
}

.faq-list::-webkit-scrollbar {
  width: 4px;
}

.faq-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}

.faq-list::-webkit-scrollbar-thumb {
  background: var(--soft-gold);
  border-radius: 2px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item.open {
  border-color: var(--soft-gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(12px, 2vh, 18px) clamp(16px, 2vw, 26px);
  font-family: var(--font-subheading);
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  font-weight: 500;
  color: var(--warm-ivory);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--warm-ivory);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 14px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding: 0 clamp(16px, 2vw, 26px) clamp(12px, 2vh, 18px);
  color: var(--muted-sage);
  font-size: clamp(0.82rem, 0.9vw, 0.95rem);
  line-height: 1.6;
}

.faq-answer-content p {
  margin: 0;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .services-columns {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 10px var(--gutter) 20px;
    width: 100vw;
    margin-inline: calc(-1 * var(--gutter));
    scrollbar-width: none;
  }
  .services-columns::-webkit-scrollbar {
    display: none;
  }
  .service-col {
    flex: 0 0 250px;
    text-align: left;
  }

  .together-features {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 10px var(--gutter) 20px;
    width: 100vw;
    margin-inline: calc(-1 * var(--gutter));
    scrollbar-width: none;
  }
  .together-features::-webkit-scrollbar {
    display: none;
  }
  .t-feature {
    flex: 0 0 190px;
  }

  .testimonial-card {
    width: min(82vw, 320px);
  }
}

@media (max-width: 900px) {
  /* .welcome-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .welcome-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .welcome-text {
    margin-inline: auto;
  }
  .welcome-right {
    display: block;
    margin-top: 22px;
  }

  .welcome-image-wrapper {
    max-width: 420px;
    margin-inline: auto;
    max-height: none;
  } */

  .services-section,
  .together-section,
  .testimonials-section,
  .cta-section,
  .faq-section {
    height: 100svh;
    max-height: none;
    min-height: 100svh;
    padding: 0;
  }

  .services-section {
    height: auto;
    max-height: none;
    min-height: 0;
    overflow: visible;
  }

  .services-container,
  .together-content,
  .testimonials-container,
  .cta-container,
  .faq-container {
    width: 100%;
    margin-top: 5%;
    margin-bottom: 5%;
  }

  .together-features,
  .services-columns {
    width: 100%;
    margin-inline: 0;
  }

  .testimonials-section {
    height: auto;
    max-height: none;
    min-height: auto;
    padding: 64px 0;
  }

  .testimonials-container {
    margin-top: 0;
    display: block;
  }

  .testimonial-carousel {
    margin-top: 18px;
  }

  .testimonial-track {
    gap: 14px;
  }

  .testimonial-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .hero-content-container {
    padding: 60px 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  .hero-center-logo img {
    width: 290px;
  }
  .btn {
    width: 100%;
  }
  .hero-cta-buttons {
    width: 100%;
    justify-content: center;
  }
  .hero-cta-buttons .btn {
    width: 170px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .hero-section,
  .welcome-section,
  .services-section,
  .together-section,
  .testimonials-section,
  .cta-section,
  .faq-section {
    min-height: 60svh;
    height: 60svh;
    padding-block: 0;
  }

  .services-section {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .hero-section {
    min-height: 100svh;
    padding-block: 0;
  }

  .testimonials-section {
    min-height: 100svh;
    padding: 56px 0;
  }

  .testimonials-container {
    margin-top: -30px;
  }

  /* Swap text colors: green <-> beige */
  .welcome-title,
  .cta-title {
    color: var(--deep-forest);
  }
  .hero-subtitle,
  .services-title,
  .together-heading,
  .testimonials-title,
  .faq-title {
    color: var(--white);
  }
}

/* ---------- Mobile: static grids instead of horizontal scroll ---------- */
@media (max-width: 640px) {
  .welcome-section {
    padding-block: 0;
  }

  .welcome-right {
    margin-top: 18px;
  }

  /* .welcome-image-wrapper {
    max-width: 100%;
    border-radius: 28px;
    aspect-ratio: 4 / 5;
  } */

  .services-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    gap: 20px;
    padding: 6px var(--gutter) 10px;
    width: 100%;
    margin-inline: 0;
    max-height: none;
    overflow-y: visible;
  }
  .service-col {
    flex: none;
    padding: 12px 10px;
  }
  .service-col-title {
    font-size: 0.8rem;
  }
  .service-col-desc {
    font-size: 0.7rem;
  }

  .together-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    gap: 10px;
    padding: 6px var(--gutter) 10px;
    width: 100%;
    margin-inline: 0;
  }
  .t-feature {
    flex: none;
    padding: 10px 8px;
  }

  .testimonial-card {
    width: 100%;
    border-radius: 30px;
  }
  .testimonial-text {
    font-size: 0.82rem;
  }

  .together-features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    transition: none !important;
  }

  .testimonial-viewport {
    scroll-behavior: auto;
  }
}
@media (max-width: 640px) {
  .service-col {
    flex: none;
    padding: 12px 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
  }

  .service-col-title {
    text-align: center;
  }

  .service-col-desc {
    text-align: center;
  }
  .services-columns {
    align-items: stretch;
  }

  .service-col {
    height: 100%;
    min-height: 190px;
  }
}
/* ===== Founder Section ===== */
.founder-section {
  background: #142218;
  background-image:
    radial-gradient(
      circle at 8% 10%,
      rgba(201, 162, 77, 0.05),
      transparent 40%
    ),
    radial-gradient(
      circle at 95% 85%,
      rgba(201, 162, 77, 0.06),
      transparent 45%
    );
  padding: 110px 6vw 90px;
  color: #f3ead9;
  position: relative;
  overflow: hidden;
}

.founder-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
}

/* LEFT: portrait + quote */
.founder-media {
  position: relative;
}

.founder-photo-frame {
  border: 1px solid rgba(201, 162, 77, 0.55);
  border-radius: 220px 220px 24px 24px;
  /* padding: 14px; */
  overflow: hidden;
  padding: 1%;
  background: rgba(201, 162, 77, 0.55);
}

.founder-photo-frame img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 210px 210px 14px 14px;
  display: block;
}

.founder-quote {
  position: absolute;
  left: -30px;
  bottom: -40px;
  max-width: 260px;
  background: #16261b;
  border: 1px solid rgba(201, 162, 77, 0.55);
  border-radius: 22px;
  padding: 32px 26px 28px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.35;
  color: #f3ead9;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.founder-quote .quote-mark {
  display: block;
  font-family: Georgia, serif;
  font-style: normal;
  color: #c9a24d;
  font-size: 2.6rem;
  line-height: 1;
}

.founder-quote .quote-mark.close {
  text-align: right;
  margin-top: 6px;
}

/* RIGHT: content */
.founder-content .section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a24d;
  margin-bottom: 22px;
}

.founder-content .section-eyebrow::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--deep-forest);
}

.founder-content h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
  line-height: 1.2;
  margin: 0 0 26px;
  color: var(--deep-forest);
}

.founder-name {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.8rem;
  color: #c9a24d;
  margin: 0 0 4px;
}

.founder-title {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #a9bfae;
  margin: 0 0 22px;
}

.founder-content p.founder-bio {
  font-family: "Lora", serif;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(243, 234, 217, 0.85);
  margin: 0 0 16px;
  max-width: 560px;
}

.founder-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 30px;
  color: #c9a24d;
}

.founder-divider::before,
.founder-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 162, 77, 0.35);
}

/* stats row */
.founder-stats {
  display: flex;
  gap: 44px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.founder-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.founder-stat .stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 77, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.founder-stat .stat-icon svg {
  width: 35px;
  height: 35px;
  stroke: #c9a24d;
  fill: none;
}

.founder-stat .stat-number {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #f3ead9;
  line-height: 1.1;
}

.founder-stat .stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  color: rgba(243, 234, 217, 0.7);
  line-height: 1.3;
}

/* CTA */
.founder-content .btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border: 1px solid #c9a24d;
  border-radius: 40px;
  color: #c9a24d;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.founder-content .btn-outline-gold:hover {
  background: #c9a24d;
  color: #142218;
}

/* Credentials bar */
.founder-credentials {
  max-width: 1280px;
  margin: 70px auto 0;
  border: 1px solid rgba(201, 162, 77, 0.35);
  border-radius: 20px;
  padding: 30px 40px;
}

.founder-credentials h3 {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f3ead9;
  margin: 0 0 22px;
}

.credentials-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.credential-item .cred-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 77, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-item .cred-icon svg {
  width: 20px;
  height: 20px;
  stroke: #c9a24d;
  fill: none;
}

.credential-item span {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.3;
  color: #f3ead9;
}

@media (max-width: 1024px) {
  .founder-container {
    grid-template-columns: 1fr;
  }
  .founder-media {
    max-width: 480px;
    margin: 0 auto 70px;
  }
}

@media (max-width: 640px) {
  .founder-section {
    padding: 80px 6vw 60px;
  }
  .founder-photo-frame img {
    height: 420px;
  }
  .founder-quote {
    position: static;
    margin-top: -60px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .founder-stats {
    gap: 24px;
  }
  .founder-credentials {
    padding: 24px 20px;
  }
  .credentials-list {
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .services-columns > .service-col:last-child {
    /* grid-column: 1 / -1; */
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
  }
}