.hero-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}
.hero-community-img {
    width: auto;
    height: 100%;
    max-height: 420px;
    min-width: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    object-fit: contain;
    flex: 1 1 0;
}
.fullpage-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 140px;
}
.about-dark.fullpage-section {
    background: var(--color-green);
}
.services.fullpage-section {
    background: var(--color-green);
    color: var(--color-cream);
}
.contact.fullpage-section {
    background: var(--color-blue);
    color: var(--color-cream);
}
.about-dark {
    background: var(--color-green);
    position: relative;
}
.about-dark .section-header h2,
.about-dark .section-header p,
.about-dark .about-story .lead {
    color: var(--color-cream) !important;
}

/* Ensure about story is visible */
.about-story {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Scheme */
    --color-dark: #0b0b0b;
    --color-green: #12664f;
    --color-red: #e2856e;
    --color-orange: #e9b44c;
    --color-blue: #1ac8ed;
    --color-cream: #ffedbf;
    --color-light: #69aba1;
    --color-grey: #474954;
    --color-contrast1: #f55d3e;
    --color-contrast2: #e2856e;
    --color-contrast3: #1ac8ed;
    --color-contrast4: #e9b44c;
    
    /* Typography */
    --font-header: 'Baskerville', 'Times New Roman', serif;
    --font-body: 'DM Sans', 'Avenir', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: #0b0b0b;
    background-color: var(--color-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    font-weight: 400;
    color: #0b0b0b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reset any default margins/padding that might create gaps */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    z-index: 1000;
    padding: 1rem 0;
    transition: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Ensure navbar stays transparent in all states */
.navbar:hover,
.navbar:focus,
.navbar:active,
.navbar.scrolled {
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo h2 {
    color: var(--color-green);
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link i {
    font-size: 1rem;
}

.nav-link span {
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--color-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Full-Stretch Background */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffedbf;
    background-image: url('assets/images/vecteezy_exquisite-pottery-pieces-on-display-showcasing-the-skilled_49727381.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 10px 4rem 0;
}

.hero-logo-top-right {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-logo {
    height: 140px;
    width: auto;
    transition: all 0.3s ease;
}

.hero-content {
    background: rgba(255, 255, 255, 0.3);
    color: var(--color-dark);
    z-index: 3;
    width: 95vw;
    max-width: 1100px;
    min-width: 600px;
    height: 20vh;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: auto 1vw 5vh auto;
    text-align: right;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
     height: auto;        /* was fixed 20vh */
  min-height: 20vh;    /* keep presence */
}

.hero-tagline {
    font-size: 1.88rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-dark);
    text-shadow: none;
    opacity: 0.85;
    line-height: 1.5;
    margin: 0;
    text-align: right;
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    max-width: none;
    letter-spacing: 0.01em;
     text-align: right;
    line-height: 1.2;    /* tighter for the 3-line stack */
}

.hero-tagline strong {
    font-weight: 600;
    color: var(--color-dark);
}


.hero-tagline em {
    font-style: italic;
    font-weight: 500;
    color: var(--color-dark);
}

/* Welcome Card Section */
.welcome-card-section {
    padding: 4rem 0;
    background: var(--color-light);
}

.welcome-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transform: translateY(-2rem);
}

.welcome-content {
    position: relative;
    z-index: 2;
}

.welcome-logo {
    margin-bottom: 2rem;
}

.card-logo {
    height: 80px;
    width: auto;
    opacity: 0;
}

.welcome-card h2 {
    font-size: 2rem;
    font-family: var(--font-header);
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.welcome-text {
    font-size: 1.2rem;
    color: var(--color-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-family: var(--font-body);
}

.welcome-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--color-green);
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-dark);
    font-size: 1.1rem;
}

.hero-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(23, 110, 48, 0.3);
}

.hero-graphic i {
    font-size: 6rem;
    color: var(--color-light);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #176e30;
    position: relative;
}

/* Logo positioning for all sections */
.services .container > img,
.about .container > img,
.contact .container > img {
    position: absolute !important;
    top: 0px !important;
    left: 0px !important;
    width: 100px !important;
    height: auto !important;
    z-index: 100 !important;
}

/* Ensure section headers have top margin to make space for logos */
.services .section-header,
.about .section-header,
.contact .section-header {
    margin-top: 0 !important;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-family: var(--font-header);
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-dark);
    opacity: 0.7;
    font-family: var(--font-body);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    height: 100%;
}

.service-card {
    background: #143c1e;
    color: var(--color-cream) !important;
    padding: 2.5rem;
    border-radius: 12px !important;
    border: 1px solid var(--color-cream);
    transition: all 0.3s ease;
    text-align: center;
}

/* Make all text in service cards cream */
.service-card h3,
.service-card p,
.service-card ul,
.service-card li,
.service-card ul li {
    color: var(--color-cream) !important;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 11, 11, 0.1);
    border-color: var(--color-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--color-light);
}

.service-card h3 {
    font-size: 1.5rem;
    font-family: var(--font-header);
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-card p {
    opacity: 1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: var(--font-body);
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    opacity: 0.8;
    position: relative;
    padding-left: 1.5rem;
    font-family: var(--font-body);
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--color-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: var(--color-light);
}

.stat-number {
    font-size: 3rem;
    font-family: var(--font-header);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-orange);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-family: var(--font-body);
}

/* Values Section */
.values {
    padding: 80px 0;
    background: var(--color-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
        color: var(--color-cream) !important;
        /* Make all text in service cards cream */
    .service-card h3,
    .service-card p,
    .service-card ul,
    .service-card ul li {
        color: var(--color-cream) !important;
    }
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-green);
    box-shadow: 0 15px 30px rgba(23, 110, 48, 0.1);
}

.value-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--color-light);
}

.value-card h3 {
    font-size: 1.8rem;
    font-family: var(--font-header);
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--color-dark);
    opacity: 0.8;
    line-height: 1.6;
    font-family: var(--font-body);
    font-size: 1.1rem;
}

/* About Section with Values */
.about {
    padding: 30px 0;
    background: var(--color-cream);
}

.about-story {
    text-align: center;
    margin-bottom: 4rem;
}

.about-story .lead {
    font-size: 2rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5em !important;
    color: var(--color-cream) !important;
}

.about.about-dark .about-story .lead {
  color: var(--color-cream) !important;
}

.about:not(.about-dark) .about-story .lead {
  color: var(--color-dark) !important;
}

.about .about-story,
.about-dark .about-story {
  position: relative;
  z-index: 2;
}

.about-story[hidden],
.about-story.is-hidden,
.about-story.hidden,
.about-story.collapsed {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.about .about-story,
.about .about-story p,
.about .about-story .lead {
  color: var(--color-dark) !important;
}

.about-dark .about-story,
.about-dark .about-story p,
.about-dark .about-story .lead {
  color: var(--color-cream) !important;
}

.about.fullpage-section,
.about-dark.fullpage-section {
  padding-top: 140px;
}

@media (max-width: 768px) {
  .about.fullpage-section,
  .about-dark.fullpage-section {
    padding-top: 110px;
  }
}

/* Remove TEMP: visualize the area for about-story */
.about .about-story,
.about-dark .about-story {
  outline: none !important;
}
/* --- END ABOUT STORY FIX --- */

/* --- Section Logo: Enforce Consistent Size --- */
.section-logo {
  width: 100px !important;
  height: auto !important;
  max-width: 100px !important;
  min-width: 100px !important;
  aspect-ratio: unset !important;
}

@media (max-width: 768px) {
  .section-logo {
    width: 80px !important;
    max-width: 80px !important;
    min-width: 80px !important;
  }
}
/* --- End Section Logo Consistent Size --- */

/* --- Section Logo: Standardize by Height for Visual Consistency --- */
:root {
  --section-logo-h: 84px;     /* desktop visual height */
  --section-logo-h-sm: 72px;  /* mobile visual height */
}

.section-logo {
  position: absolute;
  top: 24px;
  left: 24px;
  height: var(--section-logo-h) !important;
  width: auto !important;
  max-height: none !important;
  max-width: none !important;
  display: block;
  z-index: 100;
  pointer-events: none;
  object-fit: contain;
}

.fullpage-section {
  position: relative;
  padding-top: calc(var(--section-logo-h) + 56px);
}

@media (max-width: 768px) {
  .section-logo {
    top: 16px;
    left: 16px;
    height: var(--section-logo-h-sm) !important;
  }
  .fullpage-section {
    padding-top: calc(var(--section-logo-h-sm) + 48px);
  }
}

.services .container > img,
.about .container > img,
.contact .container > img {
  all: unset !important;
}

/* Fallback: Target logos by alt text if class not present */
#services .container > img[alt*="Logo"],
#about .container > img[alt*="Logo"],
#contact .container > img[alt*="Logo"] {
  position: absolute !important;
  top: 24px !important;
  left: 24px !important;
  height: var(--section-logo-h) !important;
  width: auto !important;
  z-index: 100 !important;
  pointer-events: none;
}
@media (max-width: 768px) {
  #services .container > img[alt*="Logo"],
  #about .container > img[alt*="Logo"],
  #contact .container > img[alt*="Logo"] {
    top: 16px !important;
    left: 16px !important;
    height: var(--section-logo-h-sm) !important;
  }
}
/* --- End Section Logo Height Standardization --- */

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(11, 11, 11, 0.85);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 237, 191, 0.2);
        backdrop-filter: blur(15px);
    }

    .nav-menu .nav-link {
        color: var(--color-cream);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-logo-top-right {
        position: absolute;
        top: 2.5rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        z-index: 4;
    }

    .hero-main-logo {
        height: 90px;
        max-width: 80vw;
        display: block;
        margin: 0 auto;
    }

    .hero-overlay {
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
    }

    .welcome-card {
        margin: 0 1rem;
        padding: 2rem;
        transform: translateY(-1rem);
    }

    .welcome-card h2 {
        font-size: 2rem;
    }

    .welcome-features {
        gap: 2rem;
    }

    .feature-item i {
        font-size: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon i {
        font-size: 1.5rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.contact-item,
.stat-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* --- Contact Info: Shift Down for Logo Clearance --- */
.contact-info {
  margin-top: 140px;
}
@media (max-width: 768px) {
  .contact-info {
    margin-top: 0px;
  }
}
/* --- End Contact Info Shift --- */

/* --- Section Logo Position Fix: No Overlap, Always Top --- */
@media (min-width: 769px) {
  .services .section-header,
  .contact .section-header {
    margin-top: 12px !important;
  }
}

@media (max-width: 768px) {
  .services .section-header,
  .contact .section-header {
    margin-top: 12px !important;
  }
}

/* Always keep .section-logo at the very top of the section on desktop */
.section-logo,
#services .container > img[alt*="Logo"],
#about .container > img[alt*="Logo"],
#contact .container > img[alt*="Logo"] {
  top: 0 !important;
  left: 24px !important;
}
@media (max-width: 768px) {
  .section-logo,
  #services .container > img[alt*="Logo"],
  #about .container > img[alt*="Logo"],
  #contact .container > img[alt*="Logo"] {
    top: 0 !important;
    left: 16px !important;
  }
}
/* --- End Section Logo Position Fix --- */

/* --- FORCE ABOUT STORY VISIBILITY --- */
.about-story,
.about-story *,
.about-story[hidden],
.about-story.is-hidden,
.about-story.hidden,
.about-story.collapsed {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  color: inherit !important;
}
/* --- END FORCE ABOUT STORY VISIBILITY --- */

/* --- CONTACT PAGE: Restore Styling & Positioning --- */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 6rem;
}

@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 120px !important;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--color-green);
  margin-top: 0.25rem;
}

.contact-item h4 {
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: var(--font-header);
}

.contact-item p {
  color: var(--color-dark);
  opacity: 0.8;
  line-height: 1.6;
  font-family: var(--font-body);
}

.contact.fullpage-section,
.contact {
  background: var(--color-light);
  color: var(--color-dark);
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-info {
    margin-top: 80px !important;
  }
}
/* --- END CONTACT PAGE FIX --- */

/* --- CONTACT PAGE: Move Info Lower & Enlarge Form --- */
.contact-info {
  margin-top: 150   px !important;
}

.contact-form {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 2rem 2rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  font-size: 1.1rem;
  gap: 2rem;
}

@media (max-width: 900px) {
  .contact-form {
    max-width: 100%;
    padding: 1.2rem;
  }
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  font-size: 1.1rem;
  padding: 16px 18px;
}

.contact-form button[type="submit"] {
  font-size: 1.1rem;
  padding: 0.9em 2.2em;
  border-radius: 6px;
  margin-top: 0.5em;
}

/* --- FOOTER TEXT FORMATTING FIX --- */
.footer {
  background: var(--color-dark);
  color: var(--color-cream);
  padding: 60px 0 20px;
  font-size: 1.08rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--color-cream);
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.footer-section p,
.footer-section ul li a {
  color: var(--color-cream);
  opacity: 0.92;
  line-height: 1.7;
  font-family: var(--font-body);
  font-size: 1.08rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section ul li a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--color-orange);
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 237, 191, 0.2);
  color: var(--color-cream);
  opacity: 0.85;
  font-family: var(--font-body);
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  text-decoration: none;
  font-size: 1.2rem;
  transition: background 0.3s;
}

.social-links a:hover {
  background: var(--color-orange);
  color: var(--color-dark);
}
/* --- END FOOTER TEXT FORMATTING FIX --- */

@media (max-width: 768px) {
  .hero-content {
    max-width: 100vw !important;
    min-width: 0 !important;
    padding: 1.5rem 0.5rem 1.5rem 0.5rem !important;
    margin: 0 auto 2vh auto !important;
    text-align: center !important;
    word-break: break-word !important;
    border-radius: 8px !important;
  }
  .hero-tagline {
    font-size: 1.18rem !important;
    text-align: center !important;
    line-height: 1.5 !important;
    word-break: break-word !important;
    font-weight: 500 !important;
    max-width: 98vw !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    display: block !important;
  }
}