/* ============================================================
   LovelyPixel — Design System & Styles
   Version: 1.0
   ============================================================ */

/* ---------- CSS Custom Properties (Design Tokens) ---------- */
:root {
  /* Brand colours */
  --color-primary: #8B1A32;
  --color-primary-dark: #6D1428;
  --color-primary-light: #A8324C;
  --color-primary-subtle: rgba(139, 26, 50, 0.08);

  --color-secondary: #1B2A4A;
  --color-secondary-dark: #111D36;
  --color-secondary-light: #2A3F6A;

  --color-accent: #4A7FC7;
  --color-accent-light: #6B9BD8;

  /* Neutrals */
  --color-cream: #FDF8F4;
  --color-offwhite: #FAF9F7;
  --color-grey-50: #F5F3F0;
  --color-grey-100: #EEEBE7;
  --color-grey-200: #E0DCD8;
  --color-grey-300: #C8C3BD;
  --color-grey-400: #A09A93;
  --color-grey-500: #7A746D;
  --color-grey-600: #5C5650;
  --color-grey-700: #3E3935;
  --color-grey-800: #2C2824;
  --color-white: #FFFFFF;

  /* Semantic */
  --color-success: #2E7D4F;
  --color-error: #C62828;
  --color-warning: #E6A117;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.8125rem;
  --text-base: 1rem;
  --text-md: 1.0625rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.5rem;

  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1160px;
  --container-narrow: 820px;
  --container-wide: 1320px;
  --container-padding: 1.5rem;

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.06), 0 4px 10px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  --shadow-card-hover: 0 8px 30px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}


/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-grey-800);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-secondary);
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}


/* ---------- Typography ---------- */
.h1, h1 {
  font-size: clamp(2rem, 4.5vw, var(--text-6xl));
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.h2, h2 {
  font-size: clamp(1.625rem, 3.5vw, var(--text-4xl));
  letter-spacing: -0.015em;
  line-height: var(--leading-tight);
}

.h3, h3 {
  font-size: clamp(1.25rem, 2.5vw, var(--text-2xl));
  letter-spacing: -0.01em;
  line-height: var(--leading-snug);
}

.h4, h4 {
  font-size: clamp(1.125rem, 2vw, var(--text-xl));
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
}

.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-md { font-size: var(--text-md); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }

.text-muted { color: var(--color-grey-500); }
.text-light { color: var(--color-grey-400); }
.text-dark { color: var(--color-grey-800); }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }
.text-left { text-align: left; }

.lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-grey-600);
}

.subtitle {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}

.meta {
  font-size: var(--text-sm);
  color: var(--color-grey-500);
}


/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.section--sm {
  padding: clamp(2rem, 4vw, 4rem) 0;
}

.section--lg {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.section--cream {
  background-color: var(--color-cream);
}

.section--offwhite {
  background-color: var(--color-offwhite);
}

.section--dark {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--dark .lead,
.section--dark p {
  color: var(--color-grey-300);
}

.section-header {
  max-width: 680px;
  margin-bottom: var(--space-3xl);
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header .subtitle {
  margin-bottom: var(--space-sm);
  display: block;
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header .lead {
  margin-bottom: 0;
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }
}

/* Flex helpers */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }


/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.75rem;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  line-height: 1;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 26, 50, 0.3);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--outline-light {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline-light:hover {
  background-color: var(--color-white);
  color: var(--color-secondary);
  border-color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  padding: 0.5rem 0;
  border: none;
  border-radius: 0;
  font-weight: var(--weight-semibold);
}

.btn--ghost:hover {
  color: var(--color-primary-dark);
}

.btn--ghost::after { display: none; }

.btn--ghost svg {
  transition: transform var(--transition-fast);
}

.btn--ghost:hover svg {
  transform: translateX(3px);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-lg);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
  }
  .btn-group .btn {
    width: 100%;
  }
}


/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  border-bottom-color: var(--color-grey-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  z-index: calc(var(--z-overlay) + 1);
}

.logo img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  color: var(--color-secondary);
  letter-spacing: -0.01em;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-main a {
  padding: 0.5rem 0.875rem;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-grey-600);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
  position: relative;
}

.nav-main a:hover {
  color: var(--color-secondary);
  background-color: var(--color-grey-50);
}

.nav-main a.active {
  color: var(--color-primary);
  font-weight: var(--weight-semibold);
}

.nav-main a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 1px;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--color-white);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all var(--transition-base);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  color: var(--color-grey-700);
}

.nav-dropdown-menu a:hover {
  background-color: var(--color-cream);
  color: var(--color-primary);
}

.nav-dropdown-menu a .dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-grey-50);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.nav-dropdown-menu a:hover .dropdown-icon {
  background: var(--color-primary-subtle);
}

.nav-dropdown-menu a .dropdown-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-grey-500);
}

.nav-dropdown-menu a:hover .dropdown-icon svg {
  stroke: var(--color-primary);
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-cta .btn {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: calc(var(--z-overlay) + 1);
  padding: 0;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile navigation overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: var(--z-overlay);
  padding: 100px var(--container-padding) 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  display: block;
  padding: 0.875rem 0;
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-grey-100);
  text-decoration: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--color-primary);
}

.mobile-nav .mobile-sub {
  padding-left: 1.25rem;
}

.mobile-nav .mobile-sub a {
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--color-grey-600);
}

.mobile-nav .mobile-cta {
  margin-top: var(--space-xl);
}

@media (max-width: 900px) {
  .nav-main,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }
}


/* ---------- Hero Sections ---------- */
.hero {
  position: relative;
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 6rem);
  overflow: hidden;
}

.hero--home {
  padding-top: clamp(8rem, 14vw, 12rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
  background: linear-gradient(170deg, var(--color-cream) 0%, var(--color-white) 60%, var(--color-offwhite) 100%);
}

.hero--home::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(139, 26, 50, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero--home::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(74, 127, 199, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero--page {
  padding-top: clamp(8rem, 12vw, 10rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(170deg, var(--color-cream) 0%, var(--color-white) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: var(--space-lg);
}

.hero .lead {
  max-width: 640px;
  margin-bottom: var(--space-xl);
}

.hero .btn-group {
  margin-bottom: var(--space-lg);
}

.hero-sub-line {
  font-size: var(--text-md);
  color: var(--color-grey-500);
  max-width: 700px;
  line-height: var(--leading-relaxed);
}


/* ---------- Proof Strip ---------- */
.proof-strip {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-grey-100);
  border-bottom: 1px solid var(--color-grey-100);
}

.proof-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.proof-item {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: background-color var(--transition-base);
}

.proof-item:hover {
  background-color: var(--color-cream);
}

.proof-stat {
  font-size: clamp(1.5rem, 3vw, var(--text-3xl));
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-xs);
}

.proof-label {
  font-size: var(--text-sm);
  color: var(--color-grey-500);
  line-height: var(--leading-snug);
}

@media (max-width: 768px) {
  .proof-strip .container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .proof-item {
    padding: var(--space-md);
  }
}

@media (max-width: 480px) {
  .proof-strip .container {
    grid-template-columns: 1fr;
  }
}


/* ---------- Cards ---------- */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
}

.card:hover {
  border-color: var(--color-grey-300);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-primary-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-primary);
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card .card-desc {
  color: var(--color-grey-600);
  font-size: var(--text-base);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-relaxed);
}

.card-bullets {
  margin-bottom: var(--space-xl);
}

.card-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.375rem 0;
  font-size: var(--text-sm);
  color: var(--color-grey-700);
  line-height: var(--leading-snug);
}

.card-bullets li svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Service card accent top border */
.card--accent {
  border-top: 3px solid var(--color-primary);
}

/* Work/case study cards */
.card--work {
  overflow: hidden;
  padding: 0;
}

.card--work .card-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card--work .card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.05) 100%);
}

.card--work .card-thumb svg {
  width: 48px;
  height: 48px;
  stroke: rgba(255,255,255,0.3);
}

.card--work .card-body {
  padding: var(--space-xl);
}

.card--work .card-category {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.card--work h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.card--work .card-problem {
  font-size: var(--text-sm);
  color: var(--color-grey-500);
  margin-bottom: var(--space-xs);
}

.card--work .card-result {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-secondary);
}


/* ---------- Feature/benefit grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}

.feature-item {
  display: flex;
  gap: var(--space-lg);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-primary-subtle);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
}

.feature-content h4 {
  margin-bottom: var(--space-xs);
  font-size: var(--text-base);
}

.feature-content p {
  font-size: var(--text-sm);
  color: var(--color-grey-600);
  line-height: var(--leading-relaxed);
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}


/* ---------- Process Steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  counter-reset: step;
}

.process-step {
  position: relative;
  text-align: center;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-lg);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  border-radius: var(--radius-full);
}

.process-step h4 {
  margin-bottom: var(--space-xs);
  font-size: var(--text-base);
  color: var(--color-secondary);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--color-grey-500);
}

/* Connector line between steps */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: var(--color-grey-200);
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .process-step:not(:last-child)::after {
    display: none;
  }
}


/* ---------- Industries ---------- */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-grey-700);
  transition: all var(--transition-base);
}

.industry-chip:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-subtle);
}

.industry-chip svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-grey-400);
}

.industry-chip:hover svg {
  stroke: var(--color-primary);
}


/* ---------- CTA Band ---------- */
.cta-band {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--color-secondary);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(139, 26, 50, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  color: var(--color-grey-300);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-group {
  justify-content: center;
}


/* ---------- Filter chips (Work page) ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  justify-content: center;
}

.filter-chip {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-grey-600);
  background: var(--color-white);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-chip:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-chip.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}


/* ---------- Case Study Detail ---------- */
.case-study-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-grey-200);
  margin-bottom: var(--space-2xl);
}

.case-study-meta-item {
  flex: 1;
  min-width: 160px;
}

.case-study-meta-item .label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-grey-400);
  margin-bottom: var(--space-xs);
}

.case-study-meta-item .value {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--color-secondary);
}


/* ---------- Blog / Insights ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-xl);
}

.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  border-color: var(--color-grey-300);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.blog-card-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-grey-50) 50%, var(--color-offwhite) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-thumb svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-grey-300);
}

.blog-card-body {
  padding: var(--space-xl);
}

.blog-card-category {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.blog-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  line-height: var(--leading-snug);
}

.blog-card h3 a {
  color: var(--color-secondary);
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--color-primary);
}

.blog-card .excerpt {
  font-size: var(--text-sm);
  color: var(--color-grey-500);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.blog-card .meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--text-xs);
  color: var(--color-grey-400);
}


/* ---------- Blog Post Content ---------- */
.article-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.article-content h2 {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
}

.article-content h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.article-content p {
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: var(--color-grey-700);
  margin-bottom: var(--space-lg);
}

.article-content ul,
.article-content ol {
  margin-bottom: var(--space-lg);
  padding-left: 1.5rem;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: var(--color-grey-700);
  margin-bottom: var(--space-sm);
}

.article-content blockquote {
  margin: var(--space-2xl) 0;
  padding: var(--space-lg) var(--space-xl);
  border-left: 4px solid var(--color-primary);
  background: var(--color-cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-content blockquote p {
  font-style: italic;
  color: var(--color-grey-600);
  margin-bottom: 0;
}

.article-content code {
  font-size: 0.9em;
  background: var(--color-grey-50);
  padding: 0.15em 0.4em;
  border-radius: var(--radius-sm);
  color: var(--color-primary);
}

.article-content pre {
  background: var(--color-secondary);
  color: var(--color-grey-200);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: var(--space-xl);
}

.article-content pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: var(--text-sm);
}

.article-content strong {
  font-weight: var(--weight-semibold);
  color: var(--color-grey-800);
}

.article-content img {
  border-radius: var(--radius-lg);
  margin: var(--space-2xl) 0;
}

.article-header {
  max-width: var(--container-narrow);
  margin: 0 auto var(--space-3xl);
}

.article-header .subtitle {
  margin-bottom: var(--space-md);
}

.article-header h1 {
  margin-bottom: var(--space-lg);
  font-size: clamp(1.75rem, 4vw, var(--text-5xl));
}

.article-header .lead {
  margin-bottom: var(--space-lg);
}

.article-header .meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-grey-200);
}


/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 640px;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-grey-700);
  margin-bottom: var(--space-sm);
}

.form-group label .optional {
  color: var(--color-grey-400);
  font-weight: var(--weight-normal);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-grey-800);
  background: var(--color-white);
  border: 1.5px solid var(--color-grey-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 26, 50, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-grey-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.form-error-msg {
  font-size: var(--text-sm);
  color: var(--color-error);
  margin-top: var(--space-xs);
  display: none;
}

.form-error-msg.visible {
  display: block;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Form success/error states */
.form-status {
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(46, 125, 79, 0.08);
  border: 1px solid rgba(46, 125, 79, 0.2);
  color: var(--color-success);
}

.form-status.error {
  display: block;
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.2);
  color: var(--color-error);
}

.form-status h4 {
  margin-bottom: var(--space-xs);
  color: inherit;
}


/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-secondary);
  color: var(--color-grey-300);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
  max-width: 300px;
  color: var(--color-grey-400);
}

.footer-brand .logo {
  margin-bottom: var(--space-lg);
}

.footer-brand .logo-text {
  color: var(--color-white);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-lg);
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: var(--text-sm);
  color: var(--color-grey-400);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl) 0;
  font-size: var(--text-xs);
  color: var(--color-grey-500);
}

.footer-bottom a {
  color: var(--color-grey-500);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-white);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }


/* ---------- Accordion / FAQ ---------- */
.accordion {
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--color-grey-200);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-secondary);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.accordion-trigger:hover {
  background-color: var(--color-cream);
}

.accordion-trigger svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-grey-400);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.accordion-item.active .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion-content-inner {
  padding: 0 var(--space-xl) var(--space-xl);
  color: var(--color-grey-600);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}


/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
}

.breadcrumb a {
  color: var(--color-grey-500);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb .sep {
  color: var(--color-grey-300);
}

.breadcrumb .current {
  color: var(--color-grey-700);
  font-weight: var(--weight-medium);
}


/* ---------- Checklist ---------- */
.checklist {
  margin-bottom: var(--space-xl);
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: var(--text-base);
  color: var(--color-grey-700);
  line-height: var(--leading-snug);
}

.checklist li svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-success);
  flex-shrink: 0;
  margin-top: 2px;
}


/* ---------- Highlight box ---------- */
.highlight-box {
  background: var(--color-cream);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.highlight-box h3 {
  margin-bottom: var(--space-md);
}

.highlight-box p {
  color: var(--color-grey-600);
}


/* ---------- Tech stack pills ---------- */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.tech-pill {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--color-grey-50);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-grey-600);
}


/* ---------- Two-column layout (service detail, case study) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .two-col,
  .two-col--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    direction: ltr;
  }
}


/* ---------- Start Small / Entry Offers ---------- */
.entry-offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.entry-offer {
  background: var(--color-white);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
}

.entry-offer:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card-hover);
}

.entry-offer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--color-primary-subtle);
  border-radius: var(--radius-xl);
  margin: 0 auto var(--space-lg);
}

.entry-offer-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary);
}

.entry-offer h4 {
  margin-bottom: var(--space-sm);
}

.entry-offer p {
  font-size: var(--text-sm);
  color: var(--color-grey-500);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .entry-offers {
    grid-template-columns: 1fr;
  }
}


/* ---------- Page-specific: 404 ---------- */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.page-404 h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--color-grey-200);
  margin-bottom: var(--space-md);
}

.page-404 h2 {
  margin-bottom: var(--space-md);
}

.page-404 p {
  color: var(--color-grey-500);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
}


/* ---------- Legal page content ---------- */
.legal-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-md);
  font-size: var(--text-2xl);
}

.legal-content h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal-content p {
  color: var(--color-grey-600);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-lg);
}

.legal-content li {
  color: var(--color-grey-600);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-sm);
}


/* ---------- Contact page layout ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info h3 {
  margin-bottom: var(--space-md);
}

.contact-info p {
  color: var(--color-grey-600);
  margin-bottom: var(--space-xl);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-grey-100);
}

.contact-info-item:first-child {
  padding-top: 0;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item .label {
  font-size: var(--text-xs);
  color: var(--color-grey-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: var(--weight-semibold);
  margin-bottom: 2px;
}

.contact-info-item .value {
  color: var(--color-grey-700);
  font-weight: var(--weight-medium);
}

.contact-info-item .value a {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}


/* ---------- Loading spinner ---------- */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn .spinner {
  margin-right: 0.5rem;
}


/* ---------- Misc utility classes ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.mt-0 { margin-top: 0; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.max-w-narrow { max-width: var(--container-narrow); }
.mx-auto { margin-left: auto; margin-right: auto; }


/* ---------- Print styles ---------- */
@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .mobile-nav,
  .menu-toggle {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
