/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* -------------------------------
   Castle T Font Family
--------------------------------*/
@font-face {
    font-family: 'Castle T Light';
    src: url('assets/fonts/Castle T Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Castle T Book';
    src: url('assets/fonts/Castle T Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Castle T Bold';
    src: url('assets/fonts/Castle T Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Castle T Ultra';
    src: url('assets/fonts/Castle T Ultra.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* -------------------------------
   Open Sans Font Family
--------------------------------*/
@font-face {
    font-family: 'Open Sans';
    src: url('assets/fonts/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('assets/fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('assets/fonts/OpenSans-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('assets/fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('assets/fonts/OpenSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}


body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Color Variables */
:root {
    --rwa-green: #3e4827;
    --rwa-tan: #ddcba4;
    --rwa-slate-blue: #3b4559;
    --rwa-pale-gray: #d9e1e2;
    --rwa-light-blue: #dde5ed;
    --rwa-gold: #89764b;
    --rwa-muted-blue: #5b6770;
}

/* Typography */
.section-title {
    font-family: 'Castle T Bold', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--rwa-slate-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--rwa-muted-blue);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-divider {
    width: 80px;
    height: 1px;
    background-color: var(--rwa-muted-blue);
    margin: 0 auto 2rem;
}

.section-header {
    margin-bottom: 5rem;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

.nav-title {
    font-family: 'Castle T Book', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rwa-slate-blue);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: var(--rwa-muted-blue);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--rwa-gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--rwa-slate-blue);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('assets/Final Aerial Edit.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
    padding: 0 24px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Castle T Book', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--rwa-tan);
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: var(--rwa-gold);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    background: var(--rwa-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--rwa-light-blue);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.125rem;
    color: var(--rwa-muted-blue);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.anchor-spacer {
  position: relative;
  top: -100px; /* Adjust to match your fixed nav height */
  height: 0;
  visibility: hidden;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Castle T Book', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--rwa-slate-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--rwa-muted-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.projects-list {
    margin-bottom: 6rem;
}

.project-item {
    margin-bottom: 6rem;
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.project-item.reverse .project-content {
    direction: rtl;
}

.project-item.reverse .project-info {
    direction: ltr;
}

.project-name {
    font-family: 'Castle T Book', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--rwa-slate-blue);
    margin-bottom: 1rem;
}

.project-subtitle {
    color: var(--rwa-slate-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.project-description {
    font-size: 1.125rem;
    color: var(--rwa-muted-blue);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.project-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-stat {
    text-align: center;
}

.project-stat .stat-number {
    font-family: 'Castle T Book', serif;
    font-size: 2rem;
    color: var(--rwa-slate-blue);
    margin-bottom: 0.5rem;
}

.project-stat .stat-label {
    font-size: 0.875rem;
    color: var(--rwa-muted-blue);
}

.project-features {
    list-style: none;
}

.project-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--rwa-muted-blue);
}

.feature-icon {
    width: 16px;
    height: 16px;
    color: var(--rwa-slate-blue);
    margin-right: 12px;
    flex-shrink: 0;
}

.project-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.project-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Development Map */
.development-map {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 4rem;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-title {
    font-family: 'Castle T Book', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--rwa-green);
    margin-bottom: 1rem;
}

.map-subtitle {
    color: var(--rwa-green);
    font-size: 1.125rem;
}

.map-container {
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block; /* ensure it's a block-level element */
}

.map-indicator {
    position: absolute;
    left: 0.45rem;  /* space from the right edge */
    top: 0.45rem;    /* space from the top edge */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.25rem;    /* bigger padding */
    border-radius: 12px;      /* slightly more rounded */
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    min-width: 309px;         /* wider box */
    min-height: 115px;
    font-size: 1.1rem;    
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-pin {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
    display: inline-block;
    margin-right: 8px;
}

.location-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--rwa-green);
}

.location-subtitle {
    font-size: 0.75rem;
    color: var(--rwa-green);
    margin-top: 4px;
}

.map-footer {
    background: var(--rwa-tan);
    padding: 1rem;
    text-align: center;
}

.map-description {
    font-size: 0.875rem;
    color: var(--rwa-muted-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.map-icon {
    width: 16px;
    height: 16px;
    color: var(--rwa-green);
}

.map-cta {
    display: inline-block;
    background: var(--rwa-gold);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.map-cta:hover {
    background: #fff;
    color: var(--rwa-gold);
    border: var(--rwa-gold);
    border-radius: 8px;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* force 4 per row */
    gap: 1rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--rwa-gold), var(--rwa-tan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

.service-section-title {
    font-family: 'Castle T Bold', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--rwa-green);
    margin-bottom: 1.5rem;
    text-align: center;
}
.service-title {
    font-family: 'Castle T Book', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--rwa-green);
    margin-bottom: 1rem;
}

.service-description {
    font-family: 'Open Sans', sans-serif;
    color: var(--rwa-green);
    line-height: 1.7;
}

/* Current Projects */

.current-projects {
    padding: 6rem 0;
    background: var(--rwa-light-blue);
}

.current-projects .section-title {
    text-align: center;
}

.current-projects .section-subtitle {
    max-width: 800px;
}

.current-projects-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 3rem;
    align-items: center;
}

/* Stack on mobile like about / contact / projects */
@media (max-width: 768px) {
    .current-projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Left side image block (map / site visual) */
.current-project-media {
    width: 100%;
}

.current-project-media img {
    width: 100%;
    height: auto;                /* let height follow aspect ratio */
    max-height: none;           /* remove the artificial cap */
    object-fit: contain;        /* show the whole image, no cropping */
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
    border-radius: 12px;
    border: 1px solid #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Right side content panel */
.current-project-panel {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.current-project-title {
    font-family: 'Castle T Book', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--rwa-slate-blue);
    text-align: center;
    margin-bottom: 0.75rem;
}

.current-project-tagline {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    color: var(--rwa-slate-blue);
    margin-bottom: 1.5rem;
}

.current-project-description {
    font-size: 1.05rem;
    color: var(--rwa-muted-blue);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.current-project-highlights {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.current-project-highlights li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--rwa-muted-blue);
}

.current-project-highlights li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--rwa-gold);
}

/* Button: match hero/map CTA feel */
.current-project-cta {
    display: block;               /* was inline-block */
    margin: 0 auto;               /* centers inside panel */
    color: var(--rwa-slate-blue);
    background: #fff;
    border: 1px solid var(--rwa-slate-blue);
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.current-project-cta:hover {
    background: var(--rwa-slate-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


/* Leadership Section */
.leadership {
    padding: 6rem 0;
    background: #fff;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* force 4 per row */
    gap: 1rem;
}

.leader-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.leader-image {
    width: 100%;
    height: 300px;
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-img {
    transform: scale(1.05);
}

.leader-info {
    padding: 2rem;
}

.leader-name {
    font-family: 'Castle T Book', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--rwa-slate-blue);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--rwa-slate-blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.leader-description {
    color: var(--rwa-muted-blue);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}
.contact-section-title {
    font-family: 'Castle T Bold', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--rwa-green);
    margin-bottom: 1.5rem;
    text-align: center;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rwa-gold), var(--rwa-tan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-details h4 {
    font-family: 'Castle T Book', serif;
    font-size: 1.25rem;
    color: var(--rwa-green);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--rwa-green);
    font-size: 1.125rem;
}

/* Contact Form */
.contact-form {
    background: var(--rwa-tan);
    padding: 2rem;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--rwa-green);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rwa-green);
}

.form-submit {
    width: 100%;
    background: var(--rwa-green);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background: var(--rwa-green);
}

.contact-form .g-recaptcha {
  display: inline-block;      /* so auto margins work nicely */
  margin: 0 auto 1rem;        /* bottom space before button */
}

.contact-form .g-recaptcha > div {
  margin: 0 auto;
}

.contact-form .g-recaptcha + .form-submit {
  margin-top: 1rem;
}

.contact-form .form-group.recaptcha-group {
  grid-column: 1 / -1;        /* spans both columns on desktop grid */
  text-align: center;         /* centers the inline-block widget */
}

.contact-form .form-note {
  text-align: center;
  font-size: 0.8rem;        /* smaller font */
  line-height: 1.4;
  color: var(--rwa-green);
  margin-top: 0.75rem;
}


/* Footer */
.footer {
    background: var(--rwa-slate-blue);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

.footer-title {
    font-family: 'Castle T Book', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.7;
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-heading {
    font-family: 'Castle T Book', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #9ca3af;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid,
    .project-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-item.reverse .project-content {
        direction: ltr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 1rem 16px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .project-images {
        grid-template-columns: 1fr;
    }
    
    .development-map {
        padding: 1.5rem;
    }
}

/* --- News: stability fixes (desktop) + boxed shadow style --- */
#news {
  padding: 6rem 0;
  background: var(--rwa-light-blue);
}
#news .news-grid {
  position: relative;           /* create predictable stacking context */
  z-index: 0;
}

#news .news-card {
  position: relative;           /* ensure card sits above siblings like notes/buttons */
  z-index: 1;

  /* Boxed look to match Map section */
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);        /* subtle border */
  border-radius: 16px;                              /* rounded corners like map */
  box-shadow: 0 12px 32px rgba(2, 38, 78, 0.10);   /* soft depth */
  overflow: hidden;                                 /* clip image corners cleanly */
  transition: box-shadow .25s ease, transform .25s ease;
}

#news .news-card .img { background: var(--rwa-light-blue, #eef6ff); }
#news .news-card .img img { display: block; width: 100%; height: auto; }

#news .news-body { padding: 1.25rem 1.25rem 1.5rem; text-align: center; }

/* Force critical text blocks to be visible in case an older rule used display:initial */
#news .news-title,
#news .news-meta,
#news .news-excerpt {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* READ MORE button — match the style you specified */
#news .news-card .news-link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.875rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--rwa-slate-blue);
  background: #fff;
  border: 1px solid var(--rwa-slate-blue);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-decoration: none;
  line-height: 1;
  margin-top: 0.75rem; /* comfortable spacing from excerpt */
}
#news .news-card .news-link:hover {
  background: var(--rwa-slate-blue);
  color: #fff;
  border-color: var(--rwa-slate-blue);
}
#news .news-card .news-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 38, 78, 0.15);
}

/* Keep "Load more" and any note behind cards in stacking terms */
#newsMore,
#news .note {
  position: relative;
  z-index: 0;
}

/* Desktop-specific reinforcement */
@media (min-width: 769px) {
  #news .news-title,
  #news .news-meta,
  #news .news-excerpt {
    display: block !important;
  }
}

/* Load more button (unchanged) */
#newsMore #loadMoreNews {
  display: inline-block;
  font-weight: 600;
  font-size: 0.875rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--rwa-slate-blue);
  background: #fff;
  border: 1px solid var(--rwa-slate-blue);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
#newsMore #loadMoreNews:hover {
  background: var(--rwa-slate-blue);
  color: #fff;
  border-color: var(--rwa-slate-blue);
}

/* Note under the grid */
#news .note {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--rwa-muted-blue);
  margin-top: 0.75rem;
}

/* Optional: tasteful hover lift on desktop */
@media (hover:hover) {
  #news .news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(2, 38, 78, 0.14);
  }
}
