:root {
  --color-dark: #1C1C1C;
  --color-dark-muted: #2A2A2A;
  --color-gold: #D4952A;
  --color-gold-hover: #b87f21;
  --color-light: #F5F2EE;
  --color-white: #FFFFFF;
  
  --font-heading: 'Alfa Slab One', serif;
  --font-body: 'Lato', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  
  --spacing-section: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  border-radius: 4px;
}

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

/* Typography Details */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.label-mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.875rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 16px 32px;
  border-radius: 4px;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  border: 2px solid var(--color-gold);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
}

.btn i {
  font-size: 1.5rem;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-gold);
}
.btn-outline:hover {
  background-color: rgba(212, 149, 42, 0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Section Common */
.section {
  padding: var(--spacing-section) 5%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

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

/* Divider */
.gold-divider {
  height: 4px;
  background-color: var(--color-gold);
  width: 100%;
  transform-origin: left;
}

/* ---- 1. Sticky Nav ---- */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 16px 5%;
  border-bottom: 2px solid var(--color-gold);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-logo span {
  color: var(--color-gold);
}

.nav-cta {
  font-family: var(--font-mono);
  font-weight: 700;
  background-color: var(--color-gold);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.nav-cta:hover {
  background-color: var(--color-gold-hover);
}

/* ---- 2. Hero Section ---- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-section) 5%;
  color: var(--color-white);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/hero-bg.png') center/cover no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(28,28,28,0.7) 0%, rgba(28,28,28,0.95) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  z-index: 1;
}

.hero-subheadline {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-desc {
  font-size: 1.25rem;
  color: #DDD;
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  color: var(--color-gold);
  margin-bottom: 40px;
  font-size: 0.9rem;
}

.hero-trust-line {
  margin-top: 24px;
  font-size: 0.875rem;
  font-family: var(--font-mono);
  color: #AAA;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-trust-line span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hero-trust-line i {
  color: var(--color-gold);
}

/* ---- 3. Trust Strip ---- */
.trust-strip {
  background-color: var(--color-gold);
  color: var(--color-dark);
  padding: 32px 5%;
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.trust-item i {
  font-size: 2rem;
}

/* ---- 4. Services Section ---- */
.services-section {
  background-color: var(--color-light);
}

.section-header {
  margin-bottom: 48px;
}

.section-header .label-mono {
  color: var(--color-gold);
  margin-bottom: 8px;
  display: inline-block;
}

.section-header h2 {
  font-size: clamp(1.8rem, 6vw, 3rem);
  color: var(--color-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: var(--color-white);
  padding: 40px 32px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid var(--color-gold);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05); /* Premium diffusion shadow */
  transition: transform 0.3s ease;
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(212, 149, 42, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 2rem;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-card p {
  color: #555;
  font-size: 1rem;
}

/* ---- 5. Google Reviews CTA ---- */
.reviews-section {
  background-color: var(--color-white);
  border-top: 1px solid #EAEAEA;
}

.reviews-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background-color: var(--color-light);
  border: 1px dashed var(--color-gold);
  border-radius: 8px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
}

.reviews-box i.ph-star-fill {
  color: var(--color-gold);
  font-size: 2rem;
  margin: 0 4px 16px;
}

.reviews-box h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 16px;
}

.reviews-box p {
  color: #555;
  margin-bottom: 32px;
  font-size: 1.125rem;
}

/* ---- 6. Final CTA Section ---- */
.cta-section {
  background-color: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  padding: 100px 5%;
}

.cta-section h2 {
  font-size: clamp(2rem, 7vw, 3.5rem);
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 1.25rem;
  color: #CCC;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.huge-phone {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--color-gold);
  display: block;
  margin-bottom: 40px;
  line-height: 1;
}

.huge-phone:hover {
  color: var(--color-gold-hover);
}

.cta-subnote {
  margin-top: 24px;
  font-family: var(--font-mono);
  color: #888;
  font-size: 0.875rem;
  text-transform: uppercase;
}

/* ---- 7. Footer ---- */
.footer {
  background-color: #111;
  color: #888;
  text-align: center;
  padding: 40px 5%;
  font-size: 0.875rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
}

.footer-logo span {
  color: var(--color-gold);
}

.footer-divider {
  width: 40px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 16px auto;
}

/* ---- Mobile Responsiveness ---- */
@media (max-width: 768px) {
  .nav-logo {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }
  
  .trust-strip {
    padding: 24px 5%;
  }
  
  .trust-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .nav-cta {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%; /* Modern circular touch target */
    justify-content: center;
  }
  
  .nav-cta span {
    display: none; /* Hide word "Call" on small screens, keep icon */
  }
}

@media (max-width: 480px) {
  .hero-trust-line {
    flex-direction: column;
    gap: 8px;
  }
}
