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

:root {
  --gold: #E8AC1E;
  --gold-dark: #BA7517;
  --text: #1A1A18;
  --text-secondary: #4A4A46;
  --text-muted: #8A8A85;
  --bg: #FEFDFB;
  --surface: #FFFFFF;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);
  --radius: 6px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 0.5px solid var(--border-strong);
  padding: 0 32px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
}

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

.nav-cta {
  background: var(--text) !important;
  color: var(--bg) !important;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.mobile-panel {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 24px 32px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-panel.open { display: flex; }

.mobile-panel a {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--border-strong);
}

.mobile-panel .nav-cta {
  display: inline-block;
  text-align: center;
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 15px;
  border: none;
}

/* PAGE HERO */
.page-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 32px 0;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
}

.hero-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
  margin-top: 28px;
}

.inline-image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 22px 0;
}

/* PHONE + TAGLINE */
.phone-row { margin: 28px 0 6px; }

.phone-highlight {
  display: inline-block;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--text);
  text-decoration: none;
  background: var(--gold);
  padding: 2px 10px;
  line-height: 1.3;
}

.hero-tag {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  margin: 14px 0 24px;
}

.lead-text {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 14px 0 24px;
}

/* SECTIONS */
main { max-width: 900px; margin: 0 auto; padding: 0 32px 40px; }

section { margin-bottom: 40px; }

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 14px;
  display: inline-block;
}

h2.highlight {
  background: var(--gold);
  padding: 2px 10px;
}

h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 20px 0 8px;
}

p { color: var(--text-secondary); margin-bottom: 12px; }

ul, ol { margin: 8px 0 12px 22px; color: var(--text-secondary); }
li { margin-bottom: 6px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.service-card {
  background: var(--surface);
  border: 0.5px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none;
  display: block;
}

.service-card h3 { margin-top: 0; color: var(--text); }
.service-card p { font-size: 13px; margin-bottom: 0; }

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.area-card {
  background: var(--surface);
  border: 0.5px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 18px;
}

.area-card h3 { margin-top: 0; }
.area-card p { font-size: 13px; margin-bottom: 0; }

/* CTA BAND */
.cta-band {
  border-top: 0.5px solid var(--border-strong);
  border-bottom: 0.5px solid var(--border-strong);
  padding: 32px 0;
  text-align: left;
  margin: 40px 0;
}

.cta-band h2 { margin-bottom: 8px; }
.cta-band p { margin-bottom: 16px; }

.phone-cta {
  display: inline-block;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--text);
  text-decoration: none;
  background: var(--gold);
  padding: 3px 12px;
}

/* FAQ ACCORDION */
details {
  border-bottom: 0.5px solid var(--border-strong);
  padding: 14px 0;
}

summary {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  float: right;
  color: var(--gold-dark);
  font-weight: 700;
}

details[open] summary::after { content: '\2212'; }

details p { margin-top: 10px; font-size: 13.5px; }

.faq-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 28px 0 4px;
}

/* CONTACT FORM */
.contact-form {
  background: var(--surface);
  border: 0.5px solid var(--border-strong);
  border-radius: 12px;
  padding: 26px;
  max-width: 480px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
label { font-size: 12px; font-weight: 500; color: var(--text-secondary); }
input, textarea { font-family: var(--sans); font-size: 13px; color: var(--text); background: var(--bg); border: 0.5px solid var(--border-strong); border-radius: var(--radius); padding: 9px 12px; outline: none; width: 100%; }
input:focus, textarea:focus { border-color: var(--gold-dark); }
textarea { height: 90px; resize: none; }
.submit-btn { width: 100%; background: var(--text); color: var(--bg); font-family: var(--sans); font-size: 14px; font-weight: 600; padding: 12px; border-radius: 999px; border: none; cursor: pointer; }
.consent-text { font-size: 11px; color: var(--text-muted); margin-top: 10px; }

/* FOOTER */
footer {
  border-top: 0.5px solid var(--border);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.footer-copy {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.footer-phone {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .menu-toggle { display: flex; }
  .page-hero { padding: 32px 20px 0; }
  main { padding: 0 20px 28px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 14px; text-align: center; }
}
