/* ============================================================
   MARGETSON ARBITRATION — STYLESHEET
   Structure:
   1. Reset & CSS variables
   2. Base typography & body
   3. Navigation (desktop + mobile hamburger)
   4. Hero (home page)
   5. Page header (inner pages)
   6. Sections & shared layout
   7. About section
   8. Discover cards (home)
   9. Quotes
   10. Experience lists (Arbitrator / Counsel)
   11. Arbitration rules tags
   12. Rankings grid
   13. Contact form
   14. CV page
   15. Footer
   16. Responsive breakpoints
   17. Print styles
   ============================================================ */


/* ── 1. RESET & VARIABLES ─────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --charcoal:    #2d2d2d;
  --charcoal2:   #222222;
  --gold:        #c4a468;
  --text:        #7a7a7a;
  --text-dark:   #5a5a5a;
  --text-light:  rgba(255, 255, 255, 0.75);
  --border:      #e5e5e5;
  --bg:          #ffffff;
  --bg-light:    #f7f7f7;
  --nav-height:  clamp(44px, 5.5vw, 64px);
}

html { scroll-behavior: smooth; }


/* ── 2. BASE TYPOGRAPHY & BODY ────────────────────────────── */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}


/* ── 3. NAVIGATION ────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0 clamp(10px, 2vw, 24px);
  height: var(--nav-height);
  background-color: rgba(228, 228, 228, 0.97);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M24 0H0M0 24V0' stroke='%23a0a0a0' stroke-width='0.4' opacity='0.35'/%3E%3C/svg%3E");
  background-position: left top, left 20px;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(180, 180, 180, 0.6);
}

/* Logo */
.nav-logo {
  font-size: clamp(0.72rem, 1.45vw, 1.2rem);
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: clamp(4px, 0.5vw, 6px) clamp(5px, 0.7vw, 8px);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  border: 1.44px solid transparent;
  border-image: linear-gradient(to right, rgba(133,138,144,0.8) 42%, rgba(196,164,104,0.8) 51%) 1;
}
.nav-logo span { color: #858a90; }

/* Split-flap characters */
.flap-char {
  display: inline-block;
  min-width: 0.6em;
  text-align: center;
}
.flap-space { min-width: 0 !important; width: 0.25em !important; }
.nav-logo .fc-gold { color: var(--gold); }
.nav-logo .fc-grey { color: #858a90; }

@keyframes flipChar {
  0%   { transform: scaleY(1); opacity: 1; }
  40%  { transform: scaleY(0); opacity: 0; }
  60%  { transform: scaleY(0); opacity: 0; }
  100% { transform: scaleY(1); opacity: 1; }
}
.flap-char.flip { animation: flipChar 0.07s ease-in-out; }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  transition: opacity 0.84s ease;
}

.nav-links a {
  display: inline-block;
  color: #7a7a7a;
  text-decoration: none;
  font-size: clamp(0.65rem, 1.3vw, 1.04rem);
  font-weight: 400;
  padding: 0 clamp(7px, 1.4vw, 18px);
  height: var(--nav-height);
  line-height: var(--nav-height);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
  border-bottom-color: var(--gold);
}

/* Hamburger button (mobile only) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 3px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(0,0,0,0.06); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
/* Hamburger animates to X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(235, 235, 235, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(180, 180, 180, 0.6);
  z-index: 99;
  flex-direction: column;
  padding: 8px 0 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 13px clamp(16px, 4vw, 28px);
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold); background: rgba(196, 164, 104, 0.07); }


/* ── 4. HERO (home page) ──────────────────────────────────── */
#hero {
  background-color: #5f6366;
  background-image:
    linear-gradient(to right, #3a3a3a 0%, #5f6366 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: var(--nav-height) 0 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 21%;
  width: 100%;
  max-width: 1100px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(40px, 6vw, 80px) clamp(16px, 2.5vw, 32px);
}

.hero-photo {
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: absolute;
  top: 0; left: 0;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  #5f6366 0%, #5f6366 3%, rgba(95,99,102,0.55) 14%, transparent 32%),
    linear-gradient(to left,   #5f6366 0%, #5f6366 2%, rgba(95,99,102,0.45) 10%, transparent 22%),
    linear-gradient(to top,    #5f6366 0%, #5f6366 1%, rgba(95,99,102,0.4)  5%,  transparent 12%),
    linear-gradient(to bottom, #5f6366 0%, #5f6366 1%, rgba(95,99,102,0.35) 8%,  transparent 20%);
  z-index: 1;
  pointer-events: none;
}

.hero-credentials {
  font-size: clamp(0.75rem, 1.1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  margin-bottom: 16px;
}
.hero-name {
  font-size: clamp(1.4rem, 2.8vw, 2.34rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero-rule {
  width: 40px;
  height: 3px;
  background: #a8a8a8;
  margin-bottom: 24px;
}
.hero-specialisms {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}
.hero-specialisms span {
  font-size: clamp(0.85rem, 1.4vw, 1.16rem);
  color: var(--gold);
  font-weight: 400;
}
.hero-roles { display: flex; flex-direction: column; gap: 2px; }
.hero-roles span {
  font-size: clamp(0.7rem, 1.05vw, 0.9rem);
  color: #a8a8a8;
}
.hero-link { color: inherit; text-decoration: none; }
.hero-cta { margin-top: 36px; }

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #3a3a3a;
  padding: 0.45rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #a0823d; transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 0.45rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--gold); color: #3a3a3a; }


/* ── 5. PAGE HEADER (inner pages) ─────────────────────────── */
.page-header {
  background-color: #5f6366;
  background-image:
    linear-gradient(to right, #3a3a3a 0%, #5f6366 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  padding: clamp(68px, 10vw, 108px) clamp(12px, 2vw, 24px) clamp(28px, 4.5vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.page-header-inner { max-width: 960px; margin: 0 auto; }
.page-header h1 {
  font-size: clamp(1.1rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: clamp(4px, 0.6vw, 8px);
}
.page-header p {
  color: rgba(255, 255, 255, 0.45);
  font-size: clamp(0.68rem, 1.1vw, 0.93rem);
}


/* ── 6. SECTIONS & SHARED LAYOUT ─────────────────────────── */
section {
  padding: 32px 24px 52px;
  scroll-margin-top: 64px;
}
.section-inner { max-width: 960px; margin: 0 auto; }

.section-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.section-heading span {
  display: inline-block;
  padding-bottom: 14px;
  margin-bottom: -16px;
  border-bottom: 2px solid var(--gold);
}
/* Top margin for subsequent headings within the same section */
.section-heading.mt { margin-top: 48px; }


/* ── 7. ABOUT ─────────────────────────────────────────────── */
#about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.about-body p {
  margin-bottom: 1.1rem;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text);
}
.credentials-block {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}
.credentials-block h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.cred-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cred-list li {
  font-size: 0.875rem;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.cred-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}


/* ── 8. DISCOVER CARDS (home) ─────────────────────────────── */
.discover-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 24px;
}
.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 32px;
}
.discover-card {
  background: var(--bg);
  padding: 32px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
}
.discover-card:hover { background: #fafafa; }
.discover-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.discover-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.discover-desc { font-size: 0.85rem; color: var(--text); line-height: 1.7; flex: 1; }
.discover-arrow { font-size: 0.82rem; color: var(--gold); font-weight: 600; margin-top: 8px; }


/* ── 9. QUOTES ────────────────────────────────────────────── */
#quotes {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-item {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.quote-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}
.quote-source { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; }


/* ── 10. EXPERIENCE LISTS ─────────────────────────────────── */
.exp-intro {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.exp-subheading {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}
.exp-list { list-style: none; padding: 0; margin: 0; }
.exp-list li {
  position: relative;
  padding: 16px 0 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}
.exp-list li:first-child { border-top: 1px solid var(--border); }
.exp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}


/* ── 11. ARBITRATION RULES TAGS ───────────────────────────── */
#rules { background: var(--charcoal); padding: 44px 24px; }
.rules-inner { max-width: 960px; margin: 0 auto; }
.rules-inner .section-heading { color: #fff; border-bottom-color: rgba(255,255,255,0.1); }
.rules-inner .section-heading span { border-bottom-color: var(--gold); }
.rules-sub { font-size: 0.875rem; color: rgba(255,255,255,0.4); margin-bottom: 22px; }
.rules-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.rules-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  padding: 6px 16px;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s;
}
.rules-tag:hover {
  background: rgba(196,164,104,0.15);
  border-color: rgba(196,164,104,0.4);
  color: #fff;
}


/* ── 12. RANKINGS GRID ────────────────────────────────────── */
.rankings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.ranking-card { background: var(--bg); padding: 28px 20px; transition: background 0.2s; }
.ranking-card:hover { background: var(--bg-light); }
.ranking-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.ranking-title { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; letter-spacing: -0.01em; }
.ranking-body { font-size: 0.82rem; color: var(--text); line-height: 1.6; }


/* ── 13. CONTACT FORM ─────────────────────────────────────── */
#contact { background: var(--bg-light); border-top: 1px solid var(--border); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info p { font-size: 0.93rem; color: var(--text); line-height: 1.8; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.875rem; color: var(--text); }
.contact-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid { border-color: #c0392b; }

.form-submit {
  background: var(--text-dark);
  color: #fff;
  border: none;
  padding: 0.7rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  align-self: flex-start;
  transition: background 0.2s;
  letter-spacing: 0.01em;
}
.form-submit:hover { background: #000; }
#form-success { font-size: 0.875rem; color: var(--gold); display: none; }


/* ── 14. CV PAGE ──────────────────────────────────────────── */
.cv-section { background: var(--bg); }
.cv-intro { font-size: 0.97rem; color: var(--text); line-height: 1.8; margin-bottom: 1.5rem; max-width: 600px; }
.cv-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }


/* ── 15. FOOTER ───────────────────────────────────────────── */
footer { background: var(--charcoal2); padding: 48px 24px 32px; }
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.footer-col-title { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.footer-col-sub { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.65; }
.footer-col-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { max-width: 960px; margin: 0 auto; font-size: 0.78rem; color: rgba(255,255,255,0.2); text-align: center; }


/* ── 16. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid     { grid-template-columns: 1fr; gap: 32px; }
  .quotes-grid,
  .discover-grid    { grid-template-columns: 1fr; }
  .rankings-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-inner     { grid-template-columns: 1fr; gap: 28px; }
  .form-row         { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  /* Hero: stack photo above content */
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 1fr;
  }
  .hero-photo {
    order: -1;
    height: 240px;
  }
  .hero-photo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .hero-photo::before { display: none; }
  .hero-content { padding: 32px 20px; }

  /* Rankings */
  .rankings-grid { grid-template-columns: 1fr; }

  /* Nav: hide desktop links, show hamburger */
  .nav-links     { display: none !important; }
  .nav-hamburger { display: flex; }

  /* Sections */
  section           { padding: 40px 20px; }
  .discover-section { padding: 40px 20px; }
}


/* ── 17. PRINT STYLES ─────────────────────────────────────── */
@media print {
  nav,
  .mobile-menu,
  .nav-hamburger,
  .hero-cta,
  .discover-section,
  #quotes,
  .form-submit    { display: none !important; }

  .page-header {
    padding: 24px 0 16px;
    background: #fff !important;
    background-image: none !important;
    border-bottom: 2px solid #c4a468;
  }
  .page-header h1 { color: #2d2d2d !important; font-size: 1.6rem; }
  .page-header p  { color: #555 !important; }

  body { font-size: 11pt; color: #000; background: #fff; }

  #rules,
  footer {
    background: #fff !important;
    color: #000 !important;
    border-top: 1px solid #ccc;
  }
  .rules-inner .section-heading { color: #000; }
  .rules-sub  { color: #555; }
  .rules-tag  { border: 1px solid #ccc; color: #000; background: #f5f5f5; }

  .section-heading,
  .about-body p,
  .exp-list li,
  .quote-text,
  .ranking-body,
  .contact-info p { color: #000; }

  .exp-list li,
  .quote-item,
  .ranking-card { page-break-inside: avoid; }

  * { box-shadow: none !important; text-shadow: none !important; transition: none !important; }

  a[href]::after          { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  a[href^="#"]::after,
  .nav-logo::after        { content: ''; }

  footer .footer-copy { color: #555; }
}
