:root {
  --site-primary: #766219;
  --site-primary-dark: #483000;
  --site-accent: #005d94;
  --site-primary-light: #afa668;
  --site-secondary: #457b55;
  --site-background: #eeead2;
  --site-surface: #fffbec;
  --site-text-primary: #15150d;
  --site-text-secondary: #615f58;
  --site-border: rgba(69, 123, 85, 0.28);
  --bs-body-bg: #eeead2;
  --bs-body-color: #15150d;
  --bs-body-font-family: 'IBM Plex Sans', sans-serif;
  --bs-link-color: #766219;
  --bs-link-hover-color: #483000;
  --type-h1: clamp(2.4rem, 5vw, 3.4rem);
  --type-h2: 2.2rem;
  --type-h3: 1.5rem;
  --type-body: 1.125rem;
  --type-small: 0.95rem;
  --type-eyebrow: 0.78rem;
  --section-pad: clamp(5rem, 8vw, 7rem);
}

body { background: var(--bs-body-bg); color: var(--bs-body-color); font-family: var(--bs-body-font-family); font-size: var(--type-body); line-height: 1.65; }
h1, h2, h3, h4, h5, h6 { font-family: 'IBM Plex Serif', serif; color: var(--site-text-primary); text-wrap: balance; }
.btn-primary { background-color: var(--site-primary); border-color: var(--site-primary); color: #fff; }
.btn-primary:hover, .btn-primary:focus { background-color: var(--site-primary-dark); border-color: var(--site-primary-dark); color: #fff; }
.btn-outline-primary { color: var(--site-primary); border-color: var(--site-primary); background-color: transparent; }
.btn-outline-primary:hover, .btn-outline-primary:focus { background-color: var(--site-primary); border-color: var(--site-primary); color: #fff; }
.bg-primary { background-color: var(--site-primary) !important; }
.text-primary { color: var(--site-primary) !important; }
.border-primary { border-color: var(--site-primary) !important; }
a { color: var(--site-primary); }
a:hover { color: var(--site-primary-dark); }

html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; }
p { color: var(--site-text-secondary); text-wrap: pretty; }

h1, .h1 { font-size: var(--type-h1); line-height: 1.08; letter-spacing: -0.02em; }
h2, .h2 { font-size: var(--type-h2); line-height: 1.15; letter-spacing: -0.015em; }
h3, .h3 { font-size: var(--type-h3); line-height: 1.25; }
.small, small { font-size: var(--type-small); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  font-size: var(--type-eyebrow);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--site-primary-dark);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--site-secondary);
}

.site-navbar {
  background: rgba(238, 234, 210, 0.96);
  border-bottom: 1px solid var(--site-border);
}
.navbar-brand { font-family: 'IBM Plex Serif', serif; font-weight: 700; letter-spacing: -0.01em; color: var(--site-text-primary); }
.navbar-brand:hover { color: var(--site-primary-dark); }
.logo-mark { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; border: 1px solid var(--site-border); }
.nav-link { color: var(--site-text-primary); font-size: 1rem; }
.nav-link:hover, .nav-link:focus { color: var(--site-primary-dark); }
.navbar-toggler { border-color: var(--site-border); border-radius: 8px; }

.btn {
  border-radius: 8px;
  padding: .78rem 1.12rem;
  font-weight: 700;
  box-shadow: none;
  letter-spacing: .01em;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
  border-width: 1px;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: .95rem 1.25rem; border-radius: 8px; }

.form-control, .form-select {
  border-radius: 6px;
  border-color: var(--site-border);
  background-color: var(--site-surface);
  color: var(--site-text-primary);
  box-shadow: none;
}
.form-control:focus, .form-select:focus {
  border-color: var(--site-primary);
  box-shadow: 0 0 0 .18rem rgba(118, 98, 25, .14);
}
.form-label { font-weight: 700; font-size: .98rem; color: var(--site-text-primary); }

.hero-section, .site-section, .page-hero {
  background: var(--site-background);
  border-bottom: 1px solid var(--site-border);
}
.hero-section { padding: clamp(4rem, 7vw, 6.5rem) 0; }
.site-section { padding: var(--section-pad) 0; }
.page-hero { padding: clamp(4rem, 7vw, 5.5rem) 0; }

.hero-copy, .section-copy, .content-measure { max-width: 68ch; }
.hero-image, .section-visual {
  border-radius: 8px;
  border: 1px solid var(--site-border);
  width: 100%;
  object-fit: cover;
  background: var(--site-surface);
}
.hero-image { min-height: 430px; max-height: 560px; }
.section-visual { max-height: 420px; }

.margin-marker { position: relative; }
.margin-marker::before {
  content: "";
  position: absolute;
  left: .75rem;
  top: var(--section-pad);
  bottom: var(--section-pad);
  width: 2px;
  background: var(--site-secondary);
  opacity: .48;
}
.margin-marker > .container { padding-left: clamp(2.5rem, 5vw, 4rem); }

.card {
  border: 1px solid var(--site-border);
  border-radius: 10px;
  background: var(--site-surface);
  box-shadow: none;
}
.service-card { height: 100%; padding: 1.35rem; transition: border-color .18s ease, transform .18s ease; }
.service-card:hover { border-color: rgba(72, 48, 0, .5); transform: translateY(-2px); }
.card-number {
  display: block;
  font-family: 'IBM Plex Serif', serif;
  font-variant-numeric: tabular-nums;
  color: var(--site-primary-dark);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.data-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--site-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--site-surface);
  margin-bottom: 2rem;
}
.data-strip span {
  padding: .9rem 1rem;
  border-right: 1px solid var(--site-border);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--site-text-secondary);
}
.data-strip span:last-child { border-right: 0; }

.contact-panel, .form-panel {
  border: 1px solid var(--site-border);
  border-radius: 10px;
  background: var(--site-surface);
  padding: clamp(1.5rem, 4vw, 2rem);
}
.phone-line { font-family: 'IBM Plex Serif', serif; font-size: clamp(1.8rem, 4vw, 2.55rem); font-variant-numeric: tabular-nums; color: var(--site-text-primary); line-height: 1.1; }
.tabular { font-variant-numeric: tabular-nums; }

.site-footer {
  padding: 3rem 0;
  text-align: center;
  background: var(--site-background);
}
.footer-brand { font-family: 'IBM Plex Serif', serif; font-size: 1.55rem; font-weight: 700; margin-bottom: .8rem; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem 1rem; margin: 1rem 0; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-small { color: var(--site-text-secondary); font-size: var(--type-small); }

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  display: none;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--site-border);
  border-radius: 10px;
  background: var(--site-surface);
  padding: 1rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0; font-size: .98rem; }
.cookie-actions { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; justify-content: flex-end; }

.notice-success {
  display: none;
  border: 1px solid rgba(69, 123, 85, .45);
  border-radius: 8px;
  background: rgba(69, 123, 85, .08);
  color: var(--site-text-primary);
  padding: 1rem;
}
.notice-success.is-visible { display: block; }

@media (max-width: 991.98px) {
  .hero-image { min-height: 300px; }
  .margin-marker::before { left: 1rem; }
  .margin-marker > .container { padding-left: 3rem; }
}

@media (max-width: 575.98px) {
  body { font-size: 1.05rem; }
  .data-strip { grid-template-columns: 1fr; }
  .data-strip span { border-right: 0; border-bottom: 1px solid var(--site-border); }
  .data-strip span:last-child { border-bottom: 0; }
  .cookie-actions { justify-content: flex-start; margin-top: .85rem; }
}
