/* ============================================
   MAX PRO CONSTRUCTION - Main Stylesheet
   ============================================ */

:root {
  --ink: #191714;
  --ink-light: #322D25;
  --accent: #C1650A;
  --accent-light: #E08A34;
  --steel: #4B5259;
  --cream: #F7F3EB;
  --bg-light: #F1EBDD;
  --bg-white: #FFFFFF;
  --text: #2B2924;
  --text-light: #6B6459;
  --border: #E4DCC8;
  --shadow: 0 4px 24px rgba(25,23,20,0.08);
  --shadow-hover: 0 12px 40px rgba(25,23,20,0.16);
  --radius: 4px;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; }

/* ---- UTILITIES ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: var(--font-body);
}

.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--ink-light);
  border-color: var(--ink-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-white {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-block { width: 100%; justify-content: center; }

/* ---- HEADER / NAV ---- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(247,243,235,0.97);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

header.scrolled { box-shadow: var(--shadow); }

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1180px;
  margin: 0 auto;
  height: 84px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  border: 1.5px solid var(--ink);
  padding: 6px 14px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.nav-phone svg { width: 17px; height: 17px; stroke: var(--accent); fill: none; stroke-width: 2; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--ink);
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 84px; left: 0; right: 0;
  background: var(--cream);
  padding: 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--bg-light); color: var(--ink); }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #211D18 0%, #14120F 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 70% at 60% 40%, #000 40%, transparent 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 60%; height: 90%;
  background: radial-gradient(circle, rgba(193,101,10,0.25) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 140px 24px 80px;
  margin: 0 auto 0 calc((100vw - 1180px) / 2 + 24px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193,101,10,0.16);
  border: 1px solid rgba(193,101,10,0.4);
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.6vw, 66px);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-light);
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
}
.hero-trust-item svg { width: 18px; height: 18px; stroke: var(--accent-light); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ---- MARQUEE STRIP ---- */
.marquee-strip {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 32s linear infinite;
}
.marquee-inner span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 32px;
}
.marquee-inner span::before {
  content: '◆';
  margin-right: 32px;
  opacity: 0.6;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- SERVICES OVERVIEW ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--ink); }
.service-icon svg { width: 28px; height: 28px; stroke: var(--ink); fill: none; stroke-width: 1.5; transition: var(--transition); }
.service-card:hover .service-icon svg { stroke: var(--accent-light); }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 12px;
}

.service-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.service-link::after { content: '→'; transition: transform 0.3s; }
.service-card:hover .service-link::after { transform: translateX(6px); }

.service-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(193,101,10,0.1);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ---- WHY CHOOSE US ---- */
.why-section { background: var(--bg-light); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image { position: relative; }

.why-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.why-image-main img { width: 100%; height: 100%; object-fit: cover; }

.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--ink) 0%, #3a3128 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.img-placeholder svg { position: relative; z-index: 1; }

.why-image-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 24px 28px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 190px;
}

.why-image-accent-text {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.why-list { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }

.why-item { display: flex; gap: 20px; align-items: flex-start; }

.why-item-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--ink);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.why-item-icon svg { width: 22px; height: 22px; stroke: var(--accent-light); fill: none; stroke-width: 1.5; }

.why-item-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.why-item-text p { font-size: 14px; color: var(--text-light); }

/* ---- PROCESS ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%;
  width: 76%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step { text-align: center; position: relative; z-index: 1; }

.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  transition: var(--transition);
}

.process-step:hover .step-num {
  background: var(--ink);
  color: var(--accent-light);
  border-color: var(--ink);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
}
.process-step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
  margin-top: 56px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-row: span 2; }

.gallery-item .img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s ease;
}

.gallery-item:hover .img-placeholder { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25,23,20,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Gallery placeholder color palette */
.gp-1 { background: linear-gradient(135deg, #322D25 0%, #191714 100%); }
.gp-2 { background: linear-gradient(135deg, #C1650A 0%, #8f4a08 100%); }
.gp-3 { background: linear-gradient(135deg, #4B5259 0%, #2d3236 100%); }
.gp-4 { background: linear-gradient(135deg, #8a6a45 0%, #5c4a30 100%); }
.gp-5 { background: linear-gradient(135deg, #5c5346 0%, #322D25 100%); }
.gp-6 { background: linear-gradient(135deg, #E08A34 0%, #B5541A 100%); }

.gallery-icon { opacity: 0.35; }
.gallery-icon svg { width: 60px; height: 60px; stroke: #fff; fill: none; stroke-width: 1; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--ink); }

.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-sub { color: rgba(255,255,255,0.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.stars { color: var(--accent-light); font-size: 18px; letter-spacing: 2px; margin-bottom: 18px; }

.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-text.placeholder { color: rgba(255,255,255,0.45); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name { font-size: 15px; font-weight: 700; color: #fff; }
.author-loc { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

.testimonial-card.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-style: dashed;
  border-color: rgba(255,255,255,0.22);
  background: transparent;
}
.testimonial-card.empty-state svg { width: 30px; height: 30px; stroke: var(--accent-light); fill: none; stroke-width: 1.5; margin-bottom: 16px; }
.testimonial-card.empty-state p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 18px; }
.testimonial-card.empty-state a { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-light); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #8f4a08 100%);
  padding: 80px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo .logo-mark { border-color: rgba(255,255,255,0.4); }
.footer-logo .logo-name { color: #fff; }
.footer-logo .logo-sub { color: var(--accent-light); }

.footer-about {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '→'; color: var(--accent-light); font-size: 12px; }
.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }

.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 18px;
}
.footer-contact-item svg { width: 18px; height: 18px; stroke: var(--accent-light); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--accent-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; }
.footer-bottom a { color: var(--accent-light); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 168px 24px 96px;
  background: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, #000 40%, transparent 100%);
}

.page-hero .section-label { display: block; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  position: relative;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 16px auto 0;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  position: relative;
}
.breadcrumb a { color: var(--accent-light); }
.breadcrumb span { opacity: 0.5; }

/* ---- ABOUT PAGE ---- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-badge {
  position: absolute;
  top: -22px; right: -22px;
  padding: 18px 22px;
  border-radius: 50%;
  width: 110px; height: 110px;
  background: var(--accent);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff; text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge svg { width: 30px; height: 30px; stroke: #fff; fill: none; stroke-width: 1.5; }

.about-content .section-title { text-align: left; }
.about-content .section-label { text-align: left; }

.about-quote {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--accent);
  background: var(--bg-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}

.about-signoff {
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--ink);
  font-weight: 700;
}
.about-signoff span {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* Solo operator profile (replaces multi-person team grid) */
.solo-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 56px;
  padding: 44px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.solo-avatar {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--ink) 0%, #3a3128 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  border: 4px solid var(--bg-white);
  box-shadow: var(--shadow);
}
.solo-avatar svg { width: 76px; height: 76px; stroke: var(--accent-light); fill: none; stroke-width: 1.3; }

.solo-info h3 { font-family: var(--font-heading); font-size: 26px; color: var(--ink); margin-bottom: 4px; }
.solo-role { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.solo-info p { font-size: 15px; color: var(--text-light); line-height: 1.8; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-item {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--bg-light);
  border-radius: var(--radius);
  align-items: flex-start;
}

.value-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.85;
  flex-shrink: 0;
}

.value-item h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.value-item p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ---- SERVICES PAGE ---- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-detail h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 34px);
  color: var(--ink);
  margin: 12px 0 18px;
}

.service-detail p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }

.service-features {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.service-feature::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--ink);
  color: var(--accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- GALLERY PAGE ---- */
.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--border);
  border-radius: 40px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-masonry .gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-masonry .gallery-item:nth-child(3n+1) { aspect-ratio: 4/5; }
.gallery-masonry .gallery-item:nth-child(3n+2) { aspect-ratio: 1/1; }
.gallery-masonry .gallery-item:nth-child(3n) { aspect-ratio: 4/3; }

.gallery-note {
  margin-top: 56px;
  padding: 28px 32px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.gallery-note svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.gallery-note p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.gallery-note strong { color: var(--ink); }

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info-card {
  padding: 48px 40px;
  background: var(--ink);
  border-radius: var(--radius);
  color: #fff;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
}

.contact-info-card > p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(193,101,10,0.16);
  border: 1px solid rgba(193,101,10,0.35);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--accent-light); fill: none; stroke-width: 1.5; }

.contact-detail-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-light); margin-bottom: 4px; }
.contact-detail-value { font-size: 15px; color: #fff; font-weight: 600; }
.contact-detail-value a:hover { color: var(--accent-light); }

.contact-hours {
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-hours h4 { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-light); margin-bottom: 16px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,0.7); }
.hours-row span:last-child { color: rgba(255,255,255,0.9); font-weight: 600; }

/* Contact Form */
.contact-form-wrap {
  padding: 48px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-form-wrap > p { font-size: 15px; color: var(--text-light); margin-bottom: 32px; }

.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

input, select, textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(25,23,20,0.08);
}

input:invalid:not(:placeholder-shown) { border-color: #c0392b; }

textarea { resize: vertical; min-height: 130px; }

select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232B2924' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; }

.form-note { font-size: 12px; color: var(--text-light); margin-top: -10px; margin-bottom: 22px; }

.form-submit { margin-top: 28px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 14px; }
.form-submit .btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-success, .form-error {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}
.form-success { background: #e8f5e9; border: 1px solid #81c784; color: #2e7d32; }
.form-error { background: #fdecea; border: 1px solid #e6968c; color: #b3261e; }

.contact-alt {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
}
.contact-alt a { color: var(--accent); font-weight: 700; }

/* ---- MAP ---- */
.map-section { padding: 0; height: 380px; background: var(--bg-light); }
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #ECE5D3 0%, #DCD2B8 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(25,23,20,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,23,20,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.map-placeholder svg { width: 40px; height: 40px; stroke: var(--ink); fill: none; stroke-width: 1.5; opacity: 0.5; position: relative; }
.map-placeholder p { font-size: 14px; color: var(--text-light); font-weight: 600; position: relative; }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: var(--bg-white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-body);
}
.faq-question svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: var(--bg-white); }
.faq-answer-inner { padding: 0 26px 24px; font-size: 14px; color: var(--text-light); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 240px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-content { margin-left: 24px; }
  .why-grid, .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .why-image { max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .solo-card { grid-template-columns: 1fr; text-align: center; }
  .solo-avatar { margin: 0 auto; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .nav-phone { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .hero-content { padding: 120px 24px 48px; margin: 0; }
  .hero-actions { margin-bottom: 40px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-row: span 1; }

  .testimonials-grid, .team-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry .gallery-item:nth-child(3n+1),
  .gallery-masonry .gallery-item:nth-child(3n+2),
  .gallery-masonry .gallery-item:nth-child(3n) { aspect-ratio: 1/1; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }
  .contact-info-card { padding: 32px 24px; }

  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .why-image-accent { bottom: -20px; right: -16px; padding: 18px 20px; max-width: 150px; }
  .about-img-badge { top: -16px; right: -16px; width: 90px; height: 90px; }
  .about-img-badge svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .section-pad { padding: 64px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { justify-content: center; }
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; transition: none; }
  .marquee-inner { animation: none; }
}

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  z-index: 2000;
  font-size: 14px;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }
