:root {
  --ink: #242321;
  --muted: #6a665f;
  --line: #ddd5c9;
  --paper: #fbfaf6;
  --soft: #f1eee7;
  --brand: #9a6a3d;
  --brand-dark: #68472d;
  --sage: #667762;
  --sage-soft: #e8eee6;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfaf6 0%, #f4f1eb 58%, #fbfaf6 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  border-bottom: 1px solid rgba(222, 216, 205, .88);
  background: rgba(251, 250, 247, .94); backdrop-filter: blur(16px);
}
.nav, .section, .footer-inner { width: min(1040px, calc(100% - 32px)); margin: 0 auto; }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 7px; border: 1px solid var(--line); }
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong, h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; letter-spacing: 0; }
.brand-copy strong { font-size: 19px; white-space: nowrap; }
.brand-copy span, .brand-copy em { color: var(--muted); font-size: 11px; font-style: normal; }
.brand-copy span { letter-spacing: .13em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--brand-dark); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border: 1px solid transparent; border-radius: 6px; font-size: 14px; font-weight: 700; }
.button-primary { color: var(--white); background: var(--brand-dark); }
.button-secondary { color: var(--brand-dark); background: var(--white); border-color: var(--line); }
.button:focus-visible, a:focus-visible { outline: 3px solid rgba(154, 106, 61, .32); outline-offset: 3px; }
.hero { padding: 72px 0 52px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr); gap: 48px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--sage); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.12; font-weight: 500; }
h1 { font-size: clamp(42px, 6vw, 66px); max-width: 760px; }
h2 { font-size: clamp(30px, 4vw, 43px); }
h3 { font-size: 25px; }
.lead { max-width: 700px; margin: 24px 0 0; color: #4f4c47; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-card, .detail-card, .faq-item, .contact-card { border: 1px solid var(--line); border-radius: 8px; background: rgba(255, 255, 255, .83); }
.hero-card { padding: 29px; }
.hero-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 5px; }
.hero-card p { margin: 18px 0 0; color: var(--muted); }
.section { padding: 52px 0; }
.section-head { max-width: 760px; }
.section-head p { max-width: 720px; margin: 18px 0 0; color: var(--muted); font-size: 17px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.detail-card { padding: 25px; }
.detail-card p { margin: 13px 0 0; color: var(--muted); }
.detail-card strong { color: var(--brand-dark); }
.band { margin-top: 28px; padding: 34px; background: var(--sage-soft); border-top: 1px solid rgba(102, 119, 98, .2); border-bottom: 1px solid rgba(102, 119, 98, .2); }
.band-inner { width: min(1040px, calc(100% - 32px)); margin: 0 auto; display: grid; grid-template-columns: .5fr 1.5fr; gap: 28px; align-items: start; }
.band-inner p { margin: 0; color: #465247; font-size: 18px; }
.content { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 46px; margin-top: 30px; }
.content-main > * + * { margin-top: 26px; }
.content-main p, .content-main li { color: #4f4c47; }
.content-main ul { padding-left: 21px; }
.content-main li + li { margin-top: 9px; }
.side-note { align-self: start; position: sticky; top: 102px; padding: 25px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.side-note p { color: var(--muted); }
.faq-list { margin-top: 30px; display: grid; gap: 10px; }
.faq-item { padding: 20px 22px; }
.faq-item summary { cursor: pointer; font-weight: 800; color: var(--brand-dark); }
.faq-item p { margin: 14px 0 0; color: var(--muted); }
.contact-card { padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.contact-card p { max-width: 650px; margin: 12px 0 0; color: var(--muted); }
footer { margin-top: 42px; padding: 24px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; gap: 15px; }
@media (max-width: 760px) {
  .nav { min-height: 66px; }
  .nav-links a:not(.language-link):not(.button) { display: none; }
  .nav-links { gap: 10px; }
  .nav-links .button { min-height: 38px; padding: 0 12px; }
  .brand-copy span, .brand-copy em { display: none; }
  .hero, .content, .band-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero { padding-top: 45px; }
  .grid { grid-template-columns: 1fr; }
  .side-note { position: static; }
  .contact-card, .footer-inner { align-items: flex-start; flex-direction: column; }
}
