/* ============================================
   TZANEEN PAVING — Custom Styles
   Mobile-first, zero frameworks
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --clr-dark: #1C1917;
  --clr-accent: #B5784E;
  --clr-accent-hover: #9A6540;
  --clr-accent-light: #D4A574;
  --clr-light: #F5F0EB;
  --clr-olive: #5C6B4F;
  --clr-white: #FEFEFE;
  --clr-muted: #78716C;
  --clr-whatsapp: #25D366;
  --clr-whatsapp-hover: #1ebe57;
  --clr-footer-bg: #151210;

  --ff-display: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3rem;
  --fs-5xl: 3.5rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 4.5rem;

  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(28,25,23,0.08);
  --shadow-md: 0 4px 12px rgba(28,25,23,0.1);
  --shadow-lg: 0 8px 30px rgba(28,25,23,0.12);
  --shadow-xl: 0 16px 50px rgba(28,25,23,0.15);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 64px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-accent) transparent;
}

/* Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--clr-accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-accent-hover);
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--clr-dark);
  background: var(--clr-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

/* --- Focus Styles --- */
:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 2px;
}

.gallery-item:focus-visible {
  outline-offset: -2px;
  border-radius: var(--radius-lg);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* --- Section Shared --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--clr-accent);
}

.section-title {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  color: var(--clr-dark);
}

.section-title .accent {
  color: var(--clr-accent);
}

.section-title .accent-olive {
  color: var(--clr-olive);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--clr-muted);
  max-width: 540px;
  margin: var(--space-md) auto 0;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: var(--fs-base);
}

.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-white);
}

.btn-primary:hover {
  background: var(--clr-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--clr-dark);
  border: 2px solid var(--clr-dark);
}

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

.btn-whatsapp {
  background: var(--clr-whatsapp);
  color: var(--clr-white);
}

.btn-whatsapp:hover {
  background: var(--clr-whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-call {
  background: var(--clr-white);
  color: var(--clr-dark);
  border: 2px solid var(--clr-dark);
}

.btn-call:hover {
  background: var(--clr-dark);
  color: var(--clr-white);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(254,254,254,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28,25,23,0.06);
  transition: box-shadow var(--transition), background var(--transition);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  z-index: 1001;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
  color: var(--clr-dark);
  letter-spacing: -0.02em;
}

.logo-text strong {
  font-weight: var(--fw-bold);
}

.logo-tagline {
  display: block;
  font-size: 0.55rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-muted);
  line-height: 1;
  margin-top: 2px;
  text-align: center;
}

.logo--footer .logo-tagline {
  color: rgba(254,254,254,0.35);
}

/* Mobile Nav */
.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: var(--clr-dark);
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-xl) var(--space-xl);
  transition: right var(--transition);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.main-nav.is-open {
  right: 0;
}

.nav-list {
  display: flex;
  flex-direction: column;
}

.nav-link {
  display: block;
  padding: var(--space-md) 0;
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: rgba(254,254,254,0.7);
  transition: color var(--transition);
  border-bottom: 1px solid rgba(254,254,254,0.08);
}

.nav-link:hover {
  color: var(--clr-accent-light);
}

.nav-cta {
  margin-top: var(--space-lg);
  background: var(--clr-accent);
  color: var(--clr-white) !important;
  text-align: center;
  padding: var(--space-md) var(--space-lg) !important;
  border-radius: var(--radius-md);
  border-bottom: none !important;
  font-weight: var(--fw-semibold);
}

.nav-cta:hover {
  background: var(--clr-accent-hover);
  color: var(--clr-white) !important;
}

/* Nav Contact Buttons */
.nav-contact {
  margin-top: auto;
  display: flex;
  gap: var(--space-sm);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(254,254,254,0.08);
}

.nav-contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  transition: background var(--transition), color var(--transition);
}

.nav-contact-wa {
  background: var(--clr-whatsapp);
  color: var(--clr-white);
}

.nav-contact-wa:hover {
  background: var(--clr-whatsapp-hover);
}

.nav-contact-call {
  background: rgba(254,254,254,0.1);
  color: var(--clr-white);
  border: 1px solid rgba(254,254,254,0.15);
}

.nav-contact-call:hover {
  background: rgba(254,254,254,0.15);
}

/* Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.menu-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.menu-toggle.is-open .menu-bar {
  background: var(--clr-white);
}

.menu-toggle.is-open .menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,25,23,0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--space-2xl)) 0 var(--space-3xl);
  background: var(--clr-light);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -30%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,108,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  line-height: 1.1;
  color: var(--clr-dark);
  margin-bottom: var(--space-lg);
}

.hero-title-accent {
  color: var(--clr-accent);
  display: inline;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--clr-accent);
}

.hero-subtitle {
  font-size: var(--fs-md);
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.hero-float-badge {
  position: absolute;
  bottom: -16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--clr-dark);
  color: var(--clr-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.badge-number {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-accent);
  line-height: 1;
}

.badge-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  line-height: 1.3;
  opacity: 0.8;
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  color: var(--clr-muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--clr-dark);
  padding: var(--space-3xl) 0 var(--space-3xl);
  margin: var(--space-3xl) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.trust-item {
  color: var(--clr-white);
}

.trust-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-bottom: var(--space-sm);
  color: var(--clr-accent);
}

.trust-label {
  display: block;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: rgba(254,254,254,0.85);
  margin-top: var(--space-xs);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--space-4xl) 0;
  background: var(--clr-dark);
}

.services .section-tag {
  color: var(--clr-accent-light);
}

.services .section-title {
  color: var(--clr-white);
}

.services .section-subtitle {
  color: rgba(254,254,254,0.6);
}

.services-grid {
  display: grid;
  gap: var(--space-lg);
}

.service-card {
  position: relative;
  display: grid;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(254,254,254,0.04);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
  position: relative;
}

.service-number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: var(--fw-bold);
  color: var(--clr-accent);
  opacity: 0.25;
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-lg);
  line-height: 1;
}

.service-name {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
  color: var(--clr-white);
}

.service-desc {
  font-size: var(--fs-sm);
  color: rgba(254,254,254,0.55);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-accent-light);
  transition: gap var(--transition);
  padding: var(--space-xs) 0;
}

.service-link:hover {
  gap: var(--space-sm);
  color: var(--clr-white);
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: var(--space-4xl) 0;
  background: var(--clr-light);
}

.why-us-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.why-us-image {
  position: relative;
}

.why-us-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
}

.why-us-accent-box {
  position: absolute;
  bottom: -12px;
  right: 16px;
  background: var(--clr-olive);
  color: var(--clr-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.accent-box-number {
  display: block;
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  line-height: 1;
}

.accent-box-text {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  opacity: 0.85;
}

.why-us-content .section-tag {
  text-align: left;
}

.why-us-content .section-title {
  text-align: left;
}

.why-us-lead {
  font-size: var(--fs-md);
  color: var(--clr-muted);
  line-height: 1.7;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xl);
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.why-us-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.why-us-item-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(92,107,79,0.1);
  border-radius: var(--radius-md);
}

.why-us-item strong {
  display: block;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}

.why-us-item p {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.6;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: var(--space-4xl) 0;
  background: var(--clr-dark);
}

.process .section-tag {
  color: var(--clr-accent-light);
  border-bottom-color: var(--clr-accent-light);
}

.process .section-title {
  color: var(--clr-white);
  margin-bottom: var(--space-2xl);
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.process-step {
  display: flex;
  align-items: baseline;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(254,254,254,0.1);
}

.process-step:last-child {
  border-bottom: 1px solid rgba(254,254,254,0.1);
}

.step-num {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--clr-accent);
  line-height: 1;
  flex-shrink: 0;
}

.step-body {
  flex: 1;
}

.step-title {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.step-desc {
  font-size: var(--fs-sm);
  color: rgba(254,254,254,0.55);
  line-height: 1.7;
  max-width: 480px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--space-4xl) 0;
  background: var(--clr-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  gap: var(--space-md);
}

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

.gallery-item--tall,
.gallery-item--wide {
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--space-4xl) 0;
  background: var(--clr-dark);
}

.testimonials .section-tag {
  color: rgba(254,254,254,0.6);
}

.testimonials .section-title {
  color: var(--clr-white);
}

.testimonials .section-title .accent {
  color: var(--clr-accent-light);
}

.testimonial-carousel {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 var(--space-xs);
  display: flex;
}

.testimonial-card {
  position: relative;
  background: rgba(254,254,254,0.1);
  border: 1px solid rgba(254,254,254,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.testimonial-quote {
  margin: 0 auto var(--space-lg);
}

.testimonial-text {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: var(--clr-white);
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.testimonial-author strong {
  display: block;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  font-style: normal;
  color: var(--clr-white);
}

.testimonial-author span {
  font-size: var(--fs-sm);
  color: rgba(254,254,254,0.55);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(254,254,254,0.3);
  color: var(--clr-white);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.testimonial-btn:hover {
  background: var(--clr-white);
  color: var(--clr-olive);
  border-color: var(--clr-white);
}

.testimonial-dots {
  display: flex;
  gap: var(--space-xs);
}

.testimonial-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-white);
  opacity: 0.3;
  transition: opacity var(--transition), width var(--transition), background var(--transition);
  cursor: pointer;
  border: none;
  padding: 0;
}

.testimonial-dot::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -12px;
  right: -12px;
  bottom: -18px;
}

.testimonial-dot.is-active {
  opacity: 1;
  background: var(--clr-accent-light);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas {
  padding: var(--space-4xl) 0;
  background: var(--clr-olive);
}

.areas-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.areas-heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  line-height: 1.1;
}

.areas-text {
  font-size: var(--fs-md);
  color: rgba(254,254,254,0.7);
  line-height: 1.7;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: var(--space-xs) var(--space-lg);
  border: 1px solid rgba(181,120,78,0.5);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(254,254,254,0.9);
  background: rgba(181,120,78,0.22);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.area-tag:hover {
  border-color: rgba(181,120,78,0.7);
  background: rgba(181,120,78,0.35);
  color: var(--clr-white);
}

.area-tag--primary {
  background: rgba(181,120,78,0.35);
  border-color: rgba(181,120,78,0.65);
  color: var(--clr-white);
  font-weight: var(--fw-semibold);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: var(--space-4xl) 0;
  background: var(--clr-dark);
  text-align: center;
}

.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.final-cta-subtitle {
  font-size: var(--fs-md);
  color: rgba(254,254,254,0.7);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.final-cta .btn-call {
  background: transparent;
  border-color: rgba(254,254,254,0.3);
  color: var(--clr-white);
}

.final-cta .btn-call:hover {
  background: var(--clr-white);
  color: var(--clr-dark);
  border-color: var(--clr-white);
}

.final-cta-reassurance {
  font-size: var(--fs-sm);
  color: rgba(254,254,254,0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--clr-footer-bg);
  padding: var(--space-3xl) 0 var(--space-xl);
  color: rgba(254,254,254,0.6);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.logo--footer .logo-text {
  color: var(--clr-white);
}

.footer-links h4,
.footer-contact h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a,
.footer-contact-link {
  font-size: var(--fs-sm);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer-links a:hover,
.footer-contact-link:hover {
  color: var(--clr-accent);
}

.footer-areas {
  font-size: var(--fs-xs);
  color: rgba(254,254,254,0.5);
  margin-top: var(--space-sm);
  line-height: 1.6;
}

.footer-bottom {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(254,254,254,0.08);
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(254,254,254,0.5);
}

/* ============================================
   FLOATING CTA BUTTONS
   ============================================ */
.desktop-cta-float {
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 16px;
  z-index: 900;
  flex-direction: column;
  gap: 16px;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.float-btn {
  width: 73px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
  transition: background var(--transition), transform var(--transition);
  position: relative;
}

.float-btn svg {
  width: 34px;
  height: 34px;
}

/* Pulse ring — only on WhatsApp button */
.float-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--clr-whatsapp);
  opacity: 0;
  animation: float-pulse 3s ease-out infinite;
  pointer-events: none;
  will-change: transform, opacity;
}

@keyframes float-pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

.float-whatsapp {
  background: var(--clr-whatsapp);
  color: var(--clr-white);
}

.float-whatsapp:hover {
  background: var(--clr-whatsapp-hover);
  transform: scale(1.08);
}

.float-call {
  background: var(--clr-accent);
  color: var(--clr-white);
}

.float-call:hover {
  background: var(--clr-accent-hover);
  transform: scale(1.08);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(28,25,23,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: var(--fs-2xl);
  color: var(--clr-white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(254,254,254,0.1);
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(254,254,254,0.2);
}

.lightbox-content {
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
}

.lightbox-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/10;
  background: rgba(254,254,254,0.05);
  border-radius: var(--radius-lg);
  color: rgba(254,254,254,0.4);
  font-size: var(--fs-md);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

[data-animate="fade-up"] {
  transform: translateY(16px);
}

[data-animate="fade-right"] {
  transform: translateX(-16px);
}

[data-animate="fade-left"] {
  transform: translateX(16px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE — SMALL MOBILE TIGHTENING
   ============================================ */
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + var(--space-xl));
    padding-bottom: var(--space-2xl);
  }

  .hero-scroll-hint {
    display: none;
  }

  .services,
  .why-us,
  .testimonials {
    padding: var(--space-3xl) 0;
  }

  .process {
    padding: var(--space-3xl) 0;
  }

  .gallery {
    padding: var(--space-3xl) 0;
  }

  .section-header {
    margin-bottom: var(--space-2xl);
  }

  .hero-image {
    aspect-ratio: 16/10;
    max-height: 320px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

}

@media (max-width: 374px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  :root {
    --fs-3xl: 3rem;
    --fs-4xl: 3.75rem;
  }

  .hero-title {
    font-size: var(--fs-4xl);
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-inner {
    flex-direction: row;
    align-items: center;
  }

  .why-us-image {
    flex: 0 0 45%;
  }

  .why-us-content {
    flex: 1;
  }

  .process-steps {
    flex-direction: row;
    gap: 0;
  }

  .process-step {
    flex: 1;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-xl) var(--space-xl) 0;
    border-top: 2px solid rgba(254,254,254,0.1);
    border-bottom: none;
    border-right: none;
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }

  .testimonial-slide {
    flex: 0 0 50%;
    min-width: 50%;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-brand {
    flex: 0 0 35%;
  }

  .section-title {
    font-size: var(--fs-3xl);
  }

  .final-cta-title {
    font-size: var(--fs-4xl);
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  :root {
    --fs-3xl: 3.25rem;
    --fs-4xl: 4rem;
    --fs-5xl: 4.5rem;
  }

  /* Desktop nav */
  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    box-shadow: none;
  }

  .nav-contact {
    display: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
  }

  .nav-link {
    font-size: var(--fs-sm);
    padding: var(--space-xs) 0;
    border-bottom: none;
    position: relative;
    color: var(--clr-dark);
    white-space: nowrap;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent);
    transition: width var(--transition);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-cta {
    margin-top: 0;
    padding: var(--space-xs) var(--space-md) !important;
    font-size: var(--fs-sm) !important;
    white-space: nowrap;
  }

  .nav-cta::after {
    display: none;
  }

  .hero-title {
    font-size: var(--fs-5xl);
  }

  .hero-image {
    aspect-ratio: 3/4;
    max-height: 600px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .service-card {
    grid-template-columns: 200px 1fr;
  }

  .service-card-img {
    height: 100%;
    min-height: 240px;
  }

  .service-number {
    font-size: 4.5rem;
    bottom: var(--space-md);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonial-slide {
    flex: 0 0 33.333%;
    min-width: 33.333%;
  }

  .desktop-cta-float {
    bottom: 32px;
    right: 28px;
    gap: 14px;
  }

  .float-btn {
    width: 75px;
    height: 75px;
  }

  .final-cta-title {
    font-size: var(--fs-5xl);
  }
}

/* ============================================
   LARGE DESKTOP (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .container {
    padding: 0 var(--space-xl);
  }

  .hero-content {
    max-width: 550px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

