:root {
  --ink: #1a1919;
  --muted: #7a7a7a;
  --line: #d3d5d5;
  --paper: #fafafa;
  --card: #ffffff;
  --accent: #e98b4a;
  --accent-deep: #e76f51;
  --soft: #fff7ef;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", "Lexend", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #1a1919;
  border-bottom: 1px solid #2a2a2a;
}

.site-header-inner,
.page-wrap,
.site-footer-inner {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: transparent;
  padding: 0;
}

.brand img {
  width: 72px;
  height: auto;
  background: transparent;
  filter: none;
}

.brand span {
  font-size: 1rem;
  font-family: "Lexend", "DM Sans", system-ui, sans-serif;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.15rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: #fafafa;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 0;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff !important;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none !important;
  letter-spacing: 0;
  box-shadow: none;
}

.nav-cta:hover,
.btn:hover {
  background: var(--accent);
  color: #fafafa !important;
  filter: none;
}

.page-hero {
  padding: 3rem 0 1.4rem;
}

.page-hero .crumb {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-hero .crumb a { color: var(--muted); }
.page-hero .crumb a:hover { color: var(--accent); }

.page-kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-hero h1 {
  margin: 0 0 0.7rem;
  font-family: "Lexend", "DM Sans", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.page-hero p {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  margin: 1rem 0 2.5rem;
}

.panel h2 {
  margin: 1.7rem 0 0.5rem;
  font-family: "Lexend", "DM Sans", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.panel h2:first-child { margin-top: 0; }
.panel p,
.panel li { color: #4a4a4a; }
.panel ul { margin: 0.4rem 0 0; padding-left: 1.2rem; }
.panel li { margin: 0.35rem 0; }

.faq {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.faq:first-of-type { border-top: 0; padding-top: 0; }
.faq h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-family: "Lexend", "DM Sans", system-ui, sans-serif;
  font-weight: 400;
}
.faq p { margin: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0.5rem 0 1.5rem;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 1.35rem 1.25rem;
}

.contact-card .label {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-card a,
.contact-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
}

.contact-card a:hover { color: var(--accent); }

.map-block {
  margin: 0 0 2.5rem;
  border: 1px solid var(--line);
  background: #fff;
}

.map-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.map-toolbar strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.map-toolbar span {
  color: var(--muted);
  font-size: 0.92rem;
}

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  background: #e8eef4;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: none !important;
}

.contact-box {
  margin-top: 1.6rem;
  padding: 1.1rem 1.2rem;
  background: var(--soft);
  border: 1px solid var(--line);
}

.contact-box strong { display: block; margin-bottom: 0.35rem; }

.cta-band {
  margin: 0 0 3rem;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  background: #1a1919;
  color: #fff;
}

.cta-band h2 {
  margin: 0 0 0.55rem;
  font-family: "Lexend", "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 34rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  padding: 1.4rem 0 2rem;
  color: #1a1919;
  font-size: 0.9rem;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer-inner > span:first-child {
  color: #1a1919;
}

.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--accent); }

.site-credit {
  font-size: 0.85rem;
  color: #1a1919;
}

.site-credit a {
  color: var(--accent) !important;
  text-decoration: none;
  font-weight: 600;
}

.site-credit a:hover {
  color: var(--accent-deep) !important;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .site-header-inner { align-items: flex-start; flex-direction: column; }
  .brand img { width: 64px; }
  .map-frame { aspect-ratio: 4 / 3; }
}
