:root {
  --ink: #291a13;
  --muted: #6c5548;
  --faint: #987c69;
  --line: rgba(106, 67, 41, 0.14);
  --paper: #fbf4e8;
  --wash: #f4e3cf;
  --card: rgba(255, 253, 252, 0.86);
  --brand: #c56a3a;
  --brand-deep: #914323;
  --gold: #d7a24c;
  --rose: #b5545f;
  --shadow: 0 26px 80px rgba(145, 67, 35, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 10%, rgba(215, 162, 76, 0.18), transparent 29rem),
    radial-gradient(circle at 8% 82%, rgba(181, 84, 95, 0.09), transparent 32rem),
    linear-gradient(145deg, var(--paper), var(--wash));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-deep); }
.shell { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.brand img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 7px 18px rgba(145, 67, 35, 0.2); }
.nav-links { display: flex; gap: 20px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 700; text-decoration: none; }
.hero {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 70px;
  align-items: center;
  padding: 76px 0 92px;
}
.eyebrow {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.035em; }
h1 { margin: 14px 0 20px; font-size: clamp(48px, 7.5vw, 84px); }
h2 { margin: 0 0 18px; font-size: clamp(30px, 4.5vw, 48px); }
h3 { margin: 0 0 8px; font-size: 19px; }
.lead { max-width: 650px; color: var(--muted); font-size: clamp(18px, 2.2vw, 22px); }
.promise { margin: 24px 0 0; font-weight: 850; color: var(--brand-deep); }
.badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  padding: 8px 13px;
}
.mark {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin: auto;
}
.mark::before, .mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.mark::before {
  inset: 3%;
  background: radial-gradient(circle, rgba(215, 162, 76, 0.25), transparent 68%);
}
.mark::after {
  inset: 18%;
  border: 13px solid rgba(106, 67, 41, 0.11);
  border-top-color: var(--gold);
  border-right-color: var(--brand);
  transform: rotate(-22deg);
  box-shadow: 0 0 54px rgba(197, 106, 58, 0.16);
}
.mark img {
  position: relative;
  z-index: 2;
  width: 132px;
  height: 132px;
  border-radius: 29px;
  box-shadow: var(--shadow);
}
section { padding: 86px 0; border-top: 1px solid var(--line); }
.section-intro { max-width: 720px; color: var(--muted); font-size: 18px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.card {
  padding: 25px;
  border: 1px solid rgba(106, 67, 41, 0.12);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 14px 40px rgba(145, 67, 35, 0.07);
  backdrop-filter: blur(18px);
}
.card p { margin: 0; color: var(--muted); }
.number { color: var(--brand); font-size: 12px; font-weight: 900; letter-spacing: 0.12em; }
.callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  color: #fff8f1;
  background: linear-gradient(125deg, var(--brand-deep), var(--brand), var(--rose));
  box-shadow: var(--shadow);
}
.callout h2 { margin-bottom: 10px; }
.callout p { margin: 0; color: rgba(255, 248, 241, 0.82); }
.price { white-space: nowrap; font-size: 18px; font-weight: 900; }
.prose { max-width: 760px; padding-bottom: 80px; }
.prose h1 { font-size: clamp(38px, 7vw, 62px); }
.prose h2 { margin-top: 38px; font-size: 24px; }
.prose p, .prose li { color: var(--muted); unicode-bidi: plaintext; }
.prose .updated { color: var(--faint); font-size: 14px; }
.locale-bar { display: flex; justify-content: flex-end; }
.language-menu {
  position: relative;
  z-index: 5;
  margin: 8px 0 22px;
}
.language-menu summary {
  width: fit-content;
  margin-inline-start: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
  white-space: nowrap;
}
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu[open] summary { background: var(--card); }
.language-grid {
  display: grid;
  position: absolute;
  inset-inline-end: 0;
  width: min(680px, calc(100vw - 40px));
  max-height: min(62vh, 520px);
  margin-top: 10px;
  overflow: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 12px;
  background: rgba(255, 253, 252, 0.98);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.language-grid a {
  overflow: hidden;
  border-radius: 11px;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.language-grid a:hover,
.language-grid a[aria-current="page"] {
  background: var(--wash);
  color: var(--brand-deep);
}
.contact {
  display: inline-flex;
  margin-top: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--brand);
  color: white;
  font-weight: 800;
  text-decoration: none;
}
footer { padding: 34px 0 50px; border-top: 1px solid var(--line); color: var(--faint); font-size: 13px; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; }
.footer-row div:last-child { display: flex; gap: 16px; }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; gap: 28px; padding: 42px 0 66px; }
  .hero-copy { text-align: center; }
  .lead { margin-inline: auto; }
  .badges { justify-content: center; }
  .mark { width: 260px; grid-row: 1; }
  .mark img { width: 104px; height: 104px; border-radius: 23px; }
  .grid { grid-template-columns: 1fr; }
  .callout { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 520px) {
  .shell { width: min(100% - 28px, 1080px); }
  .nav-links a:first-child { display: none; }
  .language-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-row { flex-direction: column; }
}
