/* ============================================================
   M2 Mini LLC — Main Stylesheet
   Stack: Foundation 6 grid + custom visual layer
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --orange:        #D95B1A;
  --orange-dark:   #B84C14;
  --orange-light:  #F07030;
  --dark:          #1C1C1C;
  --dark-alt:      #252525;
  --dark-mid:      #3A3A3A;
  --text:          #2C2C2C;
  --text-mid:      #555555;
  --text-light:    #777777;
  --bg-alt:        #F4F1ED;
  --bg-gray:       #EFEFEF;
  --border:        #DEDAD4;
  --white:         #FFFFFF;
  --radius:        4px;
  --shadow:        0 2px 12px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.18);
  --transition:    0.2s ease;
}

/* === RESET / BASE === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  margin: 0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 0.75rem;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; font-weight: 500; }
p  { margin-top: 0; margin-bottom: 1rem; }
ul, ol { margin-bottom: 1rem; }

/* Section eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.section-title {
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 640px;
}
.section-header { margin-bottom: 2.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* === LAYOUT / SPACING === */
.section-pad    { padding: 4.5rem 0; }
.section-pad-lg { padding: 6rem 0; }
.section-pad-sm { padding: 2.5rem 0; }

/* Override Foundation container max-width */
.grid-container { max-width: 1240px; }

/* === UTILITY === */
.bg-dark    { background: var(--dark);    color: var(--white); }
.bg-dark-alt{ background: var(--dark-alt);color: var(--white); }
.bg-alt     { background: var(--bg-alt); }
.bg-orange  { background: var(--orange);  color: var(--white); }
.bg-white   { background: var(--white); }
.text-center{ text-align: center; }
.text-white { color: var(--white) !important; }
.text-orange{ color: var(--orange) !important; }
.text-muted { color: var(--text-mid); }
.fw-600     { font-weight: 600; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.bg-dark h1, .bg-dark h2, .bg-dark h3,
.bg-dark-alt h1, .bg-dark-alt h2, .bg-dark-alt h3,
.bg-orange h1, .bg-orange h2, .bg-orange h3 {
  color: var(--white);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.8rem 1.9rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
  line-height: 1.3;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-mid);
  border-color: var(--dark-mid);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* === SITE HEADER === */
.site-header-top {
  background: var(--white);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(32, 32, 32, 0.08);
}
.site-header-top .grid-x {
  align-items: center;
}
.site-logo img {
  height: 70px;
  width: auto;
}
.site-logo a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-text {
  font-family: 'Oswald', sans-serif;
  color: var(--dark);
  line-height: 1.15;
}
.logo-text strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.logo-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: flex-end;
}
.header-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.header-phone:hover { color: var(--orange); }
.header-phone i { font-size: 1rem; color: var(--orange); }

/* === MAIN NAV === */
.site-nav {
  background: #F4F2EF;
  border-top: 1px solid rgba(32, 32, 32, 0.06);
  border-bottom: 1px solid rgba(32, 32, 32, 0.08);
  position: relative;
  z-index: 300;
}
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  display: block;
  padding: 0.85rem 1.1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--dark);
  background: rgba(232, 89, 26, 0.10);
}
.nav-menu > li > a.active {
  color: var(--orange);
}

/* Dropdown */
.nav-menu .has-dropdown > a::after {
  content: " \203A";
  display: inline-block;
  transform: rotate(90deg);
  margin-left: 0.25rem;
  font-size: 0.8rem;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark);
  min-width: 230px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  border-top: 2px solid var(--orange);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}
.nav-menu .has-dropdown:hover .nav-dropdown,
.nav-menu .has-dropdown:focus-within .nav-dropdown {
  display: block;
}
.nav-dropdown li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
  color: #C8C4C0;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.02em;
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Mobile nav toggle */
.nav-toggle-label {
  display: none !important;
  cursor: pointer;
  padding: 0.85rem 1rem;
  color: var(--dark);
  font-size: 1.3rem;
}
.nav-toggle { display: none !important; }

/* === HERO === */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
}
.hero--service {
  min-height: 50vh;
  align-items: center;
}
.hero--sm {
  min-height: 36vh;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18,18,18,0.88) 0%,
    rgba(18,18,18,0.60) 55%,
    rgba(18,18,18,0.25) 100%
  );
  display: flex;
  align-items: inherit;
  width: 100%;
}
.hero--service .hero__overlay {
  background: linear-gradient(
    to right,
    rgba(18,18,18,0.82) 0%,
    rgba(18,18,18,0.50) 60%,
    rgba(18,18,18,0.20) 100%
  );
}
.hero__inner {
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero__badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.hero__title {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero__title em {
  color: var(--orange);
  font-style: normal;
}
.hero__text {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--orange);
  padding: 1rem 0;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-item i { font-size: 1rem; }

/* === SERVICE CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.service-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.service-card__text {
  color: var(--text-mid);
  font-size: 0.93rem;
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-card__link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.service-card__link:hover { color: var(--orange-dark); }
.service-card__link i { transition: transform var(--transition); }
.service-card:hover .service-card__link i { transform: translateX(3px); }

/* === PROJECT CARDS === */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--dark);
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.project-card:hover .project-card__img {
  transform: scale(1.04);
}
.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.52) 34%, rgba(0,0,0,0.08) 68%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.project-card__cat {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(20, 20, 20, 0.84);
  border-left: 3px solid var(--orange);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.28);
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.35rem;
  max-width: 100%;
  padding: 0.24rem 0.48rem 0.22rem 0.4rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.9);
}
.project-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.project-card__loc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.85);
}

/* Placeholder when no project image */
.project-card--placeholder {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
}
.project-card--placeholder .project-card__overlay {
  background: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.project-card--placeholder .project-card__title { color: var(--text-mid); }
.project-card--placeholder .project-card__loc { color: var(--text-light); }
.project-card__img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  font-size: 3rem;
}

.projects-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}
.projects-page-btn {
  min-width: 2.25rem;
  min-height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-dark);
  background: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.projects-page-btn:hover,
.projects-page-btn.active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

/* === WHY CHOOSE US === */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(217,91,26,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.2rem;
}
.feature-item__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.feature-item__text {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin: 0;
}
.bg-dark .feature-item__text { color: rgba(255, 255, 255, 0.72); }

/* === PROCESS STEPS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  counter-reset: steps;
  margin-top: 1rem;
}
.process-step {
  position: relative;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 3px solid var(--orange);
  counter-increment: steps;
}
.process-step::before {
  content: "0" counter(steps);
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-step__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
}
.process-step__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 0;
}

/* === FAQ ACCORDION === */
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  gap: 1rem;
  list-style: none;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "\002B";
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 300;
  line-height: 1;
}
details[open] .faq-question::after { content: "\2212"; }
details[open] .faq-question { color: var(--orange); }
.faq-answer {
  padding: 0 0 1.25rem;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === SERVICE AREAS === */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.88rem;
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}
.area-tag i { color: var(--orange); font-size: 0.7rem; }

/* === CTA BANNER === */
.cta-banner {
  background: var(--orange);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner--dark {
  background: var(--dark);
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}
.cta-banner .btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* === TESTIMONIALS GRID (service pages) === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* === HERO TESTIMONIAL COLUMN === */
.hero__testimonials {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
/* === TESTIMONIAL === */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1.25rem;
}
.testimonial-card__text {
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.97rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
}
.testimonial-card__author {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}
.testimonial-card__location {
  font-size: 0.82rem;
  color: var(--text-light);
}
.testimonial-card--hero {
  background: rgba(0, 0, 0, 0.80);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.testimonial-card--hero::before {
  content: "\201D";
  font-size: 9rem;
  top: 1rem;
  bottom: auto;
  left: auto;
  right: 1rem;
  opacity: 0.45;
  line-height: 1;
}
.testimonial-card--hero .testimonial-card__text    { color: rgba(255, 255, 255, 0.90); }
.testimonial-card--hero .testimonial-card__author  { color: rgba(255,255,255,0.70); }
.testimonial-card--hero .testimonial-card__author .fa-location-dot { color: var(--orange); }
.testimonial-card--hero .testimonial-card__location{ color: rgba(255, 255, 255, 0.60); }
.hero__testimonials .testimonial-card--hero { background: rgba(0, 0, 0, 0.50); }

/* === BREADCRUMBS === */
.breadcrumbs {
  background: var(--bg-alt);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
  font-size: 0.82rem;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 0.25rem; }
.breadcrumb-list li + li::before {
  content: "/";
  color: var(--text-light);
  margin-right: 0.25rem;
}
.breadcrumb-list a { color: var(--text-mid); }
.breadcrumb-list a:hover { color: var(--orange); }
.breadcrumb-list .current { color: var(--text); font-weight: 500; }

/* === FORMS === */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.03em;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217,91,26,0.15);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23555'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 0.25rem; }
.form-error { color: #C0392B; font-size: 0.85rem; margin-top: 0.25rem; font-weight: 600; }
.form-success {
  background: #E8F5E9;
  border: 1px solid #4CAF50;
  color: #1B5E20;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.form-error-msg {
  background: #FEECEC;
  border: 1px solid #E57373;
  color: #B71C1C;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}
.required-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.required-note span { color: #C0392B; }

/* === CONTACT INFO CARDS === */
.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(217,91,26,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item__label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}
.contact-info-item__value {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}
.contact-info-item__value a { color: var(--text); }
.contact-info-item__value a:hover { color: var(--orange); }

/* === PAGE HERO (service pages) === */
.page-hero {
  background: var(--dark);
  padding: 3.5rem 0 2.5rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p  { color: rgba(255,255,255,0.75); max-width: 640px; margin-bottom: 0; }

/* === ABOUT PAGE === */
.about-signature {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-mid);
  margin-top: 1rem;
}
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}
.badge i { color: var(--orange); }

/* === CONTENT LIST (service benefits) === */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--text);
}
.check-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--orange);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* === PROJECT DETAIL PAGE === */
.project-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.project-gallery__main { grid-row: span 2; }
.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-gallery__main img { height: 480px; }
.project-gallery__thumb img { height: 234px; }

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.before-after__item { position: relative; }
.before-after__label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--dark);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.before-after__label--after { background: var(--orange); }

.project-meta {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.project-meta dl { margin: 0; }
.project-meta dt {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.1rem;
}
.project-meta dd {
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1rem 0;
}
.project-meta dd:last-child { margin-bottom: 0; }

/* === 404 PAGE === */
.page-404 {
  text-align: center;
  padding: 6rem 0;
}
.page-404__code {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0;
}

/* === SITE FOOTER === */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 0;
}
.footer-logo img { height: 56px; width: auto; }
.footer-logo-text {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}
.footer-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-phone:hover { color: var(--orange); }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.85rem;
  transition: color var(--transition), transform var(--transition);
}
.footer-social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  box-shadow: 0 8px 18px rgba(24,119,242,0.22);
  transition: background var(--transition), box-shadow var(--transition);
}
.footer-social:hover {
  color: var(--white);
  transform: translateY(-1px);
}
.footer-social:hover .footer-social__icon {
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(219,91,32,0.25);
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav li + li { margin-top: 0.4rem; }
.footer-nav a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-nav a:hover { color: var(--orange); }
.footer-nav a i { font-size: 0.7rem; }

.footer-areas {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--orange); }

/* === PORTFOLIO FILTER === */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* === SECTION DIVIDER === */
.divider {
  height: 4px;
  background: var(--orange);
  width: 50px;
  margin: 0.75rem 0 1.25rem;
  border-radius: 2px;
}
.divider--center { margin-left: auto; margin-right: auto; }


/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 767px) {

  /* Mobile nav */
  .site-nav .grid-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-toggle-label {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #F4F2EF;
    border-top: 1px solid rgba(32, 32, 32, 0.08);
  }
  .nav-toggle:checked ~ .nav-menu { display: flex; }
  .nav-menu > li > a { padding: 0.9rem 1.25rem; border-bottom: 1px solid rgba(32, 32, 32, 0.08); }
  .nav-dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--orange);
    background: #FFFFFF;
    margin-left: 1.25rem;
    padding: 0.25rem 0;
  }
  .nav-menu .has-dropdown:hover .nav-dropdown { display: none; }
  .nav-menu .has-dropdown.is-open .nav-dropdown {
    display: block;
  }
  .nav-dropdown li a {
    color: var(--dark);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(32, 32, 32, 0.08);
    font-size: 0.9rem;
  }
  .nav-dropdown li:last-child a {
    border-bottom: 0;
  }
  .nav-dropdown li a:hover,
  .nav-dropdown li a:focus {
    color: var(--orange);
    background: #F8F5F1;
  }

  /* Header */
  .site-header-top {
    padding: 0.9rem 0 1rem;
  }
  .site-header-top .grid-x {
    flex-flow: column nowrap;
    align-items: center !important;
    gap: 0.65rem;
  }
  .site-header-top .cell {
    width: 100% !important;
    flex: 0 0 auto !important;
  }
  .site-header-top .cell.auto {
    display: flex;
    justify-content: center;
  }
  .site-logo,
  .site-logo a {
    justify-content: center;
  }
  .site-logo a {
    max-width: 100%;
  }
  .site-logo img {
    height: 72px;
    flex: 0 0 auto;
  }
  .logo-text {
    text-align: left;
  }
  .header-contact {
    justify-content: center;
    width: 100%;
  }
  .header-contact .btn { display: none; }
  .header-phone { font-size: 1rem; }

  /* Hero */
  .hero { min-height: 70vh; }
  .hero__overlay { background: rgba(18,18,18,0.78); }

  /* Sections */
  .section-pad    { padding: 3rem 0; }
  .section-pad-lg { padding: 3.5rem 0; }
  .hero__inner { padding: 3rem 0 2.5rem; }

  /* Project gallery */
  .project-gallery { grid-template-columns: 1fr; }
  .project-gallery__main { grid-row: span 1; }
  .project-gallery__main img { height: 260px; }
  .project-gallery__thumb img { height: 200px; }
  .before-after { grid-template-columns: 1fr; }

  /* Footer */
  .site-footer { padding: 2.5rem 0 4.5rem; }

  /* Trust bar */
  .trust-bar__inner { gap: 0.75rem 1.5rem; }
  .trust-item { font-size: 0.78rem; }
}

@media (min-width: 640px) {
  .show-mobile { display: none !important; }
}
@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
}

/* === STARS === */
.test-stars {
  color: #f5a623;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

/* === MOBILE TESTIMONIAL STRIP === */
.mobile-test-strip {
  background: var(--dark);
  padding: 1.5rem 0;
}
.mobile-test-strip__quote {
  margin: 0;
  padding-left: 3rem;
  padding-top: 0.25rem;
  position: relative;
}
.mobile-test-strip__quote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.55;
  position: absolute;
  top: 0;
  left: 0;
}
.mobile-test-strip__stars {
  text-align: right;
  margin-bottom: 0.5rem;
}
.mobile-test-strip__text {
  font-style: italic;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.mobile-test-strip__text p { margin: 0; }
.mobile-test-strip__author {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-style: normal;
}
.mobile-test-strip__author .fa-location-dot { color: var(--orange); }

/* === LIGHTBOX === */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lb-overlay.lb-open { display: flex; }

.lb-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}
.lb-img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  user-select: none;
}
.lb-caption {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  text-align: center;
  margin: 0.75rem 0 0;
  max-width: 680px;
  padding: 0 1rem;
  line-height: 1.4;
}
.lb-close {
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  z-index: 10001;
  padding: 0.25rem;
}
.lb-close:hover { opacity: 1; }
.lb-counter {
  position: fixed;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  pointer-events: none;
}
.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 1.1rem 0.9rem;
  cursor: pointer;
  border-radius: 4px;
  line-height: 1;
  z-index: 10001;
  transition: background 0.18s;
}
.lb-nav:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 0.75rem; }
.lb-next { right: 0.75rem; }

@media (max-width: 640px) {
  .lb-nav { font-size: 1.2rem; padding: 0.85rem 0.7rem; }
  .lb-img  { max-height: 70vh; }
}
