:root {
  --bg: #f5f4f2;
  --surface: #ffffff;
  --soft: #ece9e6;
  --ink: #252323;
  --muted: #6e6868;
  --accent: #6d114f;
  --accent-dark: #5d1520;
  --line: #ddd8d4;
  --radius: 1.25rem;
  --shadow: 0 1rem 3rem rgba(66, 40, 44, 0.08);
  --wrap: 72rem;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 20rem;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }
button,
a { -webkit-tap-highlight-color: transparent; }

.wrap {
  width: min(calc(100% - 2rem), var(--wrap));
  margin-inline: auto;
}

.narrow { max-width: 48rem; }

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(122, 31, 43, 0.09);
  background: rgba(245, 244, 242, 0.94);
  backdrop-filter: blur(0.8rem);
}

.header-inner {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;

    text-decoration: none;
    line-height: 1.05;
}

.logo {
    grid-column: 1;
    grid-row: 1 / 3;
}

.logo img {
    display: block;
    width: 52px;
    height: auto;
}

.brand-name {
    grid-column: 2;
    grid-row: 1;
}

.brand-role {
    grid-column: 2;
    grid-row: 2;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-role {
  margin-top: 0.3rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-content: center;
  gap: 0.28rem;
  border: 0;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
}

.menu-toggle span {
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
}

.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  left: 1rem;
  right: 1rem;
  display: none;
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.site-nav.is-open { display: grid; }

.site-nav a {
  padding: 0.85rem 1rem;
  border-radius: 0.7rem;
  text-decoration: none;
  font-weight: 700;
}

.site-nav a:focus-visible,
.site-nav a:hover {
  background: var(--soft);
  color: var(--accent);
}

.hero { padding: 3.5rem 0 2.5rem; }

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 { line-height: 1.08; }

h1 {
  max-width: 12ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.7rem, 11vw, 5.7rem);
  letter-spacing: -0.055em;
}

h1 span {
  display: block;
  color: var(--accent);
}

h2 {
  max-width: 18ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 8vw, 3.8rem);
  letter-spacing: -0.045em;
}

h3 { font-size: 1.35rem; }

.hero-lead,
.section-intro {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible { background: var(--accent-dark); }

.btn-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-note {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-visual { min-height: 23rem; }

.portrait-placeholder {
  min-height: 23rem;
  height: 100%;
  display: grid;
  place-content: center;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.portrait-placeholder span {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.portrait-placeholder small {
  margin-top: 0.4rem;
  opacity: 0.72;
}

.section { padding: 4.5rem 0; }
.section-soft { background: var(--soft); }

.prose {
  color: var(--muted);
  font-size: 1.08rem;
}

.prose p + p { margin-top: 1.35rem; }

.cards {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.card-number {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.card h3 { margin: 1.4rem 0 0.75rem; }

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.notice {
  margin: 1.5rem 0 0;
  padding: 1rem;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-size: 0.9rem;
}

.experience {
  background: var(--accent);
  color: #fff;
}

.stats {
  display: grid;
  gap: 1rem;
}

.stat {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.22);
}

.stat:last-child { border-bottom: 0; }

.stat strong {
  display: block;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat span {
  display: block;
  margin-top: 0.55rem;
  opacity: 0.82;
}

.zone-grid {
  display: grid;
  gap: 2rem;
}

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.zone-list span {
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 750;
}

.zone-card {
  align-self: start;
  padding: 1.7rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.zone-card-label {
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.66);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.zone-card h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.text-link {
  color: #fff;
  font-weight: 850;
}

.contact {
  background: var(--surface);
  text-align: center;
}

.contact-inner { max-width: 50rem; }
.contact h2 { margin-inline: auto; }

.phone {
  display: inline-block;
  margin: 1rem 0;
  color: var(--accent);
  font-size: clamp(2.1rem, 10vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.contact-small {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 2rem 0 6rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-inner p { margin-bottom: 0; }

/* =========================
   VILLAGES
   ========================= */

.villages {
  background: var(--surface);
}

.villages .section-kicker {
  margin-bottom: 0.8rem;
}

.villages h2 {
  margin-bottom: 2.5rem;
}

.villages-group + .villages-group {
  margin-top: 2rem;
}

.villages-group h3 {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.villages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.villages-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.7rem 1rem;

  border: 1px solid var(--line);
  border-radius: 999px;

  background: var(--bg);
  color: var(--ink);

  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;

  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.villages-list span:hover {
  border-color: var(--accent);
  background: var(--surface);
  color: var(--accent);
}

.villages-note {
  margin: 2.5rem 0 0;
  padding: 1.2rem 1.4rem;

  border-left: 3px solid var(--accent);
  background: var(--soft);

  color: var(--muted);
  font-size: 0.95rem;
}

/* TABLET / DESKTOP */

@media (min-width: 48rem) {

  .villages-group {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .villages-group h3 {
    margin: 0;
    padding-top: 0.9rem;
  }
}

.mobile-call {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 1rem 2.5rem rgba(65, 17, 24, 0.26);
}

@media (min-width: 48rem) {
  .wrap { width: min(calc(100% - 3rem), var(--wrap)); }
  .menu-toggle { display: none; }

  .site-nav {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a { padding-inline: 0.8rem; }
  .hero { padding: 5rem 0; }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 4rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .btn { min-width: 12rem; }
  .cards,
  .stats { grid-template-columns: repeat(3, 1fr); }

  .stat {
    padding: 1rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.22);
    border-bottom: 0;
  }

  .stat:last-child { border-right: 0; }

  .zone-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
  }

  .zone-card { padding: 2.4rem; }

@media (min-width: 48rem) {
    .footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
        align-items: center;
    }

    .footer-inner > :nth-child(2) {
        text-align: center;
    }

    .footer-inner > :nth-child(3) {
        text-align: right;
    }
}

  .mobile-call { display: none; }
  .site-footer { padding-bottom: 2rem; }
}

@media (min-width: 75rem) {
  .hero {
    min-height: calc(100svh - 4.5rem);
    display: grid;
    align-items: center;
  }

  .section { padding: 7rem 0; }
  .card { padding: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
