/* ============================================================
   SWIFTS ROOFING & CONSTRUCTION — style.css
   ============================================================ */

/* 1. Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

/* 2. CSS Custom Properties */
:root {
  --gold:         #F5C425;
  --gold-light:   #FFD651;
  --gold-dark:    #C9A31A;
  --gold-dim:     rgba(245,196,37,0.12);
  --black:        #0A0A0A;
  --dark:         #111111;
  --dark-2:       #1C1C1C;
  --dark-3:       #252525;
  --dark-4:       #333333;
  --text-dark:    #1A1A1A;
  --text-medium:  #555555;
  --text-light:   #888888;
  --bg-light:     #F8F7F4;
  --bg-off:       #F0EDE8;
  --white:        #FFFFFF;
  --border:       #E8E5E0;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --container:    1200px;
  --nav-height:   88px;
  --nav-scrolled: 64px;
  --radius:       4px;
  --radius-lg:    8px;
  --radius-xl:    16px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.16);
  --shadow-gold:  0 6px 28px rgba(245,196,37,0.30);
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0.0, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.16, 1, 0.3, 1);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  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 { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* 4. Skip Link */
.skip-link {
  position: absolute;
  top: -120px;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.5rem 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* 5. Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1200px) { .container { padding: 0 2.5rem; } }

/* 6. Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { line-height: 1.7; color: var(--text-medium); }

.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.text-dark  { color: var(--text-dark); }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label::before { content: '— '; }

.gold-divider { width: 56px; height: 3px; background: var(--gold); margin: 1rem 0 1.5rem; }
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* 7. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { border: 2px solid rgba(255,255,255,0.7); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }
.btn-outline-gold { border: 2px solid var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn-outline-dark { border: 2px solid var(--dark); color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }

/* 8. Navigation */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: height 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
  background: transparent;
}
.site-header.scrolled {
  height: var(--nav-scrolled);
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img.logo-mark {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: height 0.35s var(--ease);
}
.site-header.scrolled .nav-logo img.logo-mark { height: 30px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
}
.nav-logo .logo-sub {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  color: #F5C425;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

.nav-logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-fallback .name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-logo-fallback .sub {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 1px; left: 0.85rem; right: 0.85rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-spring);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.575rem 1.1rem !important;
  border-radius: var(--radius) !important;
  margin-left: 0.5rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-spring), opacity 0.2s, width 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Full-Screen Nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--gold);
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.2s, transform 0.2s;
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--gold); transform: translateX(8px); }
.nav-mobile .mobile-cta {
  margin-top: 1rem;
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.875rem 2.5rem;
  border-radius: var(--radius);
  font-size: 1.1rem !important;
  transform: none !important;
}
.nav-mobile .mobile-cta:hover { background: var(--gold-light) !important; transform: translateY(-2px) !important; }

/* 9. Page Hero (inner pages) */
.page-hero {
  min-height: 48vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(245,196,37,0.03) 40px, rgba(245,196,37,0.03) 41px);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 3rem;
}
.page-hero-content .section-label {
  opacity: 0;
  animation: fadeSlideUp 0.6s var(--ease-spring) 0.1s forwards;
}
.page-hero-content h1 {
  color: var(--white);
  max-width: 760px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeSlideUp 0.75s var(--ease-spring) 0.2s forwards;
}
.page-hero-content .hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 540px;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease-spring) 0.35s forwards;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeSlideUp 0.6s var(--ease-spring) 0.05s forwards;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); }

/* 10. Home Hero */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(245,196,37,0.022) 60px, rgba(245,196,37,0.022) 61px),
    repeating-linear-gradient( 45deg, transparent, transparent 60px, rgba(245,196,37,0.012) 60px, rgba(245,196,37,0.012) 61px);
  z-index: 1;
}
.hero-accent-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--gold);
  z-index: 3;
}
.hero-accent-corner {
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-left: 260px solid transparent;
  border-bottom: 260px solid rgba(245,196,37,0.04);
  z-index: 1;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Dark overlay so text stays legible over the video */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.48) 55%,
    rgba(0,0,0,0.68) 100%
  );
  z-index: 1;
}
.hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-light));
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: calc(var(--nav-height) + 2.5rem) 0 8rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,196,37,0.1);
  border: 1px solid rgba(245,196,37,0.28);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.6s var(--ease-spring) 0.2s forwards;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 2s ease infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 950px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(110%) skewY(2deg);
  animation: revealText 0.85s var(--ease-spring) forwards;
}
.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.46s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 0.62s; }
.hero-title .accent { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease-spring) 0.82s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease-spring) 0.98s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeSlideUp 0.6s var(--ease-spring) 1.3s forwards;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBob 1.6s ease infinite;
}

/* 11. Stats Bar */
.stats-bar {
  background: var(--dark-2);
  padding: 3.5rem 0;
  position: relative;
}
.stats-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* 12. Section Base */
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }
.section-dark    { background: var(--dark); }
.section-darker  { background: var(--black); }
.section-light   { background: var(--bg-light); }

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-header h2 { text-transform: uppercase; color: var(--text-dark); margin-bottom: 0.75rem; }
.section-dark .section-header h2,
.section-darker .section-header h2 { color: var(--white); }
.section-header p { font-size: 1.05rem; }
.section-header.center p { margin: 0 auto; }

/* 13. Service Cards (Home Overview) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-spring);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 54px; height: 54px;
  background: var(--gold-dim);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.25s;
}
.service-card:hover .service-icon { background: var(--gold); }
.service-icon svg { width: 26px; height: 26px; color: var(--gold); transition: color 0.25s; }
.service-card:hover .service-icon svg { color: var(--black); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.65rem; color: var(--text-dark); text-transform: uppercase; }
.service-card p { font-size: 0.93rem; line-height: 1.65; margin-bottom: 1.25rem; }
.service-link {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.8rem; }
.service-link svg { width: 14px; height: 14px; }

/* 14. Why Choose Us */
.why-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 960px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  position: relative;
  min-height: 300px;
}
.why-visual img { width: 100%; height: 100%; object-fit: cover; }
.why-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.2);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.why-placeholder svg { width: 48px; height: 48px; opacity: 0.25; }
.why-badge-wrap {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-badge-wrap .num { font-size: 2.25rem; font-weight: 900; line-height: 1; display: block; }
.why-badge-wrap .txt { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.why-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.why-feature { display: flex; gap: 1rem; align-items: flex-start; }
.why-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.1rem;
}
.why-check svg { width: 13px; height: 13px; color: var(--black); }
.why-feature h4 { font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; color: var(--text-dark); }
.why-feature p { font-size: 0.9rem; line-height: 1.6; }

/* 15. Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.t-quote {
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  pointer-events: none;
}
.t-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.t-star { color: var(--gold); font-size: 1rem; }
.t-text { font-size: 0.93rem; line-height: 1.72; color: var(--text-medium); margin-bottom: 1.5rem; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800;
  color: var(--black);
  flex-shrink: 0;
}
.t-name { font-weight: 600; font-size: 0.93rem; color: var(--text-dark); }
.t-loc  { font-size: 0.78rem; color: var(--text-light); }

/* 16. CTA Section */
.cta-section {
  background: var(--dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -30%; right: -8%;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(245,196,37,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 5px;
  background: var(--gold);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); text-transform: uppercase; margin-bottom: 0.75rem; }
.cta-text p  { color: rgba(255,255,255,0.55); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* 17. Services Page Detail */
.service-detail {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .service-detail-grid { grid-template-columns: 1fr 1fr; }
  .service-detail:nth-child(even) .sd-img   { order: 2; }
  .service-detail:nth-child(even) .sd-text  { order: 1; }
}
.sd-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.sd-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-xl);
}
.sd-img-ph {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.2);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-align: center; padding: 2rem;
}
.sd-img-ph svg { width: 40px; height: 40px; opacity: 0.25; }
.sd-text h2 { text-transform: uppercase; color: var(--text-dark); font-size: clamp(1.75rem, 3.5vw, 2.25rem); margin-bottom: 1rem; }
.sd-text p  { margin-bottom: 1rem; font-size: 0.975rem; }
.sd-list { display: flex; flex-direction: column; gap: 0.5rem; margin: 1.5rem 0 2rem; }
.sd-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.93rem; color: var(--text-medium); }
.sd-list li::before { content: ''; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* 18. Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
  background: var(--dark-3);
}
.gallery-item > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s var(--ease-spring);
}
.gallery-item:hover > img { transform: scale(1.04); }/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: background 0.2s;
  z-index: 1;
}
.lb-close:hover { background: var(--gold); color: var(--black); }
.lb-close svg { width: 20px; height: 20px; }
.lb-body { max-width: 90vw; max-height: 80vh; text-align: center; }
.lb-ph {
  width: clamp(300px, 60vw, 700px);
  aspect-ratio: 4/3;
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
}
.lb-ph-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.lb-ph-loc   { font-size: 0.875rem; color: var(--gold); }
.lb-ph-note  { font-size: 0.75rem; color: rgba(255,255,255,0.2); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.75rem; }

/* 19. Contact */
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.5fr; } }

.contact-info h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 1.5rem; color: var(--text-dark); }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.75rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--black); }
.ci-label { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.2rem; }
.ci-val { font-size: 0.975rem; font-weight: 500; color: var(--text-dark); }
.ci-val a { transition: color 0.2s; }
.ci-val a:hover { color: var(--gold-dark); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 0.375rem; color: var(--text-dark); }
.contact-form-wrap .cf-sub { font-size: 0.93rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.25rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dark); }
.form-group label .req { color: var(--gold-dark); margin-left: 2px; }
.form-group input,
.form-group textarea {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,196,37,0.14); }
.form-group input.error,
.form-group textarea.error { border-color: #c53030; }
.form-group .err-msg { font-size: 0.8rem; color: #c53030; display: none; }
.form-group.has-error .err-msg { display: block; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-honeypot { opacity: 0; position: absolute; top: 0; left: 0; height: 0; width: 0; z-index: -1; }
.form-submit { width: 100%; padding: 1rem; font-size: 1.05rem; }

.form-success { display: none; text-align: center; padding: 3rem 1.5rem; }
.form-success.visible { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success-icon svg { width: 32px; height: 32px; color: var(--black); }
.form-success h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 0.75rem; color: var(--text-dark); }

/* 20. About */
.about-grid { display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  display: flex; align-items: center; justify-content: center;
  min-height: 360px; position: relative;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-ph {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.2);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.about-img-ph svg { width: 48px; height: 48px; opacity: 0.2; }
.about-text h2 { text-transform: uppercase; color: var(--text-dark); margin-bottom: 1.25rem; }
.about-text p  { margin-bottom: 1rem; font-size: 0.975rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-emoji { font-size: 1.75rem; margin-bottom: 0.75rem; }
.value-card h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; color: var(--text-dark); }
.value-card p  { font-size: 0.9rem; line-height: 1.6; }

/* 21. Footer */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0 2rem;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2rem; } }

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.footer-logo-group img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-logo-sub {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.footer-brand-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 1.25rem; }
.footer-desc { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.625rem; }
.footer-social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.footer-social:hover { background: var(--gold); transform: translateY(-2px); }
.footer-social:hover svg { color: var(--black); }
.footer-social svg { width: 17px; height: 17px; color: rgba(255,255,255,0.55); transition: color 0.2s; }

.footer-col h4 { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-row { display: flex; gap: 0.75rem; margin-bottom: 0.875rem; align-items: flex-start; }
/* Footer contact list (phone/email with icons) */
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 0.75rem; margin-bottom: 0.875rem; align-items: flex-start; }
.footer-contact li svg { width: 16px; min-width: 16px; max-width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.55); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; word-break: break-all; }
.footer-contact a:hover { color: var(--gold); }

.footer-contact-row svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-row span,
.footer-contact-row a { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.5; }
.footer-contact-row a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p,
.footer-bottom a { color: rgba(255,255,255,0.3); font-size: 0.83rem; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* 22. WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 8000;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  animation: waPulse 2.8s ease infinite;
}
.whatsapp-float:hover {
  transform: scale(1.14);
  box-shadow: 0 6px 30px rgba(37,211,102,0.55);
  animation: none;
}
.whatsapp-float svg { width: 30px; height: 30px; color: var(--white); }

/* 23. Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 7000;
  background: var(--dark-2);
  border-top: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-spring);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.3);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-text { font-size: 0.88rem; color: rgba(255,255,255,0.65); flex: 1; min-width: 200px; }
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-accept {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.6rem 1.25rem; border-radius: var(--radius);
  border: 2px solid var(--gold); cursor: pointer;
  transition: var(--transition);
}
.cookie-accept:hover { background: var(--gold-light); border-color: var(--gold-light); }
.cookie-decline {
  border: 2px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.65);
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.6rem 1.25rem; border-radius: var(--radius);
  background: none; cursor: pointer;
  transition: var(--transition);
}
.cookie-decline:hover { border-color: var(--white); color: var(--white); }

/* 24. Privacy Policy */
.privacy-content { max-width: 800px; margin: 0 auto; padding: 5rem 0 6rem; }
.privacy-updated {
  display: inline-block;
  background: var(--bg-light);
  border-left: 3px solid var(--gold);
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.privacy-content h2 { font-size: 1.4rem; text-transform: uppercase; color: var(--text-dark); margin: 2.5rem 0 0.75rem; }
.privacy-content h2:first-of-type { margin-top: 0; }
.privacy-content p { margin-bottom: 1rem; font-size: 0.96rem; }
.privacy-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-content ul li { font-size: 0.96rem; color: var(--text-medium); margin-bottom: 0.35rem; line-height: 1.65; }
.privacy-content a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }

/* 25. Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.scale-in   { transform: scale(0.93); }
.reveal.visible { opacity: 1; transform: none; }

.stagger .reveal:nth-child(1) { transition-delay: 0.00s; }
.stagger .reveal:nth-child(2) { transition-delay: 0.10s; }
.stagger .reveal:nth-child(3) { transition-delay: 0.20s; }
.stagger .reveal:nth-child(4) { transition-delay: 0.30s; }
.stagger .reveal:nth-child(5) { transition-delay: 0.40s; }
.stagger .reveal:nth-child(6) { transition-delay: 0.50s; }

/* 26. Keyframes */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealText {
  from { opacity: 0; transform: translateY(110%) skewY(2.5deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0deg); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
@keyframes waPulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 0.4; }
}

/* 27. Responsive */
@media (max-width: 768px) {
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .cta-inner    { flex-direction: column; text-align: center; }
  .cta-actions  { width: 100%; justify-content: center; }
  .section      { padding: 4rem 0; }
  .section-lg   { padding: 5rem 0; }
  .contact-form-wrap { padding: 1.5rem; }
}
@media (max-width: 480px) {
  :root { --nav-height: 72px; }
  .stats-bar { padding: 2.5rem 0; }
  .footer-grid { gap: 2rem; }
}

/* 28. Utilities */
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
