/* ==========================================================================
   Varrotek — brand palette per Brand Identity Guidelines v1.0
   ========================================================================== */
:root {
  --deep-navy: #0F1123;
  --royal-purple: #6B5FA8;
  --steel-blue: #6E8AC2;
  --soft-lavender: #8B7FC4;
  --light-periwinkle: #A599CC;
  --warm-cream: #F0EDE4;
  --charcoal: #282637;
  --off-white: #E8E4F0;
  --white: #FFFFFF;

  --font: 'Poppins', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --container: 1180px;
  --nav-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 300;
  background: var(--deep-navy);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== Preloader ===== */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--deep-navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease-out), visibility .7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-mark .rotor { transform-origin: center; animation: rotorSpin 0.6s linear infinite; }
.preloader-mark .rotor-l { transform-origin: 90px 163px; }
.preloader-mark .rotor-r { transform-origin: 310px 163px; }
@keyframes rotorSpin { 50% { transform: scaleX(0.25); } }
.preloader-mark .arc { stroke-dasharray: 480; stroke-dashoffset: 480; animation: arcDraw 1.4s var(--ease-out) forwards; }
.preloader-mark .arc-bottom { animation-delay: .15s; }
@keyframes arcDraw { to { stroke-dashoffset: 0; } }

/* ===== Starfield canvas ===== */
#starfield {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: transform .45s var(--ease-out), background .35s, box-shadow .35s;
}
.nav.scrolled {
  background: rgba(15, 17, 35, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(139, 127, 196, 0.18);
}
.nav.hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}
/* Compact size; GSAP scrubs scale 2.1 -> 1 with scroll so the logo renders
   2.1x over the hero and settles to this size (see main.js). transform-origin
   left top makes the enlarged version grow downward over the hero, not above
   the viewport. No-JS / reduced-motion users get this compact size statically. */
.nav-logo img { height: 56px; width: auto; transform-origin: left top; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 400; letter-spacing: .06em;
  color: var(--off-white); position: relative;
  transition: color .25s;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1.5px; background: var(--soft-lavender);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover { color: var(--light-periwinkle); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 10px 22px; border-radius: 999px;
  background: var(--royal-purple); color: var(--white) !important;
  font-weight: 500;
  transition: background .25s, transform .25s var(--ease-out), box-shadow .25s;
}
.nav-cta:hover { background: var(--soft-lavender); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107, 95, 168, 0.4); }
.nav-toggle { display: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-block; padding: 15px 34px; border-radius: 999px;
  font-family: var(--font); font-size: 15px; font-weight: 500; letter-spacing: .04em;
  cursor: pointer; border: none;
  transition: transform .3s var(--ease-out), box-shadow .3s, background .3s, border-color .3s;
}
.btn-primary { background: var(--royal-purple); color: var(--white); }
.btn-primary:hover { background: var(--soft-lavender); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(107, 95, 168, 0.45); }
.btn-ghost { background: transparent; color: var(--off-white); border: 1.5px solid rgba(232, 228, 240, 0.4); }
.btn-ghost:hover { border-color: var(--steel-blue); color: var(--white); transform: translateY(-3px); }
.btn-lg { font-size: 18px; padding: 18px 44px; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100svh; z-index: 1;
  display: flex; align-items: center;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media video {
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,17,35,0.55) 0%, rgba(15,17,35,0.25) 40%, rgba(15,17,35,0.92) 100%),
    radial-gradient(ellipse at 25% 60%, rgba(15,17,35,0.55) 0%, transparent 65%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; padding: 140px 24px 100px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--off-white);
  /* Legibility over bright hero footage: brighter color + weight + shadow */
  text-shadow: 0 1px 3px rgba(15,17,35,0.55), 0 2px 16px rgba(15,17,35,0.75);
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--steel-blue);
  box-shadow: 0 0 0 0 rgba(110, 138, 194, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(110, 138, 194, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(110, 138, 194, 0); }
  100% { box-shadow: 0 0 0 0 rgba(110, 138, 194, 0); }
}
.hero-title {
  font-size: clamp(44px, 7.2vw, 92px);
  font-weight: 700; line-height: 1.04; letter-spacing: -0.01em;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(15,17,35,0.45);
  margin-bottom: 30px;
}
/* padding-bottom gives descenders (g, p, y) room inside the overflow:hidden
   reveal mask; the matching negative margin keeps line spacing unchanged. */
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.16em; margin-bottom: -0.16em; }
.hero-title .line > span { display: inline-block; }
.accent {
  background: linear-gradient(92deg, var(--soft-lavender), var(--steel-blue));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
  max-width: 540px; font-size: 18px; font-weight: 300;
  color: var(--off-white); opacity: .92;
  text-shadow: 0 1px 18px rgba(15,17,35,0.6);
  margin-bottom: 42px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint-track {
  width: 26px; height: 42px; border: 1.5px solid rgba(232,228,240,.45);
  border-radius: 14px; display: block; position: relative;
}
.scroll-hint-dot {
  position: absolute; top: 7px; left: 50%; margin-left: -2.5px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--light-periwinkle);
  animation: scrollDot 2s var(--ease-out) infinite;
}
@keyframes scrollDot { 60% { transform: translateY(18px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }
.scroll-hint-label { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: rgba(232,228,240,.55); }

/* ===== Sections (shared) ===== */
main { position: relative; z-index: 1; }
.section { padding: 130px 0; position: relative; }
.section-eyebrow {
  font-size: 13px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--steel-blue); margin-bottom: 18px;
}
.section-eyebrow.light { color: var(--light-periwinkle); }
.section-title {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 56px;
}

/* ===== Pillars ===== */
.pillars { background: linear-gradient(180deg, var(--deep-navy) 0%, rgba(40,38,55,0.35) 100%); }
.pillar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.pillar-card {
  background: rgba(40, 38, 55, 0.55);
  border: 1px solid rgba(139, 127, 196, 0.16);
  border-radius: 18px; padding: 36px 28px;
  backdrop-filter: blur(6px);
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 127, 196, 0.45);
  box-shadow: 0 24px 48px rgba(15, 17, 35, 0.6);
}
.pillar-icon {
  width: 48px; height: 48px; margin-bottom: 22px;
  color: var(--soft-lavender);
}
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-card h3 { font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.pillar-card p { font-size: 14.5px; color: var(--light-periwinkle); }

/* ===== Stats ===== */
.stats { padding: 70px 0; border-top: 1px solid rgba(139,127,196,.14); border-bottom: 1px solid rgba(139,127,196,.14); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num {
  display: block; font-size: clamp(36px, 4vw, 54px); font-weight: 700;
  color: var(--white); line-height: 1.1;
}
.stat-label { font-size: 13.5px; letter-spacing: .06em; color: var(--light-periwinkle); }

/* ===== Services ===== */
.service-list { display: flex; flex-direction: column; }
.service-row {
  display: grid; grid-template-columns: 80px 1fr 380px; gap: 36px; align-items: center;
  padding: 48px 0;
  border-top: 1px solid rgba(139, 127, 196, 0.16);
}
.service-row:last-child { border-bottom: 1px solid rgba(139, 127, 196, 0.16); }
.service-index {
  font-size: 15px; font-weight: 600; color: var(--steel-blue); letter-spacing: .1em;
}
.service-body h3 { font-size: 28px; font-weight: 600; color: var(--white); margin-bottom: 14px; }
.service-body p { font-size: 16px; color: var(--off-white); opacity: .85; max-width: 520px; margin-bottom: 20px; }
.service-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.service-tags li {
  font-size: 12.5px; font-weight: 400; letter-spacing: .04em;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(110, 138, 194, 0.4); color: var(--light-periwinkle);
}
.service-media { border-radius: 14px; overflow: hidden; aspect-ratio: 16/10; }
.service-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform .8s var(--ease-out);
}
.service-row:hover .service-media img { transform: scale(1.12); }

/* ===== Showreel ===== */
.showreel { position: relative; z-index: 1; padding: 60px 0; }
.showreel-frame {
  position: relative; margin: 0 auto;
  width: min(92vw, 1400px); aspect-ratio: 16/8.2;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(15, 17, 35, 0.7);
}
.showreel-frame video { width: 100%; height: 100%; object-fit: cover; }
.showreel-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 48px;
  background: linear-gradient(180deg, transparent, rgba(15,17,35,0.85));
}
.showreel-caption h2 {
  font-size: clamp(28px, 3.6vw, 46px); font-weight: 700; color: var(--white);
}

/* ===== Work grid ===== */
/* Heading swaps by input type: hover devices see "Hover to fly / Click…",
   touch devices see "Tap to go full screen" (no hover exists on a phone). */
.work-head-touch { display: none; }
@media (hover: none) {
  .work-head-hover { display: none; }
  .work-head-touch { display: block; }
}
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.work-tile {
  position: relative; border-radius: 18px; overflow: hidden; cursor: pointer;
  aspect-ratio: 16/9;
  border: 1px solid rgba(139, 127, 196, 0.14);
}
.work-tile video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform .7s var(--ease-out);
}
.work-tile:hover video { transform: scale(1.08); }
.work-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 28px;
  display: flex; flex-direction: column; gap: 3px;
  background: linear-gradient(180deg, transparent, rgba(15, 17, 35, 0.88));
}
.work-cat {
  font-size: 11.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--steel-blue);
}
.work-name { font-size: 18px; font-weight: 600; color: var(--white); }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 440px 1fr; gap: 72px; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo-wrap img {
  border-radius: 20px; width: 100%;
  box-shadow: 0 30px 70px rgba(15, 17, 35, 0.65);
}
.orbit-deco {
  position: absolute; top: -56px; right: -56px; width: 160px; opacity: .8;
  pointer-events: none;
}
.about-body .section-title { margin-bottom: 28px; }
.about-body p { font-size: 16px; opacity: .88; margin-bottom: 18px; max-width: 560px; }
.about-checks { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.about-checks li {
  position: relative; padding-left: 30px;
  font-size: 14.5px; font-weight: 400; color: var(--light-periwinkle);
}
.about-checks li::before {
  content: ''; position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--steel-blue), var(--royal-purple));
}

/* ===== Contact ===== */
.contact {
  background:
    radial-gradient(ellipse 70% 90% at 50% 110%, rgba(107, 95, 168, 0.28), transparent),
    linear-gradient(180deg, transparent, rgba(40,38,55,0.3));
}
.contact-inner { text-align: center; max-width: 760px; }
.contact-inner .section-title { margin-bottom: 24px; }
.contact-sub { font-size: 17px; opacity: .85; margin-bottom: 40px; }
.contact-note { margin-top: 64px; font-size: 13px; letter-spacing: .08em; color: var(--light-periwinkle); }
.contact-email { color: var(--soft-lavender); border-bottom: 1px solid rgba(139,127,196,.5); transition: color .25s, border-color .25s; }
.contact-email:hover { color: var(--white); border-color: var(--white); }

/* ===== Quote form ===== */
.quote-form { max-width: 680px; margin: 0 auto; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 12.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--light-periwinkle);
}
.form-field .optional { text-transform: none; letter-spacing: 0; opacity: .6; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font); font-size: 15px; font-weight: 300;
  color: var(--off-white);
  background: rgba(40, 38, 55, 0.55);
  border: 1px solid rgba(139, 127, 196, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--light-periwinkle) 50%), linear-gradient(135deg, var(--light-periwinkle) 50%, transparent 50%); background-position: calc(100% - 21px) 50%, calc(100% - 16px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.form-field select:invalid { color: rgba(232,228,240,.45); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--steel-blue);
  box-shadow: 0 0 0 3px rgba(110, 138, 194, 0.18);
  background: rgba(40, 38, 55, 0.8);
}
.quote-form .btn { width: 100%; margin-top: 6px; }
.form-status { margin-top: 18px; min-height: 24px; font-size: 14.5px; text-align: center; }
.form-status.ok { color: #9FD8A8; }
.form-status.err { color: #E8A0A0; }

/* ===== Footer ===== */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(139, 127, 196, 0.16);
  padding: 44px 0;
  background: var(--deep-navy);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
/* Full size; GSAP scrubs scale 0.42 -> 1 across the whole page so it reaches
   full size exactly at the bottom (see main.js). */
#footerLogo { height: 84px; width: auto; transform-origin: left center; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13.5px; color: var(--light-periwinkle); transition: color .25s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12.5px; color: rgba(165, 153, 204, 0.6); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(15, 17, 35, 0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease-out), visibility .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox video {
  width: min(92vw, 1300px); max-height: 84vh;
  border-radius: 14px;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute; top: 26px; right: 34px;
  font-size: 44px; line-height: 1; font-weight: 300;
  background: none; border: none; color: var(--off-white); cursor: pointer;
  transition: color .25s, transform .25s;
}
.lightbox-close:hover { color: var(--soft-lavender); transform: rotate(90deg); }

/* ===== Reveal helpers (GSAP sets final state; these are safe fallbacks) ===== */
.no-js .reveal { opacity: 1 !important; transform: none !important; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 48px 1fr; }
  .service-media { grid-column: 2; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media { max-width: 440px; }
}
@media (max-width: 720px) {
  .section { padding: 90px 0; }
  .nav-links {
    position: fixed; inset: 0; z-index: -1;
    background: rgba(15, 17, 35, 0.97);
    flex-direction: column; justify-content: center; gap: 40px;
    opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
  }
  .nav-links.open { opacity: 1; visibility: visible; z-index: 99; }
  .nav-links a { font-size: 22px; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 7px; z-index: 101;
    background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav-toggle span {
    width: 26px; height: 2px; background: var(--off-white);
    transition: transform .35s var(--ease-out);
  }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .pillar-grid, .work-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .service-row { grid-template-columns: 1fr; gap: 20px; }
  .service-index { display: none; }
  .service-media { grid-column: 1; }
  .showreel-frame { width: 94vw; aspect-ratio: 16/11; border-radius: 16px; }
  .showreel-caption { padding: 26px; }
  .about-checks { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .nav-logo img { height: 44px; }
  #footerLogo { height: 64px; }
  .orbit-deco { top: -36px; right: -16px; width: 110px; }
  .hero-sub { font-size: 16px; }
  .scroll-hint { display: none; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Anti-spam honeypot wrapper — off-screen, ported from production form */
.hp-wrap { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ==========================================================================
   Legal pages (terms.html / privacy.html) — lightweight, no JS dependencies
   ========================================================================== */
.legal-nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(15, 17, 35, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--charcoal);
}
.legal-nav .legal-nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 16px 24px; }
.legal-nav img { height: 32px; width: auto; display: block; }
.legal-nav a.back-home { color: var(--light-periwinkle); text-decoration: none; font-size: 0.9rem; }
.legal-nav a.back-home:hover { color: var(--soft-lavender); }
.legal-main { max-width: 820px; margin: 0 auto; padding: 64px 24px 96px; }
.legal-main h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700; color: var(--off-white); margin-bottom: 8px; }
.legal-updated { color: var(--light-periwinkle); font-size: 0.85rem; margin-bottom: 48px; }
.legal-main h2 { font-size: 1.25rem; font-weight: 600; color: var(--off-white); margin: 36px 0 12px; }
.legal-main h3 { font-size: 1.05rem; font-weight: 500; color: var(--off-white); margin: 20px 0 8px; }
.legal-main p, .legal-main li { color: var(--light-periwinkle); line-height: 1.7; }
.legal-main p { margin-bottom: 12px; }
.legal-main ul { list-style: disc; padding-left: 24px; margin: 8px 0 12px; }
.legal-main a { color: var(--royal-purple); text-decoration: underline; }
.legal-main a:hover { color: var(--soft-lavender); }
.legal-disclaimer { margin-top: 48px; padding: 16px 20px; background: rgba(40, 38, 55, 0.5); border: 1px solid var(--charcoal); border-radius: 12px; }
.legal-disclaimer p { font-size: 0.85rem; font-style: italic; margin: 0; }
