/* ===================================
   Global Styles & Variables
   =================================== */
:root {
    --emerald: #00563F;
    --gold: #C9A962;
    --cream: #F8F5F0;
    --dark-emerald: #0F2419;
    --light-gold: #E5D4A3;
    --text-dark: #2C2C2C;
    --text-light: #F8F5F0;
    
    --font-heading: 'Roboto', sans-serif;
    --font-sans: 'Roboto', sans-serif;
    
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    background: var(--emerald);
    padding: 0.375rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 2px solid var(--gold);
}

@media (max-width: 968px) {
    .navbar {
        z-index: 1002;
    }
}



.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.logo-m {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    z-index: 2;
}

.logo-scales {
    position: absolute;
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.6;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
}

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

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    position: relative;
}

.mobile-toggle:hover {
    opacity: 0.8;
}

.mobile-toggle:active {
    transform: scale(0.95);
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cream);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
    display: block;
}



/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin-top: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 86, 63, 0.24) 0%, rgba(0, 86, 63, 0.11) 35%, #ffffff 60%, #ffffff 100%);
    z-index: 0;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0;
    padding-top: 70px;
    width: 100%;
    min-height: 100vh;
}

.hero-content > .container {
    max-width: none;
    padding: 0;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: calc(100vh - 70px);
}

.hero-text {
    text-align: left;
    padding: 4rem 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 5;
    max-width: 600px;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 4px;
    height: 120px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.hero-accent-bar {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    line-height: 1.1;
}

.hero-title .accent {
    color: var(--gold);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.hero-subtitle .accent {
    color: var(--emerald);
    font-weight: 600;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.tagline-translation {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-style: italic;
    opacity: 0.7;
}

.hero-image-container {
    position: absolute;
    top: 50px;
    right: 0;
    bottom: 0;
    width: 50%;
    margin: 0;
    overflow: hidden;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    z-index: 3;
}

.hero-image-container img,
img#ila6y {
    width: 100% !important;
    height: 115% !important;
    object-fit: cover !important;
    object-position: center top !important;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    z-index: 2;
    display: block;
}

.image-frame-hero {
    display: none;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--emerald);
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0, 86, 63, 0.3);
}

.cta-button:hover {
    background: var(--gold);
    color: var(--emerald);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
}

.hero-cta-mobile {
    display: none;
}

.hero-cta-desktop {
    display: inline-block;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--emerald);
}

.decorative-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 6rem 0;
    background: var(--cream);
}

.about-intro-centered {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.intro-welcome {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--emerald);
    line-height: 1.8;
    padding: 0 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--emerald);
    margin-bottom: 2rem;
}

.about-text .emphasis {
    font-weight: 600;
    color: var(--emerald);
    font-size: 1.15rem;
    border-left: 4px solid var(--gold);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 6rem 0;
    background: white;
}

.services-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-category {
    background: white;
    padding: 2.5rem;
    border: 2px solid var(--gold);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.service-category:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--emerald);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
    text-align: center;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    color: var(--text-dark);
    line-height: 1.7;
    position: relative;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1.4;
}

/* ===================================
   Why Choose Section
   =================================== */
.why-choose {
    padding: 6rem 0;
    background: var(--emerald);
    color: var(--cream);
}

.why-choose .section-header h2 {
    color: var(--gold);
}

.why-choose .section-intro {
    color: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    transition: all 0.3s;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: sepia(0.6) saturate(1.5) hue-rotate(15deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-icon-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.why-card:hover .why-icon-img {
    transform: scale(1.05);
    border-color: var(--light-gold);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.why-card p {
    line-height: 1.8;
    opacity: 0.95;
}

/* ===================================
   Story Submission Section
   =================================== */
.story-submission {
    padding: 6rem 0;
    background: white;
}

.story-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--cream);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold);
}

.story-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.story-form .form-group {
    margin-bottom: 1.5rem;
}

.story-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--emerald);
    font-weight: 600;
    font-size: 1rem;
}

.story-form .form-group input,
.story-form .form-group textarea,
.story-form .form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(0, 86, 63, 0.2);
    border-radius: 5px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.story-form .form-group input:focus,
.story-form .form-group textarea:focus,
.story-form .form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.story-form .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.story-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300563F' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.story-form .form-group input[type="file"] {
    padding: 0.75rem;
    border: 2px dashed rgba(0, 86, 63, 0.3);
    background: rgba(201, 169, 98, 0.05);
    cursor: pointer;
    transition: all 0.3s;
}

.story-form .form-group input[type="file"]:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.1);
}

.story-form .form-group input[type="file"]:focus {
    outline: none;
    border-color: var(--gold);
    border-style: solid;
}

.form-help-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
    font-style: italic;
    line-height: 1.5;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
}

.checkbox-label span {
    flex: 1;
    color: var(--text-dark);
    line-height: 1.6;
}

.story-form .submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--emerald);
    color: var(--cream);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.story-form .submit-button:hover {
    background: var(--dark-emerald);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 86, 63, 0.3);
}

.story-form .submit-button:disabled {
    background: #999;
    cursor: not-allowed;
    transform: none;
}

#storyFormStatus {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

#storyFormStatus.show {
    display: block;
}

#storyFormStatus.success {
    background-color: rgba(0, 150, 0, 0.1);
    color: #006400;
    border: 2px solid rgba(0, 150, 0, 0.3);
}

#storyFormStatus.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #c82333;
    border: 2px solid rgba(220, 53, 69, 0.3);
}

.story-form .form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    font-style: italic;
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive adjustments for story form */
@media (max-width: 768px) {
    .story-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .story-form .form-group {
        margin-bottom: 1.25rem;
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 6rem 0;
    background: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-icon {
    font-size: 2rem;
    filter: sepia(0.6) saturate(1.5) hue-rotate(15deg);
    flex-shrink: 0;
}

.contact-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--emerald);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--emerald);
}

.contact-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.consultation-cta {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--emerald);
    color: var(--cream);
    border-radius: 8px;
    text-align: center;
}

.consultation-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.consultation-cta p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ===================================
   Contact Form
   =================================== */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--emerald);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--emerald);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(27, 61, 47, 0.2);
    border-radius: 5px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    border: 2px dashed rgba(27, 61, 47, 0.3);
    background: rgba(201, 169, 98, 0.05);
    cursor: pointer;
    transition: all 0.3s;
}

.form-group input[type="file"]:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.1);
}

.form-group input[type="file"]:focus {
    outline: none;
    border-color: var(--gold);
    border-style: solid;
}

.file-help-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.7;
    font-style: italic;
}

.form-help-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.7;
    font-style: italic;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--emerald);
    color: var(--cream);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: var(--dark-emerald);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(27, 61, 47, 0.3);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

/* Form Status Messages */
#formStatus {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s;
}

#formStatus.form-success {
    background-color: rgba(0, 150, 0, 0.1);
    color: #006400;
    border: 2px solid rgba(0, 150, 0, 0.3);
}

#formStatus.form-error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #c82333;
    border: 2px solid rgba(220, 53, 69, 0.3);
}

/* File upload validation message */
.file-error {
    color: #c82333;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.file-error.show {
    display: block;
}

/* Honeypot field - hide from users but not from bots */
input[name="website"] {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-emerald);
    color: var(--cream);
    padding: 3rem 0 1.5rem;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    font-style: italic;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--light-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 98, 0.3);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.disclaimer {
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .hero {
        min-height: auto;
    }

    .hero-background {
        right: 0;
    }

    .hero-content {
        padding: 0;
        padding-top: 70px;
        min-height: auto;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .hero-text {
        text-align: center;
        padding: 0.5rem 1.5rem;
        margin-left: 0;
        align-items: center;
        order: 1;
    }

    .hero-text::before {
        display: none;
    }

    .hero-accent-bar {
        margin: 0 auto 0.25rem auto;
    }

    .hero-cta-mobile {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 0.25rem;
        padding: 0 1rem;
    }

    .hero-cta-mobile .cta-button {
        display: block;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 1.1rem 2rem;
    }

    .hero-cta-desktop {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.25rem;
        color: var(--emerald);
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .hero-tagline {
        font-size: 1.6rem;
        margin-bottom: 0;
    }

    .tagline-translation {
        margin-bottom: 0.25rem;
        font-size: 0.95rem;
        padding-bottom: 0;
    }

    .hero-image-container {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        order: 2;
        min-height: 400px;
        height: 50vh;
        max-height: 500px;
    }

    .hero-image-container::before {
        display: none;
    }

    .hero-image-container img {
        height: 115% !important;
        object-position: center top !important;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -50%;
        width: 50%;
        background: var(--emerald);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1001;
        display: flex !important;
        align-items: flex-end;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-menu a {
        color: var(--cream) !important;
        font-size: 1.2rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(201, 169, 98, 0.3);
        display: block;
        transition: all 0.3s ease;
        text-align: right;
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a:active {
        color: var(--gold) !important;
        padding-right: 0.5rem;
        background: rgba(201, 169, 98, 0.1);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    

    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background: var(--cream);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: var(--cream);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-left-column {
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
        padding-right: 0;
        margin-left: 0;
        padding-left: 0;
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .navbar .container {
        padding: 0 15px;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    

    
    .mobile-toggle {
        padding: 3px;
    }
    
    .mobile-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    .nav-menu {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-tagline {
        font-size: 1.7rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header {
        gap: 1rem;
    }
    
    .decorative-line {
        width: 50px;
    }
    
    .services-two-column,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .services-two-column {
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Fix featured article card on mobile - make it single column like other cards */
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured .blog-card-image {
        height: 250px;
    }
    
    .article-content .container {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        order: 2;
    }
    
    /* Mobile Article Improvements */
    .article-header {
        padding: 6rem 0 2rem;
    }
    
    .article-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-featured-image {
        height: 250px;
    }
    
    .article-body {
        padding: 1.5rem;
    }
    
    .article-intro {
        font-size: 1.1rem;
        padding-left: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.7rem;
        margin-top: 2rem;
    }
    
    .article-body h3 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }
    
    .article-body h4 {
        font-size: 1.2rem;
    }
    
    .article-body p {
        font-size: 1rem;
    }
    
    .article-callout {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .article-highlight {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .article-cta {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .article-cta h3 {
        font-size: 1.5rem;
    }
    
    .article-cta p {
        font-size: 1rem;
    }
    
    .article-list li {
        padding-left: 2rem;
        font-size: 1rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ===================================
   Blog Styles
   =================================== */
.blog-hero {
    background: linear-gradient(90deg, rgba(0, 86, 63, 0.24) 0%, rgba(0, 86, 63, 0.11) 100%);
    padding: 8rem 0 4rem;
    margin-top: 0;
    padding-top: calc(8rem + 70px);
    text-align: center;
}

.blog-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.blog-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

.blog-section {
    padding: 6rem 0;
    background: var(--cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

/* Featured card now uses same format as other cards */
.blog-card.featured {
    /* Removed full-width spanning */
}

.blog-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

/* Featured card image now uses same height as other cards */
.blog-card.featured .blog-card-image {
    height: 250px;
}

.blog-card-image a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-category {
    background: var(--emerald);
    color: var(--cream);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-date {
    color: var(--text-dark);
    font-size: 0.9rem;
    opacity: 0.7;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--emerald);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Featured card title now uses same size as other cards */
.blog-card.featured .blog-card-title {
    font-size: 1.8rem;
}

.blog-card-excerpt {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.blog-read-more:hover {
    color: var(--emerald);
    gap: 1rem;
}

.blog-coming-soon {
    display: inline-block;
    background: rgba(201, 169, 98, 0.2);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-cta {
    background: var(--emerald);
    color: var(--cream);
    padding: 4rem 0;
    text-align: center;
}

.blog-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.blog-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===================================
   Article Page Styles
   =================================== */
.article-page {
    background: white;
}

.article-header {
    background: linear-gradient(90deg, rgba(0, 86, 63, 0.24) 0%, rgba(0, 86, 63, 0.11) 100%);
    padding: 2rem 0 1.5rem;
    margin-top: 0;
    padding-top: calc(2rem + 70px);
    color: var(--text-dark);
}

.article-breadcrumb {
    margin-bottom: 2rem;
}

.article-breadcrumb a {
    color: var(--emerald);
    text-decoration: none;
    transition: color 0.3s;
}

.article-breadcrumb a:hover {
    color: var(--gold);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-category {
    background: var(--emerald);
    color: var(--cream);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--gold);
}

.article-date {
    color: var(--text-dark);
    font-size: 1rem;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--emerald);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.article-subtitle {
    font-size: 1.4rem;
    color: var(--text-dark);
    opacity: 0.9;
    max-width: 800px;
}

.article-featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 4rem 0;
    background: var(--cream);
}

.article-content .container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    max-width: 1200px;
}

.article-body {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.article-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--gold);
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--emerald);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--emerald);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--emerald);
    margin-bottom: 0.75rem;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.article-body strong {
    color: var(--emerald);
    font-weight: 600;
}

.article-callout {
    background: rgba(201, 169, 98, 0.08);
    border-left: 4px solid var(--gold);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.article-callout h4 {
    margin-top: 0;
    color: var(--emerald);
}

.article-highlight {
    background: var(--emerald);
    color: var(--cream);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.article-highlight h3 {
    color: var(--gold);
    margin-top: 0;
}

.article-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.article-list li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
    line-height: 1.7;
    font-size: 1.05rem;
}

.article-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.3rem;
}

.article-highlight .article-list li {
    color: var(--cream);
}

.article-cta {
    background: var(--emerald);
    color: var(--cream);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.article-cta p {
    margin-bottom: 2rem;
    color: var(--cream);
}

.article-cta-contact {
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.article-cta-contact a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.article-cta-contact a:hover {
    color: var(--light-gold);
}

.article-disclaimer {
    background: rgba(0, 86, 63, 0.05);
    border: 1px solid rgba(0, 86, 63, 0.2);
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 3rem;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-dark);
}

/* Sidebar Styles */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
}

.sidebar-widget h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--emerald);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}

.sidebar-author-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.sidebar-widget p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.sidebar-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.sidebar-link:hover {
    color: var(--emerald);
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-list a:hover {
    color: var(--gold);
}

.sidebar-cta {
    background: var(--emerald);
    color: var(--cream);
    text-align: center;
}

.sidebar-cta h3 {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.sidebar-cta p {
    margin-bottom: 1.5rem;
}

.cta-button-small {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--cream);
    color: var(--emerald);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid var(--gold);
}

.cta-button-small:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.sidebar-phone {
    margin-top: 1rem;
}

.sidebar-phone a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.sidebar-phone a:hover {
    color: var(--light-gold);
}

/* ===================================
   Single Column Article Layout
   =================================== */
.article-single-column .article-content .container {
    display: block;
    max-width: 900px;
}

.article-body-single {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Inline Widget Styles */
.article-inline-widget {
    background: var(--cream);
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: var(--shadow);
}

.inline-widget-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
}

.inline-author-image {
    width: 100%;
    border-radius: 8px;
    border: 3px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.inline-author-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.inline-author-text p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.inline-author-text .sidebar-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.inline-author-text .sidebar-link:hover {
    color: var(--emerald);
}

/* Inline CTA Styles */
.article-inline-cta {
    background: var(--emerald);
    color: var(--cream);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
}

.article-inline-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.article-inline-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.inline-cta-phone {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.inline-cta-phone a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.inline-cta-phone a:hover {
    color: var(--light-gold);
}

/* Inline Services Styles */
.article-inline-services {
    background: rgba(201, 169, 98, 0.08);
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.article-inline-services h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--emerald);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
    text-align: center;
}

.inline-services-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.inline-services-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.inline-services-list li:last-child {
    border-bottom: none;
}

.inline-services-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.inline-services-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.inline-services-list a:hover {
    color: var(--gold);
}

/* Responsive for Single Column Layout */
@media (max-width: 768px) {
    .article-body-single {
        padding: 1.5rem;
    }
    
    .inline-widget-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .inline-author-image {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .article-inline-widget,
    .article-inline-cta,
    .article-inline-services {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .inline-services-list {
        grid-template-columns: 1fr;
    }
}
