/* ============================================================
   HAVEN & HAMMER — Master Stylesheet
   ============================================================ */

/* Google Fonts loaded via <link> in HTML for better performance */

/* ── CSS Variables ── */
:root {
  --navy:      #0B1D3A;
  --navy-90:   rgba(11, 29, 58, 0.9);
  --navy-80:   rgba(11, 29, 58, 0.8);
  --navy-light: #112344;
  --gold:      #B87333;
  --gold-light:#CC8844;
  --charcoal:  #333333;
  --smoke:     #5A6478;
  --white:     #FFFFFF;
  --cream:     #F9F7F4;
  --cream-2:   #F2EFE9;
  --border:    #E2DDD6;
  --border-navy: rgba(184,115,51,0.25);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm:  0 2px 8px rgba(11,29,58,0.08);
  --shadow-md:  0 8px 32px rgba(11,29,58,0.12);
  --shadow-lg:  0 20px 60px rgba(11,29,58,0.16);

  --max-w: 1320px;
  --section-py: 100px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-body); }

/* ── Page Load Overlay ── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { width: 200px; opacity: 0; transform: translateY(20px); }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: 68px;
}
.navbar.dark {
  background: transparent;
}
.navbar.dark.scrolled {
  background: var(--navy);
}

.nav-logo { height: 44px; width: auto; transition: height var(--transition); }
.navbar.scrolled .nav-logo { height: 38px; }
.nav-logo-white { display: none; }
.navbar.dark .nav-logo-default { display: none; }
.navbar.dark .nav-logo-white { display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.navbar.dark .nav-link { color: rgba(255,255,255,0.8); }
.navbar.dark .nav-link:hover { color: var(--white); }

.nav-cta {
  padding: 10px 24px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }
.navbar.dark .nav-cta { background: var(--gold); color: var(--navy); }
.navbar.dark .nav-cta:hover { background: var(--gold-light); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  width: 24px; height: 1.5px;
  background: var(--navy);
  transition: var(--transition);
}
.navbar.dark .nav-hamburger span { background: var(--white); }

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.mobile-nav.open { opacity: 1; visibility: visible; display: flex; }
.mobile-nav .nav-link {
  color: var(--white);
  font-size: 28px;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}
.mobile-nav .nav-link::after { background: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
}

/* ── Gold Rule ── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.gold-rule::before {
  content: '';
  width: 40px; height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}
.gold-rule span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold-rule.center {
  justify-content: center;
}
.gold-rule.center::before { display: none; }
.gold-rule.center::after {
  content: '';
  width: 40px; height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 1.5px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,151,42,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-arrow::after {
  content: '→';
  font-size: 16px;
  transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── Section Commons ── */
.section { padding: var(--section-py) 40px; }
.container { max-width: var(--max-w); margin: 0 auto; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.section-subtitle {
  font-size: 17px;
  color: var(--smoke);
  line-height: 1.7;
  max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,29,58,0.82) 0%, rgba(11,29,58,0.60) 60%, rgba(11,29,58,0.28) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 40px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-eyebrow span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}
.hero-title strong {
  font-weight: 700;
  display: block;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  opacity: 0;
  animation: fadeUp 0.9s 1.2s forwards;
  flex-wrap: wrap;
}
.stat-item {}
.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-suffix { font-size: 24px; }
.stat-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.8s forwards;
  z-index: 2;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(24px); }
}
@keyframes fadeIn {
  to { opacity: 1; }
  from { opacity: 0; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--cream);
  padding: 32px 40px;
  border-bottom: 1px solid var(--border);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 18px; height: 18px; color: var(--gold); }
.trust-text {}
.trust-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.trust-sub {
  font-size: 11px;
  color: var(--smoke);
  margin-top: 1px;
}
.trust-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

/* ── Services Overview ── */
.services-section {
  background: var(--white);
  padding: var(--section-py) 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 64px;
  border: 2px solid var(--border);
}
.service-card {
  padding: 48px 36px;
  background: var(--white);
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-slow);
}
.service-card:hover::before { transform: scaleY(1); }

.service-card-inner { position: relative; z-index: 1; }
.service-icon {
  width: 52px; height: 52px;
  margin-bottom: 24px;
  color: var(--gold);
  transition: color var(--transition);
}
.service-card:hover .service-icon { color: var(--gold); }

.service-number {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--cream-2);
  line-height: 1;
  z-index: 0;
  transition: color var(--transition);
}
.service-card:hover .service-number { color: rgba(255,255,255,0.06); }

.service-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color var(--transition);
  line-height: 1.2;
}
.service-card:hover .service-name { color: var(--white); }

.service-desc {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.7;
  transition: color var(--transition);
}
.service-card:hover .service-desc { color: rgba(255,255,255,0.7); }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition), color var(--transition);
}
.service-card:hover .service-link { color: var(--gold-light); gap: 14px; }
.service-link svg { width: 14px; }

/* ── Why Choose Us ── */
.why-section {
  background: var(--navy);
  padding: var(--section-py) 40px;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,151,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 0;
}
.why-left .section-title { color: var(--white); }
.why-left .section-subtitle { color: rgba(255,255,255,0.65); max-width: 480px; }
.why-features {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}
.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
  min-width: 40px;
}
.feature-text {}
.feature-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.why-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.why-img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.why-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.why-img:hover img { transform: scale(1.04); }

/* ── Gallery Preview ── */
.gallery-section {
  padding: var(--section-py) 40px;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
  margin-top: 48px;
}
.g-item {
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}
.g-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1; }
.g-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1; }
.g-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1; }
.g-item:nth-child(4) { grid-column: 1 / 5; grid-row: 2; }
.g-item:nth-child(5) { grid-column: 5 / 9; grid-row: 2; }
.g-item:nth-child(6) { grid-column: 9 / 13; grid-row: 2; }

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,29,58,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.g-item:hover .g-item-overlay { opacity: 1; }
.g-item-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── Process ── */
.process-section {
  padding: var(--section-py) 40px;
  background: var(--white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px;
  background: var(--border);
}
.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  z-index: 1;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.process-step:hover .step-number {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.step-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.7;
}

/* ── Testimonials Marquee ── */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes marqueeForward {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeReverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.testimonials-section {
  padding: var(--section-py) 0;
  background: var(--cream);
  overflow: hidden;
}
.testimonials-section .container { padding: 0 40px; }
.reviews-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}
.reviews-score {
  margin-left: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.reviews-count {
  font-size: 13px;
  color: var(--smoke);
}

.marquee-track-wrap {
  position: relative;
  width: 100%;
  margin-top: 48px;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-forward {
  animation: marqueeForward 32s linear infinite;
}
.marquee-reverse {
  animation: marqueeReverse 32s linear infinite;
}
.marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 100%);
}
.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--cream) 0%, transparent 100%);
}

/* ── Testimonial Card (marquee) ── */
.tcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 28px 24px;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.tcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.tcard-dark {
  background: var(--navy);
  border-color: rgba(196,151,42,0.2);
}
.tcard-stars {
  display: flex;
  gap: 3px;
}
.tcard-stars svg {
  width: 14px; height: 14px;
  fill: var(--gold);
}
.tcard-dark .tcard-stars svg { fill: var(--gold-light); }
.tcard-text {
  font-size: 14px;
  line-height: 1.72;
  color: var(--charcoal);
  flex: 1;
}
.tcard-dark .tcard-text { color: rgba(255,255,255,0.8); }
.tcard-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.tcard-dark .tcard-reviewer { border-top-color: rgba(196,151,42,0.18); }
.tcard-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tcard-dark .tcard-avatar {
  background: rgba(196,151,42,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(196,151,42,0.3);
}
.tcard-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.tcard-dark .tcard-name { color: var(--white); }
.tcard-loc {
  font-size: 11px;
  color: var(--smoke);
  margin-top: 2px;
  letter-spacing: 0.03em;
}
.tcard-dark .tcard-loc { color: rgba(255,255,255,0.45); }

/* Keep old testimonial card styles for potential future use */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.quote-mark {
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 20px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 28px;
  font-style: italic;
}
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.stars svg { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}
.reviewer-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.reviewer-location {
  font-size: 12px;
  color: var(--smoke);
  margin-top: 2px;
}

/* ── Service Area Banner ── */
.area-banner {
  background: var(--navy);
  padding: 64px 40px;
}
.area-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.area-text .section-title { color: var(--white); margin-bottom: 12px; }
.area-text .section-subtitle { color: rgba(255,255,255,0.65); }
.area-counties {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.county-badge {
  padding: 12px 24px;
  border: 1.5px solid rgba(196,151,42,0.4);
  border-radius: 2px;
  text-align: center;
}
.county-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
}
.county-state {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ── CTA Section ── */
.cta-section {
  padding: var(--section-py) 40px;
  background: var(--cream);
  text-align: center;
}
.cta-box {
  max-width: 680px;
  margin: 0 auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  margin-top: 24px;
  transition: color var(--transition);
}
.cta-phone:hover { color: var(--gold); }
.cta-phone svg { width: 20px; color: var(--gold); }

/* ── Footer ── */
footer {
  background: var(--navy);
  padding: 80px 40px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo { height: 48px; width: auto; margin-bottom: 20px; }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item svg { width: 16px; color: var(--gold); flex-shrink: 0; }

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.footer-link:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-social { display: flex; gap: 16px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); }
.social-link svg { width: 16px; color: rgba(255,255,255,0.6); }
.social-link:hover svg { color: var(--navy); }

/* ── Page Header (Inner Pages) ── */
.page-header {
  background: var(--navy);
  padding: 160px 40px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.page-header-content { position: relative; z-index: 1; }
.page-header-title {
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-header-title strong { font-weight: 700; }
.page-header-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--gold); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb svg { width: 12px; opacity: 0.4; }

/* ── Services Detail Page ── */
.service-category {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.service-category:nth-child(even) { background: var(--cream); }
.service-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-cat-grid.reverse { direction: rtl; }
.service-cat-grid.reverse > * { direction: ltr; }
.cat-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.cat-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.cat-image:hover img { transform: scale(1.04); }
.cat-content {}
.cat-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.cat-desc {
  font-size: 16px;
  color: var(--smoke);
  line-height: 1.8;
  margin-bottom: 32px;
}
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.service-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.service-list-item svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Gallery Page ── */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
  margin-top: 56px;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}
.gallery-masonry-item:hover img { transform: scale(1.04); }
.gallery-masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,29,58,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-masonry-item:hover .gallery-masonry-overlay { opacity: 1; }
.gallery-masonry-overlay svg { width: 40px; color: var(--white); }

/* ── About Page ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-stack {
  position: relative;
  padding: 32px 32px 0 0;
}
.about-img-main {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -20px; right: 0;
  width: 55%;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.team-card {
  text-align: center;
}
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.team-role {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info {}
.contact-card {
  padding: 32px;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; color: var(--gold); }
.contact-card-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 6px;
}
.contact-card-value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.contact-card-value a { transition: color var(--transition); }
.contact-card-value a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  padding: 48px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-sub {
  font-size: 14px;
  color: var(--smoke);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 2px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ── Service Area Page ── */
.area-map-section {
  padding: var(--section-py) 40px;
}
.area-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.area-city {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--cream);
  border-radius: 2px;
  border-left: 3px solid var(--gold);
  font-size: 14px;
  color: var(--charcoal);
}
.area-city svg { width: 14px; color: var(--gold); flex-shrink: 0; }

.map-embed {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}
.map-embed iframe { display: block; }

/* ── Scroll to Top ── */
#scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), background var(--transition), transform var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-md);
}
#scroll-top.visible { opacity: 1; visibility: visible; }
#scroll-top:hover { background: var(--gold); transform: translateY(-3px); }
#scroll-top svg { width: 18px; color: var(--white); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image-grid { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .about-image-stack { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .area-intro { grid-template-columns: 1fr; }
  .service-cat-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-cat-grid.reverse { direction: ltr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  /* ── Nav ── */
  .navbar { padding: 0 20px; height: 64px; }
  .navbar.scrolled { height: 56px; }
  .nav-logo { height: 36px; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }

  /* ── Sections / containers ── */
  .section { padding: var(--section-py) 20px; }
  .container { padding: 0 20px; }

  /* ── Hero ── */
  .hero-content { padding: 110px 20px 56px; }
  .hero-title { font-size: clamp(38px, 10vw, 54px); }
  .hero-desc { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .hero-stat-num { font-size: 28px; }

  /* ── Trust bar ── */
  .trust-bar { padding: 24px 20px; }
  .trust-bar .container { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .trust-divider { display: none; }
  .trust-item { min-width: calc(50% - 8px); justify-content: center; }

  /* ── Section headings ── */
  .section-title { font-size: clamp(28px, 7vw, 40px); }
  .section-subtitle { font-size: 15px; padding: 0 8px; }

  /* ── Services grid ── */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 20px; }

  /* ── Why section ── */
  .why-section { padding: var(--section-py) 20px; }
  .why-features { gap: 24px; }
  .why-feature { padding: 20px; }

  /* ── Gallery ── */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 8px; }
  .g-item { grid-column: auto !important; grid-row: auto !important; aspect-ratio: 4/3; }
  .gallery-masonry { columns: 2; gap: 12px; }
  .gallery-filters { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .filter-btn { font-size: 11px; padding: 8px 14px; }

  /* ── Process steps ── */
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .process-step { padding: 0 4px; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-section { padding: var(--section-py) 0; }
  .testimonials-section .container { padding: 0 20px; }
  .tcard { width: 260px; padding: 20px 20px 18px; }
  .marquee-fade { width: 60px; }
  .marquee-track-wrap { margin-top: 32px; }

  /* ── Area banner ── */
  .area-banner { padding: 48px 20px; }
  .area-banner .container { flex-direction: column; gap: 20px; text-align: center; }
  .county-badge { padding: 12px 24px; font-size: 13px; }

  /* ── CTA ── */
  .cta-section { padding: var(--section-py) 20px; }
  .cta-box { padding: 40px 24px; }
  .cta-actions { flex-direction: column; gap: 12px; }
  .cta-actions .btn { width: 100%; text-align: center; }

  /* ── Footer ── */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* ── Page header (inner pages) ── */
  .page-header { padding: 110px 20px 56px; }
  .page-header-title { font-size: clamp(32px, 8vw, 52px); }
  .page-header-sub { font-size: 15px; }

  /* ── Services detail ── */
  .service-category { padding: 48px 20px; }
  .service-cat-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-cat-grid.reverse { direction: ltr; }
  .service-list { grid-template-columns: 1fr; }
  .cat-title { font-size: clamp(26px, 7vw, 38px); }

  /* ── About ── */
  .about-story { grid-template-columns: 1fr; }
  .about-image-stack { display: none; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .mission-box { padding: 32px 20px; }
  .mission-quote { font-size: clamp(20px, 5vw, 28px); }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cards { gap: 16px; }
  .contact-card { padding: 20px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Service area ── */
  .area-intro { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr 1fr; }
  .county-maps { grid-template-columns: 1fr; }
  .area-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .area-stat { min-width: calc(50% - 10px); }
  .city-cards { grid-template-columns: 1fr; }

  /* ── Forms ── */
  .form-row { grid-template-columns: 1fr; }
  input, select, textarea { font-size: 16px; }
}

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