/* MACAO — generated (bmi-split_side-cards3-icon_cards) */

:root {
  --blue: #b7221b;
  --blue-dark: #961b16;
  --blue-soft: #f7e8e8;
  --pink: #bab767;
  --pink-dark: #989654;
  --yellow: #f2d7d5;
  --green: #6a130f;
  --dark: #1f2933;
  --white: #ffffff;
  --cream: #fafafa;
  --sand: #f3f4f6;
  --text: #1f2933;
  --text-muted: #5c6670;
  --border: #e2e6ea;
  --primary: #b7221b;
  --primary-dark: #961b16;
  --accent: #bab767;
  --orange: #bab767;
  --orange-dark: #989654;
  --grey: #a0a0a0;
  --grey-light: #e8e8e8;
  /* Radius 02 Tight */
  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 6px;
  --radius-btn: 6px;
  --font: 'PT Sans', sans-serif;
  --header-h: 72px;
  --topbar-h: 36px;
  --max-w: 1140px;
  --gutter: 1.5rem;
  --ease: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h) + 16px);
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--header-h) + var(--topbar-h));
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

.tag--light { color: rgba(255, 255, 255, 0.85); }

.section-head { margin-bottom: 2.5rem; }
.section-head--center { text-align: center; }

.section-head h2,
.about__copy h2,
.products h2,
.services h2,
.testimonials h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--pink);
  border-color: var(--white);
}

.btn--white:hover { background: var(--cream); }

.btn--outline {
  background: var(--white);
  color: var(--dark);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn--lg { padding: 14px 32px; font-size: 0.95rem; }
.btn--full { width: 100%; }

/* ── Top bar ── */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: var(--blue);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.top-bar a,
.top-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar a:hover { color: var(--yellow); }

.top-bar svg {
  width: 13px;
  height: 13px;
  stroke-width: 2;
}

/* ── Header ── */
.header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}

.header.scrolled { box-shadow: 0 4px 20px rgba(31, 41, 51, 0.08); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.header__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav { display: flex; align-items: center; gap: 1.35rem; }

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--ease);
}

.nav__link:hover,
.nav__link.active { color: var(--blue); }

.header__cta { padding: 10px 22px; font-size: 0.82rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--ease);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero · split ── */
.hero {
  padding: 4rem 0 5rem;
  background: var(--blue-soft);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.hero__dots {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero__dot--blue { background: var(--blue); }
.hero__dot--pink { background: var(--pink); }
.hero__dot--yellow { background: var(--yellow); }
.hero__dot--green { background: var(--green); }

.hero__content h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.hero__content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(183, 34, 27, 0.2);
}

/* ── Nosotros ── */
.about {
  padding: 5rem 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(31, 41, 51, 0.1);
}

.about__copy p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.about__list svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* ── Productos · bento ── */
.products {
  padding: 5rem 0;
  background: var(--sand);
}

.products__bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(31, 41, 51, 0.05);
}

.product-card--lead {
  grid-row: span 2;
}

.product-card--wide {
  grid-column: span 2;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card--lead img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 280px;
}

.product-card--wide img {
  aspect-ratio: 21 / 9;
}

.product-card__body { padding: 1.35rem 1.5rem 1.5rem; }

.product-card__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.product-card:nth-child(1) .product-card__body h3 { color: var(--blue); }
.product-card:nth-child(2) .product-card__body h3 { color: var(--pink); }
.product-card:nth-child(3) .product-card__body h3 { color: var(--green); }
.product-card:nth-child(4) .product-card__body h3 { color: #f2d7d5; }

.product-card__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Servicios ── */
.services {
  padding: 5rem 0;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--blue-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(183, 34, 27, 0.12);
  transition: transform var(--ease), box-shadow var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(183, 34, 27, 0.15);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
  background: var(--white);
}

.service-card__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.service-card__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Testimonios ── */
.testimonials {
  padding: 5rem 0;
  background: var(--blue-soft);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial {
  margin: 0;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(183, 34, 27, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial__avatar {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
}

.testimonial__avatar--blue { background: var(--blue); }
.testimonial__avatar--pink { background: var(--pink); }
.testimonial__avatar--green { background: var(--green); }

.testimonial__meta cite {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.testimonial__meta > div span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.testimonial p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text);
}

/* ── CTA ── */
.cta {
  padding: 3.5rem 0;
  background: var(--pink);
  color: var(--white);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta__inner h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta__inner p {
  font-size: 0.95rem;
  opacity: 0.92;
  max-width: 480px;
}

/* ── Contacto ── */
.contact {
  padding: 5rem 0 3rem;
  background: var(--dark);
}

.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact__info h2 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact__info > p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--white);
}

.contact__icon--blue { background: var(--blue); }
.contact__icon--pink { background: var(--pink); }

.contact__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.contact__list strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.35rem;
}

.contact__list span,
.contact__list a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.contact__list a:hover { color: var(--yellow); }

.contact__form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

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

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-notice { margin-top: 1rem; font-size: 0.9rem; text-align: center; }
.form-notice.success { color: #2d7a4f; }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2.5rem 0 2rem;
}

.footer__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.footer__tagline { font-size: 0.9rem; }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.footer__nav a {
  font-size: 0.85rem;
  opacity: 0.75;
  transition: opacity var(--ease);
}

.footer__nav a:hover { opacity: 1; }

.footer__legal {
  font-size: 0.78rem;
  opacity: 0.5;
  margin-top: 0.5rem;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .products__bento {
    grid-template-columns: 1fr 1fr;
  }

  .product-card--lead { grid-row: span 1; }
  .product-card--wide { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero__grid,
  .about__grid,
  .contact__wrap {
    grid-template-columns: 1fr;
  }

  .hero__media { order: -1; }

  .services__grid { grid-template-columns: 1fr; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .products__bento {
    grid-template-columns: 1fr;
  }

  .product-card--wide { grid-column: span 1; }

  .product-card--lead img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .header__cta { display: none; }
  .menu-toggle { display: flex; }

  .nav {
    position: fixed;
    top: calc(var(--header-h) + var(--topbar-h));
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 1rem var(--gutter);
    box-shadow: 0 8px 24px rgba(31, 41, 51, 0.1);
    transform: translateY(-110%);
    opacity: 0;
    transition: all var(--ease);
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .cta__inner {
    flex-direction: column;
    text-align: center;
  }

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


.hero--split .hero__background { display: none; }
.hero--split { background: var(--sand, var(--cream)); padding: 4rem 0; min-height: 0; }
.hero--split .hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.hero--split .hero__content,
.hero--split .hero__text { min-height: 0; display: flex; flex-direction: column; align-items: flex-start; padding: 0; }
.hero--split .hero__photo { border-radius: var(--radius-lg, var(--radius)); aspect-ratio: 4/3; object-fit: cover; width: 100%; box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.hero--split .hero__content h1,
.hero--split .hero__text h1 { font-size: clamp(1.85rem, 4vw, 2.75rem); font-weight: 700; margin-bottom: 1rem; }
.hero--split .hero__content p,
.hero--split .hero__text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.hero--split .hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
@media (max-width: 900px) { .hero--split .hero__grid { grid-template-columns: 1fr; } .hero--split .hero__photo { order: -1; } }


.about--quote .about__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 2.5rem; align-items: center; }
.about--quote .about__quote { font-size: clamp(1.35rem, 2.5vw, 1.75rem); font-weight: 600; line-height: 1.45; color: var(--primary, var(--blue, var(--teal))); border-left: 4px solid var(--secondary, var(--pink, var(--orange))); padding-left: 1.25rem; margin: 0; }
.about--quote .about__photo { border-radius: var(--radius-lg, var(--radius)); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
@media (max-width: 900px) { .about--quote .about__grid { grid-template-columns: 1fr; } }


.products__cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.products__cards3 article { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg, var(--radius)); overflow: hidden; }
.products__cards3 img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.products__cards3 .product-card__body { padding: 1.25rem; }
@media (max-width: 900px) { .products__cards3 { grid-template-columns: 1fr; } }


.services__grid--icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.services__grid--icons .service-card { background: var(--white); border: 1px solid var(--border); padding: 1.5rem; border-radius: var(--radius-lg); text-align: center; }
.services__grid--icons .service-card__icon { width: 48px; height: 48px; margin: 0 auto 1rem; border-radius: 50%; background: var(--blue-soft); display: flex; align-items: center; justify-content: center; color: var(--blue); }
@media (max-width: 768px) { .services__grid--icons { grid-template-columns: 1fr; } }


.testimonials--single { padding: 4rem 0; background: var(--sand, var(--cream, var(--lavender-light))); }
.testimonial--featured { max-width: 720px; margin: 0 auto; text-align: center; border: none; background: transparent; padding: 0; }
.testimonial--featured p { font-size: clamp(1.2rem, 2.2vw, 1.55rem); line-height: 1.55; font-weight: 500; margin-bottom: 1.5rem; }
.testimonial--featured footer strong { display: block; font-size: 1rem; }
.testimonial--featured footer span { font-size: 0.85rem; color: var(--text-muted); }


.cta--dark-band { background: var(--dark, var(--teal-deep)); color: var(--white); padding: 3.5rem 0; }
.cta--dark-band .cta__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.cta--dark-band h2 { font-size: 1.65rem; margin: 0; }
.cta--dark-band p { opacity: 0.85; margin: 0.35rem 0 0; max-width: 480px; }
.cta--dark-band .btn--white { color: var(--dark, var(--teal-deep)); }

body { padding-top: var(--header-h) !important; }

/* Brand design — logo palette */
.hero:not(.hero--bg):not(.hero--centered) { background: linear-gradient(160deg, #f7e8e8 0%, var(--white) 62%); }
.section--sand { background: #f7e8e8; }
.tag { color: #bab767; font-weight: 700; }
.btn--primary { background: #bab767; border-color: #bab767; }
.btn--primary:hover { background: #989654; border-color: #989654; }
.header__cta.btn--primary { background: #bab767; border-color: #bab767; }

.top-bar { background: #b7221b; }
.top-bar a:hover { color: #f2d7d5; }
.hero__dot--blue { background: #b7221b; }
.hero__dot--pink { background: #bab767; }
.hero__dot--yellow { background: #f2d7d5; }
.hero__dot--green { background: #6a130f; }
.product-card:nth-child(1) .product-card__body h3 { color: #b7221b; }
.product-card:nth-child(2) .product-card__body h3 { color: #bab767; }
.product-card:nth-child(3) .product-card__body h3 { color: #6a130f; }
.product-card:nth-child(4) .product-card__body h3 { color: #f2d7d5; }
.services__grid--icons .service-card__icon { background: #f7e8e8; color: #b7221b; }
.about__checklist svg { color: #bab767; }
.cta { background: #bab767; }
.cta--primary { background: #b7221b; }
.cta--primary .btn--white { color: #b7221b; }
.contact__icon--green { background: #6a130f; }

.contact--split { padding: 5rem 0 3rem; background: var(--teal-deep, var(--dark)); }
.contact--split .contact__wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact--split .contact__info h2 { font-size: 1.65rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.contact--split .contact__intro { font-size: 0.95rem; color: rgba(255,255,255,0.72); margin-bottom: 2rem; line-height: 1.6; }
.contact--split .contact__list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact--split .contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact--split .contact__icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; color: var(--white); }
.contact--split .contact__icon--blue { background: var(--blue, var(--teal, var(--orange))); }
.contact--split .contact__icon--pink { background: var(--pink, var(--accent-pink, var(--orange))); }
.contact--split .contact__icon--green { background: var(--green, var(--accent-green, var(--yellow))); }
.contact--split .contact__icon svg { width: 20px; height: 20px; stroke-width: 2; }
.contact--split .contact__list strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 0.35rem; }
.contact--split .contact__list span,
.contact--split .contact__list a { font-size: 0.9rem; color: rgba(255,255,255,0.88); line-height: 1.55; word-break: break-word; }
.contact--split .contact__list a:hover { color: var(--yellow, var(--accent-yellow, var(--orange))); }
.contact--split .contact__form { background: var(--white); padding: 2rem; border-radius: var(--radius-lg, var(--radius)); border: 1px solid var(--border); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.contact--split .tag { color: var(--orange, var(--pink, var(--accent-yellow))); }
@media (max-width: 900px) { .contact--split .contact__wrap { grid-template-columns: 1fr; } }

/* Hero photo scrim — black overlay for text contrast (WCAG) */
.hero .hero__background .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55) !important;
}
.hero--solid.hero--bg .hero__background .hero__overlay {
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.52) 50%,
    rgba(0, 0, 0, 0.42) 100%
  ) !important;
}
.hero .hero__overlay::before {
  display: none !important;
}

.top-bar__inner--split { justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.contact__icon--green { background: var(--green); }
.testimonial__meta > div span { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.1rem; }
.service-row p,
.services__grid .service-card__body p,
.service-border p,
.service-stack p { line-height: 1.65; max-width: 36rem; }
