@font-face {
	font-family: brandon-grotesque;
	src: 
    url(https://use.typekit.net/af/b5880a/000000000000000077359df6/31/l?subset_id=2&fvd=n9&v=3) format("woff2"),
    url(https://use.typekit.net/af/b5880a/000000000000000077359df6/31/d?subset_id=2&fvd=n9&v=3) format("woff"),
    url(https://use.typekit.net/af/b5880a/000000000000000077359df6/31/a?subset_id=2&fvd=n9&v=3) format("opentype");
	font-weight: 900;
	font-style: normal;
	font-stretch: normal;
	font-display: auto;
}
@font-face {
	font-family: brandon-grotesque;
	src: 
    url(https://use.typekit.net/af/abff2b/000000000000000077359df2/31/l?subset_id=2&fvd=n5&v=3) format("woff2"),
    url(https://use.typekit.net/af/abff2b/000000000000000077359df2/31/d?subset_id=2&fvd=n5&v=3) format("woff"),
    url(https://use.typekit.net/af/abff2b/000000000000000077359df2/31/a?subset_id=2&fvd=n5&v=3) format("opentype");
	font-weight: 500;
	font-style: normal;
	font-stretch: normal;
	font-display: auto;
}

* {
  box-sizing: border-box;
}

/* Headings system */
h1, h2, h3, h4, h5, h6 {
  font-family: brandon-grotesque, sans-serif;
  text-transform: uppercase;
  color: #765F4C;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin: 0 0 12px;
}

/* Optional hierarchy tuning */
h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1rem;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111;
}

/* Main Layout */
.layout {
  display: flex;
  min-height: 100vh;
  align-items: flex-start; /* prevents stretching */
}

/* Sidebar becomes a fixed-height viewport column */
.sidebar {
  width: 300px;
  flex: 0 0 300px;

  height: calc(100vh - 40px); /* full screen minus margins */
  position: sticky;
  top: 20px;

  border: 1px solid #e6e6e6;
  border-radius: 20px;
  padding: 24px;
  margin: 20px;

  background: #fff;

  display: flex;
  flex-direction: column;

  overflow: hidden; /* keeps it clean */
}

.sidebar img {
  width: 70%;
}

/* Navigation */
.nav__logo {
  text-align: center;
  margin-bottom: 50px;
}

.nav__section-title {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin: 10px 12px;
}

.nav__item {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  margin-bottom: 6px;

  border-radius: 10px;

  text-decoration: none;
  color: inherit;

  font-size: 20px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 600;

  transition: 0.15s ease;
}

.nav__item:hover {
  background: #f5f5f5;
  transform: translateX(2px);
}

.nav__item.active {
  background: #765F4C;
  color: #fff;
}

.nav__item .icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.nav__item svg {
  width: 18px;
  height: 18px;
}

/* Main area */
.main {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 48px 24px;
}

/* Content container */
.content {
  width: 100%;
  max-width: 1100px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.team-card {
  text-align: center;
}

.team-card p {
  margin: 0;
}

.team-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 20px;
}

.team-frame img {
  width: 100%;
  display: block;
  transition: transform 0.25s ease;
}

.team-frame:hover img {
  transform: scale(1.03);
}

.team-card-link {
  color: inherit;
  text-decoration: none;
}

/* overlay layer */
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.2s ease;
}

.team-frame:hover .team-overlay {
  opacity: 1;
  transform: translateY(0);
}

.team-overlay img {
  max-width: 80%;
  height: auto;
}

.page-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.intro p {
  max-width: 800px;
  line-height: 1.6;
  color: #333;
}

.colour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.colour-card {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.colour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.colour-card h4 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: #765F4C;
}

.colour-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 12px;
}

.colour-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

.hex-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  border-radius: 3px;
  border: 1px solid #ddd;
}

/* Base layout */
.glossary {
  max-width: 1100px;
  margin: 0 auto;
}

/* Intro */
.glossary .intro {
  margin-bottom: -80px;
}

.glossary .intro h1 {
  font-size: 2.2rem;
  margin: 0 0 10px;
}

.glossary .intro p {
  opacity: 0.7;
  max-width: 60ch;
}

/* Section headers stick while scrolling */
.glossary-group h2 {
  position: sticky;
  top: 0;
  background: white;
  padding: 40px 0 10px 0;
  margin: 40px 0 20px;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  z-index: 5;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Grid reduces perceived length */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

/* Term cards */
.term {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 14px 14px 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* subtle lift instead of heavy scroll fatigue */
.term:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.term h3 {
  font-size: 0.95rem;
  margin: 0 0 8px;
  line-height: 1.3;
}

/* collapse visual noise */
.term p {
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0 0 8px;
  opacity: 0.85;
}

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

/* Images inside terms behave */
.term img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-top: 8px;
  display: block;
}

/* Optional: compress multi-paragraph terms visually */
.term p + p {
  margin-top: -4px;
  opacity: 0.8;
}

/* Reduce section gap fatigue */
.glossary-group {
  margin-bottom: 50px;
}

.file-names {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.file-example {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.file-example img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.print-specs .spec-section {
  margin-bottom: 56px;
}

.print-specs h2 {
  text-transform: uppercase;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  color: #765F4C;
  margin-bottom: 18px;
}

/* two-column layout */
.spec-split {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}

.spec-image img {
  width: 100%;
  border-radius: 10px;
}

.spec-list {
  padding-left: 18px;
  margin: 0;
  line-height: 1.6;
}

.spec-note {
  margin-top: 16px;
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* stacked content blocks */
.spec-stack p,
.spec-stack li {
  line-height: 1.6;
  color: #333;
}

/* inline chips */
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  list-style: none;
}

.inline-list li {
  background: #f7f7f7;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.process {
  max-width: 1100px;
  margin: 0;
}

.process-section {
  margin-bottom: 60px;
}

.process h2 {
  text-transform: uppercase;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  color: #765F4C;
  margin-bottom: 18px;
}

/* grid keeps flow readable */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

/* cards */
.process-step {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-family: brandon-grotesque, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111;
}

.process-step p {
  margin: 0 0 8px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #333;
  opacity: 0.9;
}

.process-step p:last-child {
  margin-bottom: 0;
}

.content-stack p {
  margin: 0 0 12px;
  line-height: 1.6;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Status page base */
.status .intro p {
  max-width: 65ch;
  line-height: 1.6;
  color: #444;
}

/* Banner */
.status-banner {
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Banner states */
.status-banner.ok {
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.06);
}

.status-banner.bad {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.06);
}

.status-banner.warn { 
    color: #f1c40f;
    background: rgba(247, 198, 39, 0.06); 
}

/* Summary line */
.status-summary {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

/* Service cards */
.status-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 14px 16px;

  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.status-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.status-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.status-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.status-name {
  font-weight: 800;
  font-size: 15px;
  color: #111;
}

.status-meta {
  font-size: 12px;
  color: #777;
  font-family: monospace;
}

/* Status pill */
.status-pill {
  min-width: 110px;
  text-align: center;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(0,0,0,0.08);
}

.status-pill.up {
  color: #2ecc71;
  background: rgba(46,204,113,0.08);
}

.status-pill.down {
  color: #e74c3c;
  background: rgba(231,76,60,0.08);
}

.status-pill.paused {
  color: #999;
  background: rgba(0,0,0,0.04);
}

/* Sparkline */
.sparkline {
  display: flex;
  gap: 2px;
  height: 10px;
}

/* Brands */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.brand-column {
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  background: #fff;
  transition: all .2s ease-in-out;
}

.brand-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.brand-column h2 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "brandon-grotesque", sans-serif;
  color: #765F4C;
  margin: 0 0 12px;
}

.brand-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brand-column li {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
  padding: 3px 0;
}

/* 404 Page */
.error-page {
  text-align: center;
  padding: 80px 20px;
}

.error-page h1 {
  font-size: 5rem;
  margin: 0 0 10px;
  color: #765F4C;
  font-family: "brandon-grotesque", sans-serif;
  letter-spacing: 0.05em;
}

.error-page p {
  opacity: 0.7;
  max-width: 50ch;
  margin: 0 auto 30px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid #111;
  color: #111;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.secondary {
  border-color: rgba(0,0,0,0.2);
}