/* Compiled Tailwind CSS - TPC Theme (Enhanced) */

/* =========================================================
   BASE RESET & TOKENS
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #f5f0e8; color: #1a1a1a; min-height: 100vh; }
h1, h2, h3, h4, h5, h6 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* =========================================================
   LAYOUT & CONTAINERS
   ========================================================= */
.container-wide    { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow  { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }
.section           { padding-top: 5rem; padding-bottom: 5rem; }
.min-h-screen      { min-height: 100vh; }
.max-w-xl          { max-width: 36rem; }
.max-w-2xl         { max-width: 42rem; }
.max-w-3xl         { max-width: 48rem; }
.mx-auto           { margin-left: auto; margin-right: auto; }

/* =========================================================
   DISPLAY & FLEX/GRID
   ========================================================= */
.hidden        { display: none; }
.block         { display: block; }
.inline-block  { display: inline-block; }
.inline-flex   { display: inline-flex; }
.flex          { display: flex; }
.grid          { display: grid; }
.flex-col      { flex-direction: column; }
.flex-wrap     { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.items-start   { align-items: flex-start; }
.items-center  { align-items: center; }
.items-end     { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end   { justify-content: flex-end; }
.gap-1  { gap: 0.25rem; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-12 { gap: 3rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* =========================================================
   SPACING — PADDING
   ========================================================= */
.p-2  { padding: 0.5rem; }
.p-4  { padding: 1rem; }
.p-6  { padding: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-4  { padding-top: 1rem; }
.pt-8  { padding-top: 2rem; }
.pb-8  { padding-bottom: 2rem; }

/* =========================================================
   SPACING — MARGIN
   ========================================================= */
.m-0   { margin: 0; }
.mt-2  { margin-top: 0.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-1  { margin-bottom: 0.25rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-3  { margin-bottom: 0.75rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-2  { margin-left: 0.5rem; }
.mr-2  { margin-right: 0.5rem; }

/* =========================================================
   SPACE-Y STACK HELPER
   ========================================================= */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* =========================================================
   SIZING
   ========================================================= */
.w-full  { width: 100%; }
.w-5     { width: 1.25rem; }
.w-6     { width: 1.5rem; }
.w-8     { width: 2rem; }
.w-10    { width: 2.5rem; }
.w-12    { width: 3rem; }
.h-5     { height: 1.25rem; }
.h-6     { height: 1.5rem; }
.h-8     { height: 2rem; }
.h-10    { height: 2.5rem; }
.h-12    { height: 3rem; }
.h-16    { height: 4rem; }
.h-24    { height: 6rem; }
.h-48    { height: 12rem; }

/* =========================================================
   ASPECT RATIOS
   ========================================================= */
.aspect-video { aspect-ratio: 16/9; }
.aspect-square { aspect-ratio: 1; }

/* =========================================================
   POSITION & OVERFLOW
   ========================================================= */
.static    { position: static; }
.relative  { position: relative; }
.absolute  { position: absolute; }
.fixed     { position: fixed; }
.sticky    { position: sticky; }
.top-0     { top: 0; }
.inset-0   { inset: 0; }
.z-10      { z-index: 10; }
.z-50      { z-index: 50; }
.overflow-hidden { overflow: hidden; }

/* =========================================================
   COLORS — TEXT
   ========================================================= */
.text-white       { color: #fff; }
.text-ink         { color: #1a1a1a; }
.text-muted       { color: #7a7060; }
.text-accent      { color: #e63329; }
.text-white\/60   { color: rgba(255,255,255,0.6); }
.text-white\/80   { color: rgba(255,255,255,0.8); }

/* =========================================================
   COLORS — BACKGROUND
   ========================================================= */
.bg-paper   { background: #f5f0e8; }
.bg-cream   { background: #faf8f5; }
.bg-ink     { background: #1a1a1a; }
.bg-white   { background: #fff; }
.bg-accent  { background: #e63329; }
.bg-ink\/95 { background: rgba(26,26,26,0.95); }

/* =========================================================
   BORDERS
   ========================================================= */
.border        { border-width: 1px; border-style: solid; }
.border-t      { border-top: 1px solid; }
.border-b      { border-bottom: 1px solid; }
.border-b-4    { border-bottom: 4px solid; }
.border-2      { border-width: 2px; border-style: solid; }
.border-border { border-color: #e0d9ce; }
.border-accent { border-color: #e63329; }
.border-white  { border-color: #fff; }
.border-transparent { border-color: transparent; }
.rounded       { border-radius: 0.25rem; }
.rounded-lg    { border-radius: 0.5rem; }
.rounded-full  { border-radius: 9999px; }

/* =========================================================
   SHADOWS
   ========================================================= */
.shadow-card { box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05); }
.shadow-lg   { box-shadow: 0 10px 40px rgba(0,0,0,0.12); }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.font-display  { font-family: 'Bebas Neue', sans-serif; }
.font-body     { font-family: 'DM Sans', sans-serif; }
.font-medium   { font-weight: 500; }
.font-bold     { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-xs   { font-size: 0.75rem; }
.text-sm   { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-3xl  { font-size: 1.875rem; }
.text-4xl  { font-size: 2.25rem; }
.text-5xl  { font-size: 3rem; }
.text-7xl  { font-size: 4.5rem; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-left   { text-align: left; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-wide   { letter-spacing: 0.05em; }
.leading-none    { line-height: 1; }
.leading-tight   { line-height: 1.25; }
.leading-snug    { line-height: 1.375; }
.underline       { text-decoration: underline; }

/* =========================================================
   TRANSITIONS
   ========================================================= */
.transition      { transition: all 0.2s ease; }
.duration-200    { transition-duration: 200ms; }
.duration-300    { transition-duration: 300ms; }

/* =========================================================
   TRANSFORMS
   ========================================================= */
.-translate-y-1         { transform: translateY(-0.25rem); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }

/* =========================================================
   MISC
   ========================================================= */
.opacity-10          { opacity: 0.1; }
.pointer-events-none { pointer-events: none; }
.cursor-pointer      { cursor: pointer; }
.backdrop-blur       { backdrop-filter: blur(8px); }

/* =========================================================
   HOVER STATES
   ========================================================= */
.hover\:text-white:hover   { color: #fff; }
.hover\:text-accent:hover  { color: #e63329; }
.hover\:text-ink:hover     { color: #1a1a1a; }
.hover\:bg-white:hover     { background: #fff; }
.hover\:bg-accent:hover    { background: #e63329; }
.hover\:shadow-lg:hover    { box-shadow: 0 10px 40px rgba(0,0,0,0.12); }
.hover\:underline:hover    { text-decoration: underline; }
.group:hover .group-hover\:text-accent { color: #e63329; }

/* =========================================================
   RESPONSIVE UTILITIES
   ========================================================= */
@media (min-width: 768px) {
    .md\:flex          { display: flex !important; }
    .md\:hidden        { display: none !important; }
    .md\:block         { display: block !important; }
    .md\:grid          { display: grid !important; }
    .md\:grid-cols-2   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3   { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4   { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:py-24         { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:text-7xl      { font-size: 4.5rem; }
    .md\:gap-6         { gap: 1.5rem; }
    .md\:gap-8         { gap: 2rem; }
    .md\:gap-12        { gap: 3rem; }
    .md\:flex-row      { flex-direction: row; }
    .md\:items-center  { align-items: center; }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-3   { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4   { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* =========================================================
   BUTTON COMPONENTS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}
.btn-primary {
    background: #e63329;
    color: #fff;
    border-color: #e63329;
}
.btn-primary:hover {
    background: #c42a21;
    border-color: #c42a21;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(230,51,41,0.35);
    color: #fff;
}
.btn-outline {
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
}
.btn-outline:hover {
    background: #1a1a1a;
    color: #fff;
}
.btn-outline.border-white {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}
.btn-outline.border-white:hover {
    background: #fff;
    border-color: #fff;
    color: #1a1a1a;
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }

/* =========================================================
   CARD COMPONENT
   ========================================================= */
.card {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.05);
    padding: 1.75rem;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}
.card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    border-color: #e63329;
    transform: translateY(-2px);
}

/* =========================================================
   FORM ELEMENTS
   ========================================================= */
.input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #faf8f5;
    border: 2px solid #e0d9ce;
    border-radius: 0.25rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    color: #1a1a1a;
    transition: border-color 0.2s ease;
    outline: none;
}
.input:focus {
    border-color: #e63329;
    background: #fff;
}
.label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7a7060;
    margin-bottom: 0.5rem;
}
select.input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237a7060' stroke-width='2'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}
textarea.input { resize: vertical; min-height: 120px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #1a1a1a;
    border-bottom: 3px solid #e63329;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.header-top {
    background: #e63329;
    padding: 0.4rem 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
}
.header-top a { color: #fff; opacity: 0.9; }
.header-top a:hover { opacity: 1; }
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}
.site-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.625rem;
    letter-spacing: 0.1em;
    color: #fff;
    text-decoration: none;
    line-height: 1;
}
.site-logo .accent { color: #e63329; }
.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    border-radius: 0.25rem;
    transition: all 0.15s ease;
    text-decoration: none;
    white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link.active { color: #fff; }
.nav-cta {
    margin-left: 0.5rem;
    padding: 0.5625rem 1.25rem;
    background: #e63329;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.25rem;
    transition: all 0.15s ease;
    text-decoration: none;
    white-space: nowrap;
}
.nav-cta:hover { background: #c42a21; transform: translateY(-1px); }

/* Mobile hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: background 0.15s;
}
.menu-toggle:hover { background: rgba(255,255,255,0.1); }

/* Mobile menu */
.mobile-menu {
    display: none;
    background: rgba(26,26,26,0.97);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 0 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border-radius: 0.25rem;
    transition: all 0.15s;
    text-decoration: none;
}
.mobile-nav a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.mobile-nav .mobile-cta {
    margin-top: 0.75rem;
    background: #e63329;
    color: #fff;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.mobile-nav .mobile-cta:hover { background: #c42a21; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.65);
}
.footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 3.5rem 0;
}
.footer-brand .site-logo { font-size: 1.5rem; }
.footer-tagline {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    max-width: 240px;
    line-height: 1.6;
}
.footer-contact-strip {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-contact-strip a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.15s;
}
.footer-contact-strip a:hover { color: #e63329; }
.footer-heading {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.15s;
    text-decoration: none;
}
.footer-links a:hover { color: #e63329; }
.footer-hours { font-size: 0.875rem; }
.footer-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 1rem;
}
.footer-hours-row:last-child { border-bottom: none; }
.footer-hours-row .day { color: rgba(255,255,255,0.45); }
.footer-hours-row .time { font-weight: 600; color: rgba(255,255,255,0.75); }
.footer-hours-row .closed { color: rgba(255,255,255,0.3); }
.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.15s; }
.footer-bottom a:hover { color: #e63329; }
.footer-accent-bar {
    height: 4px;
    background: #e63329;
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
    background: #1a1a1a;
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #e63329;
}
.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.875rem;
}
.page-hero-eyebrow span { color: #e63329; }
.page-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    line-height: 1;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: 0.75rem;
}
.page-hero-sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.55);
    max-width: 520px;
    line-height: 1.65;
}
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

/* =========================================================
   SECTION DIVIDER ACCENTS
   ========================================================= */
.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e63329;
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}
.section-sub {
    font-size: 1rem;
    color: #7a7060;
    line-height: 1.7;
    max-width: 520px;
}

/* =========================================================
   STAFF PANEL
   ========================================================= */
.staff-sidebar { background: #1a1a1a; min-height: 100vh; }
.staff-content { background: #f5f0e8; min-height: 100vh; }
.kanban-column { background: #faf8f5; border-radius: 0.5rem; min-height: 400px; }
.kanban-card {
    background: #fff;
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    cursor: grab;
    border-left: 3px solid transparent;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.kanban-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-color: #e63329; }
.kanban-card:active { cursor: grabbing; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-item {
    background: #fff;
    border-radius: 0.5rem;
    border: 2px solid #e0d9ce;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item:hover { border-color: #e63329; }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    gap: 1rem;
    user-select: none;
}
.faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: #7a7060;
    line-height: 1.7;
}
.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: #e63329;
    transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

/* =========================================================
   TRUST BADGE ROW
   ========================================================= */
.trust-row {
    background: #fff;
    border: 1px solid #e0d9ce;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
}
.trust-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: #faf8f5;
    border: 1px solid #e0d9ce;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* =========================================================
   PRICE BADGE
   ========================================================= */
.price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
}
.price-badge .from  { font-size: 0.75rem; color: #7a7060; }
.price-badge .amount { font-weight: 700; color: #e63329; font-size: 1.0625rem; }
.price-badge .vat   { font-size: 0.75rem; color: #7a7060; }

/* =========================================================
   DIVIDERS
   ========================================================= */
.divider { height: 1px; background: #e0d9ce; margin: 2rem 0; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
    background: #e63329;
    padding: 2.5rem 0;
    text-align: center;
}
.cta-band h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }

/* =========================================================
   EXTENDED UTILITIES — Round 2
   ========================================================= */

/* Rounded variants */
.rounded-xl  { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }

/* Sizing additions */
.w-px   { width: 1px; }
.w-0\.5 { width: 0.125rem; }
.h-1    { height: 0.25rem; }
.h-2    { height: 0.5rem; }
.h-0\.5 { height: 0.125rem; }
.max-h-96 { max-height: 24rem; }
.min-w-0  { min-width: 0; }
.flex-1   { flex: 1 1 0%; }

/* Gap additions */
.gap-10 { gap: 2.5rem; }
.gap-16 { gap: 4rem; }

/* Space-y additions */
.space-y-10 > * + * { margin-top: 2.5rem; }

/* Padding additions */
.pb-0    { padding-bottom: 0; }
.pt-3    { padding-top: 0.75rem; }
.py-3    { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-5    { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-8    { padding-left: 2rem; padding-right: 2rem; }

/* Margin additions */
.mt-5  { margin-top: 1.25rem; }
.mb-5  { margin-bottom: 1.25rem; }
.mt-16 { margin-top: 4rem; }

/* Top positioning */
.top-6  { top: 1.5rem; }
.top-24 { top: 6rem; }

/* Typography additions */
.text-6xl    { font-size: 3.75rem; }
.leading-relaxed { line-height: 1.625; }
.leading-loose   { line-height: 2; }
.truncate    { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.uppercase   { text-transform: uppercase; }

/* Object fit */
.object-cover   { object-fit: cover; }
.object-contain { object-fit: contain; }

/* Overflow */
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Table */
.border-collapse { border-collapse: collapse; }
.table { display: table; }

/* Transform */
.rotate-180 { transform: rotate(180deg); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-x-1\/2  { transform: translateX(50%); }
.scale-110  { transform: scale(1.1); }

/* Transition variants */
.transition-colors    { transition: color 0.2s, background-color 0.2s, border-color 0.2s; }
.transition-transform { transition: transform 0.2s; }
.transition-shadow    { transition: box-shadow 0.2s; }
.transition-all       { transition: all 0.2s; }

/* Hover: shadow-md */
.hover\:shadow-md:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

/* Hover: bg variants */
.hover\:bg-cream:hover  { background: #faf8f5; }
.hover\:bg-border:hover { background: #e0d9ce; }

/* Background extras */
.bg-border { background: #e0d9ce; }

/* =========================================================
   COLOUR SYSTEM — STATUS COLOURS
   ========================================================= */

/* Greens */
.bg-green-50   { background: #f0fdf4; }
.bg-green-100  { background: #dcfce7; }
.bg-green-600  { background: #16a34a; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }
.border-green-200 { border-color: #bbf7d0; }

/* Reds */
.bg-red-50     { background: #fef2f2; }
.text-red-600  { color: #dc2626; }
.text-red-700  { color: #b91c1c; }
.border-red-200 { border-color: #fecaca; }

/* Yellows / Amber */
.bg-amber-100  { background: #fef3c7; }
.text-amber-700 { color: #b45309; }
.border-amber-400 { border-color: #fbbf24; }

/* Blues */
.bg-blue-50    { background: #eff6ff; }
.text-blue-600 { color: #2563eb; }

/* Social brand colours */
.bg-fb     { background: #1877f2; }
.bg-li     { background: #0a66c2; }
.text-fb   { color: #1877f2; }

/* =========================================================
   RESPONSIVE ADDITIONS
   ========================================================= */
@media (min-width: 640px) {
    .sm\:grid-cols-2   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3   { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:col-span-2    { grid-column: span 2 / span 2; }
    .sm\:flex          { display: flex !important; }
}
@media (min-width: 1024px) {
    .lg\:col-span-1    { grid-column: span 1 / span 1; }
    .lg\:col-span-2    { grid-column: span 2 / span 2; }
    .lg\:col-span-3    { grid-column: span 3 / span 3; }
    .lg\:col-span-4    { grid-column: span 4 / span 4; }
    .lg\:text-5xl      { font-size: 3rem; }
    .lg\:text-6xl      { font-size: 3.75rem; }
    .lg\:text-7xl      { font-size: 4.5rem; }
    .lg\:grid-cols-2   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:hidden        { display: none !important; }
    .lg\:flex          { display: flex !important; }
    .lg\:grid          { display: grid !important; }
    .lg\:block         { display: block !important; }
    .lg\:col-span-1    { grid-column: span 1; }
    .lg\:col-span-2    { grid-column: span 2; }
    .lg\:col-span-3    { grid-column: span 3; }
    .lg\:col-span-4    { grid-column: span 4; }
}

/* =========================================================
   PROSE — Basic Typography for Blog / Article Content
   ========================================================= */
.prose {
    color: #1a1a1a;
    line-height: 1.75;
    font-size: 1.0625rem;
}
.prose h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}
.prose h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}
.prose h4 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.prose p { margin-bottom: 1.25rem; }
.prose a { color: #e63329; text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose strong { font-weight: 700; }
.prose em { font-style: italic; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.375rem; }
.prose blockquote {
    border-left: 4px solid #e63329;
    background: #faf8f5;
    padding: 0.75rem 1.25rem;
    border-radius: 0 0.5rem 0.5rem 0;
    margin: 1.5rem 0;
    color: #7a7060;
    font-style: italic;
}
.prose img {
    max-width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    margin: 1.5rem 0;
}
.prose hr { border: none; border-top: 1px solid #e0d9ce; margin: 2rem 0; }
.prose code {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    background: #f5f0e8;
    padding: 0.1em 0.4em;
    border-radius: 0.25rem;
}
.prose pre {
    background: #1a1a1a;
    color: #faf8f5;
    padding: 1.25rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}
.prose-lg { font-size: 1.125rem; }
.max-w-none { max-width: none; }

/* =========================================================
   READING PROGRESS BAR
   ========================================================= */
#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: #e63329;
    z-index: 200;
    transition: width 0.1s linear;
}

/* =========================================================
   PORTFOLIO FILTERS
   ========================================================= */
.pf-filter-btn {
    padding: 0.5rem 1.125rem;
    border: 2px solid #e0d9ce;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: #1a1a1a;
    border-radius: 0.25rem;
    transition: all 0.15s ease;
    font-family: 'DM Sans', sans-serif;
}
.pf-filter-btn:hover { border-color: #1a1a1a; }
.pf-filter-btn.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* =========================================================
   UPLOAD DROPZONE
   ========================================================= */
.dropzone {
    border: 2px dashed #e0d9ce;
    border-radius: 0.5rem;
    padding: 3rem 2rem;
    text-align: center;
    background: #faf8f5;
    cursor: pointer;
    transition: all 0.2s ease;
}
.dropzone:hover, .dropzone.drag-over {
    border-color: #e63329;
    background: #fff5f5;
}
.dropzone-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    background: #fff;
    border: 2px solid #e0d9ce;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================================
   ORDER TIMELINE
   ========================================================= */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
    content: '';
    position: absolute;
    left: 0.875rem;
    top: 0.875rem;
    bottom: 0.875rem;
    width: 2px;
    background: #e0d9ce;
}
.timeline-item { position: relative; padding-bottom: 1.75rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #e0d9ce;
    border: 3px solid #faf8f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.timeline-dot.done    { background: #e63329; }
.timeline-dot.current { background: #1a1a1a; box-shadow: 0 0 0 4px rgba(26,26,26,0.12); }
.timeline-label { font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.2rem; }
.timeline-sub   { font-size: 0.8125rem; color: #7a7060; }

/* =========================================================
   STATUS BADGES
   ========================================================= */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.status-badge.new        { background: #f0f9ff; color: #0369a1; border: 1px solid #bae6fd; }
.status-badge.received   { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.status-badge.approved   { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.status-badge.printing   { background: #fff7ed; color: #9a3412; border: 1px solid #fed7aa; }
.status-badge.ready      { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.status-badge.collected  { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; }

/* =========================================================
   FILE ITEM (upload page)
   ========================================================= */
.file-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid #e0d9ce;
    border-radius: 0.375rem;
    transition: border-color 0.15s;
}
.file-item:hover { border-color: #e63329; }
.file-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: #faf8f5;
    border: 1px solid #e0d9ce;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.file-remove {
    margin-left: auto;
    font-size: 0.8125rem;
    color: #7a7060;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    flex-shrink: 0;
}
.file-remove:hover { color: #e63329; }
