/*
  VERO Public Site — shared design system.
  One canonical stylesheet for every backend/public/*.html page (index, index-eng,
  login, order*, plans). Dark mode is the default; light mode activates via
  <html data-theme="light">, set by theme.js before first paint to avoid a flash.
*/

:root,
:root[data-theme="dark"] {
  --ink: #0D0C0A;
  --ink-raised: #17150F;
  --ink-card: #1D1A13;
  --line: #2E2A1F;
  --line-soft: #221F17;
  --paper: #F3EEE3;
  --paper-dim: #B8B2A0;
  --gold: #C9A24B;
  --gold-bright: #E8C877;
  --gold-dim: #8A7440;
  --espresso: #2B1D0E;
  --success: #6FA37A;
  --danger: #D97A6C;
  --overlay: rgba(13,12,10,0.72);
  --shadow-color: rgba(0,0,0,0.6);
}

:root[data-theme="light"] {
  --ink: #FAF7EF;
  --ink-raised: #FFFFFF;
  --ink-card: #FFFFFF;
  --line: #E5DDC8;
  --line-soft: #EFE9D8;
  --paper: #211C0F;
  --paper-dim: #726A57;
  --gold: #A6812E;
  --gold-bright: #8C6A20;
  --gold-dim: #C9BFA0;
  --espresso: #2B1D0E;
  --success: #3E8A55;
  --danger: #C24A3A;
  --overlay: rgba(250,247,239,0.78);
  --shadow-color: rgba(120,105,60,0.18);
}

:root {
  --radius: 16px;
  --radius-sm: 10px;
  --serif: "Cairo", sans-serif;
  --mono: "SF Mono", "Cascadia Code", Consolas, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.65;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
::selection { background: var(--gold); color: var(--espresso); }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- ambient texture / premium mesh ---------- */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(720px circle at 15% -5%, rgba(201,162,75,0.14), transparent 60%),
    radial-gradient(600px circle at 100% 15%, rgba(201,162,75,0.07), transparent 55%);
  transition: opacity 0.35s var(--ease);
}
:root[data-theme="light"] body::before {
  background:
    radial-gradient(720px circle at 15% -5%, rgba(166,129,46,0.10), transparent 60%),
    radial-gradient(600px circle at 100% 15%, rgba(166,129,46,0.06), transparent 55%);
}

/* ---------- nav ---------- */
.navbar {
  position: sticky; top: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 5%;
  background: var(--overlay);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.logo-img { height: 34px; width: auto; display: block; }
:root[data-theme="light"] .logo-img { filter: none; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a.nav-anchor { text-decoration: none; color: var(--paper-dim); font-size: 13.5px; font-weight: 500; transition: color 0.2s var(--ease); }
.nav-links a.nav-anchor:hover { color: var(--gold-bright); }
.nav-utility { display: flex; align-items: center; gap: 14px; }
.lang-toggle { display: flex; gap: 2px; background: var(--ink-raised); border: 1px solid var(--line); border-radius: 20px; padding: 3px; }
.lang-toggle a { text-decoration: none; font-size: 11px; padding: 4px 10px; border-radius: 16px; color: var(--paper-dim); font-family: var(--mono); letter-spacing: 0.02em; }
.lang-toggle a.active { background: var(--gold); color: var(--espresso); font-weight: 700; }

/* ---------- theme switcher ---------- */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink-raised); border: 1px solid var(--line);
  color: var(--gold-bright); cursor: pointer; font-size: 14px;
  transition: all 0.2s var(--ease);
}
.theme-toggle:hover { border-color: var(--gold-dim); transform: translateY(-1px); }
.theme-toggle i { pointer-events: none; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 22px; border-radius: 11px; font-weight: 700; font-size: 13.5px; cursor: pointer; transition: all 0.22s var(--ease); border: none; text-decoration: none; white-space: nowrap; font-family: var(--serif); }
.btn-gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: var(--espresso); box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 8px 22px -8px rgba(201,162,75,0.55); }
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 12px 28px -8px rgba(201,162,75,0.65); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--paper); }
.btn-ghost:hover { border-color: var(--gold-dim); color: var(--gold-bright); }
.btn-lg { padding: 14px 30px; font-size: 15px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* ---------- hero ---------- */
.hero { position: relative; z-index: 1; padding: 96px 5% 80px; overflow: hidden; }
.hero-glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(46% 60% at 50% 0%, rgba(201,162,75,0.22), transparent 70%),
    radial-gradient(30% 40% at 85% 20%, rgba(201,162,75,0.12), transparent 70%),
    radial-gradient(30% 40% at 15% 30%, rgba(201,162,75,0.08), transparent 70%);
}
:root[data-theme="light"] .hero-glow {
  background:
    radial-gradient(46% 60% at 50% 0%, rgba(166,129,46,0.16), transparent 70%),
    radial-gradient(30% 40% at 85% 20%, rgba(166,129,46,0.09), transparent 70%),
    radial-gradient(30% 40% at 15% 30%, rgba(166,129,46,0.06), transparent 70%);
}
.hero-mesh {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(60% 55% at 50% 20%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(60% 55% at 50% 20%, #000 0%, transparent 75%);
}
.hero-orb {
  position: absolute; border-radius: 50%; z-index: -1; pointer-events: none;
  background: radial-gradient(circle, rgba(232,200,119,0.35), transparent 70%);
  filter: blur(2px); animation: orbFloat 12s ease-in-out infinite;
}
@keyframes orbFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; max-width: 1180px; margin: 0 auto; }
.hero-copy { text-align: start; }
.hero-copy .hero-actions, .hero-copy .trust-strip { justify-content: flex-start; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; animation: fadeUp 0.7s var(--ease) forwards; }
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.16s; }
.reveal-3 { animation-delay: 0.27s; }
.reveal-4 { animation-delay: 0.38s; }
.reveal-5 { animation-delay: 0.49s; }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; } }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--gold-bright); background: rgba(201,162,75,0.1); border: 1px solid rgba(201,162,75,0.25); padding: 6px 16px; border-radius: 30px; margin-bottom: 26px; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); }
.hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 20px; text-wrap: balance; }
.hero h1 .accent { color: var(--gold-bright); position: relative; }
.hero p.lede { font-size: 1.08rem; color: var(--paper-dim); max-width: 480px; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 26px; font-size: 12.5px; color: var(--paper-dim); }
.trust-strip span { display: inline-flex; align-items: center; gap: 7px; }
.trust-strip i { color: var(--gold); }

/* ---------- hero visual: floating browser mockup ---------- */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 380px; }
.browser-mock {
  position: relative; width: 100%; max-width: 420px; background: var(--ink-card);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.55), 0 1px 0 rgba(255,255,255,0.04) inset;
  animation: floatCard 7s ease-in-out infinite;
}
:root[data-theme="light"] .browser-mock { box-shadow: 0 40px 80px -30px rgba(120,105,60,0.28), 0 1px 0 rgba(255,255,255,0.6) inset; }
@keyframes floatCard { 0%, 100% { transform: translateY(0) rotate(-1.2deg); } 50% { transform: translateY(-14px) rotate(0.6deg); } }
@media (prefers-reduced-motion: reduce) { .browser-mock { animation: none; } }
.browser-mock .chrome { display: flex; align-items: center; gap: 6px; padding: 12px 14px; border-bottom: 1px solid var(--line); background: var(--ink-raised); }
.browser-mock .chrome .dot-btn { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.browser-mock .chrome .url-pill { flex: 1; margin-inline-start: 8px; height: 20px; border-radius: 6px; background: var(--ink); border: 1px solid var(--line); }
.browser-mock .content { padding: 22px 20px 26px; }
.browser-mock .skeleton-hero { height: 14px; width: 70%; border-radius: 5px; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); opacity: 0.8; margin-bottom: 10px; }
.browser-mock .skeleton-hero.short { width: 45%; opacity: 0.5; background: var(--line); margin-bottom: 20px; }
.browser-mock .skeleton-row { display: flex; gap: 10px; margin-bottom: 10px; }
.browser-mock .skeleton-box { flex: 1; height: 56px; border-radius: 10px; background: var(--ink-raised); border: 1px solid var(--line); }
.browser-mock .skeleton-box.accent { border-color: rgba(201,162,75,0.4); background: linear-gradient(165deg, rgba(201,162,75,0.14), var(--ink-raised)); }
.float-chip {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: var(--ink-card); border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 14px; font-size: 12px; font-weight: 600; color: var(--paper);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5); animation: floatChip 6s ease-in-out infinite;
}
:root[data-theme="light"] .float-chip { box-shadow: 0 20px 40px -20px rgba(120,105,60,0.25); }
@keyframes floatChip { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
.float-chip i { color: var(--success); }
.float-chip.chip-top { top: -18px; inset-inline-end: -14px; animation-delay: -2s; }
.float-chip.chip-bottom { bottom: -16px; inset-inline-start: -18px; animation-delay: -4s; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .hero-actions, .hero-copy .trust-strip { justify-content: center; }
  .hero-copy p.lede { margin-left: auto; margin-right: auto; }
  .hero-visual { min-height: 300px; margin-top: 12px; }
}

/* ---------- sections ---------- */
.section { position: relative; z-index: 1; padding: 80px 5%; max-width: 1180px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 800; text-wrap: balance; }
.section-sub { color: var(--paper-dim); margin-top: 10px; font-size: 15px; max-width: 60ch; margin-left: auto; margin-right: auto; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }

.card {
  background: var(--ink-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: all 0.28s var(--ease); position: relative;
  box-shadow: 0 1px 0 var(--shadow-color);
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-dim); box-shadow: 0 20px 40px -20px var(--shadow-color); }
.card.featured { border-color: var(--gold); background: linear-gradient(165deg, rgba(201,162,75,0.09), var(--ink-card) 55%); }
.featured-tag { position: absolute; top: -12px; inset-inline-end: 26px; background: var(--gold); color: var(--espresso); font-size: 10.5px; font-weight: 800; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.03em; }
.card-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(201,162,75,0.12); border: 1px solid rgba(201,162,75,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--gold-bright); font-size: 18px; }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.card .price { font-family: var(--mono); font-size: 1.7rem; font-weight: 700; color: var(--gold-bright); margin: 10px 0 2px; font-variant-numeric: tabular-nums; }
.card .price small { font-size: 0.72rem; font-weight: 400; color: var(--paper-dim); font-family: var(--serif); }
.card .price-note { font-size: 11.5px; color: var(--paper-dim); margin-bottom: 6px; }
.domain-chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(201,162,75,0.08); border: 1px solid var(--line); padding: 5px 12px; border-radius: 20px; font-size: 11.5px; color: var(--gold-bright); margin: 12px 0 4px; }
.feature-list { list-style: none; margin: 18px 0 22px; display: flex; flex-direction: column; gap: 9px; }
.feature-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--paper); }
.feature-list li i.yes { color: var(--gold); margin-top: 3px; font-size: 10px; }
.feature-list li i.no { color: var(--paper-dim); opacity: 0.5; margin-top: 3px; font-size: 10px; }
.feature-list li.muted { color: var(--paper-dim); }

.step-num { font-family: var(--mono); font-size: 12px; color: var(--gold); border: 1px solid var(--line); width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 8px; margin-bottom: 18px; }

.cta-band { position: relative; z-index: 1; margin: 40px 5% 0; padding: 64px 6%; border-radius: 28px; text-align: center; background: linear-gradient(135deg, var(--espresso), #1a1006); border: 1px solid rgba(201,162,75,0.25); overflow: hidden; color: #F3EEE3; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(500px circle at 50% 0%, rgba(201,162,75,0.18), transparent 60%); pointer-events: none; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; position: relative; }
.cta-band p { color: #C9BFA0; margin-bottom: 28px; position: relative; }

.faq-item { background: var(--ink-card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 22px; margin-bottom: 10px; }
.faq-item h3 { font-size: 14.5px; font-weight: 700; color: var(--gold-bright); margin-bottom: 6px; display: flex; gap: 8px; }
.faq-item p { font-size: 13.3px; color: var(--paper-dim); }

/* ---------- forms ---------- */
.field { margin-bottom: 18px; text-align: start; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--paper-dim); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--ink-raised); color: var(--paper); font-family: var(--serif); font-size: 14px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-dim); }
.field .hint { font-size: 11.5px; color: var(--paper-dim); margin-top: 6px; }
.field .error { font-size: 11.5px; color: var(--danger); margin-top: 6px; display: none; }
.field.has-error input { border-color: var(--danger); }
.field.has-error .error { display: block; }

/* ---------- footer ---------- */
footer { position: relative; z-index: 1; padding: 56px 5% 26px; border-top: 1px solid var(--line-soft); }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; max-width: 1180px; margin: 0 auto 30px; }
.footer-brand .logo-img { height: 28px; margin-bottom: 12px; }
.footer-brand p { font-size: 12.5px; color: var(--paper-dim); max-width: 30ch; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 14px; font-family: var(--mono); font-weight: 600; }
.footer-col a { display: block; color: var(--paper-dim); text-decoration: none; margin-bottom: 9px; font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom { text-align: center; padding-top: 22px; border-top: 1px solid var(--line-soft); color: var(--paper-dim); font-size: 11.5px; max-width: 1180px; margin: 0 auto; font-family: var(--mono); }

@media (max-width: 720px) {
  .nav-links .nav-anchor { display: none; }
  .footer-grid { flex-direction: column; }
}

/* ---------- accessibility: skip link ---------- */
.skip-link {
  position: absolute; top: -48px; left: 12px; z-index: 500;
  background: var(--gold); color: var(--espresso); font-weight: 700; font-size: 13px;
  padding: 10px 18px; border-radius: 8px; text-decoration: none; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- mobile navigation drawer ---------- */
.nav-hamburger {
  display: none; width: 34px; height: 34px; border-radius: 8px;
  background: var(--ink-raised); border: 1px solid var(--line); color: var(--paper);
  align-items: center; justify-content: center; cursor: pointer; font-size: 15px;
}
.nav-drawer {
  position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none; transition: opacity 0.25s var(--ease);
}
.nav-drawer.open { opacity: 1; pointer-events: auto; }
.nav-drawer-panel {
  position: absolute; top: 0; inset-inline-end: 0; height: 100%; width: min(300px, 82vw);
  background: var(--ink-card); border-inline-start: 1px solid var(--line);
  padding: 24px 22px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform 0.3s var(--ease);
}
:root[dir="rtl"] .nav-drawer-panel { transform: translateX(-100%); }
.nav-drawer.open .nav-drawer-panel { transform: translateX(0); }
.nav-drawer-panel a.nav-anchor {
  padding: 12px 8px; border-radius: 8px; text-decoration: none; color: var(--paper);
  font-size: 15px; font-weight: 600; border-bottom: 1px solid var(--line-soft);
}
.nav-drawer-panel a.nav-anchor:hover, .nav-drawer-panel a.nav-anchor.active { color: var(--gold-bright); }
.nav-drawer-close {
  align-self: flex-end; width: 34px; height: 34px; border-radius: 8px;
  background: var(--ink-raised); border: 1px solid var(--line); color: var(--paper);
  cursor: pointer; font-size: 15px; margin-bottom: 8px;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: inline-flex; }
}

/* ---------- inner page header (About/Services/Pricing/Portfolio/Contact/FAQ/Terms/Privacy) ---------- */
.page-header { position: relative; z-index: 1; padding: 72px 5% 48px; text-align: center; overflow: hidden; }
.page-header .eyebrow { margin-bottom: 18px; }
.page-header h1 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 800; margin-bottom: 14px; text-wrap: balance; }
.page-header p.lede { font-size: 1.05rem; color: var(--paper-dim); max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12.5px; color: var(--paper-dim); margin-bottom: 20px; font-family: var(--mono); }
.breadcrumb a { color: var(--paper-dim); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb i { font-size: 9px; }

/* ---------- timeline (About) ---------- */
.timeline { position: relative; max-width: 720px; margin: 0 auto; padding-inline-start: 32px; border-inline-start: 2px solid var(--line); }
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; inset-inline-start: -38px; top: 4px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--ink), 0 0 0 5px var(--line);
}
.timeline-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.timeline-item p { color: var(--paper-dim); font-size: 13.5px; }

/* ---------- values grid (About) ---------- */
.value-card { text-align: center; }
.value-card .card-icon { margin: 0 auto 18px; }

/* ---------- portfolio ---------- */
.portfolio-empty {
  text-align: center; max-width: 520px; margin: 0 auto; padding: 60px 30px;
  background: var(--ink-card); border: 1px dashed var(--line); border-radius: var(--radius);
}
.portfolio-empty i { font-size: 34px; color: var(--gold-dim); margin-bottom: 18px; }
.portfolio-empty h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.portfolio-empty p { color: var(--paper-dim); font-size: 13.5px; }

/* ---------- legal documents (Terms/Privacy) ---------- */
.legal-doc { max-width: 760px; margin: 0 auto; }
.legal-doc h2 { font-size: 1.25rem; font-weight: 800; margin: 34px 0 12px; }
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc p { color: var(--paper-dim); font-size: 14.5px; margin-bottom: 12px; }
.legal-doc ul { color: var(--paper-dim); font-size: 14.5px; margin: 0 0 12px; padding-inline-start: 20px; display: flex; flex-direction: column; gap: 6px; }
.legal-doc .updated-note {
  font-family: var(--mono); font-size: 11.5px; color: var(--gold-bright);
  background: rgba(201,162,75,0.08); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 16px; margin-bottom: 30px; display: inline-block;
}
.legal-doc .disclaimer {
  margin-top: 34px; padding: 16px 20px; border-radius: var(--radius-sm);
  background: rgba(217,122,108,0.08); border: 1px solid rgba(217,122,108,0.25);
  font-size: 13px; color: var(--paper-dim);
}

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; max-width: 980px; margin: 0 auto; align-items: start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-channels { display: flex; flex-direction: column; gap: 14px; }
.contact-channel {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  background: var(--ink-card); border: 1px solid var(--line); border-radius: var(--radius-sm); text-decoration: none;
}
.contact-channel:hover { border-color: var(--gold-dim); }
.contact-channel .card-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-channel strong { display: block; color: var(--paper); font-size: 13.5px; }
.contact-channel span { display: block; color: var(--paper-dim); font-size: 12px; }
.contact-form-card { background: var(--ink-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; }
.contact-form-card textarea { min-height: 130px; resize: vertical; font-family: inherit; }

/* ---------- job / blog cards (Careers / Blog, if ever populated) ---------- */
.job-card, .blog-card { display: block; text-decoration: none; }
.job-card h3, .blog-card h3 { color: var(--paper); }
