/* =========================================================
   INTRYS - Global stylesheet
   2026-modern CSS: container queries, :has(), clamp(), color-mix()
   ========================================================= */

:root {
  /* Brand */
  --navy:        #0a1f3f;
  --navy-700:    #112a52;
  --blue:        #2563eb;
  --blue-600:    #1d4fd1;
  --yellow:      #f7d840;
  --green:       #16a34a;
  --red:         #dc2626;

  /* Neutrals */
  --bg:          #ffffff;
  --bg-alt:      #f4f6fa;
  --bg-soft:     #fafbfd;
  --line:        #e5e9f0;
  --line-soft:   #eef1f6;
  --ink:         #0a1f3f;
  --ink-2:       #2c3a52;
  --muted:       #5b6677;
  --muted-2:     #8693a5;

  /* Surfaces */
  --card:        #ffffff;
  --card-hover:  #ffffff;
  --shadow-sm:   0 1px 2px rgba(10,31,63,.06), 0 1px 3px rgba(10,31,63,.04);
  --shadow:      0 8px 24px rgba(10,31,63,.08);
  --shadow-lg:   0 18px 48px rgba(10,31,63,.14);

  /* Radius */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;

  /* Typography */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(16px, 3vw, 28px);
  --header-h: 132px;

  /* Motion */
  --t-fast: 140ms ease;
  --t:      220ms cubic-bezier(.2,.7,.2,1);
}

[data-theme="dark"] {
  --bg:        #0b1326;
  --bg-alt:    #0f1a33;
  --bg-soft:   #131f3c;
  --line:      #1e2c4d;
  --line-soft: #19264a;
  --ink:       #e9eef9;
  --ink-2:     #c4cfe3;
  --muted:     #8a97b3;
  --muted-2:   #6a778f;
  --card:      #131f3c;
  --card-hover:#172749;
  --shadow:    0 10px 30px rgba(0,0,0,.5);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.6);
}

/* ========== Reset ========== */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,svg,video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--blue); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input,select,textarea { font: inherit; color: inherit; }
ul,ol { padding-left: 1.1rem; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--blue) 60%, transparent); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--yellow); color: var(--navy); }

/* ========== Typography ========== */
h1,h2,h3,h4,h5 { font-weight: 700; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 .6em; line-height: 1.18; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; color: var(--ink-2); }
small { color: var(--muted); }

/* ========== Layout ========== */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section   { padding: clamp(48px, 7vw, 96px) 0; }
.section-tight { padding: clamp(28px, 4vw, 56px) 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.section-head h2 { margin: 0; }
.section-head a  { font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 14.5px; letter-spacing: .005em;
  border: 1px solid transparent;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(37,99,235,.28); }
.btn-primary:hover { background: var(--blue-600); color: #fff; }
.btn-dark    { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-700); color: #fff; }
.btn-yellow  { background: var(--yellow); color: var(--navy); }
.btn-yellow:hover { background: #ffe25c; color: var(--navy); }
.btn-ghost   { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { background: var(--bg-alt); }
.btn-light   { background: #fff; color: var(--navy); }
.btn-block   { width: 100%; }
.btn-lg      { padding: 16px 28px; font-size: 15.5px; }
.btn-sm      { padding: 8px 14px; font-size: 13px; }

/* ========== Forms ========== */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field .hint { font-size: 12px; color: var(--muted); }
.input, .select, .textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--bg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 15%, transparent);
  outline: none;
}
.textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.checkbox { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .row { grid-template-columns: 1fr; } }

/* ========== Announcement bar ========== */
.announce {
  background: var(--navy);
  color: #cfd9ee;
  font-size: 13px;
  padding: 9px 0;
}
.announce .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.announce a { color: #fff; font-weight: 500; }
.announce strong { color: var(--yellow); }
.announce .close-announce {
  background: transparent; color: #cfd9ee; padding: 2px 8px; border-radius: 6px;
}
.announce .close-announce:hover { background: rgba(255,255,255,.1); }

/* ========== Header ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px; align-items: center;
  padding: 14px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; color: var(--navy); letter-spacing: -.02em; line-height: 1; }
.brand .logo-mark { width: 34px; height: 34px; }
.brand .logo-img { display: block; height: 44px; width: auto; max-width: 180px; }
[data-theme="dark"] .brand { color: #fff; }
[data-theme="dark"] .brand .logo-img { filter: brightness(0) invert(1); }
.site-footer .brand-footer .logo-img,
.brand-footer .logo-img { filter: brightness(0) invert(1); height: 48px; }
.search-bar {
  position: relative; max-width: 580px; margin-inline: auto; width: 100%;
}
.search-bar input {
  width: 100%; padding: 12px 44px 12px 18px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: var(--r-pill);
  font-size: 14px;
}
.search-bar input:focus {
  background: var(--bg);
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 12%, transparent);
}
.search-bar .search-go {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.search-suggest {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px);
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow);
  padding: 8px; max-height: 360px; overflow: auto; display: none;
}
.search-suggest.open { display: block; }
.search-suggest a {
  display: flex; gap: 12px; align-items: center;
  padding: 8px 10px; border-radius: 8px;
}
.search-suggest a:hover { background: var(--bg-alt); }
.search-suggest img { width: 40px; height: 40px; object-fit: cover; border-radius: 6px; }
.search-suggest .name { font-size: 14px; font-weight: 500; color: var(--ink); }
.search-suggest .meta { font-size: 12px; color: var(--muted); }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative;
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background var(--t-fast);
}
.icon-btn:hover { background: var(--bg-alt); }
.icon-btn .badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Nav */
.site-nav { border-top: 1px solid var(--line-soft); }
.nav-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 97px; align-items: center;
  overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-list > li > a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  border-radius: 8px;
  white-space: nowrap;
}
.nav-list > li > a:hover { background: var(--bg-alt); color: var(--ink); }
.nav-list > li > a i { color: var(--muted-2); font-size: 13px; }

/* Mega menu */
.has-mega { position: relative; }
.mega {
  position: absolute; top: 100%; left: 0;
  width: min(880px, 90vw);
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 22px;
  display: none;
  grid-template-columns: 2fr 1.2fr;
  gap: 22px;
  z-index: 60;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { display: grid; }
.mega .mega-cats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 18px;
}
.mega .mega-cats a {
  display: flex; align-items: center; gap: 10px; padding: 8px 8px;
  border-radius: 8px; color: var(--ink-2); font-size: 14px;
}
.mega .mega-cats a:hover { background: var(--bg-alt); color: var(--ink); }
.mega .mega-cats a i { color: var(--blue); width: 18px; }
.mega .mega-feature {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff; padding: 18px; border-radius: var(--r);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 200px;
}
.mega .mega-feature small { color: rgba(255,255,255,.7); }
.mega .mega-feature .btn-yellow { align-self: start; margin-top: 10px; }

/* Mobile drawer */
.menu-toggle { display: none; }
.drawer-bg { display: none; position: fixed; inset: 0; background: rgba(10,31,63,.5); z-index: 70; }
.drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(320px, 86vw);
  background: var(--bg);
  z-index: 80;
  transform: translateX(-100%);
  transition: transform var(--t);
  display: flex; flex-direction: column;
  padding: 18px;
}
.drawer.open { transform: translateX(0); }
.drawer-bg.open { display: block; }
.drawer .drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.drawer nav a { display: block; padding: 12px 8px; border-bottom: 1px solid var(--line-soft); color: var(--ink); font-weight: 500; }

@media (max-width: 920px) {
  .menu-toggle { display: inline-flex; }
  .site-nav { display: none; }
  .header-main { grid-template-columns: auto 1fr auto; gap: 14px; }
  .search-bar { order: 3; grid-column: 1/-1; max-width: 100%; }
}

/* ========== Footer ========== */
.site-footer {
  background: var(--navy);
  color: #c8d2e8;
  padding-top: 64px;
  margin-top: 64px;
}
[data-theme="dark"] .site-footer { background: #060d1d; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding-bottom: 36px;
}
@media (max-width: 1280px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; } .footer-grid > div:nth-child(6), .footer-grid > div:nth-child(7) { grid-column: span 2; } }
.site-footer h5 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer a { color: #a9b6d2; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer .brand { color: #fff; }
.site-footer p { color: #a9b6d2; font-size: 14px; }
.newsletter { display: flex; gap: 8px; margin-top: 12px; }
.newsletter input {
  flex: 1; padding: 10px 14px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; border-radius: var(--r-pill); font-size: 14px;
}
.newsletter input::placeholder { color: #8b9bbf; }
.newsletter button { padding: 10px 18px; }
.payments { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.payments span {
  background: #fff; color: var(--navy); font-weight: 700;
  padding: 5px 10px; border-radius: 6px; font-size: 12px; letter-spacing: .04em;
}
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.socials a:hover { background: var(--blue); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: #8b9bbf;
}
@media (max-width: 1180px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } .footer-grid > div:nth-child(5), .footer-grid > div:nth-child(6), .footer-grid > div:nth-child(7) { grid-column: span 2; } }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-grid > div:nth-child(5), .footer-grid > div:nth-child(6), .footer-grid > div:nth-child(7) { grid-column: auto; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ========== Floating buttons ========== */
.floating-btns { position: fixed; right: 18px; bottom: 18px; display: flex; flex-direction: column; gap: 12px; z-index: 40; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: var(--shadow-lg);
  transition: transform var(--t-fast);
}
.float-btn:hover { transform: translateY(-2px); color: #fff; }
.float-btn.whatsapp { background: #25D366; }
.float-btn.totop    { background: var(--navy); }

/* ========== Toast ========== */
.toast-host { position: fixed; right: 24px; bottom: 90px; z-index: 100; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--card); border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  padding: 12px 16px; border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  display: flex; align-items: center; gap: 10px;
  animation: toastIn .25s cubic-bezier(.2,.7,.2,1);
}
.toast.error { border-left-color: var(--red); }
.toast i { color: var(--green); }
.toast.error i { color: var(--red); }
@keyframes toastIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ========== Hero ========== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #eaf1ff 0%, #f4f6fa 100%);
}
[data-theme="dark"] .hero { background: linear-gradient(135deg, #0f1a33, #0b1326); }
.hero-slides { position: relative; }
.hero-slide {
  display: none;
  align-items: center;
  gap: clamp(24px, 5vw, 60px);
  padding: clamp(40px, 6vw, 80px) 0;
}
.hero-slide.active { display: grid; grid-template-columns: 1.1fr 1fr; }
@media (max-width: 860px) { .hero-slide.active { grid-template-columns: 1fr; } }
.hero-copy h1 { margin-bottom: 16px; }
.hero-copy p  { font-size: 17px; max-width: 540px; color: var(--ink-2); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.hero-art {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-dots {
  display: flex; gap: 8px; justify-content: center; padding: 16px 0 28px;
}
.hero-dots button {
  width: 28px; height: 5px; border-radius: 999px; background: rgba(10,31,63,.18);
  transition: background var(--t-fast), width var(--t-fast);
}
.hero-dots button.active { background: var(--blue); width: 38px; }

/* ========== Category tiles ========== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.cat-tile {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); padding: 22px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t-fast);
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line); color: var(--ink); }
.cat-tile .ic {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--blue) 15%, transparent), color-mix(in srgb, var(--yellow) 25%, transparent));
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
}
[data-theme="dark"] .cat-tile .ic { color: #fff; }
.cat-tile .name { font-weight: 600; font-size: 14px; color: var(--ink); }

/* ========== Brand strip ========== */
.brand-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  padding: 26px;
  background: var(--bg-alt); border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
}
.brand-strip span {
  text-align: center; font-weight: 700; font-size: 16px; letter-spacing: .04em;
  color: var(--muted); padding: 6px 0; opacity: .85;
  transition: color var(--t-fast), opacity var(--t-fast);
}
.brand-strip span:hover { color: var(--ink); opacity: 1; }

/* ========== Why Intrys ========== */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.why-card {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); padding: 22px;
  display: flex; gap: 14px; align-items: flex-start;
}
.why-card .ic {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: color-mix(in srgb, var(--blue) 12%, transparent);
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.why-card h4 { margin: 0 0 4px; font-size: 15px; }
.why-card p  { margin: 0; font-size: 13.5px; color: var(--muted); }

/* ========== Testimonials ========== */
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.test-card {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); padding: 22px;
}
.test-card .stars { color: var(--yellow); margin-bottom: 8px; }
.test-card p { font-size: 14.5px; color: var(--ink-2); }
.test-card .who { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.test-card .who .av { width: 38px; height: 38px; border-radius: 50%; background: var(--blue); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.test-card .who div b { display: block; font-size: 14px; }
.test-card .who div small { color: var(--muted); }

/* ========== Newsletter section ========== */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff; border-radius: var(--r-xl);
  padding: clamp(28px, 5vw, 56px);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center;
}
@media (max-width: 760px) { .newsletter-section { grid-template-columns: 1fr; } }
.newsletter-section h2 { color: #fff; margin: 0 0 8px; }
.newsletter-section p { color: rgba(255,255,255,.85); margin: 0; }
.newsletter-section form { display: flex; gap: 8px; }
.newsletter-section input {
  flex: 1; padding: 14px 18px; border-radius: var(--r-pill);
  border: none; font-size: 14px; background: #fff; color: var(--navy);
}

/* ========== Breadcrumbs ========== */
.crumbs { font-size: 13px; color: var(--muted); display: flex; gap: 6px; flex-wrap: wrap; align-items: center; padding: 18px 0; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--blue); }
.crumbs i { font-size: 9px; opacity: .6; }
.crumbs .current { color: var(--ink); font-weight: 500; }

/* ========== Misc ========== */
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state i { font-size: 42px; color: var(--muted-2); margin-bottom: 14px; }
.empty-state h3 { color: var(--ink); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--blue) 12%, transparent);
  color: var(--blue);
}
.tag.green { background: color-mix(in srgb, var(--green) 14%, transparent); color: var(--green); }
.tag.red   { background: color-mix(in srgb, var(--red) 12%, transparent);   color: var(--red); }
.tag.yellow{ background: color-mix(in srgb, var(--yellow) 35%, transparent);color: #8a6d00; }

hr.sep { border: none; height: 1px; background: var(--line); margin: 22px 0; }

/* ========== Animations ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
