/*
 * Lana Fleur — main stylesheet
 * Production CSS for the Lana Fleur WordPress theme.
 * --------------------------------------------------------------------
 * Tokens live in :root and are reused across every component.
 * --------------------------------------------------------------------
 */

/* ─── 1. Tokens ──────────────────────────────────────────────────── */
:root {
  --lf-bg: #F4F1EC;
  --lf-bg-soft: #EFE7DA;
  --lf-bg-muted: #EDEEF2;
  --lf-surface: #FFFFFF;
  --lf-line: #E2DDD2;
  --lf-line-soft: #EDE8DE;
  --lf-ink: #1A2B47;
  --lf-ink-soft: #5A6275;
  --lf-ink-mute: #8A8FA0;
  --lf-gold: #B89968;
  --lf-gold-dark: #8E7544;
  --lf-gold-soft: #EEE3CE;
  --lf-rose: #C26659;
  --lf-leaf: #6E9A6F;

  --lf-font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --lf-font-body: "Manrope", "Helvetica Neue", system-ui, sans-serif;
  --lf-font-ar: "Cairo", "Manrope", system-ui, sans-serif;
  --lf-font-mono: "JetBrains Mono", ui-monospace, monospace;

  --lf-radius-sm: 6px;
  --lf-radius-md: 12px;
  --lf-radius-lg: 20px;
  --lf-radius-pill: 999px;

  --lf-shadow-bar: 0 6px 20px rgba(20,28,50,0.06);
  --lf-shadow-card: 0 1px 2px rgba(20,28,50,0.04), 0 8px 24px rgba(20,28,50,0.05);
  --lf-shadow-pop: 0 12px 40px rgba(20,28,50,0.10);

  --lf-container: 1280px;
  --lf-gutter: 32px;

  --lf-ease: cubic-bezier(.2,.7,.2,1);
}

/* ─── 2. Resets & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--lf-ink);
  background: var(--lf-bg);
  font-family: var(--lf-font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body:lang(ar) { font-family: var(--lf-font-ar); }
img, svg, video { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--lf-gold-dark); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--lf-font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 .5em;
  color: var(--lf-ink);
}
h1 { font-size: clamp(2.4rem, 4vw + 1rem, 4.4rem); }
h2 { font-size: clamp(2rem, 2.5vw + 1rem, 2.75rem); }
h3 { font-size: clamp(1.4rem, 1vw + 1rem, 1.75rem); }
p { margin: 0 0 1em; }
hr { border: 0; border-top: 1px solid var(--lf-line); margin: 2em 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { padding-left: 1.25em; }
em { font-style: italic; color: var(--lf-gold-dark); }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--lf-gold-dark);
}
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}

/* ─── 3. Layout ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--lf-container);
  padding: 0 var(--lf-gutter);
  margin: 0 auto;
}
@media (max-width: 768px) {
  :root { --lf-gutter: 20px; }
}
@media (max-width: 480px) {
  :root { --lf-gutter: 16px; }
}
.site-main { display: block; }
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 56px;
  align-items: start;
  margin: 56px 0 96px;
}
.no-sidebar .content-layout,
body:not(:has(.widget-area)) .content-layout {
  grid-template-columns: minmax(0, 1fr);
}
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: minmax(0, 1fr); gap: 40px; }
}

/* ─── 4. Buttons ─────────────────────────────────────────────────── */
.btn, .button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--lf-radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .2s var(--lf-ease), color .2s var(--lf-ease), transform .2s var(--lf-ease), border-color .2s var(--lf-ease);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn-primary, .btn-ink {
  background: var(--lf-ink);
  color: #fff;
}
.btn-primary:hover, .btn-ink:hover { background: var(--lf-gold-dark); color: #fff; }
.btn-gold { background: var(--lf-gold); color: #fff; }
.btn-gold:hover { background: var(--lf-gold-dark); color: #fff; }
.btn-ghost {
  background: #fff;
  color: var(--lf-ink);
  border-color: var(--lf-line);
}
.btn-ghost:hover { border-color: var(--lf-gold); color: var(--lf-gold-dark); }
.btn:focus-visible, .button:focus-visible { outline: 2px solid var(--lf-gold); outline-offset: 3px; }

/* ─── 5. Forms ───────────────────────────────────────────────────── */
input[type="text"], input[type="email"], input[type="search"],
input[type="password"], input[type="tel"], input[type="number"],
input[type="url"], textarea, select {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--lf-line);
  border-radius: var(--lf-radius-sm);
  font-size: 14px;
  color: var(--lf-ink);
  transition: border-color .2s var(--lf-ease), box-shadow .2s var(--lf-ease);
}
input:focus, textarea:focus, select:focus {
  outline: 0; border-color: var(--lf-gold);
  box-shadow: 0 0 0 3px rgba(184,153,104,0.18);
}
label { font-size: 13px; font-weight: 500; color: var(--lf-ink); }

/* ─── 6. Header ──────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 80; }
.promo-bar {
  background: var(--lf-ink);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px var(--lf-gutter);
}
.promo-bar .container { padding: 0; }
.header-inner { padding: 14px 0; background: transparent; }
.header-pill {
  background: #fff;
  border: 1px solid var(--lf-line-soft);
  border-radius: var(--lf-radius-pill);
  box-shadow: var(--lf-shadow-bar);
  padding: 12px 22px 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-left, .header-right { display: flex; align-items: center; gap: 22px; }
.header-divider { width: 1px; height: 24px; background: var(--lf-line); flex: 0 0 1px; }
.site-branding a { display: flex; align-items: center; gap: 10px; color: var(--lf-ink); }
.lana-fleur-wordmark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--lf-font-display);
  font-size: 22px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
}
.lana-fleur-wordmark strong { font-weight: 700; }
.lana-fleur-wordmark > span span { margin-inline-start: 4px; opacity: 0.75; }

.primary-menu {
  display: flex; gap: 28px; margin: 0; padding: 0; list-style: none;
}
.primary-menu li { position: relative; }
.primary-menu a {
  display: inline-block; padding: 8px 0;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
  color: var(--lf-gold-dark);
}
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--lf-gold);
}
.primary-menu .menu-item-has-children > a::after { content: " ▾"; opacity: .6; font-size: 10px; }
.primary-menu .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--lf-line-soft); border-radius: var(--lf-radius-md);
  box-shadow: var(--lf-shadow-pop);
  padding: 10px; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-menu .sub-menu a { padding: 8px 12px; border-radius: 6px; display: block; }
.primary-menu .sub-menu a:hover { background: var(--lf-bg-soft); }

.header-action {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--lf-ink);
}
.header-action:hover { color: var(--lf-gold-dark); }
.header-icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; color: var(--lf-ink);
  position: relative;
  transition: background .2s, color .2s;
}
.header-icon-btn:hover { background: var(--lf-bg-soft); color: var(--lf-gold-dark); }
.cart-count {
  position: absolute; top: -2px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--lf-gold); color: #fff;
  border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 0;
  display: grid; place-items: center;
}
.header-mobile-toggle { display: none; }

.header-search-overlay {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-bottom: 1px solid var(--lf-line);
  padding: 24px var(--lf-gutter);
  box-shadow: var(--lf-shadow-pop);
}
.header-search-overlay .container { position: relative; display: flex; gap: 12px; align-items: center; }
.header-search-overlay .search-close {
  position: absolute; right: 0; top: -10px; font-size: 24px; color: var(--lf-ink-mute);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(20,28,50,0.45);
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.mobile-drawer[aria-hidden="false"] { opacity: 1; visibility: visible; }
.mobile-drawer-inner {
  position: absolute; top: 0; bottom: 0; left: 0;
  width: min(380px, 86vw); background: #fff;
  padding: 28px 24px;
  transform: translateX(-100%);
  transition: transform .3s var(--lf-ease);
  overflow-y: auto;
}
[dir="rtl"] .mobile-drawer-inner { left: auto; right: 0; transform: translateX(100%); }
.mobile-drawer[aria-hidden="false"] .mobile-drawer-inner { transform: translateX(0); }
.mobile-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.mobile-menu {
  list-style: none; padding: 0; margin: 0;
}
.mobile-menu li { border-bottom: 1px solid var(--lf-line-soft); }
.mobile-menu a {
  display: block; padding: 14px 4px;
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}

/* ─── 7. Page heroes ─────────────────────────────────────────────── */
.page-hero {
  padding: 64px 0 32px;
  text-align: center;
  border-bottom: 1px solid var(--lf-line-soft);
}
.page-hero--editorial {
  background: var(--lf-bg-soft);
}
.page-hero .page-title {
  font-style: italic;
  color: var(--lf-gold-dark);
  font-weight: 400;
}
.page-hero .page-subtitle { color: var(--lf-ink-soft); margin-top: 12px; }
.breadcrumbs {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lf-ink-mute); margin-bottom: 14px;
}
.breadcrumbs a:hover { color: var(--lf-gold-dark); }
.error-404-hero .page-title {
  font-size: clamp(6rem, 12vw, 12rem);
  letter-spacing: 0.02em;
  font-style: normal;
  color: var(--lf-ink);
}
.error-404-hero .page-subhead { font-size: clamp(1.5rem, 2.5vw, 2.5rem); margin-top: 4px; }
.hero-actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin: 24px 0 16px; }
.error-search { max-width: 480px; margin: 24px auto 0; }

/* ─── 8. Blog cards ──────────────────────────────────────────────── */
.post-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.post-card {
  background: #fff;
  border: 1px solid var(--lf-line-soft);
  border-radius: var(--lf-radius-md);
  overflow: hidden;
  transition: transform .3s var(--lf-ease), box-shadow .3s var(--lf-ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--lf-shadow-card); }
.post-card-media { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--lf-bg-muted); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--lf-ease); }
.post-card:hover .post-card-media img { transform: scale(1.05); }
.post-card-body { padding: 22px 24px 26px; }
.post-card-meta { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lf-ink-mute); font-weight: 600; }
.post-card-title { font-size: 22px; margin: 8px 0 10px; }
.post-card-title a:hover { color: var(--lf-gold-dark); }
.post-card-excerpt { color: var(--lf-ink-soft); font-size: 14px; }
.read-more { color: var(--lf-gold-dark); font-weight: 600; white-space: nowrap; }

/* Single post */
.single-header { padding: 64px 0 32px; text-align: center; }
.single-featured { margin: 0 0 56px; max-width: 1400px; margin-inline: auto; }
.single-featured img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }
.post-meta { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lf-ink-mute); }
.post-meta span + span::before { content: "·"; margin: 0 8px; }
.post-tags { margin: 32px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.post-tags .tag {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  background: var(--lf-gold-soft); color: var(--lf-gold-dark);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.post-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  border-top: 1px solid var(--lf-line); padding-top: 24px; margin-top: 48px;
  font-size: 14px;
}
.post-nav .next { text-align: right; }

/* ─── 9. Long-form content (prose) ───────────────────────────────── */
.prose { max-width: 720px; margin-inline: auto; font-size: 17px; line-height: 1.75; color: var(--lf-ink-soft); }
.prose h2, .prose h3, .prose h4 { color: var(--lf-ink); margin-top: 1.6em; }
.prose a { color: var(--lf-gold-dark); border-bottom: 1px solid currentColor; }
.prose blockquote {
  border-left: 3px solid var(--lf-gold);
  padding: 4px 0 4px 24px;
  margin: 1.6em 0;
  font-family: var(--lf-font-display);
  font-style: italic; font-size: 1.4em; color: var(--lf-ink);
}
.prose img { border-radius: var(--lf-radius-md); }

/* ─── 10. Pagination ─────────────────────────────────────────────── */
.pagination { margin: 56px 0 64px; }
.pagination ul {
  display: inline-flex; gap: 6px; list-style: none; padding: 0;
}
.pagination .page-numbers {
  min-width: 40px; height: 40px; padding: 0 12px;
  display: inline-grid; place-items: center;
  background: #fff; border: 1px solid var(--lf-line);
  border-radius: var(--lf-radius-sm);
  font-size: 13px; font-weight: 600; color: var(--lf-ink);
  transition: background .2s, color .2s, border-color .2s;
}
.pagination .page-numbers.current { background: var(--lf-ink); color: #fff; border-color: var(--lf-ink); }
.pagination .page-numbers:hover { border-color: var(--lf-gold); color: var(--lf-gold-dark); }

/* ─── 11. Footer ─────────────────────────────────────────────────── */
.site-footer {
  margin-top: 96px;
  background: var(--lf-bg-soft);
  padding: 72px 0 28px;
  border-top: 1px solid var(--lf-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--lf-line);
}
.footer-brand .lana-fleur-wordmark { color: var(--lf-ink); }
.footer-tagline { margin: 18px 0 16px; max-width: 320px; color: var(--lf-ink-soft); font-size: 14px; line-height: 1.7; }
.footer-social { display: flex; gap: 14px; color: var(--lf-ink-soft); }
.footer-social a { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #fff; transition: color .2s, background .2s; }
.footer-social a:hover { color: var(--lf-gold-dark); background: #fff; }
.footer-col .widget-title {
  font-family: var(--lf-font-body);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--lf-gold-dark); margin: 0 0 18px;
}
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-list a { color: var(--lf-ink-soft); font-size: 14px; }
.footer-list a:hover { color: var(--lf-gold-dark); }
.contact-list li { display: flex; gap: 10px; align-items: center; color: var(--lf-ink-soft); font-size: 14px; }
.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 22px; font-size: 12px; color: var(--lf-ink-mute);
  letter-spacing: 0.04em;
}
.footer-nav { display: flex; gap: 22px; list-style: none; padding: 0; margin: 0; }

/* ─── 12. Secure-checkout badge ──────────────────────────────────── */
.secure-badge {
  background: #fff;
  border: 1px solid var(--lf-line);
  border-radius: var(--lf-radius-md);
  padding: 12px 14px;
  box-shadow: 0 1px 2px rgba(20,28,50,0.04);
  display: flex; align-items: center; gap: 12px;
  width: 100%;
  max-width: 360px;
  margin-top: 24px;
}
.secure-badge--stacked { flex-direction: column; align-items: stretch; gap: 10px; }
.secure-badge-lockup { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.secure-badge-icon {
  flex: 0 0 32px;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--lf-bg-soft);
  display: grid; place-items: center;
  color: var(--lf-ink);
}
.secure-badge-text {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 2px;
}
[dir="rtl"] .secure-badge-text { text-align: right; }
.secure-badge-title { font-size: 12px; font-weight: 700; color: var(--lf-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.secure-badge-sub { font-size: 10.5px; color: var(--lf-ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: 0.02em; }
.secure-badge-divider {
  flex: 0 0 1px; width: 1px; height: 28px; background: var(--lf-line);
}
.secure-badge--stacked .secure-badge-divider { width: 100%; height: 1px; }
.secure-badge-chips { display: flex; gap: 6px; flex: 0 0 auto; }

.pay-chip {
  display: inline-grid; place-items: center;
  width: 38px; height: 24px;
  border-radius: 4px;
  font-family: var(--lf-font-body);
  font-weight: 800; font-style: italic;
  font-size: 10px;
  letter-spacing: 0.04em;
  background: #fff; border: 1px solid var(--lf-line);
  color: var(--lf-ink);
  overflow: hidden;
}
.pay-chip--visa { background: #1A1F71; color: #fff; border-color: #1A1F71; box-shadow: inset 0 -3px 0 #FAB52E; }
.pay-chip--mc { background: #fff; }
.pay-chip--mc .mc-circles {
  position: relative; width: 26px; height: 14px; display: inline-block;
}
.pay-chip--mc .mc-r,
.pay-chip--mc .mc-y {
  position: absolute; top: 0; width: 14px; height: 14px; border-radius: 50%;
}
.pay-chip--mc .mc-r { left: 0; background: #EB001B; }
.pay-chip--mc .mc-y { right: 0; background: #F79E1B; mix-blend-mode: multiply; }
.pay-chip--paypal { font-style: italic; letter-spacing: -0.02em; font-size: 9px; }
.pay-chip--paypal .pp-blue { color: #003087; }
.pay-chip--paypal .pp-cyan { color: #009CDE; }
.pay-chip--amex { background: #2E77BC; color: #fff; border-color: #2E77BC; font-style: normal; font-size: 8.5px; }
.pay-chip--apay { background: #000; color: #fff; border-color: #000; font-style: normal; font-size: 8.5px; }

/* ─── 13. Comments ───────────────────────────────────────────────── */
.comments-area { margin: 56px 0; padding-top: 32px; border-top: 1px solid var(--lf-line); }
.comments-title { font-size: 1.5rem; }
.comment-list { list-style: none; padding: 0; }
.comment { margin: 0 0 24px; padding: 24px; background: #fff; border-radius: var(--lf-radius-md); border: 1px solid var(--lf-line-soft); }
.comment .children { list-style: none; margin-top: 16px; padding-left: 24px; }
.comment-form-comment textarea { min-height: 140px; }

/* ─── 14. Reveal on scroll ───────────────────────────────────────── */
.lf-reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--lf-ease), transform .8s var(--lf-ease); }
.lf-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .lf-reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── 15. Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .header-action span { display: none; }
  .primary-menu { gap: 18px; }
  .primary-menu a { font-size: 11px; }
}
@media (max-width: 768px) {
  .header-pill { padding: 10px 16px; gap: 12px; }
  .header-left .main-navigation,
  .header-left .header-divider,
  .header-action { display: none; }
  .header-mobile-toggle { display: grid; }
  .page-hero { padding: 40px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-base { flex-direction: column; gap: 12px; }
  .site-footer { margin-top: 56px; padding: 48px 0 24px; }
  .single-featured img { aspect-ratio: 4/3; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav .next { text-align: left; }
}
@media (max-width: 480px) {
  .promo-bar { font-size: 10px; letter-spacing: 0.1em; padding: 8px 16px; }
  .secure-badge { max-width: 100%; }
  .secure-badge-chips .pay-chip { width: 34px; height: 22px; }
}

/* ─── 16. Print ─────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .header-search-overlay, .mobile-drawer { display: none; }
  body { background: #fff; color: #000; }
  a { color: inherit; text-decoration: underline; }
}
