@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&family=Merriweather:ital,wght@0,300;1,300&family=Nunito:wght@400;600&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-dark: #2d5016;
    --green-mid: #4a7c3f;
    --green-light: #7ab648;
    --green-pale: #e8f5e0;
    --earth: #8b5e3c;
    --earth-light: #c49a6c;
    --cream: #faf6f0;
    --text-dark: #1e2a1a;
    --text-mid: #3d4f35;
    --text-light: #6b7f5e;
    --white: #ffffff;
    --border: #d4e6c3;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

a {
    color: var(--green-mid);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--green-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* PAGE LOADER */
#page-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-leaf {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--green-light);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--green-dark);
    color: var(--white);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 8888;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

#cookie-banner p {
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

#cookie-banner p a {
    color: var(--green-light);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-accept {
    background: var(--green-light);
    color: var(--white);
    border: none;
    padding: 9px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.btn-accept:hover {
    background: var(--green-mid);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 9px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: border-color 0.2s;
}

.btn-reject:hover {
    border-color: var(--white);
}

/* HEADER */
.site-header {
    background: var(--green-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-logo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green-light);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.logo-sub {
    font-family: 'Lato', sans-serif;
    color: var(--green-light);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: rgba(255,255,255,0.85);
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green-light);
    border-bottom-color: var(--green-light);
}

/* BURGER */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.burger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    background: var(--green-dark);
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.35s;
}

.mobile-nav.open {
    max-height: 400px;
    padding: 12px 0;
}

.mobile-nav a {
    display: block;
    color: rgba(255,255,255,0.85);
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s, color 0.2s;
}

.mobile-nav a:hover {
    background: rgba(255,255,255,0.06);
    color: var(--green-light);
}

/* HERO */
.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,80,22,0.75) 0%, rgba(74,124,63,0.45) 100%);
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    color: var(--white);
}

.hero-eyebrow {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 12px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 680px;
}

.hero-desc {
    font-family: 'Merriweather', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.9);
}

.btn-primary {
    display: inline-block;
    background: var(--green-light);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--green-mid);
    color: var(--white);
    transform: translateY(-1px);
}

/* SECTION LAYOUTS */
.section {
    padding: 72px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-sm {
    padding: 48px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-intro {
    font-family: 'Merriweather', serif;
    font-weight: 300;
    font-size: 16px;
    color: var(--text-light);
    max-width: 640px;
    margin-bottom: 48px;
    line-height: 1.8;
}

/* CARDS GRID */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 22px 22px 26px;
}

.card-tag {
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 8px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}

.card-link {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--green-mid);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--green-light);
    padding-bottom: 1px;
    transition: color 0.2s;
}

.card-link:hover {
    color: var(--green-dark);
}

/* FEATURED SECTION */
.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.featured-img-wrap {
    position: relative;
    overflow: hidden;
}

.featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.featured-img-wrap:hover img {
    transform: scale(1.03);
}

.featured-content {
    background: var(--green-dark);
    color: var(--white);
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content .section-label {
    color: var(--green-light);
}

.featured-content .section-title {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 18px;
}

.featured-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin-bottom: 24px;
}

.featured-content .btn-primary {
    align-self: flex-start;
}

/* TIPS BAND */
.tips-band {
    background: var(--green-pale);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 56px 24px;
}

.tips-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.tip-card {
    background: var(--white);
    border-radius: 8px;
    padding: 28px 22px;
    border-left: 4px solid var(--green-mid);
}

.tip-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.tip-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.tip-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

/* ARTICLE PAGE */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 52px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px;
}

.article-header {
    margin-bottom: 32px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.article-category {
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--green-mid);
    padding: 4px 10px;
    border-radius: 3px;
}

.article-date {
    font-size: 13px;
    color: var(--text-light);
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.article-lead {
    font-family: 'Merriweather', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 18px;
    color: var(--text-mid);
    line-height: 1.7;
    border-left: 4px solid var(--green-light);
    padding-left: 20px;
    margin-bottom: 32px;
}

.article-hero-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 36px;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--green-dark);
    margin: 36px 0 14px;
}

.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--green-mid);
    margin: 28px 0 10px;
}

.article-body p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 16px;
}

.article-body ul, .article-body ol {
    margin: 0 0 18px 24px;
    color: var(--text-dark);
    line-height: 1.8;
}

.article-body li {
    margin-bottom: 6px;
}

.article-body a {
    color: var(--green-mid);
    border-bottom: 1px solid var(--border);
}

.article-body a:hover {
    color: var(--green-dark);
    border-bottom-color: var(--green-mid);
}

.article-body blockquote {
    background: var(--green-pale);
    border-left: 4px solid var(--green-mid);
    padding: 18px 22px;
    border-radius: 0 6px 6px 0;
    margin: 24px 0;
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* SIDEBAR */
.sidebar {
    padding-top: 8px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 28px;
    border: 1px solid var(--border);
}

.widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--green-pale);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    border-bottom: 1px solid var(--green-pale);
    padding: 10px 0;
}

.sidebar-links li:last-child {
    border-bottom: none;
}

.sidebar-links a {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
}

.sidebar-links a:hover {
    color: var(--green-mid);
}

.season-list {
    list-style: none;
}

.season-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--green-pale);
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.season-list li:last-child {
    border-bottom: none;
}

.season-badge {
    font-family: 'Nunito', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 3px;
    text-transform: uppercase;
    flex-shrink: 0;
    margin-top: 2px;
}

.s-spring { background: #d4f1a8; color: #3a6b1a; }
.s-summer { background: #fff3a8; color: #7a6200; }
.s-autumn { background: #ffd9a8; color: #7a3500; }
.s-winter { background: #c8e0f5; color: #1a4a7a; }

/* BREADCRUMB */
.breadcrumb {
    background: var(--green-pale);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px;
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 13px;
    color: var(--text-light);
}

.breadcrumb-inner a {
    color: var(--green-mid);
}

.breadcrumb-inner span {
    margin: 0 6px;
}

/* PAGE HEADER (about, contact...) */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    padding: 72px 24px;
    text-align: center;
    color: var(--white);
}

.page-hero .section-label {
    color: var(--green-light);
    justify-content: center;
    display: flex;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 700;
    margin-bottom: 14px;
}

.page-hero p {
    font-family: 'Merriweather', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto;
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px 22px;
}

.contact-item-label {
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 400;
}

.contact-item-value a {
    color: var(--green-mid);
}

.contact-resources h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.resource-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.resource-list li a {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.resource-list li a:hover {
    border-color: var(--green-mid);
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.resource-name {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--green-dark);
}

.resource-url {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

/* POLICY PAGE */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 24px;
}

.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--green-dark);
    margin: 32px 0 12px;
}

.policy-content p, .policy-content li {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 14px;
}

.policy-content ul {
    margin-left: 22px;
}

.policy-update {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 36px;
}

/* FOOTER */
.site-footer {
    background: var(--green-dark);
    color: rgba(255,255,255,0.75);
    padding: 56px 24px 28px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin: 12px 0 0;
    max-width: 260px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.footer-logo span {
    color: var(--green-light);
}

.footer-col h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--green-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
}

.footer-bottom a:hover {
    color: var(--green-light);
}

.update-date {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-style: italic;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
}

.about-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.about-text p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.values-list {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.values-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-mid);
    flex-shrink: 0;
    margin-top: 6px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .tips-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .article-layout { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .featured-grid { grid-template-columns: 1fr; }
    .featured-img-wrap { height: 280px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .burger-btn { display: flex; }
    .mobile-nav { display: block; }
    .cards-grid { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; }
    .hero { height: 380px; }
    .footer-grid { grid-template-columns: 1fr; }
}
