:root {
  --navy: #2d363b;
  --navy-dark: #252d31;
  --gold: #c8a66b;
  --gold-hover: #b49156;
  --bg-light: #f7f6f5;
  --text-dark: #333333;
  --text-light: #666666;
  --line: #e2e2e2;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  font-family: "Open Sans", Arial, sans-serif;
  background: var(--white);
  line-height: 1.6;
}

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

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

/* Typography */
h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px 0;
  color: var(--white);
}

h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

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

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

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

/* Buttons */
.button-solid,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.button-solid {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}

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

.button-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.w-full {
  width: 100%;
}

/* Topbar */
.topbar-container {
  background: var(--navy-dark);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(20px, 5vw, 60px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  max-width: 1440px;
  margin: 0 auto;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link strong {
  color: var(--white);
}

.phone-icon-svg {
  color: var(--gold);
}

.language-link {
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}

/* Main Header */
.main-header {
  background: var(--navy);
  padding: 24px clamp(20px, 5vw, 60px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-shell {
  display: block;
}

.logo {
  height: auto;
}

.header-call-btn {
  margin-left: auto;
}

/* Hero Section */
.hero {
  background: 
    linear-gradient(90deg, rgba(37, 45, 49, 0.85) 0%, rgba(37, 45, 49, 0.65) 45%, rgba(37, 45, 49, 0.1) 100%),
    url("assets/hero-director-2.png") center / cover;
  padding: 80px clamp(20px, 5vw, 60px);
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-google-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
  color: #202124;
  font-family: var(--font-body);
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-rating {
  font-size: 1.1rem;
  font-weight: 700;
  margin-right: 6px;
}

.badge-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.badge-divider {
  width: 1px;
  height: 20px;
  background-color: #dadce0;
  margin: 0 16px;
}

.badge-text {
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3c4043;
}

.badge-google-logo {
  height: 18px;
  width: auto;
  margin-top: 1px;
}

.hero-copy {
  color: var(--white);
}

.hero-text {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Form */
.lead-form {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  scroll-margin-top: 140px;
}

.lead-form .form-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 8px 0;
}

.lead-form h2 {
  color: var(--text-dark);
  font-size: 28px;
  margin-bottom: 24px;
}

.lead-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.lead-form input,
.lead-form select {
  width: 100%;
  margin-top: 6px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: url('data:image/svg+xml;utf8,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L5 5L9 1" stroke="%23666666" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
  pointer-events: none;
}

.lead-form select {
  appearance: none;
  padding-right: 40px;
}

.lead-form button {
  margin-top: 8px;
  border: none;
}

.privacy-note {
  margin: 20px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-light);
}

/* Trust Strip */
.trust-strip-container {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-strip-new {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px clamp(20px, 5vw, 60px);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: none;
  padding-right: 0;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon-g {
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-title-flex {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-text strong {
  font-size: 15px;
  color: var(--text-dark);
}

.trust-title-flex strong {
  font-size: 18px;
}

.stars {
  color: #FBBC05;
  font-size: 14px;
}

.trust-text span {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
}

/* Need Paths */
.need-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.path {
  padding: 80px clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.path::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(37, 45, 49, 0.85);
  z-index: 1;
}

.path-immediate {
  background: url("assets/hero-memorial.jpg") center / cover;
}

.path-planning {
  background: url("assets/planning-room.jpg") center / cover;
}

.path > * {
  position: relative;
  z-index: 2;
}

.path strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 32px;
  max-width: 480px;
  font-weight: 700;
}

/* Steps Section */
.section {
  padding: 100px clamp(20px, 5vw, 60px);
  max-width: 1320px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  color: var(--text-dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.step-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-grid h3 {
  color: var(--text-dark);
}

.steps-grid p {
  color: var(--text-light);
  margin: 0;
}

/* Google Reviews Split */
.reviews-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
}

.review-summary-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 32px 0;
}

.review-summary-block strong {
  font-size: 36px;
  line-height: 1;
}

.review-link-bold {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  text-transform: uppercase;
}

.featured-review-large {
  margin: 0;
  background: var(--bg-light);
  padding: 60px;
  border-radius: 8px;
  position: relative;
}

.quote-icon {
  color: var(--navy);
  margin-bottom: 24px;
}

.featured-review-large blockquote {
  margin: 0 0 32px 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
}

.featured-review-large figcaption {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Services Section */
.services-section {
  background: var(--white);
  padding-top: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  padding: 40px 24px;
  text-align: center;
  transition: background 0.2s;
}

.service-card:hover {
  background: var(--bg-light);
}

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

.service-card h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* Final Split Section */
.final-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.final-split-left {
  background: 
    linear-gradient(90deg, rgba(37, 45, 49, 0.8) 0%, rgba(37, 45, 49, 0.6) 100%),
    url("assets/hero-memorial.jpg") center / cover;
  padding: 100px clamp(40px, 6vw, 100px);
  color: var(--white);
}

.final-split-left h2 {
  color: var(--white);
  max-width: 480px;
  margin-bottom: 40px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.check-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.final-split-right {
  background: var(--navy);
  padding: 100px clamp(40px, 6vw, 100px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.final-split-right h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.final-split-right p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 480px;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  padding: 40px clamp(20px, 5vw, 60px);
  color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a {
  color: var(--white);
  font-size: 14px;
}

.footer-links .sep {
  color: rgba(255, 255, 255, 0.3);
}

.footer-copy {
  font-size: 13px;
  text-align: right;
}

.mobile-conversion-bar {
  display: none;
}

/* Responsive */
@media (max-width: 1200px) {
  .trust-strip-new {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .trust-item:nth-child(2) {
    border-right: none;
    padding-right: 0;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-inner,
  .need-paths,
  .reviews-split,
  .final-split {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero {
    background-position: center, 90% center;
  }
  
  .topbar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .logo {
    max-width: 140px;
    height: auto;
  }

  .header-call-btn {
    padding: 8px 12px;
    min-height: 40px;
    font-size: 11px;
    white-space: nowrap;
  }
  
  .mobile-conversion-bar {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-strip-new {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: none;
    padding-right: 0;
  }
}
