/* =============================================================================
   RENEW SPACES
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700&family=Sora:wght@300;400;500;600&display=swap');

:root {
  --c-dark: #0B0B0B;
  --c-light: #F8F7F3;
  --c-white: #FFFFFF;
  --c-accent: #C8926B;
  --c-text: #111111;
  --c-muted: #888888;
  --c-muted-light: #AAAAAA;
  --c-muted-dark: #444444;
  --c-muted-mid: #666666;
  --c-border-dark: #1A1A1A;
  --c-border-mid: #333333;
  --c-border-light: #555555;
  --c-nav-link: #CCCCCC;
  --c-placeholder: #DDDFE4;
  --ff-heading: 'Archivo', system-ui, sans-serif;
  --ff-body: 'Sora', system-ui, sans-serif;
  --w-container: 1366px;
  --px-container: 40px;
  --gradient-btn: linear-gradient(180deg, #C8926B 0%, #9A6B45 100%);
}

body {
  font-family: var(--ff-body);
  color: var(--c-text);
  background: var(--c-white);
}
.container {
  width: 100%;
  max-width: var(--w-container);
  margin: 0 auto;
  padding-left: var(--px-container);
  padding-right: var(--px-container);
}
.label {
  display: block;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  line-height: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  text-decoration: none;
  border-radius: 8px;
  padding: 16px 32px;
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn--primary { background: var(--gradient-btn); color: var(--c-dark); }
.btn--outline-light,
.btn--outline { background: transparent; color: var(--c-white); border: 1px solid var(--c-border-mid); }
.btn--sm { padding: 10px 20px; font-size: 13px; font-weight: 500; line-height: 16px; }
.btn--pill { border-radius: 50px; padding: 14px 32px; }

/* Nav */
.nav { background: var(--c-dark); padding: 24px 0; }
.nav__content { display: flex; align-items: center; justify-content: space-between; }
.nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 40px;
  width: auto;
}
.nav__right { display: flex; align-items: center; gap: 32px; }
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-nav-link);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--c-white); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(11,11,11,0.75), rgba(11,11,11,0.75)),
              url('/assets/images/hero.jpg') center / cover no-repeat;
  background-color: var(--c-dark);
  padding: 180px 0;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  font-family: var(--ff-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: var(--c-white);
  max-width: 800px;
}
.hero__sub {
  font-size: 17px;
  line-height: 28px;
  color: var(--c-muted-light);
  max-width: 560px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.hero .btn--outline-light { font-weight: 500; }

/* Stats */
.stats {
  background: var(--c-dark);
  padding: 48px 0;
  border-top: 1px solid var(--c-border-dark);
}
.stats__grid { display: flex; gap: 0; }
.stats__item { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.stats__number {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: var(--c-white);
}
.stats__label { font-size: 13px; color: var(--c-muted); line-height: 16px; }

/* Services */
.services { background: var(--c-light); padding: 100px 0; }
.services .container { display: flex; flex-direction: column; gap: 56px; }
.services .container > .label { margin-bottom: -48px; }
.services h2 {
  font-family: var(--ff-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: var(--c-text);
}
.services__grid { display: flex; flex-wrap: wrap; gap: 20px; }
.card {
  display: flex;
  flex-direction: column;
  width: calc((100% - 40px) / 3);
  border-radius: 12px;
  overflow: hidden;
  background: var(--c-white);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-4px); }
.card__img {
  position: relative;
}
.card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__img {
  width: 100%;
  height: 240px;
  background: var(--c-placeholder);
  flex-shrink: 0;
}
.card__body { display: flex; flex-direction: column; padding: 28px; gap: 8px; }
.card__body h3 {
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--c-text);
}
.card__body p { font-size: 14px; line-height: 22px; color: var(--c-muted-mid); }

/* Why Us */
.why { background: var(--c-dark); padding: 100px 0; }
.why__content { display: flex; align-items: center; gap: 80px; }
.why__text { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.why__text h2 {
  font-family: var(--ff-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: var(--c-light);
}
.why__text p { font-size: 16px; line-height: 28px; color: var(--c-muted-light); }
.why__features { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.feature { display: flex; align-items: flex-start; gap: 20px; }
.feature__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--c-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__body { display: flex; flex-direction: column; gap: 4px; }
.feature__body strong {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: var(--c-light);
}
.feature__body span { font-size: 14px; line-height: 22px; color: var(--c-muted); }

/* Testimonials */
.testimonials { background: var(--c-light); padding: 100px 0; }
.testimonials__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.testimonials__header h2 {
  font-family: var(--ff-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: var(--c-text);
}
.testimonials__grid { display: flex; width: 100%; gap: 24px; }
.testimonial {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--c-white);
  border-radius: 16px;
  padding: 36px;
}
.testimonial__stars { font-size: 24px; line-height: 24px; color: var(--c-accent); }
.testimonial p { font-size: 15px; line-height: 26px; color: var(--c-muted-dark); }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-white);
  font-family: var(--ff-heading);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: var(--c-text);
}
.testimonial__author span { display: block; font-size: 12px; line-height: 16px; color: var(--c-muted); }

/* CTA */
.cta { background: var(--c-dark); padding: 100px 0; }
.cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.cta h2 {
  font-family: var(--ff-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--c-light);
}
.cta p { font-size: 18px; line-height: 28px; color: var(--c-muted-light); max-width: 640px; }
.cta__actions { display: flex; gap: 16px; padding-top: 8px; }
.cta .btn--outline-light {
  border-width: 1.5px;
  border-color: var(--c-border-light);
  color: var(--c-light);
  font-weight: 500;
}

/* Footer */
.footer { background: var(--c-dark); }
.footer__grid { display: flex; gap: 48px; padding-top: 80px; padding-bottom: 48px; }
.footer__brand { display: flex; flex-direction: column; width: 320px; flex-shrink: 0; gap: 16px; }
.footer__logo {
  height: 40px;
  width: auto;
  align-self: flex-start;
}
.footer__tagline { font-size: 14px; font-weight: 300; line-height: 22px; color: var(--c-muted); }
.footer__social { display: flex; gap: 8px; margin-top: 8px; }
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--c-border-mid);
  color: var(--c-nav-link);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.footer__social-link:hover { color: var(--c-white); border-color: var(--c-border-light); }
.footer__col { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.footer__heading {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 16px;
}
.footer__col a, .footer__col span {
  font-size: 14px;
  line-height: 18px;
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--c-nav-link); }
.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  width: fit-content;
  border-radius: 8px;
  padding: 12px 20px;
  border: 1px solid var(--c-border-mid);
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: var(--c-nav-link) !important;
  transition: border-color 0.2s, color 0.2s;
}
.footer__whatsapp:hover { border-color: var(--c-border-light); color: var(--c-white) !important; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid var(--c-border-dark);
}
.footer__bottom p { font-size: 13px; line-height: 16px; color: var(--c-muted-dark); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 13px;
  line-height: 16px;
  color: var(--c-muted-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--c-nav-link); }

[data-form-status] { margin-top: 12px; font-size: 14px; }
[data-status="success"] { color: #4ade80; }
[data-status="error"] { color: #f87171; }

/* Responsive */
@media (max-width: 1024px) {
  :root { --px-container: 32px; }
  .hero { padding: 120px 0; }
  .hero h1 { font-size: 42px; line-height: 50px; }
  .card { width: calc((100% - 20px) / 2); }
  .why__content { flex-direction: column; gap: 48px; }
  .stats__grid { flex-wrap: wrap; gap: 32px; }
  .stats__item { flex: 0 0 calc(50% - 16px); }
  .footer__grid { flex-wrap: wrap; }
  .footer__brand { width: 100%; }
}

@media (max-width: 768px) {
  :root { --px-container: 24px; }
  .nav__toggle { display: flex; }
  .nav__right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-dark);
    flex-direction: column;
    padding: 24px var(--px-container) 32px;
    gap: 24px;
    border-top: 1px solid var(--c-border-dark);
  }
  .nav__right.is-open { display: flex; }
  .nav__links { flex-direction: column; gap: 16px; }
  .nav__content { position: relative; }
  .hero { padding: 80px 0; }
  .hero h1 { font-size: 32px; line-height: 40px; }
  .hero__sub { font-size: 15px; }
  .hero__actions { flex-direction: column; width: 100%; max-width: 320px; }
  .hero__actions .btn { width: 100%; }
  .services, .testimonials, .why, .cta { padding: 64px 0; }
  .services h2, .why__text h2, .testimonials__header h2 { font-size: 32px; line-height: 40px; }
  .card { width: 100%; }
  .testimonials__grid { flex-direction: column; }
  .cta h2 { font-size: 32px; line-height: 40px; }
  .cta__actions { flex-direction: column; width: 100%; max-width: 320px; }
  .cta__actions .btn { width: 100%; }
  .footer__grid { flex-direction: column; gap: 32px; }
  .footer__col { flex: none; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}


/* =============================================================================
   PAGE HERO — Shared hero for Services, FAQs, About, Contact
   ============================================================================= */

.page-hero {
  background: var(--c-dark);
  padding: 100px 0 80px;
}
.page-hero .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-hero h1,
.page-hero h2 {
  font-family: var(--ff-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--c-light);
  max-width: 700px;
}
.page-hero p,
.page-hero__subtitle {
  font-size: 17px;
  line-height: 28px;
  color: var(--c-muted-light);
  max-width: 600px;
}


/* =============================================================================
   1. SERVICE LANDING PAGE (lp- prefix)
   ============================================================================= */

/* --- LP Hero --- */
/* ===== Landing-page hero ===== */
.lp-hero {
  background: var(--c-dark);
  padding-bottom: 24px;
}
.lp-hero .container {
  display: flex;
  gap: 80px;
}

/* Image side */
.lp-hero__image {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 3 1 0%;
  position: relative;
  min-height: 796px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--c-dark);
}
.lp-hero__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.45) 0%, rgba(11, 11, 11, 0.85) 100%);
  pointer-events: none;
}
.lp-hero__text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 48px 48px 0 48px;
}
.lp-hero__text .label {
  color: var(--c-accent);
  font-size: 12px;
  margin-bottom: 20px;
}
.lp-hero__text h1 {
  font-family: var(--ff-heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 52px;
  color: var(--c-white);
  margin-bottom: 16px;
}
.lp-hero__text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  color: #E8E4DF;
  max-width: 420px;
  margin-bottom: 32px;
}

/* Stats bar */
.lp-hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 28px;
  padding: 24px 48px 48px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.lp-hero__stat {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-hero__stat-number {
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: var(--c-white);
}
.lp-hero__stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 14px;
  color: #999999;
}

/* Form side */
.lp-hero__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 2 1 0%;
  padding: 64px 0;
}
.lp-hero__form-title {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
  color: var(--c-white);
  margin-bottom: 8px;
}
.lp-hero__form-subtitle {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  color: var(--c-muted);
  margin-bottom: 36px;
}
.lp-hero__form form {
  display: flex;
  flex-direction: column;
}
.lp-form__row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.lp-form__group,
.lp-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.lp-hero__form form > .lp-form__field {
  margin-bottom: 20px;
}
.lp-form__label {
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: #CCCCCC;
}
.lp-form__input,
.lp-form__select,
.lp-form__textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 18px;
  color: var(--c-white);
  background: #1A1A1A;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.lp-form__input::placeholder,
.lp-form__textarea::placeholder {
  color: #555555;
}
.lp-form__input:focus,
.lp-form__select:focus,
.lp-form__textarea:focus {
  border-color: var(--c-accent);
}
.lp-form__select {
  appearance: none;
  color: #555555;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.lp-form__textarea {
  height: 100px;
  padding: 14px 16px;
  resize: vertical;
}
.lp-form__submit {
  width: 100%;
  height: 52px;
  background: var(--gradient-btn);
  color: var(--c-dark);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.lp-form__submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
[data-form-status]:empty { display: none; }
.lp-hero__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 24px;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 18px;
  color: #CCCCCC;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.lp-hero__whatsapp:hover {
  color: var(--c-white);
  border-color: #555555;
}
.lp-hero__whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- LP Services --- */
.lp-services {
  background: var(--c-light);
  padding: 100px 0;
}
.lp-services .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.lp-services__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-services__header h2 {
  font-family: var(--ff-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: var(--c-text);
}
.lp-services__grid {
  display: flex;
  gap: 24px;
}
.lp-service-card,
.lp-services__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: var(--c-white);
  border-radius: 12px;
}
.lp-service-card__icon,
.lp-services__icon {
  flex-shrink: 0;
  line-height: 0;
}
.lp-service-card__title,
.lp-services__card h3 {
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #111111;
}
.lp-service-card__desc,
.lp-services__card p {
  font-size: 14px;
  line-height: 22px;
  color: #888888;
}


/* --- LP Gallery --- */
.lp-gallery {
  background: var(--c-dark);
  padding: 80px 0;
}
.lp-gallery .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.lp-gallery__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-gallery__header h2 {
  font-family: var(--ff-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
  color: var(--c-white);
}
.lp-gallery__grid {
  display: flex;
  gap: 16px;
  
}
.lp-gallery__col-main {
  flex: 1.4 1 0%;
}
.lp-gallery__col-main .lp-gallery__img,
.lp-gallery__item {
  width: 100%;
  height: 100%;
  background: var(--c-placeholder);
  border-radius: 12px;
}
.lp-gallery__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-gallery__img,
.lp-gallery__item {
  width: 100%;
  flex: 1;
  background: var(--c-placeholder);
  border-radius: 12px;
  overflow: hidden;
}
.lp-gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- LP Testimonial --- */
.lp-testimonial {
  background: var(--c-light);
  padding: 100px 0;
}
.lp-testimonial .container,
.lp-testimonial__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.lp-testimonial__icon,
.lp-testimonial__quote-icon {
  font-size: 32px;
  line-height: 1;
  color: var(--c-accent);
}
.lp-testimonial__quote {
  font-family: var(--ff-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  color: #333333;
  max-width: 640px;
  margin: 24px 0;
}
.lp-testimonial__author {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #111111;
}
.lp-testimonial__source {
  font-size: 13px;
  line-height: 16px;
  color: #888888;
  margin-top: 4px;
}

/* --- LP FAQ --- */
.lp-faq {
  background: var(--c-white);
  padding: 80px 0;
}
.lp-faq .container {
  display: flex;
  gap: 80px;
}
.lp-faq__left {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-faq__left h2 {
  font-family: var(--ff-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
  line-height: 44px;
  color: var(--c-text);
}
.lp-faq__right,
.lp-faq__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lp-faq__item {
  padding: 24px 0;
  border-bottom: 1px solid #E0E0E0;
}
.lp-faq__item:first-child {
  padding-top: 0;
}
.lp-faq__question {
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--c-text);
  cursor: pointer;
}
.lp-faq__answer {
  font-size: 14px;
  line-height: 22px;
  color: var(--c-muted-mid);
  margin-top: 12px;
}


/* =============================================================================
   2. SERVICES LISTING PAGE (svc- prefix)
   ============================================================================= */

/* --- Service List --- */
.svc-list {
  background: var(--c-light);
  padding: 80px 0;
}
.svc-list .container {
  display: flex;
  flex-direction: column;
}
.svc-item {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 60px 0;
  border-bottom: 1px solid #E0E0E0;
}
.svc-item:first-child {
  padding-top: 0;
}
.svc-item:last-child {
  border-bottom: none;
}
.svc-item:nth-child(even) {
  flex-direction: row-reverse;
}
.svc-item__image {
  width: 38%;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  background: var(--c-placeholder);
  border-radius: 12px;
  overflow: hidden;
}
.svc-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-item__number {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: var(--c-accent);
}
.svc-item__content h3 {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: var(--c-text);
}
.svc-item__content p {
  font-size: 16px;
  line-height: 28px;
  color: var(--c-muted-mid);
}
.svc-item__link {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: var(--c-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.svc-item__link:hover {
  opacity: 0.8;
}

/* --- Service CTA --- */
.svc-cta {
  background: var(--c-dark);
  padding: 80px 0;
}
.svc-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.svc-cta__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-cta__text h2 {
  font-family: var(--ff-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: var(--c-light);
}
.svc-cta__text p {
  font-size: 16px;
  line-height: 24px;
  color: var(--c-muted-light);
}


/* =============================================================================
   3. FAQS PAGE (faq- prefix)
   ============================================================================= */

/* --- FAQ Content --- */
.faq-content {
  background: var(--c-light);
  padding: 80px 0;
}
.faq-content .container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.faq-category {
  display: flex;
  flex-direction: column;
}
.faq-category__heading,
.faq-category__title {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: var(--c-text);
  padding-bottom: 8px;
  border-bottom: 2px solid #E8E5E0;
}
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid #E8E5E0;
}
.faq-item__question {
  font-family: var(--ff-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  color: var(--c-text);
}
.faq-item__answer {
  font-size: 14px;
  line-height: 24px;
  color: var(--c-muted-mid);
  margin-top: 8px;
}

/* --- FAQ CTA --- */
.faq-cta {
  background: var(--c-dark);
  padding: 80px 0;
}
.faq-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-cta__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-cta__text h2 {
  font-family: var(--ff-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: var(--c-light);
}
.faq-cta__text p {
  font-size: 16px;
  line-height: 24px;
  color: var(--c-muted-light);
}


/* =============================================================================
   4. ABOUT PAGE (about- prefix)
   ============================================================================= */

/* --- Founder / Our Story --- */
.about-founder {
  background: var(--c-white);
  padding: 100px 0;
}
.about-founder .container,
.about-founder__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.about-founder__image {
  width: 38%;
  flex-shrink: 0;
  aspect-ratio: 3 / 4;
  background: var(--c-placeholder);
  border-radius: 12px;
  overflow: hidden;
}
.about-founder__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-founder__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-founder__text h2 {
  font-family: var(--ff-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: var(--c-text);
}
.about-founder__text p {
  font-size: 16px;
  line-height: 28px;
  color: var(--c-muted-mid);
}

/* --- Values / Stats --- */
.about-values {
  background: var(--c-light);
  padding: 100px 0;
}
.about-values .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.about-values__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-values__header h2 {
  font-family: var(--ff-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: var(--c-text);
}
.about-values__grid {
  display: flex;
  gap: 24px;
}
.about-stat-card,
.about-values__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--c-white);
  border-radius: 16px;
  padding: 36px;
}
.about-stat-card__number,
.about-values__number {
  font-family: var(--ff-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: var(--c-accent);
}
.about-stat-card__title {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: var(--c-text);
}
.about-stat-card__desc {
  font-size: 14px;
  line-height: 22px;
  color: var(--c-muted-mid);
}

/* --- Service Areas --- */
.about-areas {
  background: var(--c-white);
  padding: 80px 0;
}
.about-areas .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.about-areas h2 {
  font-family: var(--ff-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: var(--c-text);
}
.about-areas p {
  font-size: 16px;
  line-height: 28px;
  color: var(--c-muted-mid);
  max-width: 600px;
}

/* --- About CTA --- */
.about-cta {
  background: var(--c-dark);
  padding: 100px 0;
}
.about-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.about-cta h2 {
  font-family: var(--ff-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: var(--c-light);
}
.about-cta p {
  font-size: 17px;
  line-height: 28px;
  color: var(--c-muted-light);
  max-width: 600px;
}
.about-cta__actions {
  display: flex;
  gap: 16px;
  padding-top: 8px;
}



/* =============================================================================
   5. CONTACT PAGE (contact- prefix)
   Matches: contact.php class names + Paper design specs
   ============================================================================= */

/* --- Hero override --- */
.contact-hero.page-hero {
  padding: 80px 0 60px;
}

/* --- Contact Body --- */
.contact-body {
  background: var(--c-light);
  padding: 80px 0;
}
.contact-body__inner {
  display: flex;
  gap: 80px;
}

/* --- Form column --- */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form h3 {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: var(--c-text);
}
.contact-form__row {
  display: flex;
  gap: 16px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.contact-form__field label {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: #555555;
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #D5D2CC;
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 18px;
  color: var(--c-text);
  background: var(--c-white);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.contact-form__field textarea {
  height: auto;
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--c-muted);
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--c-accent);
}
.contact-form__submit {
  align-self: flex-start;
  background: var(--gradient-btn);
  color: var(--c-light);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.contact-form__submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* --- Details column --- */
.contact-details {
  width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-details__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-details__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-accent);
}
.contact-details__icon svg {
  width: 20px;
  height: 20px;
}
.contact-details__item > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-details__item strong {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #888888;
}
.contact-details__item a,
.contact-details__item span {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--c-text);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-details__item a:hover {
  color: var(--c-accent);
}

/* =============================================================================
   RESPONSIVE — New pages (1024px)
   ============================================================================= */

@media (max-width: 1024px) {

  /* Page Hero */
  .page-hero h1,
.page-hero h2 { font-size: 40px; line-height: 48px; }

  /* LP Hero — stack */
  .lp-hero .container { flex-direction: column; gap: 0; }
  .lp-hero__image {
    width: 100%;
    flex: none;
    min-height: 480px;
    border-radius: 0;
  }
  .lp-hero__form {
    flex: none;
    width: 100%;
    padding: 40px var(--px-container);
  }

  /* LP Services — 2 columns */
  .lp-services__grid { flex-wrap: wrap; }
  .lp-service-card,
.lp-services__card { flex: 0 0 calc(50% - 12px); }

  /* LP Gallery */
  .lp-gallery__grid { flex-direction: column; min-height: auto; }
  .lp-gallery__col-main { width: 100%; }
  .lp-gallery__col-main .lp-gallery__img,
.lp-gallery__item { height: 320px; }
  .lp-gallery__col { flex-direction: row; }
  .lp-gallery__img,
.lp-gallery__item { min-height: 200px; }

  /* LP FAQ — stack */
  .lp-faq .container { flex-direction: column; gap: 40px; }
  .lp-faq__left { width: 100%; }

  /* Service List — stack */
  .svc-item,
  .svc-item:nth-child(even) {
    flex-direction: column;
    gap: 32px;
  }
  .svc-item__image { width: 100%; }

  /* SVC CTA */
  .svc-cta .container { flex-direction: column; gap: 24px; align-items: flex-start; }

  /* FAQ CTA */
  .faq-cta .container { flex-direction: column; gap: 24px; align-items: flex-start; }

  /* About Founder — stack */
  .about-founder .container,
.about-founder__inner { flex-direction: column; gap: 48px; }
  .about-founder__image { width: 100%; max-width: 480px; }

  /* About Values — 2 columns */
  .about-values__grid { flex-wrap: wrap; }
  .about-stat-card,
.about-values__card { flex: 0 0 calc(50% - 12px); }

  /* Contact Body — stack */
  .contact-body .container,
.contact-body__inner { flex-direction: column; gap: 48px; }
  .contact-form { width: 100%; }
  .contact-details { width: 100%; padding-top: 0; }
}


/* =============================================================================
   RESPONSIVE — New pages (768px)
   ============================================================================= */

@media (max-width: 768px) {

  /* Page Hero */
  .page-hero { padding: 80px 0 56px; }
  .page-hero h1,
.page-hero h2 { font-size: 32px; line-height: 40px; }
  .page-hero p,
.page-hero__subtitle { font-size: 15px; }

  /* LP Hero */
  .lp-hero__image { min-height: 360px; }
  .lp-hero__text { padding: 32px 24px 0; }
  .lp-hero__text h1 { font-size: 28px; line-height: 36px; }
  .lp-hero__stats { padding: 16px 24px 24px; flex-wrap: wrap; gap: 16px; }
  .lp-hero__stat { flex: 0 0 calc(50% - 8px); }
  .lp-hero__form { padding: 32px 24px; }
  .lp-hero__form-title { font-size: 24px; line-height: 30px; }
  .lp-form__row { flex-direction: column; gap: 16px; }

  /* LP Services — 1 column */
  .lp-service-card,
.lp-services__card { flex: 0 0 100%; }

  /* LP Gallery */
  .lp-gallery__col { flex-direction: column; }
  .lp-gallery__img,
.lp-gallery__item { min-height: 180px; }

  /* LP Testimonial */
  .lp-testimonial__quote { font-size: 17px; line-height: 28px; }

  /* LP FAQ */
  .lp-faq__left h2 { font-size: 28px; line-height: 36px; }

  /* LP sections padding */
  .lp-services,
  .lp-gallery,
  .lp-faq { padding: 64px 0; }
  .lp-testimonial { padding: 56px 0; }

  /* SVC */
  .svc-list { padding: 56px 0; }
  .svc-item { padding: 40px 0; gap: 24px; }
  .svc-item__content h3 { font-size: 22px; line-height: 28px; }
  .svc-cta { padding: 56px 0; }
  .svc-cta__text h2 { font-size: 24px; line-height: 32px; }

  /* FAQ */
  .faq-content { padding: 56px 0; }
  .faq-content .container { gap: 40px; }
  .faq-category__heading,
.faq-category__title { font-size: 22px; line-height: 28px; }
  .faq-cta { padding: 56px 0; }
  .faq-cta__text h2 { font-size: 24px; line-height: 32px; }

  /* Contact */
  .contact-hero.page-hero { padding: 64px 0 40px; }
  .contact-body { padding: 56px 0; }
  .contact-form h3 { font-size: 22px; line-height: 28px; }
  .contact-form__row { flex-direction: column; gap: 0; }

    /* About */
  .about-founder { padding: 64px 0; }
  .about-founder__text h2 { font-size: 28px; line-height: 36px; }
  .about-values { padding: 64px 0; }
  .about-values__grid { flex-wrap: wrap; }
  .about-stat-card,
.about-values__card { flex: 0 0 100%; }
  .about-stat-card__number,
.about-values__number { font-size: 32px; line-height: 40px; }
  .about-areas { padding: 56px 0; }
  .about-areas h2 { font-size: 28px; line-height: 36px; }
  .about-cta { padding: 64px 0; }
  .about-cta h2 { font-size: 28px; line-height: 36px; }
  .about-cta__actions { flex-direction: column; width: 100%; max-width: 320px; }
  .about-cta__actions .btn { width: 100%; }


}


/* =============================================================================
   CLASS NAME ALIASES â€” bridge PHP class names to CSS
   ============================================================================= */

/* Service LP hero - image placeholder */
.lp-hero__image-placeholder,
.svc-item__image-placeholder,
.about-founder__image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--c-placeholder);
}

/* Service LP gallery - flat grid structure */
.lp-gallery__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  min-height: 480px;
}
.lp-gallery__item {
  flex: 1 1 calc(25% - 12px);
  min-height: 200px;
}
.lp-gallery__item--large {
  flex: 1 1 calc(50% - 8px);
  min-height: 300px;
}




/* LP FAQ details styling */
.lp-faq__item summary {
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
}
.lp-faq__item summary::-webkit-details-marker {
  display: none;
}
.lp-faq__item p {
  font-size: 14px;
  line-height: 22px;
  color: var(--c-muted-mid);
  margin-top: 12px;
}

/* Responsive aliases */
@media (max-width: 1024px) {
  .lp-hero__content { flex-direction: column; }
  .lp-gallery__item--large { flex: 1 1 100%; }
  .lp-gallery__item { flex: 1 1 calc(50% - 8px); min-height: 200px; }

}

@media (max-width: 768px) {
  .lp-gallery__item { flex: 1 1 100%; min-height: 180px; }

}

/* Service item reverse layout */
.svc-item--reverse {
  flex-direction: row-reverse;
}
