/* =========================
   CORE TYPOGRAPHY
   ========================= */

html {
    box-sizing: border-box;
    font-size: 16px;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #222;
    line-height: 1.6;
    background-color: #ffffff;
}

/* Headings (scaled similar to Bulma, slightly tightened) */

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.75rem;
    font-weight: 600;
    line-height: 1.25;
    color: #222;
}

h1 {
    font-size: 2.4rem;
}

h2 {
    font-size: 1.9rem;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin: 0 0 1rem;
    font-size: 1rem;
}

.small {
    font-size: 0.85rem;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Links */

a {
    color: #C44039;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Basic images */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
   LAYOUT: CONTAINER & GRID
   ========================= */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Flex helpers */

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.inline-flex {
    display: inline-flex;
    align-items: center;
}

/* Grid system */

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    align-items: flex-start;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

/* =========================
   UTILITIES: SPACING, COLORS, TEXT
   ========================= */

.pad-y-80 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.pad-y-60 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.pad-y-40 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.mt-20 {
    margin-top: 1.25rem;
}

.mt-30 {
    margin-top: 1.75rem;
}

.mt-40 {
    margin-top: 2.25rem;
}

.mt-50 {
    margin-top: 2.75rem;
}

.mt-60 {
    margin-top: 3.25rem;
}

.gap-40 {
    gap: 2.5rem;
}

.gap-60 {
    gap: 3.5rem;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.bg-light {
    background-color: #f5f5f5;
}

.bg-white {
    background-color: #ffffff;
}

.bg-primary-light {
    background-color: #fde9e7;
}

.bg-dark {
    background-color: #111111;
}

.primary-color {
    color: #C44039;
}

.align-center {
    align-items: center;
}

.gap-10 {
    gap: 0.625rem;
}

.gap-15 {
    gap: 0.9rem;
}

.img-responsive {
    width: 100%;
    height: auto;
}

.rounded {
    border-radius: 8px;
}

/* =========================
   GLOBAL COMPONENTS
   ========================= */

.section-title {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.6rem 1.4rem;
	white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
    background-color: #C44039;
    border-color: #C44039;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #a73530;
    border-color: #a73530;
    text-decoration: none;
}

.btn-rounded {
    border-radius: 999px;
}

.btn-medium {
    font-size: 0.95rem;
}

.exposure-card,
.help-card,
.testimonial-card,
.story-card,
.icon-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.exposure-card p,
.help-card p,
.testimonial-card p,
.story-card p {
    margin-bottom: 0.75rem;
}

.card-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #C44039;
}

.card-link i {
    font-size: 0.85rem;
}

.quote-icon {
    color: #C44039;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.icon-lg {
    width: 64px;
    height: auto;
}

.icon-md {
    width: 48px;
    height: auto;
}

.social-icons a {
    color: #ffffff;
    font-size: 1rem;
}

.social-icons a:hover {
    color: #C44039;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.form-control {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: 4px;
    border: 1px solid #cccccc;
    font-size: 0.95rem;
}

.form-control:focus {
    outline: none;
    border-color: #C44039;
    box-shadow: 0 0 0 2px rgba(196, 64, 57, 0.15);
}