/* ============================================
   JXP OUTDOOR SOLUTIONS — COMPLETE STYLESHEET
   Arizona Desert Modern | Mobile-First
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --sand:        #E8E8E8;
  --sand-light:  #F5F5F5;
  --sand-dark:   #C0C0C0;
  --terracotta:  #C0181C;
  --terra-dark:  #9A1215;
  --terra-light: #D93237;
  --sage:        #333333;
  --sage-dark:   #1A1A1A;
  --sage-light:  #555555;
  --charcoal:    #111111;
  --charcoal-mid:#1A1A1A;
  --charcoal-lt: #2A2A2A;
  --white:       #FFFFFF;
  --gray-100:    #F4F4F4;
  --gray-200:    #E2E2E2;
  --gray-400:    #999999;
  --gray-600:    #555555;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(30,36,32,0.10);
  --shadow-md: 0 8px 40px rgba(30,36,32,0.14);
  --shadow-lg: 0 16px 64px rgba(30,36,32,0.18);

  --nav-h: 72px;
  --mobile-bar-h: 56px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  padding-top: var(--nav-h);
  padding-bottom: var(--mobile-bar-h);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--gray-600); }
em { font-style: italic; color: var(--terracotta); }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196,98,45,0.30);
}
.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,98,45,0.38);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-outline-sm {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  color: var(--sand);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-outline-sm:hover { background: var(--sand); color: var(--charcoal); }

.btn-white {
  background: var(--white);
  color: var(--terracotta);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--sand-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  font-weight: 600;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 100px 0; } }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--sand-light); }
.section-title { margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--gray-600); }

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #C9B48A 0%, #A49070 50%, #8A7355 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.img-placeholder.img-tall { aspect-ratio: 3/4; }
.img-placeholder.img-green {
  background: linear-gradient(135deg, #4A6741 0%, #354C2E 60%, #2A3B24 100%);
}
.img-placeholder.img-sand {
  background: linear-gradient(135deg, #E8D5B0 0%, #C9B48A 50%, #A89060 100%);
}
.placeholder-label {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 8px 16px;
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 4px;
}

/* ===== MOBILE CALL BAR ===== */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--terracotta);
  height: var(--mobile-bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(196,98,45,0.35);
}
.mobile-call-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.mobile-call-btn svg { width: 20px; height: 20px; }
@media (min-width: 1024px) { .mobile-call-bar { display: none; } }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--charcoal);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(30,36,32,0.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 768px) { .nav-container { padding: 0 40px; } }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--terracotta);
  letter-spacing: -0.02em;
}
.logo-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sand);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sand);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-links {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--charcoal-mid);
  flex-direction: column;
  padding: 20px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.nav-links.open { display: flex; }

@media (min-width: 1024px) {
  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    background: none;
    padding: 0;
    gap: 4px;
    border: none;
    box-shadow: none;
  }
}

.nav-link {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--sand);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--terracotta);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  margin-top: 8px;
}
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta:hover { background: var(--terra-dark); }
@media (min-width: 1024px) { .nav-cta { margin-top: 0; } }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0A0A0A 0%, #111111 40%, #1A0A0A 100%);
}
.desert-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 20% 80%, #C0181C 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, #333333 0%, transparent 40%),
    radial-gradient(circle at 60% 70%, #666666 0%, transparent 30%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,36,32,0.3) 0%,
    rgba(30,36,32,0.5) 50%,
    rgba(30,36,32,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 20px 80px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-content {
    text-align: left;
    padding: 80px 40px 80px;
    margin: 0 auto;
    max-width: 1200px;
  }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-light);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(232,213,176,0.3);
  border-radius: 100px;
}
.hero-headline {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 8vw, 5rem);
}
.hero-headline em { color: var(--terra-light); }
.hero-sub {
  color: rgba(253,250,244,0.80);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}
@media (min-width: 768px) { .hero-sub { margin-bottom: 40px; } }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}
@media (min-width: 480px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
@media (min-width: 768px) { .hero-actions { justify-content: flex-start; } }

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 480px) { .hero-trust { flex-direction: row; } }

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}
.trust-item span { color: rgba(253,250,244,0.6); font-size: 0.8rem; }
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); display: none; }
@media (min-width: 480px) { .trust-divider { display: block; } }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
}
.hero-scroll-hint svg { width: 24px; height: 24px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--charcoal-mid);
  padding: 16px 0;
}
.intro-strip-text {
  text-align: center;
  color: var(--sand-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.75;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview { background: var(--gray-100); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sand-dark);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-top: 4px; }
.service-card p { font-size: 0.9rem; flex: 1; }
.service-price {
  display: inline-block;
  background: var(--sand-light);
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  align-self: flex-start;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 52px;
}

/* ===== WHY US ===== */
.why-us { background: var(--white); }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) { .why-us-inner { grid-template-columns: 1fr 1fr; gap: 64px; } }

.why-us-img { position: relative; }
.why-us-badge {
  position: absolute;
  bottom: -16px;
  right: -12px;
  background: var(--terracotta);
  color: white;
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.why-us-badge strong { display: block; font-size: 1.3rem; font-weight: 900; }
.why-us-badge span { font-size: 0.78rem; opacity: 0.85; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 32px;
}
.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list strong { display: block; font-weight: 700; color: var(--charcoal); font-size: 0.95rem; }
.why-list span { font-size: 0.88rem; color: var(--gray-600); }

/* ===== GALLERY ===== */
.gallery-section { background: var(--gray-100); }
.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.gallery-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.gallery-item > div:not(.gallery-arrow) { position: relative; }
.gallery-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.before-tag { background: rgba(30,36,32,0.6); color: var(--sand-light); }
.after-tag { background: var(--terracotta); color: white; }
.gallery-arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--terracotta);
  padding: 12px 0;
  font-weight: 700;
}
.gallery-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 16px;
  font-style: italic;
}

@media (min-width: 600px) {
  .gallery-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 28px;
  }
  .gallery-caption { grid-column: 1 / -1; }
  .gallery-arrow { padding: 0; }
}

/* ===== BIG CTA ===== */
.big-cta {
  background: linear-gradient(135deg, #0A0A0A 0%, #111111 40%, #1A0505 100%);
  position: relative;
  overflow: hidden;
}
.big-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-sun {
  position: absolute;
  top: -120px; right: -120px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,98,45,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.big-cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.big-cta-inner p { color: rgba(253,250,244,0.75); margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
@media (min-width: 480px) { .cta-actions { flex-direction: row; justify-content: center; } }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background: var(--charcoal);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(192,24,28,0.7) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(60,60,60,0.8) 0%, transparent 40%);
}
.desert-pattern-dark {
  background: var(--charcoal);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 16px; }
.page-hero-content p { color: rgba(253,250,244,0.75); font-size: 1.05rem; }

/* ===== SERVICES PAGE ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
}
@media (min-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 64px 0;
  }
  .service-detail.reverse .service-detail-img { order: 2; }
  .service-detail.reverse .service-detail-content { order: 1; }
}

.service-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 0;
}

.service-number {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.service-detail h2 { margin-bottom: 16px; }
.service-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal-lt);
  margin-bottom: 12px;
}
.service-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0 28px;
}
.service-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--charcoal-lt);
}
.service-includes li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}
.service-price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.price-tag {
  background: var(--sand-light);
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
}

/* ===== ABOUT PAGE ===== */
.about-story { background: var(--white); }
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 768px) { .about-story-inner { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; } }

.about-story-img { position: relative; }
.about-badge {
  position: absolute;
  bottom: -16px;
  left: -12px;
  background: var(--terracotta);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-badge-inner { display: flex; flex-direction: column; gap: 2px; }
.about-badge strong { font-size: 1.2rem; font-weight: 900; }
.about-badge span { font-size: 0.75rem; opacity: 0.85; }

.story-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal-lt);
  margin-bottom: 16px;
  line-height: 1.6;
}
.about-story-content p + p { margin-top: 16px; }
.about-story-content .btn { margin-top: 28px; }

.values-section { background: var(--gray-100); }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.value-icon svg { width: 32px; height: 32px; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { font-size: 0.88rem; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--terracotta);
  padding: 48px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) { .stats-inner { grid-template-columns: repeat(4, 1fr); } }

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item span { color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 500; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .contact-inner { grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; } }

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; font-size: 1rem; }

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}
.contact-method-icon svg { width: 20px; height: 20px; }
.contact-method-text { display: flex; flex-direction: column; gap: 3px; }
.contact-method-text strong { font-weight: 700; color: var(--charcoal); font-size: 0.9rem; }
.contact-method-text a { color: var(--terracotta); font-size: 1.2rem; font-weight: 700; }
.contact-method-text span { color: var(--gray-600); font-size: 0.85rem; }

.contact-cta-block { margin-top: 36px; }

/* FORM */
.form-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
}
.form-card h3 { margin-bottom: 8px; }
.form-card > p { margin-bottom: 28px; font-size: 0.9rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal-lt);
  letter-spacing: 0.02em;
}
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--gray-400); }
input:focus, select:focus, textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,98,45,0.12);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236A5E4A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
textarea { resize: vertical; min-height: 100px; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 12px;
}

.form-success {
  background: #E8F5E3;
  border: 1.5px solid #6A8B5F;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.form-success svg { width: 32px; height: 32px; color: var(--sage); }
.form-success strong { color: var(--sage-dark); font-size: 1rem; }
.form-success span { color: var(--gray-600); font-size: 0.88rem; }

/* SERVICE AREA */
.service-area-section { background: var(--gray-100); }
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 auto;
  max-width: 700px;
}
.area-tag {
  padding: 10px 22px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: all 0.2s;
}
.area-tag:hover { border-color: var(--terracotta); color: var(--terracotta); background: #fff0f0; }
.area-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray-400);
  margin-top: 28px;
  font-style: italic;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 600px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand .logo-mark { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--terracotta); display: block; margin-bottom: 4px; display: none; }
.footer-brand .logo-text { color: var(--sand); font-weight: 600; font-size: 0.9rem; display: block; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.85rem; }

.footer-links h4, .footer-services h4, .footer-contact h4 {
  color: var(--sand);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--sand-light); }
.footer-services li { color: rgba(255,255,255,0.45); font-size: 0.88rem; }

.footer-phone {
  display: block;
  color: var(--terracotta);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.footer-contact p { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-bottom: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-600); }

/* ===== SELECTION ===== */
::selection { background: var(--terracotta); color: white; }

/* ===== REAL PHOTO STYLES ===== */
.hero-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  position: absolute;
  inset: 0;
}

.real-img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

.img-tall-real {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
}

.gallery-real-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
}

/* Why-us real image wrapper */
.why-us-img .real-img {
  box-shadow: var(--shadow-md);
}

/* Service detail real images */
.service-detail-img .real-img {
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

/* About story real image */
.about-story-img .real-img {
  box-shadow: var(--shadow-md);
}

/* ===== LOGO IMAGE IN NAV ===== */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  /* Logo has black bg — clip it cleanly */
  border-radius: 6px;
}
/* Hide old text logo pieces when image logo is present */
.logo .logo-mark,
.logo .logo-text {
  display: none;
}
/* Footer logo image */
.footer-logo-img {
  height: 48px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 12px;
}
.footer-brand .logo-mark,
.footer-brand .logo-text {
  display: none;
}

/* ===== PHOTO GRID (replaces before/after) ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
  }
  .photo-item--tall {
    grid-row: span 2;
  }
}

.photo-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--charcoal);
}
.photo-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
@media (min-width: 1024px) {
  .photo-item--tall img {
    height: 100%;
    min-height: 540px;
  }
}
.photo-item:hover img {
  transform: scale(1.04);
}
.photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Remove old gallery styles that are no longer needed */
.gallery-grid, .gallery-item, .gallery-before,
.gallery-after, .gallery-arrow, .gallery-caption,
.gallery-tag { display: none; }
