/*
Theme Name: Injured Workers Queensland
Theme URI: https://www.injuredworkersqld.org
Author: Dr Manuel Jose Oyson III
Description: Official theme for Injured Workers Queensland — advocacy platform for injured Queensland workers.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: iwq
*/

/* ============================================================
   BRAND COLOURS — edit here to change site-wide
   ============================================================ */
:root {
    --navy:        #1B2A4A;
    --navy-mid:    #2C3F6B;
    --navy-light:  #EEF2F9;
    --gold:        #B8860B;
    --gold-bright: #D4A017;
    --gold-light:  #FAF3E0;
    --red:         #8B1A1A;
    --red-bright:  #C0392B;
    --charcoal:    #2C2C2A;
    --mid-grey:    #5F5E5A;
    --light-grey:  #F5F4F0;
    --border:      #D8D6CF;
    --white:       #FFFFFF;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.0625rem;
    line-height: 1.78;
    color: var(--charcoal);
    background: var(--light-grey);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-mid); text-decoration: underline; }
a:hover { color: var(--gold); }
p { margin-bottom: 1.3rem; }
h1,h2,h3,h4 {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 0.9rem;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
ul, ol { padding-left: 1.6rem; margin-bottom: 1.3rem; }
li { margin-bottom: 0.45rem; }
strong { font-weight: 700; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
.site-main { min-height: 55vh; }

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    gap: 1rem;
}
.site-logo { text-decoration: none; display: flex; align-items: center; width: auto; max-width: 40%; flex-shrink: 0; }
.logo-line1 {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1.1;
}
.logo-line1 span { color: var(--gold); }
.logo-tagline {
    font-family: Arial, sans-serif;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
/* WordPress nav menu overrides */
.main-nav { flex: 1; display: flex; justify-content: flex-end; }
.main-nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 0.1rem; align-items: center; flex-wrap: wrap; }
.main-nav li { margin: 0; }
.main-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
    border-radius: 3px;
    transition: background 0.18s, color 0.18s;
    letter-spacing: 0.02em;
    white-space: nowrap;
    display: block;
}
.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a { background: rgba(255,255,255,0.1); color: var(--white); }
.nav-cta a, .main-nav .menu-item-cta > a {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 700 !important;
}
.nav-cta a:hover, .main-nav .menu-item-cta > a:hover { background: var(--gold-bright) !important; }
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.35);
    color: white;
    padding: 0.35rem 0.65rem;
    cursor: pointer;
    border-radius: 3px;
    font-size: 1.1rem;
    flex-shrink: 0;
}
/* WordPress sub-menu (dropdown) */
.main-nav .sub-menu {
    display: none;
    position: absolute;
    background: var(--navy-mid);
    min-width: 200px;
    border-top: 2px solid var(--gold);
    z-index: 300;
    padding: 0.5rem 0;
}
.main-nav li { position: relative; }
.main-nav li:hover > .sub-menu { display: block; }
.main-nav .sub-menu li { display: block; }
.main-nav .sub-menu a { padding: 0.5rem 1rem; font-size: 0.78rem; }
.main-nav .sub-menu a:hover { background: rgba(255,255,255,0.12); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 3px;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.18s;
    cursor: pointer;
    border: none;
}
.btn-gold  { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-bright); color: var(--navy); }
.btn-navy  { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); }
.btn-red   { background: var(--red-bright); color: var(--white); }
.btn-red:hover { background: var(--red); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ============================================================
   HERO (HOMEPAGE)
   ============================================================ */
.hero {
    background: var(--navy);
    overflow: hidden;
    position: relative;
}
.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    align-items: center;
}
.hero-image-col {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}
.hero-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.92;
}
.hero-content-col {
    padding: 4rem 3rem 4rem 2.5rem;
	    color: #fff;
}
.hero-eyebrow {
    font-family: Arial, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}
.hero-content-col h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.hero-content-col h1 .gold { color: var(--gold); }
.hero-statement {
    font-style: italic;
    font-family: Georgia, serif;
    font-size: 1.05rem;
    color: var(--gold-bright);
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-weight: 400;
}
.hero-content-col p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.hero-buttons { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.2rem; }
.hero-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.7);
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: var(--navy);
    padding: 3.5rem 1.5rem;
    border-bottom: 3px solid var(--gold);
}
.page-hero-inner { max-width: 1140px; margin: 0 auto; }
.eyebrow {
    font-family: Arial, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 680px; font-size: 1rem; margin: 0; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 4.5rem 1.5rem; }
.section-white  { background: var(--white); }
.section-light  { background: var(--light-grey); }
.section-navy   { background: var(--navy); }
.section-gold   { background: var(--gold-light); }
.section-navy h2, .section-navy h3 { color: var(--gold); }
.section-navy p, .section-navy li { color: rgba(255,255,255,0.85); }

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.section-heading .eyebrow { justify-content: center; display: block; text-align: center; }
.section-heading p { color: var(--mid-grey); }

/* ============================================================
   PROBLEM STRIP
   ============================================================ */
.problem-strip { background: var(--navy-mid); padding: 2.5rem 1.5rem; }
.problem-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.problem-item { border-left: 3px solid var(--gold); padding-left: 1rem; }
.problem-item .label {
    font-family: Arial, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.3rem;
}
.problem-item p { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin: 0; line-height: 1.55; }

/* ============================================================
   CARDS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.25rem; }

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem 1.5rem;
}
.card-gold-top { border-top: 3px solid var(--gold); }
.card-navy-top { border-top: 3px solid var(--navy); }
.card-red-top  { border-top: 3px solid var(--red-bright); }
.card .card-icon { font-size: 1.8rem; margin-bottom: 0.75rem; display: block; }
.card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.card p  { font-size: 0.9rem; color: var(--mid-grey); margin: 0; line-height: 1.6; }

.step-num {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 0.6rem;
}

.stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    text-align: center;
}
.stat-num { font-family: 'Arial Black', Arial, sans-serif; font-size: 2.6rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; margin-bottom: 0.5rem; }
.stat-lbl { font-family: Arial, sans-serif; font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* ============================================================
   CALLOUT BOXES
   ============================================================ */
.callout { padding: 1.5rem; border-radius: 3px; margin: 2rem 0; }
.callout-blue  { background: var(--navy-light); border-left: 4px solid var(--navy); }
.callout-gold  { background: var(--gold-light);  border-left: 4px solid var(--gold); }
.callout-red   { background: #FDECEA;            border-left: 4px solid var(--red-bright); }
.callout-green { background: #EAF4E8;            border-left: 4px solid #2D7A2D; }
.callout h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.callout p  { margin: 0; font-size: 0.9rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: var(--red-bright); padding: 4.5rem 1.5rem; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.9); max-width: 620px; margin: 0 auto 2rem; font-size: 1.05rem; }
.badge-row { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }
.cbadge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================================
   UPDATES / NEWS CARDS
   ============================================================ */
.update-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: 0 4px 4px 0;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
}
.update-meta {
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    color: var(--mid-grey);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.update-meta .tag {
    background: var(--navy-light);
    color: var(--navy);
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
    font-size: 0.7rem;
}
.update-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.update-item h3 a { text-decoration: none; color: var(--navy); }
.update-item h3 a:hover { color: var(--gold); }
.update-item p { color: var(--mid-grey); font-size: 0.92rem; margin: 0; }

/* ============================================================
   BLOG / POST LOOP
   ============================================================ */
.post-loop { max-width: 860px; margin: 0 auto; padding: 3rem 1.5rem; }
.post-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: 0 4px 4px 0;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
}
.post-card-meta {
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    color: var(--mid-grey);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.post-card h2 { font-size: 1.2rem; margin-bottom: 0.5rem; border: none; padding: 0; }
.post-card h2 a { text-decoration: none; color: var(--navy); }
.post-card h2 a:hover { color: var(--gold); }
.post-card .excerpt { color: var(--mid-grey); font-size: 0.93rem; margin-bottom: 0.75rem; }
.post-card .read-more {
    font-family: Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}
.post-card .read-more:hover { color: var(--gold); }

/* Pagination */
.pagination { text-align: center; padding: 2rem 0; }
.pagination .page-numbers {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    margin: 0 0.2rem;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    color: var(--navy);
}
.pagination .page-numbers.current { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-post-wrap { max-width: 860px; margin: 0 auto; padding: 3rem 1.5rem; }
.single-post-meta {
    font-family: Arial, sans-serif;
    font-size: 0.8rem;
    color: var(--mid-grey);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.entry-content h2 { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.entry-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 900;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.faq-q .icon { color: var(--gold); flex-shrink: 0; font-size: 1.2rem; transition: transform 0.2s; }
.faq-q.open .icon { transform: rotate(45deg); }
.faq-a { display: none; padding-top: 1rem; color: var(--mid-grey); font-size: 0.95rem; line-height: 1.7; }
.faq-a.open { display: block; }

/* ============================================================
   FORM
   ============================================================ */
.story-form { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-family: Arial, sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.4rem; }
.form-group .note { font-weight: 400; color: var(--mid-grey); font-size: 0.78rem; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 3px;
    font-family: Georgia, serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: white;
    transition: border-color 0.18s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27,42,74,0.1);
}
.form-group textarea { min-height: 200px; resize: vertical; }
.check-row { display: flex; align-items: flex-start; gap: 0.65rem; margin-top: 0.3rem; }
.check-row input { width: auto; margin-top: 0.2rem; flex-shrink: 0; }

/* ============================================================
   RESOURCE CARDS
   ============================================================ */
.resource-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.resource-card .r-type { font-family: Arial, sans-serif; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.resource-card h3 { font-size: 0.95rem; margin: 0; color: var(--navy); }
.resource-card p  { font-size: 0.85rem; color: var(--mid-grey); margin: 0; line-height: 1.5; }
.resource-card a.r-link { font-family: Arial, sans-serif; font-size: 0.82rem; color: var(--navy); font-weight: 700; margin-top: auto; text-decoration: none; }
.resource-card a.r-link:hover { color: var(--gold); }

/* ============================================================
   PAGE CONTENT AREA
   ============================================================ */
.page-body { max-width: 860px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.page-body h2 { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.page-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

/* ============================================================
   MISSION PAGE
   ============================================================ */
.value-pill {
    display: inline-block;
    background: var(--navy-light);
    color: var(--navy);
    border: 1px solid var(--navy);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0.3rem;
}

/* ============================================================
   WORDPRESS EDITOR ALIGNMENT
   ============================================================ */
.alignleft  { float: left; margin: 0.5rem 1.5rem 1rem 0; }
.alignright { float: right; margin: 0.5rem 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1rem auto; text-align: center; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.82rem; color: var(--mid-grey); text-align: center; font-style: italic; margin-top: 0.4rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 3.5rem 1.5rem 1.5rem;
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
}
.footer-grid {
    max-width: 1140px;
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
}
.footer-brand-name { font-family: 'Arial Black', Arial, sans-serif; font-size: 1rem; font-weight: 900; color: var(--white); line-height: 1.1; display: block; margin-bottom: 0.25rem; }
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.6; margin-bottom: 0.75rem; }
.footer-col h5 { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; font-family: Arial, sans-serif; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.83rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}
.footer-disclaimer {
    max-width: 1140px;
    margin: 1rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.28);
    line-height: 1.6;
}

/* ============================================================
   SUCCESS / ERROR MESSAGES
   ============================================================ */
.msg-success { background: #EAF4E8; border: 1px solid #2D7A2D; border-left: 4px solid #2D7A2D; padding: 1.5rem; border-radius: 3px; margin-bottom: 2rem; }
.msg-success h4 { color: #1A5C1A; margin-bottom: 0.4rem; }
.msg-success p  { color: #2D7A2D; margin: 0; font-size: 0.9rem; }
.msg-error { background: #FDECEA; border: 1px solid var(--red-bright); border-left: 4px solid var(--red-bright); padding: 1.5rem; border-radius: 3px; margin-bottom: 2rem; }
.msg-error h4 { color: var(--red); margin-bottom: 0.4rem; }
.msg-error p  { color: var(--red); margin: 0; font-size: 0.9rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image-col { min-height: 260px; max-height: 320px; }
    .hero-content-col { padding: 2.5rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 0.75rem 1.5rem 1rem; }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0.1rem; }
    .menu-toggle { display: block; }
    .header-inner { position: relative; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .cta-banner { padding: 3rem 1.5rem; }
}
