:root {
  color-scheme: dark;
  --ink: #111416;
  --surface: #1b1f22;
  --surface-raised: #22272a;
  --line: #343a3e;
  --copper: #e4bc8b;
  --copper-deep: #a86c3e;
  --text: #f7f6f3;
  --muted: #aeb0b1;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; background: var(--ink); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.section-shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.site-header { width: min(calc(100% - 40px), var(--max)); min-height: 84px; margin-inline: auto; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 28px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; text-decoration: none; }
.brand img { border-radius: 12px; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-size: 1rem; letter-spacing: .02em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; }
nav { display: flex; gap: 24px; }
nav a, .text-link { color: var(--muted); text-decoration: none; font-weight: 650; }
nav a:hover, .text-link:hover { color: var(--text); }
.language-switch { display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 999px; }
.language-switch button { border: 0; border-radius: 999px; padding: 7px 10px; background: transparent; color: var(--muted); font: inherit; font-size: .76rem; font-weight: 800; cursor: pointer; }
.language-switch button[aria-pressed="true"] { background: var(--copper); color: #21180f; }

.hero { min-height: 680px; display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: clamp(44px, 7vw, 92px); padding-block: 88px 76px; }
.hero-copy { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 14px; color: var(--copper); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; letter-spacing: -.03em; line-height: 1.08; }
h1 { max-width: 650px; margin-bottom: 24px; font-size: clamp(3rem, 6vw, 5.9rem); }
h2 { margin-bottom: 18px; font-size: clamp(2.15rem, 4vw, 4.25rem); }
h3 { margin-bottom: 10px; font-size: 1.35rem; }
.hero-lead, .section-heading > p:last-child { max-width: 650px; color: var(--muted); font-size: clamp(1.02rem, 1.8vw, 1.22rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.primary-button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 22px; border-radius: 16px; background: var(--copper); color: #21180f; font-weight: 800; text-decoration: none; box-shadow: 0 12px 35px rgba(228, 188, 139, .12); }
.primary-button:hover { background: #f0c99a; transform: translateY(-1px); }
.fine-print { max-width: 520px; margin-top: 28px; color: #85898b; font-size: .84rem; }
.hero-art { position: relative; }
.hero-art::before { content: ""; position: absolute; inset: -16%; z-index: -1; background: radial-gradient(circle, rgba(168, 108, 62, .18), transparent 66%); filter: blur(20px); }
.hero-art img { width: 100%; border: 1px solid var(--line); border-radius: 28px; box-shadow: 0 40px 100px rgba(0, 0, 0, .42); }

.feature-section { padding-block: 90px 120px; }
.section-heading { max-width: 800px; margin-bottom: 46px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-grid article { min-height: 240px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(150deg, var(--surface-raised), var(--surface)); }
.feature-grid p { color: var(--muted); }
.feature-index { display: inline-block; margin-bottom: 42px; color: var(--copper); font-size: .75rem; font-weight: 850; letter-spacing: .14em; }

.gallery-section {
  padding-block: 92px 116px;
  background:
    radial-gradient(circle at 14% 18%, rgba(168, 108, 62, .12), transparent 32rem),
    #0c0f10;
  border-block: 1px solid #24282a;
}
.gallery-heading { margin-bottom: 38px; }
.gallery-track {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  padding: 0;
  overflow: visible;
  counter-reset: gallery-item;
}
.gallery-track figure {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 10px 10px 18px;
  overflow: hidden;
  counter-increment: gallery-item;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(155deg, #23282b, #15191b 72%);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .26);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.gallery-track figure::before {
  content: counter(gallery-item, decimal-leading-zero);
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 30px;
  padding-inline: 9px;
  border: 1px solid rgba(228, 188, 139, .45);
  border-radius: 999px;
  background: rgba(12, 15, 16, .82);
  color: var(--copper);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  backdrop-filter: blur(10px);
}
.gallery-track figure:hover {
  transform: translateY(-5px);
  border-color: rgba(228, 188, 139, .58);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .38);
}
.gallery-track img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border: 1px solid #3a3028;
  border-radius: 20px;
  background: #111416;
}
.gallery-track figcaption {
  min-height: 58px;
  margin: 0;
  padding: 15px 10px 0;
  color: var(--text);
  font-size: .95rem;
  font-weight: 720;
  line-height: 1.35;
}

.support-section { display: flex; align-items: end; justify-content: space-between; gap: 56px; padding-block: 112px; }
.support-section h2 { max-width: 680px; margin-bottom: 14px; }
.support-section p:last-child { color: var(--muted); }
.support-links { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.site-footer { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }

.policy-main { padding-block: 76px 110px; }
.policy-hero { max-width: 820px; margin-bottom: 52px; }
.policy-hero h1 { font-size: clamp(2.7rem, 6vw, 5.5rem); }
.policy-meta { color: var(--muted); }
.policy-card { max-width: 900px; padding: clamp(26px, 5vw, 54px); border: 1px solid var(--line); border-radius: 26px; background: var(--surface); }
.policy-card section + section { margin-top: 42px; padding-top: 36px; border-top: 1px solid var(--line); }
.policy-card h2 { font-size: clamp(1.5rem, 2.4vw, 2.25rem); }
.policy-card h3 { margin-top: 28px; }
.policy-card p, .policy-card li { color: #c5c6c7; }
.policy-card li + li { margin-top: 9px; }
[data-language-panel][hidden] { display: none; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { min-height: 0; grid-template-columns: 1fr; padding-block: 70px; }
  .hero-art { order: -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-section { align-items: flex-start; flex-direction: column; }
  .support-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .section-shell, .site-header { width: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 74px; gap: 10px; }
  .brand small { display: none; }
  .brand img { width: 38px; height: 38px; }
  .hero { gap: 38px; padding-block: 48px 68px; }
  h1 { font-size: clamp(2.65rem, 14vw, 4.15rem); }
  .hero-art img { border-radius: 18px; }
  .feature-section, .gallery-section { padding-block: 70px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 210px; }
  .gallery-track { width: min(calc(100% - 28px), 360px); grid-template-columns: 1fr; gap: 22px; }
  .gallery-track figure { padding: 8px 8px 16px; border-radius: 24px; }
  .gallery-track figure::before { top: 20px; right: 20px; }
  .gallery-track img { border-radius: 17px; }
  .support-section { padding-block: 76px; }
  .support-links { width: 100%; align-items: stretch; flex-direction: column; }
  .site-footer { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
