:root {
  --brand: #8f0d18;
  --brand-dark: #6f0911;
  --accent: #d8b25a;
  --text: #222;
  --muted: #5c5c5c;
  --bg: #fff;
  --bg-soft: #f8f6f3;
  --card: #ffffff;
  --border: #e5dfd7;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: .75rem 1rem;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: var(--text);
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-text strong {
  font-family: "Marcellus", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
}
.brand-text span {
  font-size: .95rem;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: .6rem;
  padding: .6rem .8rem;
  font: inherit;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-list a {
  color: var(--text);
  font-weight: 500;
}
.nav-list a[aria-current="page"] {
  color: var(--brand);
}

.hero {
  background:
    linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)),
    url('images/divider.jpg') center/cover no-repeat;
  padding: 5rem 0 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--brand);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 1rem;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  line-height: 1.15;
}
.hero .subhead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.hero-copy p:last-of-type { margin-bottom: 0; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.75rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .9rem 1.3rem;
  border-radius: .7rem;
  border: 1px solid var(--brand);
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  transition: .2s ease;
}
.button:hover { text-decoration: none; transform: translateY(-1px); }
.button-primary {
  background: var(--brand);
  color: #fff;
}
.button-primary:hover { background: var(--brand-dark); }
.button-secondary {
  background: #fff;
  color: var(--brand);
}
.hero-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.hero-card img {
  width: min(100%, 420px);
  margin: 0 auto;
}

.consult-banner {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 2.2rem 0;
}
.consult-banner h2 {
  margin: 0 0 .5rem;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.consult-banner p { margin: 0 0 1rem; }
.consult-banner .button {
  border-color: #fff;
  background: #fff;
  color: var(--brand);
}

.section {
  padding: 4.5rem 0;
}
.section-alt {
  background: var(--bg-soft);
}
.section-title {
  text-align: center;
  margin: 0 0 .75rem;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}
.section-intro {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--muted);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.card h3 {
  margin-top: 0;
  font-size: 1.25rem;
  line-height: 1.35;
}
.card ul {
  margin: .75rem 0 0;
  padding-left: 1.15rem;
}
.card li + li { margin-top: .25rem; }

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: .9rem;
  padding: 1.2rem 1.2rem 1rem;
}
.faq-item h3 {
  margin: 0 0 .5rem;
  font-size: 1.1rem;
}
.faq-item p { margin: 0; color: var(--muted); }

.consult-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.consult-box h2 {
  margin-top: 0;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  text-align: center;
}
.consult-box p.lead {
  margin: 0 0 1rem;
  color: var(--muted);
}
.consult-box ul {
  padding-left: 1.2rem;
}
#paypal-container-2DXS24WF7KNAS {
  margin-top: 1.25rem;
  min-height: 45px;
}

.site-footer {
  background: var(--brand);
  color: #fff;
  padding: 2.5rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
.footer-grid img {
  width: 96px;
  height: auto;
}
.site-footer p {
  margin: 0;
  text-align: center;
}
.site-footer a { color: #fff; }
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.35);
  text-align: center;
  font-size: .95rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 3.5rem;
  }
  .hero-card { order: -1; }
  .footer-grid img { margin: 0 auto; }
}

@media (max-width: 720px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: relative;
  }
  .nav-list {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + .75rem);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: .8rem;
    box-shadow: var(--shadow);
    min-width: 220px;
    padding: .5rem;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-list.open { display: flex; }
  .nav-list a {
    display: block;
    padding: .65rem .75rem;
    border-radius: .5rem;
  }
  .nav-list a:hover { background: var(--bg-soft); text-decoration: none; }
}


.consult-panel {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.site-footer {
  background: var(--brand);
  color: #fff;
  padding: 2.25rem 0 1rem;
}
.site-footer a { color: #fff; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-brand { color: #fff; }
.site-footer .brand-text span { color: rgba(255,255,255,.86); }
.footer-contact {
  text-align: right;
}
.footer-contact p {
  margin: 0 0 .65rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.25);
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
  color: rgba(255,255,255,.9);
}

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  .nav-list {
    display: none;
    position: absolute;
    right: 1rem;
    top: 70px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: .85rem;
    box-shadow: var(--shadow);
    padding: .75rem;
    min-width: 220px;
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
  }
  .nav-list.is-open { display: flex; }
  .nav-list a {
    display: block;
    width: 100%;
    padding: .6rem .5rem;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 4rem 0 3rem;
  }
  .hero-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    display: grid;
  }
  .service-grid {
    display: grid;
  }
  .footer-contact {
    text-align: left;
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .button {
    width: 100%;
  }
}
