:root {
  --navy: #0f1f2e;
  --rust: #c0442a;
  --rust-light: #d9553a;
  --cream: #f7f3ee;
  --warm-gray: #e8e2da;
  --mid-gray: #8a8078;
  --text: #1a1410;
  --white: #ffffff;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

/* ── HEADER ── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--rust);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo span { color: var(--rust); }
nav { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
nav a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 3px;
  transition: all 0.2s;
}
nav a:hover, nav a.active { color: var(--white); background: rgba(192,68,42,0.25); }
nav a.header-cta {
  background: var(--rust);
  color: var(--white);
  padding: 8px 16px;
}
nav a.header-cta:hover { background: var(--rust-light); }

/* ── MOBILE NAV ── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
}
@media (max-width: 768px) {
  nav { display: none; }
  .mobile-menu-btn { display: flex; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 4px;
  }
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(192,68,42,0.04) 40px, rgba(192,68,42,0.04) 41px);
}
.hero-inner { position: relative; max-width: 780px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: var(--rust);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 em { color: var(--rust); font-style: normal; }
.hero p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (interior) ── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 52px 24px 48px;
  text-align: center;
  border-bottom: 3px solid var(--rust);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; font-weight: 300; max-width: 560px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--rust);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--rust-light); transform: translateY(-1px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.85);
  color: var(--white);
  padding: 13px 32px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  background: rgba(255,255,255,0.1);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.2); }
.btn-white {
  background: var(--white);
  color: var(--rust);
  padding: 14px 32px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn-white:hover { opacity: 0.92; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--rust); color: var(--white); padding: 14px 24px; }
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.trust-item svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.85); }

/* ── SECTIONS ── */
.section { padding: 72px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); color: var(--white); }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
  display: block;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section-dark h2 { color: var(--white); }

.lead {
  font-size: 1.08rem;
  color: #4a4038;
  max-width: 640px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.75;
}
.section-dark .lead { color: rgba(255,255,255,0.75); }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: var(--cream);
  border: 1px solid var(--warm-gray);
  border-radius: 6px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--rust);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; fill: white; }
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card p { font-size: 0.95rem; color: #5a5048; line-height: 1.65; }
.card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--rust);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--rust);
  color: var(--white);
  padding: 56px 40px;
  border-radius: 6px;
  text-align: center;
}
.cta-block h2 { color: var(--white); margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,0.88); max-width: 500px; margin: 0 auto 28px; }

/* ── TABLE ── */
table { width: 100%; border-collapse: collapse; margin: 24px 0; }
th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
td { padding: 12px 16px; border-bottom: 1px solid var(--warm-gray); font-size: 0.95rem; }
tr:nth-child(even) td { background: var(--white); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--warm-gray); padding: 20px 0; }
.faq-q { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.faq-a { font-size: 0.95rem; color: #4a4038; line-height: 1.7; }

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--mid-gray); }
input, textarea, select {
  border: 1.5px solid var(--warm-gray);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--rust); }
textarea { min-height: 120px; resize: vertical; }

/* ── SERVICE LIST ── */
.service-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.service-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.97rem; line-height: 1.5; }
.service-list li::before {
  content: '✓';
  min-width: 22px;
  height: 22px;
  background: var(--rust);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── AREAS GRID ── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-top: 24px; }
.area-pill { background: var(--navy); color: var(--white); padding: 12px 16px; border-radius: 4px; font-size: 0.9rem; font-weight: 600; text-align: center; }

/* ── PHONE CALLOUT ── */
.phone-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 6px;
  margin: 32px 0;
  text-decoration: none;
}
.phone-callout:hover { background: #162d42; }
.phone-icon {
  width: 44px;
  height: 44px;
  background: var(--rust);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-icon svg { width: 22px; height: 22px; fill: white; }
.phone-text { font-size: 0.82rem; opacity: 0.7; font-weight: 300; }
.phone-number { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; }

/* ── DARK CARD ── */
.dark-card { background: var(--navy); color: white; border-radius: 6px; padding: 28px; }
.dark-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 14px; color: white; }
.dark-card p { font-size: 0.92rem; color: rgba(255,255,255,0.78); line-height: 1.7; }
.dark-card .service-list li { color: rgba(255,255,255,0.85); }

/* ── LIGHT CARD ── */
.light-card { background: var(--cream); border: 1px solid var(--warm-gray); border-radius: 6px; padding: 28px; }
.light-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 14px; }
.light-card p { font-size: 0.95rem; color: #4a4038; line-height: 1.7; }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--navy); padding: 10px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.breadcrumb-inner { max-width: 1100px; margin: 0 auto; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.breadcrumb-inner a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb-inner a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb-inner span { margin: 0 6px; }

/* ── FOOTER ── */
footer { background: #080f16; color: rgba(255,255,255,0.55); padding: 40px 24px; text-align: center; font-size: 0.85rem; }
footer strong { color: rgba(255,255,255,0.85); }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-top: 12px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { margin-top: 16px; font-size: 0.78rem; opacity: 0.5; }
