:root {
    /* Brand colors matched to the shirt */
    --red: #c32020;
    /* primary bakery red */
    --cream: #fef4e0;
    /* warm cream background */
    --dark: #111827;
    /* deep slate text color */

    --radius-card: 20px;
    --transition-fast: 0.2s ease;
}

/* ----------------------------------
   Base resets + typography
---------------------------------- */

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
    line-height: 1.6;
    font-size: 1rem;
    background: var(--cream);
    color: var(--dark);
    margin: 0;
    padding: 0;
}

/* Headers */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--dark);
    font-weight: 700;
}

p {
    margin-top: 0;
}

/* Links */
a {
    color: var(--red);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ----------------------------------
   Layout utilities
---------------------------------- */

.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

.section {
    padding: 3rem 0;
}

/* Soft cream background */
.soft-bg {
    background: #fff9f1;
}

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

/* Section titles */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-intro {
    color: #4b5563;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

/* Small descriptive text */
.small {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ----------------------------------
   Grid utilities
---------------------------------- */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

@media (max-width: 900px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Spacing helpers */
.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}