:root {
  --rose-950: #4f1f32;
  --rose-800: #78354e;
  --rose-650: #a64d70;
  --rose-400: #d78ca8;
  --rose-200: #f0cbd8;
  --rose-100: #f9e8ee;
  --rose-050: #fff7fa;
  --cream: #fffdfb;
  --ink: #30272b;
  --muted: #71646a;
  --line: #ead6de;
  --shadow: 0 18px 55px rgba(79, 31, 50, .10);
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--rose-050);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.67;
}
img { display: block; max-width: 100%; }
a { color: var(--rose-800); }
a:hover { color: var(--rose-950); }
.skip-link {
  position: absolute; left: -9999px; top: 0;
}
.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 99;
  padding: .7rem 1rem; background: white; border: 2px solid var(--rose-800);
}
.site-header {
  background: rgba(255, 247, 250, .95);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: var(--max); margin: auto; padding: .8rem 1.3rem;
  display: flex; gap: 1.4rem; align-items: center; justify-content: space-between;
}
.brand {
  color: var(--rose-950); text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem; line-height: 1.15; font-weight: 700;
  max-width: 350px;
}
.main-nav { display: flex; flex-wrap: wrap; gap: .25rem .9rem; align-items: center; }
.main-nav a { text-decoration: none; font-size: .93rem; font-weight: 700; }
.languages {
  display: inline-flex; border-left: 1px solid var(--line); padding-left: .8rem; gap: .55rem;
}
.languages a[aria-current="page"] { color: var(--rose-950); text-decoration: underline; }
.hero {
  min-height: 71vh;
  display: grid; align-items: end;
  background:
    linear-gradient(90deg, rgba(91,34,56,.48) 0%, rgba(91,34,56,.20) 46%, rgba(255,240,246,.03) 78%),
    url("../images/village.jpg") center 55% / cover no-repeat;
  color: white;
}
.hero-inner {
  width: min(var(--max), 100%); margin: 0 auto; padding: 7rem 1.4rem 4rem;
}
.eyebrow {
  display: inline-block; margin: 0 0 .75rem;
  color: var(--rose-200); text-transform: uppercase;
  letter-spacing: .14em; font-size: .78rem; font-weight: 800;
}
.hero h1, h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--rose-950); line-height: 1.13;
}
.hero h1 {
  max-width: 760px; margin: 0;
  color: white; font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  text-shadow: 0 2px 16px rgba(35, 13, 22, .42);
}
.hero p {
  max-width: 680px; font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin: 1.1rem 0 0;
  text-shadow: 0 2px 12px rgba(35, 13, 22, .45);
}
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.button {
  display: inline-block; padding: .75rem 1.05rem;
  border-radius: 999px; text-decoration: none; font-weight: 800;
  background: var(--rose-650); color: white;
}
.button:hover { background: var(--rose-800); color: white; }
.button.secondary { background: rgba(255,255,255,.93); color: var(--rose-950); }
main section { scroll-margin-top: 90px; }
.section { max-width: var(--max); margin: auto; padding: 5rem 1.4rem; }
.section.compact { padding-top: 3.3rem; padding-bottom: 3.3rem; }
.section h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin: 0 0 1.1rem; }
.lead { font-size: 1.23rem; max-width: 780px; color: #4f4248; }
.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 18px; padding: 1.4rem; box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; font-size: 1.35rem; }
.photo-card {
  background: var(--cream); padding: .65rem;
  border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow);
}
.photo-card img { border-radius: 14px; width: 100%; }
.photo-card figcaption { padding: .7rem .45rem .25rem; color: var(--muted); font-size: .88rem; }
.band { background: var(--rose-100); border-block: 1px solid var(--line); }
.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem); line-height: 1.35;
  color: var(--rose-950); border-left: 5px solid var(--rose-400);
  padding-left: 1.3rem; margin: 2rem 0;
}
.document-list { display: grid; gap: .75rem; margin-top: 1.7rem; }
.document {
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  background: white; border: 1px solid var(--line); border-radius: 14px;
  padding: 1rem 1.15rem; text-decoration: none;
}
.document strong { color: var(--rose-950); }
.document span { color: var(--muted); font-size: .9rem; }
.notice {
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--rose-650);
  padding: 1rem 1.2rem; border-radius: 10px; margin: 1.5rem 0;
}
.site-footer { background: var(--rose-950); color: #f9e8ee; }
.footer-inner {
  max-width: var(--max); margin: auto; padding: 2.5rem 1.4rem;
  display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.site-footer a { color: white; }
.small { font-size: .9rem; color: var(--muted); }
.site-footer .small { color: #e5cbd5; }
.page-hero {
  background: var(--rose-100);
  border-bottom: 1px solid var(--line);
}
.page-hero .section { padding-top: 4rem; padding-bottom: 3.5rem; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 4.2rem); margin: 0; }
@media (max-width: 850px) {
  .header-inner { align-items: flex-start; flex-direction: column; gap: .55rem; }
  .main-nav { gap: .3rem .75rem; }
  .languages { border-left: 0; padding-left: 0; }
  .grid-2, .card-grid { grid-template-columns: 1fr; }
  .hero { min-height: 68vh; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .section { padding: 3.8rem 1rem; }
  .hero-inner { padding-inline: 1rem; }
  .document { align-items: flex-start; flex-direction: column; }
}

.share-section {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
}
.share-section h3 {
  margin: 0 0 .8rem;
  font-size: 1.15rem;
}
.share-links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.share-button {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  padding: .65rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--rose-950);
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(79, 31, 50, .06);
}
.share-button:hover {
  background: var(--rose-100);
  color: var(--rose-950);
}
.share-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: currentColor;
}
