:root {
  --background: #ffffff;
  --foreground: #171717;
  --secondary: #f5f5f5;
  --muted-foreground: #737373;
  --border: #e5e5e5;
  --brand-red: #d2691e;
  --brand-red-hover: #a8541a;
  --gold: #d2691e;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Stats Marquee Section */
.stats-marquee {
    position: relative;
    overflow: hidden;
    background: hsl(210, 55%, 30%);
  }

  /* Decorative blurred circles */
  .stats-marquee::before,
  .stats-marquee::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .stats-marquee::before {
    top: -64px;
    right: -64px;
    width: 192px;
    height: 192px;
    background: rgba(255,255,255,0.04);
    filter: blur(48px);
  }
  .stats-marquee::after {
    bottom: -48px;
    left: -48px;
    width: 144px;
    height: 144px;
    background: rgba(255,255,255,0.03);
    filter: blur(32px);
  }

  /* ── Stats ── */
  .stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    position: relative;
    z-index: 10;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .stat-item {
    text-align: center;
  }

  .stat-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #ffffff;
    line-height: 1;
  }

  .stat-divider {
    margin: 8px auto;
    height: 1px;
    width: 32px;
    background: rgba(255,255,255,0.2);
  }

  .stat-label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }

  /* ── Marquee ── */
  .marquee-wrap {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
  }

  .marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
  }

  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }

  .marquee-dot {
    color: rgba(229, 57, 53, 0.6);
    font-size: 10px;
  }

  @keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

/* City CTA Banner Section */
.city-cta-banner {
  background: #ffffff;
  overflow: hidden;
}

.city-cta-banner__inner {
  width: 100%;
  margin: 0;
  background: linear-gradient(135deg, #12528f 0%, #08437b 58%, #12528f 100%);
  border: 1px solid rgba(250, 114, 19, 0.4);
  border-radius: 0;
  padding: 16px clamp(18px, 4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: 0 16px 34px rgba(8, 67, 123, 0.25);
}

.city-cta-banner__copy {
  color: #ffffff;
  max-width: 900px;
}

.city-cta-banner__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fa7213;
  margin-bottom: 6px;
}

.city-cta-banner__copy h2 {
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.city-cta-banner__copy p {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.city-cta-banner__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fa7213 0%, #cf5c10 55%, #b44706 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 26px rgba(180, 71, 6, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-cta-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(180, 71, 6, 0.5);
}

/* City Portfolio Section */
.city-portfolio {
  background: #faf2e9;
  padding: 2rem;
}

.city-portfolio__title {
  text-align: center;
  color: #12528f;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.2;
  margin-bottom: 8px;
}

.city-portfolio__subtitle {
  text-align: center;
  margin-bottom: 30px;
}

.city-portfolio__title span {
  color: #cf5c10;
  font-weight: 700;
}

.city-portfolio__btn {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.city-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.city-portfolio__card {
  border: 1px solid #e6e8ee;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(8, 67, 123, 0.08);
}

.city-portfolio__card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.city-portfolio__meta {
  padding: 10px 12px;
}

.city-portfolio__meta h3 {
  color: #101828;
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 6px;
}

.city-portfolio__meta p {
  color: #667085;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.city-portfolio__meta p span {
  margin-left: 0;
}

/* Common Clients Section */
.common-clients {
  background-color: #faf2e9;
  padding: 2rem;
}

.common-section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  line-height: 1.12;
  color: #12528f;
}

.common-clients-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
  margin-top: 2em;
  margin-bottom: 1em;
}

.common-clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  grid-auto-rows: 96px;
}

.common-clients-item {
  background-color: #ffffff;
  border-radius: 0.5em;
  padding: 0.9em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border: 0.0625em solid #eeeeee;
  box-shadow: 0 0.0625em 0.25em rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.common-clients-item img {
  width: 100%;
  max-width: 150px;
  max-height: 46px;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.common-clients-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.common-clients-title-accent {
  color: #cf5c10;
  padding-left: 10px;
}

/* Common Testimonials Section */
.common-testimonials {
  background-color: #ffffff;
  padding: 2em 0;
}

.common-testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}

.common-testimonials-header {
  text-align: center;
  margin-bottom: 2em;
}

.common-testimonials-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3034;
  margin: 0;
}

.common-testimonials-title-accent {
  color: #cf5c10;
}

.common-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25em;
}

.common-testimonial-card {
  background-color: #ffffff;
  border-radius: 0.75em;
  border: 0.0625em solid #e5e7eb;
  padding: 1em;
  box-shadow: 0 0.0625em 0.25em rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.common-testimonial-card:hover {
  box-shadow: 0 0.25em 0.75em rgba(0, 0, 0, 0.1);
}

.common-testimonial-quote-mark {
  color: #cf5c10;
  font-size: 2em;
  line-height: 0.3125em;
}

.common-testimonial-quote {
  font-size: 0.875em !important;
  color: #2c3034 !important;
  line-height: 1.5 !important;
  margin: 0 0 0.75em 0 !important;
  flex: 1;
}

.common-testimonial-stars {
  display: flex;
  gap: 0.125em;
  margin-bottom: 0.75em;
}

.common-testimonial-star {
  width: 0.875em;
  height: 0.875em;
  color: #cf5c10;
  fill: #cf5c10;
  flex-shrink: 0;
}

.common-testimonial-author {
  margin-top: auto;
}

.common-testimonial-name {
  font-size: 0.875em !important;
  font-weight: 600 !important;
  color: #2c3034 !important;
  margin: 0 0 0.25em 0 !important;
  line-height: 1.6 !important;
}

.common-testimonial-role {
  font-size: 0.75em !important;
  color: #4a5568;
  margin: 0 0 0.25em 0 !important;
}

.common-testimonial-company {
  font-size: 0.75em !important;
  color: #cf5c10 !important;
  font-weight: 500;
  margin: 0 !important;
}

/* Common FAQ Section */
.common-faq {
  background-color: #faf2e9;
  padding: 2rem;
}

.common-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}

.common-faq-header {
  text-align: center;
  margin-bottom: 1.5em;
}

.common-faq-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3034;
  margin: 0 0 0.25em 0;
}

.common-faq-title-accent {
  color: #cf5c10;
}

.common-faq-subtitle {
  font-size: 1em;
  color: #4a5568;
  margin: 0.75em 0 0 0;
}

.common-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}

.common-faq-list-wrap {
  display: flex;
  flex-direction: column;
}

.common-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.common-faq-item {
  background-color: #ffffff;
  border-radius: 0.75em;
  border: 0.0625em solid #e5e7eb;
  padding: 0 1em;
  box-shadow: 0 0.0625em 0.25em rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.common-faq-item h4 {
  font-size: 0.96rem !important;
  font-weight: 500 !important;
  letter-spacing: normal;
}

.common-faq-item:hover {
  background-color: #fafafa;
  border-color: #d1d5db;
  box-shadow: 0 0.125em 0.5em rgba(0, 0, 0, 0.1);
}

.common-faq-question-btn {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: #2c3034;
  padding: 0.875em 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.9em;
  font-family: Inter, system-ui, sans-serif;
  transition: color 0.2s ease;
}

.common-faq-question-btn:hover {
  color: #cf5c10;
  text-decoration: none;
}

.common-faq-question-btn span {
  flex: 1;
  padding-right: 1em;
}

.common-faq-chevron {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.common-faq-item[data-state="open"] .common-faq-chevron {
  transform: rotate(180deg);
}

.common-faq-answer {
  font-size: 0.875em;
  color: #4a5568;
  line-height: 1.625;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.common-faq-item[data-state="open"] .common-faq-answer {
  max-height: 20em;
}

.common-faq-form-wrap {
  background-color: #ffffff;
  border-radius: 1.25em;
  padding: 1.5em;
  box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.08);
  border: 0.0625em solid #e5e7eb;
}

.common-faq-form-title {
  font-size: 1.25em;
  font-weight: 700;
  color: #2c3034;
  margin: 0 0 0.25em 0;
}

.common-faq-form-subtitle {
  font-size: 0.875em;
  color: #4a5568;
  margin: 0 0 0.8em 0;
}

.common-faq-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.common-faq-form .custom-field {
  margin-bottom: 0;
}

.common-faq-form input[type="text"],
.common-faq-form input[type="email"],
.common-faq-form input[type="tel"] {
  width: 100%;
  padding: 0.75em 1em;
  font-size: 1em;
  font-family: Inter, system-ui, sans-serif;
  color: #2c3034;
  background-color: #ffffff;
  border: 0.0625em solid #e5e7eb;
  border-radius: 0.5em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.common-faq-form input::placeholder {
  color: #4a5568;
}

.common-faq-form input:focus {
  outline: none;
  border-color: #cf5c10;
  box-shadow: 0 0 0 0.1875em rgba(198, 5, 14, 0.3);
}

.common-faq-form-submit {
  width: 100%;
  background-color: #cf5c10;
  color: #ffffff !important;
  font-size: 1em;
  font-weight: 600;
  padding: 0.875em 1.5em;
  border-radius: 0.5em;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.common-faq-form-submit:hover {
  background-color: rgba(198, 5, 14, 0.9);
  color: #ffffff !important;
  transform: translateY(-0.0625em);
  box-shadow: 0 0.25em 0.5em rgba(198, 5, 14, 0.3);
}

.common-faq-form-arrow {
  width: 1.125em;
  height: 1.125em;
  flex-shrink: 0;
}

/* FAQ final visual overrides */
.common-faq {
  background: #faf2e9 !important;
  padding: 2rem 0 !important;
}

.common-faq .common-faq-inner {
  max-width: 1220px !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
}

.common-faq .common-faq-title {
  color: #0f172a !important;
  font-size: 28px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  text-align: center !important;
}

.common-faq .common-faq-title-accent {
  color: #cf5c10 !important;
}

.common-faq .common-faq-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 36px !important;
  align-items: start !important;
}

.common-faq .common-faq-list {
  gap: 10px !important;
}

.common-faq .common-faq-item {
  border: 1px solid #d7dce4 !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08) !important;
  padding: 0 16px !important;
}

.common-faq .common-faq-question-btn {
  padding: 14px 0 !important;
  color: #0f172a !important;
}

.common-faq .common-faq-item h4 {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  margin: 0 !important;
}

.common-faq .common-faq-item p {
  font-size: 14px !important;
}

.common-faq .common-faq-answer {
  color: #334155 !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.common-faq .common-faq-item[data-state="open"] .common-faq-answer {
  max-height: 24em !important;
  padding: 0 0 14px 0 !important;
}

.common-faq .common-faq-form-wrap {
  background: #ffffff !important;
  border: 1px solid #d7dce4 !important;
  border-radius: 14px !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08) !important;
  padding: 28px 24px 22px !important;
}

.common-faq .common-faq-form-title {
  color: #0f172a !important;
  font-size: 24px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  margin: 0 0 14px 0 !important;
}

.common-faq .common-faq-form-subtitle {
  color: #334155 !important;
  font-size: 16px !important;
  margin: 0 0 28px 0 !important;
}

.common-faq .common-faq-form-wrap .wpforms-field-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.common-faq .common-faq-form-wrap .wpforms-field {
  margin: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

.common-faq .common-faq-form-wrap .wpforms-field input,
.common-faq .common-faq-form-wrap .wpforms-field textarea,
.common-faq .common-faq-form-wrap .wpforms-field select {
  background: #ffffff !important;
  border: 1px solid #d4dae3 !important;
  border-radius: 8px !important;
  min-height: 50px !important;
  font-size: 15px !important;
  color: #0f172a !important;
  padding: 0 22px !important;
  box-shadow: none !important;
}

.common-faq .common-faq-form-wrap .wpforms-field-large,
.common-faq .common-faq-form-wrap .wpforms-field-medium {
  width: 100% !important;
  max-width: none !important;
}

/* Hide anti-spam/honeypot rows that can appear as empty fields */
.common-faq .common-faq-form-wrap #wpforms-10088-field_4-container,
.common-faq .common-faq-form-wrap #wpforms-10088-field_5-container {
  display: none !important;
}

.common-faq .common-faq-form-wrap .wpforms-field input::placeholder,
.common-faq .common-faq-form-wrap .wpforms-field textarea::placeholder {
  color: #64748b !important;
}

.common-faq .common-faq-form-wrap .wpforms-submit {
  width: 100% !important;
  background: #cf5c10 !important;
  border: none !important;
  border-radius: 8px !important;
  min-height: 52px !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 14px rgba(207, 92, 16, 0.28) !important;
  margin-top: 10px !important;
}

.common-faq .common-faq-form-wrap .wpforms-submit:hover {
  background: #b44706 !important;
}

/* ===== OUR WORK ===== */
.work {
  padding: 2rem 0;
  background: var(--background);
}

/* Header */
.work__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.work__header .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--brand-red);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.work__header .eyebrow__line {
  width: 1.5rem;
  height: 1px;
  background: var(--brand-red);
}
.work__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--foreground);
}
@media (min-width: 768px) {
  .work__title { font-size: 2rem; }
}

/* Grid */
.work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .work__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .work__grid { grid-template-columns: repeat(4, 1fr); } }

/* Card */
.work-card {
  background: var(--secondary);
  border-radius: .75rem;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -12px rgba(0,0,0,.18);
}

/* Image */
.work-card__image {
  position: relative;
  overflow: hidden;
  border-top-left-radius: .75rem;
  border-top-right-radius: .75rem;
}
.work-card__image img {
  width: 100%;
  height: 14rem; /* 224px */
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.work-card:hover .work-card__image img {
  transform: scale(1.05);
}

/* Hover overlay */
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background-color .3s ease;
}
.work-card:hover .work-card__overlay {
  background: rgba(0, 0, 0, .2);
}

/* Body */
.work-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  gap: 1rem;
}
.work-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .875rem;
  line-height: 1.4;
  color: var(--foreground);
  transition: color .2s ease;
}
.work-card:hover .work-card__title {
  color: var(--brand-red);
}

/* Arrow */
.work-card__arrow {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: var(--brand-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  transition: background-color .2s ease;
}
.work-card__arrow svg {
  width: 1rem;
  height: 1rem;
}
.work-card:hover .work-card__arrow {
  background: var(--foreground);
}

/* View All button */
.work__cta {
  text-align: center;
  margin-top: 2.5rem;
}
.work__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--brand-red);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .875rem;
  padding: .875rem 2rem;
  border-radius: .5rem;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.work__btn:hover {
  background: var(--brand-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0,0,0,.15);
}
.work__btn svg {
  width: 1rem;
  height: 1rem;
}
/* ===== OUR CLIENTS ===== */
.clients {
  padding: 2rem 0;
  background: var(--secondary);
}

/* Header */
.clients__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.clients__header .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--brand-red);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.clients__header .eyebrow__line {
  width: 1.5rem;
  height: 1px;
  background: var(--brand-red);
}
.clients__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--foreground);
}
@media (min-width: 768px) {
  .clients__title { font-size: 2rem; }
}

/* Grid: 3 / 4 / 6 columns */
.clients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (min-width: 640px)  { .clients__grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px)  { .clients__grid { grid-template-columns: repeat(6, 1fr); } }

/* Logo tile */
.client-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;             /* 80px */
  padding: 1.25rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: .75rem;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.client-tile:hover {
  border-color: rgba(210,105,30,.3); /* brand-red @ 30% */
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
}

/* Logo image */
.client-tile img {
  max-height: 2.5rem;       /* 40px */
  max-width: 100%;
  object-fit: contain;
  display: block;
}
/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 2rem 0;
  background: var(--background);
}

/* Header */
.testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 100%;
  box-sizing: border-box;
  padding-inline: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--brand-red);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.eyebrow__line {
  width: 1.5rem;
  height: 1px;
  background: var(--brand-red);
}
.testimonials__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--foreground);
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .testimonials__title { font-size: 2rem; }
}
.testimonials__subtitle {
  margin-top: .75rem;
  font-size: .875rem;
  color: var(--muted-foreground);
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (min-width: 1024px) {
  .testimonials__subtitle {
    white-space: nowrap;
  }
}

/* Rows */
.testimonials__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .testimonials__row { grid-template-columns: repeat(3, 1fr); }
}
.testimonials__row:last-child { margin-bottom: 0; }

/* Card */
.t-card {
  position: relative;
  padding: calc(1.5rem - 5px) 1.5rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

/* Featured variant (raised + accent border) */
.t-card--featured {
  border: 2px solid rgba(210, 105, 30, 0.22);
  box-shadow: 0 20px 35px -10px rgba(0,0,0,.15);
}
@media (min-width: 768px) {
  .t-card--featured { transform: translateY(-12px); }
}

/* Top row: stars left, decorative quote right (matches reference) */
.t-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.t-card__quote-mark {
  flex-shrink: 0;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 0.55;
  color: rgba(160, 160, 160, 0.42);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 2px 4px rgba(0, 0, 0, 0.06);
  margin: -0.15rem -0.1rem 0 0;
  user-select: none;
  pointer-events: none;
}
.t-card--featured .t-card__quote-mark {
  color: rgba(210, 105, 30, 0.2);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 5px rgba(210, 105, 30, 0.12);
}

/* Stars */
.t-card__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-top: 2px;
}
.t-card__stars svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Text */
.t-card__text {
  font-size: .875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}

/* Divider */
.t-card__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1rem;
}

/* Author block */
.t-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.t-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--foreground);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .875rem;
}
.t-card--featured .t-card__avatar {
  background: var(--brand-red);
  box-shadow: 0 4px 14px rgba(210, 105, 30, 0.35);
}
.t-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .875rem;
  color: var(--foreground);
  line-height: 1.2;
}
.t-card__location {
  font-size: .75rem;
  color: var(--muted-foreground);
}
/* ===== FAQ ===== */
.faq {
  padding: 2rem 0;
  background: var(--secondary);
}

/* Grid */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .faq__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* Eyebrow + title */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--brand-red);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.eyebrow__line { width: 1.5rem; height: 1px; background: var(--brand-red); }

.faq__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--foreground);
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .faq__title { font-size: 2rem; } }

/* List */
.faq__list { display: flex; flex-direction: column; gap: .75rem; }

/* Item (uses native <details>) */
.faq-item {
  border: 1px solid var(--border);
  border-radius: .75rem;
  background: var(--background);
  padding: 0 1.5rem;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item:hover { border-color: rgba(210, 105, 30, 0.22); }
.faq-item[open] {
  border-color: rgba(210, 105, 30, 0.22);
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
}

.faq-item__trigger {
  -webkit-tap-highlight-color: transparent;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .875rem;
  color: var(--foreground);
  transition: color .3s ease;
}
.faq-item__trigger:focus { outline: none; }
.faq-item__trigger:focus-visible {
  outline: 2px solid rgba(210, 105, 30, 0.4);
  outline-offset: 2px;
  border-radius: 4px;
}
.faq-item__trigger::-webkit-details-marker { display: none; }
.faq-item:hover .faq-item__trigger { color: var(--brand-red); }

.faq-item__chevron {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }

.faq-item__content {
  padding: 0 0 1.25rem;
  font-size: .875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ===== Quote Card ===== */
@media (min-width: 1024px) {
  .quote-card-wrap { position: sticky; top: 8rem; }
}

.quote-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,.12);
}
.quote-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--foreground);
}
.quote-card__subtitle {
  font-size: .875rem;
  color: var(--muted-foreground);
  margin: .25rem 0 1.5rem;
}

.quote-card__form { display: flex; flex-direction: column; gap: 1rem; }

.field {
  height: 3rem;
  width: 100%;
  padding: 0 1rem;
  border: 1px solid var(--border);
  border-radius: .5rem;
  background: var(--background);
  color: var(--foreground);
  font-size: .875rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s ease;
}
.field::placeholder { color: var(--muted-foreground); }
.field:focus { border-color: rgba(210, 105, 30, 0.45); }

/* Primary CTA — same palette as hero / work CTAs */
.btn-primary {
  height: 3rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--brand-red);
  color: #ffffff;
  border: 0;
  border-radius: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px -8px rgba(210, 105, 30, 0.5);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover {
  background: var(--brand-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(210, 105, 30, 0.45);
}
.btn-primary svg { width: 1.25rem; height: 1.25rem; transition: transform .2s ease; }
.btn-primary:hover svg { transform: translateX(4px); }

/* Secure note */
.quote-card__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .75rem;
  color: var(--muted-foreground);
}
.quote-card__secure svg { width: .875rem; height: .875rem; }

/* ===== Mobile: horizontal scroll + snap (Work, Clients, Testimonials) ===== */
.testimonials__scroll {
display: block;
}

@media (max-width: 767px) {
.work__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2rem;
  gap: 1.25rem;
  margin-inline: -2rem;
  padding-inline: 2rem;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}
.work__grid .work-card {
  flex: 0 0 min(86vw, 20rem);
  scroll-snap-align: start;
  max-width: min(86vw, 20rem);
}

.clients__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2rem;
  gap: 1rem;
  margin-inline: -2rem;
  padding-inline: 2rem;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}
.clients__grid .client-tile {
  flex: 0 0 42vw;
  max-width: 11rem;
  scroll-snap-align: start;
}

.testimonials__scroll {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2rem;
  gap: 1.5rem;
  margin-inline: -2rem;
  padding-inline: 2rem;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}
.testimonials__scroll .testimonials__row {
  display: contents;
}
.testimonials__scroll .t-card {
  flex: 0 0 min(88vw, 22rem);
  scroll-snap-align: start;
  max-width: min(88vw, 22rem);
  margin-bottom: 0;
}
}
