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

:root {
  /* Warm earth-tone base (instead of pure black) */
  --black: #1a1d17;
  --black-light: #20231d;
  --black-card: #262a23;
  --black-border: #2e3329;
  --dark: #232720;
  --dark-mid: #2a2e26;
  --dark-soft: #353a30;
  --gray-dark: #4a5040;
  --gray: #6b7260;
  --gray-mid: #8a9180;
  --gray-light: #b3b9a8;
  --gray-pale: #d4d8cc;
  --white: #f5f3ec;
  --off-white: #ebe8de;
  /* Sage / olive accent */
  --accent: #8a9a5b;
  --accent-bright: #a4b574;
  --accent-dim: #6f7e47;
  --accent-glow: rgba(138, 154, 91, 0.15);
  --accent-glow-strong: rgba(138, 154, 91, 0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 125%;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  color: var(--white);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.accent { color: var(--accent); }

a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ===== Utilities ===== */
.section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .section-tag {
  padding-left: 0;
}

.section-header .section-tag::before {
  display: none;
}

.section-header h2 {
  font-size: 3.8rem;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: all 0.3s;
}

.text-link:hover {
  color: var(--accent-bright);
  border-color: var(--accent-bright);
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 18px 44px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.btn-accent {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(138, 154, 91, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}

.btn-full { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 29, 23,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s ease;
  padding: 18px 0;
  border-bottom: 2px solid var(--accent);
}

.site-header.scrolled {
  background: rgba(26, 29, 23,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(138, 154, 91, 0.15);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.14em;
  line-height: 1.1;
}

.logo-img {
  height: 88px;
  width: auto;
  display: block;
  /* Dark wordmark on transparent bg — invert to warm cream */
  filter: brightness(0) invert(1) sepia(0.18) saturate(0.7) hue-rotate(355deg);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo:hover .logo-img {
  /* Subtle sage tint on hover */
  filter: brightness(0) invert(1) sepia(0.6) saturate(2) hue-rotate(35deg) brightness(0.9);
  transform: translateY(-1px);
}

.footer-logo .logo-img {
  height: 96px;
}

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }

.nav-links li a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
}

.nav-links li a:hover { color: var(--accent); }

.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245,243,236,0.2);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.nav-social:hover {
  color: var(--black) !important;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--black) !important;
  padding: 12px 28px !important;
  border-radius: var(--radius) !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 16px rgba(138, 154, 91, 0.3) !important;
}

.nav-cta:hover {
  background: var(--accent-bright) !important;
  box-shadow: 0 6px 24px rgba(138, 154, 91, 0.45) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5.5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5.5px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero.jpg') center/cover no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 160px 0 100px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  max-width: 820px;
  background: rgba(26, 29, 23,0.75);
  border: 1px solid rgba(138, 154, 91,0.2);
  border-radius: var(--radius-lg);
  padding: 64px 60px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid var(--accent-glow-strong);
  background: var(--accent-glow);
  border-radius: var(--radius);
}

.hero h1 {
  font-size: 6rem;
  margin-bottom: 28px;
  line-height: 0.95;
}

.hero h1 .accent {
  display: block;
  font-size: 7rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 auto;
  max-width: 320px;
}

.hero-trust-cards .trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: rgba(26, 29, 23,0.75);
  border: 1px solid rgba(138, 154, 91,0.25);
  border-radius: var(--radius);
  width: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.hero-trust-cards .trust-card:hover {
  border-color: var(--accent);
  background: rgba(138, 154, 91,0.08);
  transform: translateY(-2px);
}

.hero-trust-cards .trust-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid var(--accent-glow-strong);
}

.hero-trust-cards .trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-trust-cards .trust-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.hero-trust-cards .trust-text span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .hero-inner { flex-direction: column; }
  .hero-trust-cards {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
  }
  .hero-trust-cards .trust-card { flex: 1 1 auto; min-width: 140px; }
}

@media (max-width: 480px) {
  .hero-trust-cards { flex-direction: column; }
  .hero-trust-cards .trust-card { width: 100%; }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat { display: flex; flex-direction: column; }

.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Services ===== */
.services {
  padding: 130px 0;
  background: var(--black-light);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
}

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

.service-card {
  padding: 48px 40px;
  background: var(--black-card);
  border: 1px solid rgba(138, 154, 91,0.12);
  border-radius: var(--radius-md);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(138, 154, 91,0.08), 0 2px 8px rgba(138, 154, 91,0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  border-color: rgba(138, 154, 91, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(138, 154, 91,0.18), 0 4px 16px rgba(138, 154, 91,0.12);
}

.service-card:hover::before {
  width: 100%;
}

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--dark-soft);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  transition: color 0.5s;
}

.service-card:hover .service-num {
  color: var(--accent);
}

.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

.services-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

/* ===== About ===== */
.about {
  background: var(--black);
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: stretch;
  min-height: 480px;
}

.about-image {
  position: relative;
  padding: 48px 0 48px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img {
  width: 100%;
  max-width: 420px;
  max-height: 560px;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image:hover .about-img {
  transform: translateY(-4px);
}

.about-content {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .section-tag {
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.about-lead {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 10px;
  font-weight: 500;
}

.about-content > p {
  font-size: 0.88rem;
  color: rgba(245,243,236,0.78);
  line-height: 1.55;
  margin-bottom: 10px;
}

.about-content > p:last-of-type {
  margin-bottom: 18px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.highlight { font-size: 0.85rem; }

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.highlight svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 130px 0;
  background: var(--dark);
  position: relative;
}

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

.testimonial-card {
  padding: 40px 32px;
  background: var(--dark-mid);
  border: 1px solid var(--dark-soft);
  border-radius: var(--radius-md);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(138, 154, 91,0.12) 0%, rgba(138, 154, 91,0.04) 100%);
  border-color: rgba(138, 154, 91,0.25);
}

.testimonial-card.featured:hover {
  border-color: rgba(138, 154, 91,0.4);
}

.stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 28px;
}

.testimonial-card.featured p {
  color: var(--white);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.testimonial-card.featured .testimonial-author {
  border-color: rgba(138, 154, 91,0.15);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testimonial-card.featured .author-avatar {
  background: var(--accent-glow-strong);
  color: var(--accent);
}

.testimonial-author strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  letter-spacing: 0.04em;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ===== FAQ ===== */
.faq {
  padding: 130px 0;
  background: var(--black-light);
}

.faq-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.faq-left h2 {
  font-size: 3.6rem;
  margin-bottom: 20px;
}

.faq-left p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}

.faq-right {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--black-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--black-border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color 0.3s;
}

.faq-trigger:hover {
  color: var(--white);
}

.faq-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--gray);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-item.open .faq-trigger {
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* ===== Contact ===== */
.contact {
  padding: 130px 0;
  background: var(--black);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: rgba(138, 154, 91,0.2);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: var(--radius);
  color: var(--accent);
  flex-shrink: 0;
}

.contact-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 2px;
}

.contact-card a,
.contact-card span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.contact-card a:hover {
  color: var(--accent);
}

.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.contact-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  color: var(--gray);
  transition: all 0.3s;
}

.contact-social a:hover {
  color: var(--accent);
  border-color: rgba(138, 154, 91,0.3);
  background: var(--accent-glow);
}

.contact-form-wrap {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent-bright), var(--accent-dim));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--dark-soft);
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--white);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-dark);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact .btn-accent {
  margin-top: 8px;
  padding: 18px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--black-light);
  border-top: 1px solid var(--black-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding: 72px 0 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 280px;
}

.footer-nav h4 {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-nav a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--black-border);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray-dark);
}

.footer-legal {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--gray-dark);
}

.footer-legal a:hover { color: var(--gray-mid); }
.footer-legal span { color: var(--dark-soft); font-size: 0.65rem; }

/* ===== Mobile Floating Call Button ===== */
.mobile-fab-call {
  display: none;
  position: fixed;
  bottom: calc(18px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 950;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  min-height: 56px;
  background: var(--accent);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(138, 154, 91, 0.5), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.mobile-fab-call:hover {
  color: var(--black);
  background: var(--accent-bright);
}

.mobile-fab-call:active {
  transform: translateX(-50%) scale(0.96);
}

/* ===== Responsive ===== */

/* Extra-large screens (24"+ monitors) — fuller layout */
@media (min-width: 1600px) {
  .container { max-width: 1520px; padding: 0 80px; }
  .hero-content { max-width: 920px; padding: 72px 68px; }
  .hero h1 { font-size: 7rem; }
  .hero h1 .accent { font-size: 8rem; }
  .hero-sub { font-size: 1.15rem; max-width: 540px; }
  .hero-trust-cards { max-width: 360px; }
  .section-header h2 { font-size: 4.2rem; }
  .services-grid { gap: 28px; }
  .service-card { padding: 56px 48px; }
  .service-card h3 { font-size: 2rem; }
  .about-inner { min-height: 540px; }
  .about-content { padding: 56px 72px; }
  .about-content h2 { font-size: 2.8rem; }
  .testimonials-grid { gap: 28px; }
  .testimonial-card { padding: 48px 40px; }
  .faq-inner { gap: 100px; }
  .faq-left h2 { font-size: 4rem; }
  .contact-grid { gap: 80px; }
  .contact-form-wrap { padding: 56px; }
  .footer-top { gap: 80px; padding: 96px 0 56px; }
}

@media (max-width: 1024px) {
  .container { padding: 0 36px; }
  .hero h1 { font-size: 4.5rem; }
  .hero h1 .accent { font-size: 5.2rem; }
  .section-header h2 { font-size: 3.2rem; }
  .about-content h2 { font-size: 2.4rem; }
  .faq-left h2 { font-size: 3rem; }
  .about-content { padding: 48px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  html { font-size: 100%; scroll-padding-top: 68px; }
  .container { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .mobile-fab-call { display: inline-flex; }
  body { padding-bottom: 96px; }

  .site-header { padding: 12px 0; }
  .site-header.scrolled { padding: 10px 0; }
  .logo { font-size: 1.35rem; }
  .logo-img { height: 44px; }
  .footer-logo .logo-img { height: 52px; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    /* Solid earth-tone bg with subtle texture overlay so it never bleeds through */
    background:
      radial-gradient(circle at 20% 10%, rgba(138, 154, 91, 0.08), transparent 50%),
      radial-gradient(circle at 80% 90%, rgba(138, 154, 91, 0.06), transparent 50%),
      #1a1d17;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 900;
    margin: 0;
    padding: 80px 24px 40px;
    overflow-y: auto;
  }

  .nav-links.open { opacity: 1; pointer-events: auto; }

  .nav-links li {
    list-style: none;
  }

  .nav-links li a {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--white) !important;
    padding: 10px 20px;
    display: inline-block;
  }

  .nav-links li a:hover,
  .nav-links li a:active {
    color: var(--accent) !important;
  }

  .nav-cta {
    margin-top: 12px;
    padding: 14px 32px !important;
    font-size: 0.95rem !important;
  }

  /* Facebook icon in mobile menu — bigger circle, sage-tinted */
  .nav-links .nav-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-color: rgba(138, 154, 91, 0.5);
    color: var(--white) !important;
    padding: 0;
    line-height: 1;
  }

  .nav-links .nav-social svg {
    width: 22px;
    height: 22px;
    display: block;
  }

  /* Make sure hamburger stays clickable above the open menu */
  .nav-toggle { z-index: 1001; position: relative; }
  .nav-toggle.active span { background: var(--white); }

  /* Lock page scroll while menu is open */
  body.nav-open { overflow: hidden; }

  .hero { min-height: auto; }
  .hero-inner { padding: 120px 0 72px; gap: 28px; }
  .hero-content {
    padding: 36px 24px;
    max-width: 100%;
  }
  .hero h1 { font-size: 3rem; margin-bottom: 20px; }
  .hero h1 .accent { font-size: 3.4rem; }
  .hero-sub { font-size: 0.98rem; margin-bottom: 28px; line-height: 1.7; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .hero-stat-divider { display: none; }

  .btn { padding: 16px 28px; font-size: 0.82rem; }

  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 36px 28px; }
  .service-card h3 { font-size: 1.5rem; }
  .section-header { margin-bottom: 48px; }
  .section-header h2 { font-size: 2.6rem; }

  .about-inner { grid-template-columns: 1fr; min-height: auto; }
  .about-image { padding: 48px 20px 0; }
  .about-img { max-width: 320px; max-height: 400px; }
  .about-content { padding: 40px 20px; }
  .about-content h2 { font-size: 2.4rem; }

  .testimonials { padding: 80px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 32px 24px; }

  .faq { padding: 80px 0; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-left h2 { font-size: 2.4rem; }
  .faq-trigger { padding: 20px 0; font-size: 0.98rem; min-height: 56px; }

  .contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
    padding: 14px 14px;
  }
  .contact-card { padding: 20px; gap: 16px; }
  .contact-social a { width: 48px; height: 48px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 56px 0 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px 0; }
  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-inner { padding: 110px 0 60px; }
  .hero-content { padding: 28px 20px; }
  .hero h1 { font-size: 2.5rem; }
  .hero h1 .accent { font-size: 2.9rem; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; }
  .section-header h2 { font-size: 2.1rem; }
  .about-content { padding: 48px 16px; }
  .about-content h2 { font-size: 2.1rem; }
  .faq-left h2 { font-size: 2.1rem; }
  .service-num { font-size: 2.6rem; }
  .service-card { padding: 32px 22px; }
  .service-card h3 { font-size: 1.4rem; }
  .contact-form-wrap { padding: 28px 18px; }
  .mobile-fab-call { padding: 14px 26px; font-size: 0.92rem; min-height: 52px; }
}
