/* Order & Eat — site styles */
:root {
  --bg: #f6f3ee;
  --bg-2: #efeae2;
  --surface: #ffffff;
  --ink: #17191d;
  --ink-2: #3a3e45;
  --muted: #676c75;
  --line: #e4ded4;
  --line-2: #d6cfc3;
  --accent: #e9611c;
  --accent-2: #f2881f;
  --accent-ink: #b8450d;
  --dark: #15171b;
  --dark-2: #1e2127;
  --dark-line: rgba(255, 255, 255, .1);
  --radius: 18px;
  --radius-s: 12px;
  --shadow: 0 1px 2px rgba(23, 25, 29, .04), 0 12px 32px -12px rgba(23, 25, 29, .16);
  --shadow-hover: 0 2px 4px rgba(23, 25, 29, .05), 0 24px 48px -16px rgba(23, 25, 29, .22);
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  --container: 1180px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1.2; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.12; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 1000; border-radius: 8px; }
.skip-link:focus { left: 8px; }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
@media (max-width: 640px) { .container { width: calc(100% - 40px); } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap; line-height: 1.2;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--ink); color: #fff; box-shadow: 0 10px 24px -12px rgba(23, 25, 29, .5); }
.btn-primary:hover { background: #000; transform: translateY(-1px); box-shadow: 0 14px 28px -12px rgba(23, 25, 29, .55); }
.btn-accent { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #fff; box-shadow: 0 12px 28px -12px rgba(233, 97, 28, .7); }
.btn-accent:hover { transform: translateY(-1px); box-shadow: 0 16px 32px -12px rgba(233, 97, 28, .75); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(23, 25, 29, .03); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f2efe9; }
.btn-sm { padding: 10px 18px; font-size: .875rem; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--accent-ink); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 16px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }
.lead { font-size: 1.125rem; color: var(--muted); max-width: 62ch; }
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { margin-bottom: 14px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(246, 243, 238, .72); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, background .25s ease;
}
.header.is-scrolled { border-bottom-color: var(--line); background: rgba(246, 243, 238, .9); }
.header .container { height: 100%; display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; flex: none; }
.logo img.mark { height: 38px; width: auto; }
.logo img.word { height: 17px; width: auto; }
.nav { display: flex; gap: 4px; margin-left: 12px; }
.nav a { padding: 8px 12px; font-weight: 700; font-size: .92rem; color: var(--ink-2); border-radius: 999px; transition: color .2s ease, background .2s ease; }
.nav a:hover { color: var(--ink); background: rgba(23, 25, 29, .05); }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.lang { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 999px; border: 1px solid var(--line-2); background: transparent; cursor: pointer; font-weight: 700; font-size: .875rem; }
.lang-btn svg { width: 16px; height: 16px; }
.lang-btn:hover { border-color: var(--ink); }
.lang-menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 170px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-hover); padding: 6px; display: none; z-index: 20; }
.lang.open .lang-menu { display: block; }
.lang-menu a { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-radius: 9px; font-size: .9rem; font-weight: 600; color: var(--ink-2); }
.lang-menu a:hover { background: var(--bg); color: var(--ink); }
.lang-menu a[aria-current="true"] { color: var(--accent-ink); font-weight: 800; }
.lang-menu a span.code { font-size: .75rem; color: var(--muted); letter-spacing: .08em; }

.burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-2); background: transparent; cursor: pointer; align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; }
.mobile-nav { display: none; position: fixed; inset: var(--header-h) 0 0 0; background: var(--bg); z-index: 90; padding: 24px; overflow: auto; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 16px 8px; font-size: 1.25rem; font-weight: 800; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 24px; width: 100%; justify-content: center; }
.mobile-nav .mobile-langs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.mobile-nav .mobile-langs a { padding: 8px 14px; border: 1px solid var(--line-2); border-radius: 999px; font-size: .9rem; font-weight: 700; }
.mobile-nav .mobile-langs a[aria-current="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
body.nav-open { overflow: hidden; }

@media (max-width: 1024px) {
  .nav, .header-right .btn, .header-right .lang { display: none; }
  .burger { display: inline-flex; }
}

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 96px) 0 0; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 55% at 78% 40%, rgba(242, 136, 31, .22), transparent 70%), radial-gradient(40% 40% at 18% 20%, rgba(233, 97, 28, .08), transparent 70%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { margin: 18px 0 22px; }
.hero h1 em { font-style: normal; color: var(--accent); background: linear-gradient(120deg, var(--accent-2), var(--accent) 60%, var(--accent-ink)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lead { font-size: 1.2rem; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; max-width: 560px; margin-inline: auto; filter: drop-shadow(0 30px 40px rgba(23, 25, 29, .22)); }
.hero-stats { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: clamp(40px, 6vw, 80px); border-top: 1px solid var(--line-2); }
.hero-stats div { padding: 26px 0; border-right: 1px solid var(--line-2); padding-left: 24px; }
.hero-stats div:first-child { padding-left: 0; }
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { display: block; font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.hero-stats span { color: var(--muted); font-size: .92rem; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0,1fr); gap: 24px; }
  .hero-visual img { max-width: 440px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stats strong { font-size: 1.4rem; }
}
@media (max-width: 560px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div { border-right: 0; border-bottom: 1px solid var(--line); padding: 16px 0; }
  .hero-stats div:last-child { border-bottom: 0; }
}

/* Cards / solutions */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--line-2); }
.card .icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(242, 136, 31, .18), rgba(233, 97, 28, .12)); color: var(--accent-ink); margin-bottom: 22px; }
.card .icon svg { width: 26px; height: 26px; }
.card .tag { font-size: .8rem; font-weight: 700; color: var(--muted); letter-spacing: .04em; margin-bottom: 6px; }
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { color: var(--muted); flex: 1; }
.card .link-arrow { margin-top: 10px; }
@media (max-width: 900px) { .cards-3 { grid-template-columns: minmax(0,1fr); } }

/* Trusted */
.trusted { padding: 40px 0 8px; }
.trusted-inner { border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); padding: 28px 0; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 32px; }
.trusted-inner .t { font-weight: 800; font-size: .95rem; }
.trusted-names { display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--muted); font-weight: 700; font-size: .95rem; letter-spacing: .01em; }
.trusted-inner .link-arrow { margin-left: auto; font-size: .9rem; }
@media (max-width: 700px) { .trusted-inner .link-arrow { margin-left: 0; } }

/* Products */
.product { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(32px, 6vw, 96px); align-items: center; padding: clamp(40px, 6vw, 72px) 0; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 8px); }
.product:first-of-type { border-top: 0; padding-top: 0; }
.product.rev .product-media { order: 2; }
.product-media { position: relative; }
.product-media::before { content: ""; position: absolute; inset: 8% 6%; background: radial-gradient(closest-side, rgba(242, 136, 31, .18), transparent); filter: blur(18px); z-index: 0; }
.product-media img { position: relative; z-index: 1; width: auto; max-width: min(100%, 520px); max-height: 480px; margin-inline: auto; filter: drop-shadow(0 24px 32px rgba(23, 25, 29, .18)); }
.product-body h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 8px 0 16px; }
.product-body p { color: var(--ink-2); }
.features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.features li { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px 7px 9px; border: 1px solid var(--line-2); background: #fff; border-radius: 999px; font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.features li svg { width: 14px; height: 14px; color: var(--accent); flex: none; }
@media (max-width: 900px) {
  .product { grid-template-columns: minmax(0,1fr); }
  .product.rev .product-media { order: 0; }
  .product-media img { max-width: min(100%, 420px); max-height: 400px; }
}

/* Dark service section */
.dark { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.dark::before { content: ""; position: absolute; inset: -20% -10% auto auto; width: 60%; height: 80%; background: radial-gradient(closest-side, rgba(242, 136, 31, .16), transparent); pointer-events: none; }
.dark .eyebrow { color: var(--accent-2); }
.dark .eyebrow::before { background: var(--accent-2); }
.dark .lead { color: rgba(255, 255, 255, .7); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.dark-card { background: var(--dark-2); border: 1px solid var(--dark-line); border-radius: var(--radius); padding: 30px 26px; transition: border-color .25s ease, transform .25s ease; }
.dark-card:hover { border-color: rgba(242, 136, 31, .45); transform: translateY(-3px); }
.dark-card .num { font-size: .8rem; font-weight: 800; letter-spacing: .12em; color: var(--accent-2); margin-bottom: 18px; display: block; }
.dark-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: #fff; }
.dark-card p { color: rgba(255, 255, 255, .68); font-size: .95rem; margin: 0; }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: minmax(0,1fr); } }

/* Plans */
.plans { background: var(--bg-2); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.plan.featured { border-color: var(--ink); box-shadow: 0 30px 60px -24px rgba(23, 25, 29, .35); }
.plan .badge { position: absolute; top: -13px; left: 30px; background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #fff; padding: 5px 12px; border-radius: 999px; font-size: .75rem; font-weight: 800; letter-spacing: .06em; }
.plan h3 { font-size: 1.5rem; margin-bottom: 8px; }
.plan .desc { color: var(--muted); font-size: .95rem; min-height: 4.6em; }
.plan .price { display: flex; align-items: baseline; gap: 10px; padding: 18px 0; margin: 6px 0 18px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-weight: 800; font-size: 1.15rem; }
.plan .price small { font-weight: 600; color: var(--muted); font-size: .8rem; }
.plan .inc { font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.plan ul { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: var(--ink-2); line-height: 1.5; }
.plan li svg { width: 18px; height: 18px; flex: none; color: var(--accent); margin-top: 2px; }
.plan .btn { justify-content: center; }
.plan .case { margin-top: 14px; font-size: .85rem; color: var(--muted); text-align: center; }
.plan .case a { color: var(--accent-ink); font-weight: 700; }
.plan-app { margin-top: 20px; background: var(--ink); color: #fff; border-radius: var(--radius); padding: 34px 36px; display: grid; grid-template-columns: 1fr auto; gap: 24px 40px; align-items: center; }
.plan-app h3 { font-size: 1.5rem; margin-bottom: 8px; }
.plan-app p { color: rgba(255, 255, 255, .72); margin: 0; max-width: 70ch; }
.plan-app .case { margin-top: 10px; font-size: .85rem; color: rgba(255, 255, 255, .55); }
.plan-app .case a { color: var(--accent-2); font-weight: 700; }
@media (max-width: 1024px) { .plan-grid { grid-template-columns: minmax(0,1fr); } .plan .desc { min-height: 0; } .plan-app { grid-template-columns: minmax(0,1fr); } }

/* Extras */
.extras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.extras-grid .card { padding: 34px 30px; }
@media (max-width: 900px) { .extras-grid { grid-template-columns: minmax(0,1fr); } }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.reviews-grid .review { grid-column: span 2; }
.reviews-grid .review:nth-child(n+4) { grid-column: span 3; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow); }
.stars { display: flex; gap: 3px; color: #f3a41c; }
.stars svg { width: 16px; height: 16px; }
.review blockquote { margin: 0; font-size: 1.02rem; font-weight: 600; line-height: 1.6; flex: 1; }
.review cite { font-style: normal; display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--line); padding-top: 14px; }
.review cite strong { font-size: .95rem; }
.review cite a { font-size: .85rem; color: var(--muted); }
.review cite a:hover { color: var(--accent-ink); }
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } .reviews-grid .review, .reviews-grid .review:nth-child(n+4) { grid-column: span 1; } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: minmax(0,1fr); } }
.br-wide { display: none; }
@media (min-width: 700px) { .br-wide { display: inline; } }

/* About */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about-grid p { color: var(--ink-2); font-size: 1.05rem; }
.brand-panel { background: var(--dark); border-radius: var(--radius); padding: 44px 40px; color: #fff; display: flex; flex-direction: column; gap: 28px; position: relative; overflow: hidden; }
.brand-panel::after { content: ""; position: absolute; right: -20%; bottom: -30%; width: 70%; aspect-ratio: 1; background: radial-gradient(closest-side, rgba(242, 136, 31, .25), transparent); }
.brand-panel .b { display: flex; align-items: center; gap: 14px; position: relative; }
.brand-panel .b img { height: 40px; width: auto; }
.brand-panel .b span { font-size: .85rem; color: rgba(255, 255, 255, .6); }
.brand-panel .sep { height: 1px; background: var(--dark-line); }
@media (max-width: 900px) { .about-grid { grid-template-columns: minmax(0,1fr); } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: .85rem; font-weight: 700; color: var(--ink-2); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border-radius: 12px; border: 1px solid var(--line-2); background: #fbfaf7; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(233, 97, 28, .12); }
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23676c75' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.form-foot .btn { min-width: 180px; justify-content: center; }
.form-foot small { color: var(--muted); font-size: .8rem; }
.form-msg { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 12px; font-weight: 600; font-size: .95rem; }
.form-msg.ok { display: block; background: #edf7ee; color: #1f6b34; border: 1px solid #cfe9d3; }
.form-msg.err { display: block; background: #fdefe9; color: #9c3a12; border: 1px solid #f6d3c3; }
.contact-info { display: flex; flex-direction: column; gap: 6px; }
.info-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-2); }
.info-item:last-child { border-bottom: 0; }
.info-item .ic { width: 44px; height: 44px; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent-ink); flex: none; }
.info-item .ic svg { width: 20px; height: 20px; }
.info-item .lbl { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.info-item .val { font-weight: 700; font-size: 1.02rem; }
.info-item .val a:hover { color: var(--accent-ink); }
.info-item .sub { color: var(--muted); font-size: .9rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: minmax(0,1fr); } }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Footer */
.footer { background: var(--dark); color: rgba(255, 255, 255, .7); padding: 56px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid var(--dark-line); }
.footer .logo img.word { height: 15px; }
.footer .tagline { margin-top: 14px; max-width: 34ch; font-size: .95rem; }
.footer h4 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { display: flex; flex-direction: column; gap: 8px; font-size: .95rem; }
.footer a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; padding-top: 22px; font-size: .85rem; color: rgba(255, 255, 255, .5); }
.footer-langs { display: flex; gap: 14px; }
.footer-langs a[aria-current="true"] { color: #fff; font-weight: 700; }
@media (max-width: 800px) { .footer-top { grid-template-columns: minmax(0,1fr); } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

section[id] { scroll-margin-top: var(--header-h); }
