:root {
  --bg: #f7f4ef;
  --paper: #ffffff;
  --ink: #1f2933;
  --muted: #64707d;
  --primary: #17324d;
  --primary-2: #244c73;
  --accent: #b78b45;
  --accent-soft: #f1e4ce;
  --line: rgba(31, 41, 51, 0.12);
  --shadow: 0 24px 70px rgba(17, 33, 49, 0.14);
  --radius: 26px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 88px 0; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  background: var(--primary);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 99;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(247, 244, 239, 0.85);
  border-bottom: 1px solid var(--line);
}
.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 12px 30px rgba(23, 50, 77, .22);
}
.brand strong { display: block; font-size: 1rem; }
.brand small { display: block; color: var(--muted); font-size: .78rem; }
.nav-links { display: flex; gap: 10px; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 999px;
}
.nav-links a:hover { background: var(--accent-soft); color: var(--primary); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); margin: 5px 0; }

.hero { position: relative; overflow: hidden; min-height: calc(100vh - 78px); display: grid; align-items: center; }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(183, 139, 69, .28), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(36, 76, 115, .18), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.8), rgba(247,244,239,.92));
  z-index: -2;
}
.hero-bg::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 74px solid rgba(183,139,69,.13);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .85fr; gap: 54px; align-items: center; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .76rem;
}
h1, h2, h3 { line-height: 1.08; margin: 0; color: var(--primary); }
h1, h2 { font-family: "Playfair Display", Georgia, serif; }
h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); letter-spacing: -0.055em; max-width: 820px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -0.035em; }
h3 { font-size: 1.22rem; }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); max-width: 680px; margin: 24px 0 0; }
.hero-actions, .contact-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, #17324d, #24547f); box-shadow: 0 18px 38px rgba(23,50,77,.24); }
.btn-secondary { color: var(--primary); background: white; border-color: var(--line); }
.btn-ghost { color: var(--primary); background: rgba(255,255,255,.42); border-color: rgba(23,50,77,.16); }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-list span, .feature-list span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(183,139,69,.26);
  background: rgba(255,255,255,.64);
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
}
.contact-card, .service-card, .info-panel, details {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.contact-card { padding: 30px; }
.card-header { display: flex; gap: 16px; align-items: center; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.icon-circle, .service-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--primary);
  font-weight: 900;
}
.card-header h2 { font-size: 1.4rem; }
.card-header p { margin: 4px 0 0; color: var(--muted); }
.contact-list { margin: 0; }
.contact-list div { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-list div:last-child { border-bottom: 0; padding-bottom: 0; }
dt { color: var(--accent); font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
dd { margin: 6px 0 0; color: var(--ink); font-weight: 600; }

.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading p:not(.eyebrow), .feature-grid p, .contact-section p { color: var(--muted); font-size: 1.05rem; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 28px; box-shadow: 0 16px 46px rgba(17,33,49,.08); }
.service-card h3 { margin-top: 18px; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.feature-strip { padding: 76px 0; background: var(--primary); color: white; }
.feature-strip h2, .feature-strip .eyebrow { color: white; }
.feature-strip .eyebrow { color: #f0d49d; }
.feature-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 52px; align-items: center; }
.feature-grid p { color: rgba(255,255,255,.78); }
.feature-list { display: flex; flex-wrap: wrap; gap: 12px; }
.feature-list span { background: rgba(255,255,255,.08); color: white; border-color: rgba(255,255,255,.2); }

.faq-layout { display: grid; grid-template-columns: .72fr 1fr; gap: 44px; }
.narrow { margin-bottom: 0; }
.faq-list { display: grid; gap: 14px; }
details { box-shadow: 0 16px 42px rgba(17,33,49,.07); padding: 20px 22px; }
summary { cursor: pointer; font-weight: 900; color: var(--primary); }
details p { color: var(--muted); margin: 12px 0 0; }

.contact-section { background: linear-gradient(180deg, #ffffff 0%, #f7f4ef 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 46px; align-items: center; }
.info-panel { padding: 32px; box-shadow: 0 18px 48px rgba(17,33,49,.08); }
.info-panel p { margin: 12px 0; }
.info-panel a { color: var(--primary); font-weight: 800; }
.site-footer { padding: 26px 0; background: #10263b; color: rgba(255,255,255,.78); }
.footer-grid { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.footer-grid a { color: white; text-decoration: none; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 62px 0; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .hero { min-height: auto; }
  .hero-grid, .cards-grid, .feature-grid, .faq-layout, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 28px; }
  .contact-card { padding: 22px; }
  .cards-grid { gap: 14px; }
  .feature-grid { gap: 30px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .hero-actions .btn, .contact-buttons .btn { width: 100%; }
  .brand strong { font-size: .95rem; }
  .brand-mark { width: 44px; height: 44px; }
}


.local-seo { padding-top: 0; }
.local-card {
  background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(241,228,206,.58));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: 0 18px 55px rgba(17, 33, 49, 0.08);
}
.local-card h2 { margin-top: 0; max-width: 820px; }
.local-card p { max-width: 920px; color: var(--muted); }
