:root {
  color-scheme: light;
  --bg: #faf6ef;
  --surface: rgba(255, 251, 245, 0.92);
  --text: #211b16;
  --muted: #6e6052;
  --line: rgba(117, 93, 56, 0.16);
  --bronze: #9a6f42;
  --bronze-deep: #76502e;
  --shadow: 0 24px 64px rgba(92, 66, 35, 0.12);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 171, 115, 0.14), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 42%, #f7efe3 100%);
  color: var(--text);
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(117, 93, 56, 0.09);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff8ee;
  background: linear-gradient(145deg, var(--bronze), var(--bronze-deep));
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.eyebrow,
.meta {
  color: var(--muted);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(117, 93, 56, 0.14);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.94);
}

.lang-switch a {
  min-width: 44px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.lang-switch .is-active {
  background: rgba(154, 111, 66, 0.12);
  color: var(--bronze-deep);
}

.legal-main {
  padding: 56px 0 88px;
}

.hero-card,
.legal-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 36px;
  margin-bottom: 26px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--bronze);
}

.hero-card h1,
.legal-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-card h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  max-width: 12ch;
}

.hero-card p {
  max-width: 64ch;
  margin: 18px 0 0;
  color: var(--muted);
}

.meta {
  margin-top: 18px;
  font-size: 0.95rem;
}

.legal-stack {
  display: grid;
  gap: 20px;
}

.legal-card {
  padding: 30px;
}

.legal-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.legal-card h3 {
  margin: 22px 0 8px;
  font-size: 1.08rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(154, 111, 66, 0.08);
  border: 1px solid rgba(154, 111, 66, 0.12);
}

.site-footer {
  border-top: 1px solid rgba(117, 93, 56, 0.1);
  background: rgba(255, 250, 242, 0.82);
}

.site-footer__inner {
  padding: 22px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 820px) {
  .hero-card,
  .legal-card {
    border-radius: 24px;
  }

  .hero-card {
    padding: 26px;
  }

  .hero-card h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .site-footer__inner,
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
