/* Ziqqle legal pages — restyled to match the ORANGE site (en.tattooprogramme.com).
   Only presentation is changed; the legal text is untouched. */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --orange: #FF7B00;
  --orange-dim: rgba(255,123,0,0.12);
  --orange-border: rgba(255,123,0,0.35);
  --bg: #111111;
  --bg-soft: #1a1a1a;
  --card: #292929;
  --text: #d8d8d8;
  --muted: #8f8f8f;
  --line: rgba(255,255,255,0.1);
  --white: #ffffff;
  --max-width: 820px;
}

* { box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.legal-shell {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.legal-header {
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 2px solid var(--orange);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2, h3 { color: var(--white); }

h1 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.5px;
  font-size: clamp(2.1rem, 6.5vw, 3.4rem);
}

h2 {
  margin: 46px 0 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.2px;
  font-size: clamp(1.3rem, 2.8vw, 1.75rem);
}

h3 {
  margin: 28px 0 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
}

p { margin: 0 0 16px; }

strong { color: var(--white); font-weight: 600; }

ul, ol {
  padding-left: 1.35rem;
  margin: 0 0 18px;
}

li { margin: 8px 0; }

li::marker { color: var(--orange); }

a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: #ff9a3d; text-decoration-thickness: 2px; }

.legal-meta {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
}

.notice,
.info-card {
  border: 1px solid var(--orange-border);
  background: var(--orange-dim);
  border-radius: 16px;
  padding: 20px 22px;
  margin: 26px 0;
}

.table-wrap {
  overflow-x: auto;
  margin: 20px 0 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--bg-soft);
}

th, td {
  padding: 15px 17px;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: var(--card);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
}

td { color: var(--text); }

tr:last-child td { border-bottom: 0; }

.legal-footer {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.75;
}

.legal-footer strong { color: var(--white); }

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

.legal-nav a { color: rgba(255,255,255,0.85); text-decoration: none; }
.legal-nav a:hover { color: var(--orange); text-decoration: underline; }

button.inline-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font: inherit;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

button.inline-link:hover { color: var(--orange); }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.1em 0.4em;
  color: var(--white);
}

@media (max-width: 640px) {
  .legal-shell { width: min(100% - 24px, var(--max-width)); padding: 34px 0 52px; }
  .legal-header { margin-bottom: 26px; padding-bottom: 22px; }
  h2 { margin-top: 36px; }
  .notice, .info-card { padding: 16px 17px; border-radius: 14px; }
  th, td { padding: 12px; }
}
