:root {
  --ink: #132019;
  --muted: #5b6a60;
  --line: #dce5df;
  --paper: #ffffff;
  --soft: #f3f8f5;
  --brand: #16694d;
  --brand-dark: #0f4637;
  --accent: #c9972f;
  --footer: #0e211a;
  --shadow: 0 18px 50px rgba(18, 48, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.top-strip {
  color: #fff;
  background: var(--brand-dark);
  font-size: 0.88rem;
}

.top-strip__inner {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 8px 0;
}

.top-strip a {
  overflow-wrap: anywhere;
  text-decoration: none;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  overflow-wrap: anywhere;
}

.brand strong {
  font-size: 1.12rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--brand);
  background: var(--soft);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: 560px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 40, 31, 0.94), rgba(11, 40, 31, 0.62)),
    url("assets/dream-village-hero.png") center / cover;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 44px;
  min-height: 560px;
  padding: 64px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.profile-card h2,
.contact-panel h2,
.site-footer h2 {
  margin: 0;
  line-height: 1.1;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  font-weight: 800;
}

.hero__lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 4px;
}

.button--primary {
  color: #fff;
  background: var(--brand);
}

.button--secondary {
  color: var(--brand-dark);
  background: #fff;
  border-color: #fff;
}

.button--ghost {
  color: var(--brand-dark);
  background: transparent;
  border-color: var(--line);
}

.hero__panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.hero__panel div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.hero__panel span,
.quick-facts dt {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero__panel strong {
  display: block;
  margin-top: 4px;
  font-size: 1.12rem;
}

.profile-band,
.section {
  padding: 72px 0;
}

.section--muted {
  background: var(--soft);
}

.profile-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.profile-card__media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.profile-card__body {
  padding: clamp(28px, 5vw, 56px);
}

.profile-card h2,
.section h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.profile-card p,
.section-lead,
.contact-panel p,
.contact-panel address {
  color: var(--muted);
  font-size: 1.05rem;
}

.quick-facts {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}

.quick-facts div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.quick-facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 26px;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
}

th,
td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  width: 34%;
  color: var(--brand-dark);
  background: #f8fbf9;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.service-grid article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.service-grid h3,
.notice-card h2,
.office-card h2 {
  margin: 0 0 8px;
}

.service-grid p,
.notice-card p,
.office-card p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.office-card,
.notice-card,
.contact-panel {
  padding: clamp(24px, 4vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
}

.office-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 800;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

address {
  font-style: normal;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  padding: 54px 0 34px;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-top: 8px;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.to-top {
  color: #fff;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 28px, 960px);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(3rem, 7vw, 5.4rem);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .masthead {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

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

  .hero__grid,
  .profile-card,
  .two-column,
  .contact-grid,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 10vw, 4.8rem);
  }

  .hero__panel {
    max-width: 460px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-actions {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .top-strip__inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    text-align: center;
  }

  .brand__mark {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.76rem;
  }

  .hero {
    min-height: auto;
    background-position: 58% center;
  }

  .hero__grid {
    min-height: auto;
    padding: 44px 0;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 3.35rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .profile-band,
  .section {
    padding: 48px 0;
  }

  .profile-card__media img {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .contact-actions {
    width: 100%;
  }

  table {
    min-width: 560px;
  }

  th,
  td {
    padding: 14px 16px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .masthead {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand__mark {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  table {
    min-width: 500px;
  }
}
