/* ============================================================================
   BAREBONES CSS - Structural Reset + Typography
   Fonts: Michroma (display) · Roboto (body)
   ============================================================================ */

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
html {
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* Typography — sizes & weights only */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Michroma', 'Roboto', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.5em;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.85rem;
}

h3 {
    font-size: 1.2rem;

}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    margin-bottom: 1rem;
    padding-left: 1.2rem;
}

li {
    margin-bottom: 0.35rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Forms — structural only */
input,
textarea,
select,
button {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    outline: none;
    border: 1px solid transparent;
    width: 100%;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: auto;
}

/* ============================================================================
   LAYOUT SYSTEM
   ============================================================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

/* Flexbox grid */
.grid {
    display: flex;
    flex-wrap: wrap;
}

.col {
    flex: 1 1 0%;
    padding: 0.75rem;
}

.nogrow {
    flex-grow: 0 !important;
}

/* Flex modifiers */
.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.flex-column {
    flex-direction: column;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-wrap {
    flex-wrap: wrap;
}

.no-gap {
    gap: 0;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

.gap-3 {
    gap: 3rem;
}

/* Text alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Margin utilities */
.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Padding utilities */
.p-0 {
    padding: 0;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

.p-4 {
    padding: 4rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pt-2 {
    padding-top: 2rem;
}

/* Display */
.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.d-inline {
    display: inline;
}

/* Width */
.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.max-w-sm {
    max-width: 400px;
}

.max-w-md {
    max-width: 600px;
}

.max-w-lg {
    max-width: 800px;
}

.max-w-xl {
    max-width: 1000px;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

/* Position */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

/* Font weight */
.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/* Font size */
.fs-sm {
    font-size: 0.875rem;
}

.fs-base {
    font-size: 1rem;
}

.fs-lg {
    font-size: 1.125rem;
}

.fs-xl {
    font-size: 1.25rem;
}

.fs-2xl {
    font-size: 1.2rem;
}

.fs-3xl {
    font-size: 2rem;
}

/* Opacity */
.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

/* Border radius */
.rounded {
    border-radius: 8px;
}

.rounded-lg {
    border-radius: 16px;
}

.rounded-xl {
    border-radius: 24px;
}

.rounded-full {
    border-radius: 50%;
}

.rounded-pill {
    border-radius: 999px;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .grid {
        flex-direction: column;
    }

    .grid.no-collapse {
        flex-direction: row;
    }

    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }

    .show-desktop {
        display: block !important;
    }
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.main {
    overflow: hidden;
    margin: 0;
}

.content-padding {
    padding: 6rem 0;
}


.section-icon.icon {
    max-width: 100px;
    display: block;
    margin: 0 auto;
}

h2 span {
    display: block;
    text-align: center;
    font-size: 38px;
    padding-top: 20px;
}

.section-split-hero h2 {
    text-align: center;
}