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

:root {
    --gold: #b08b4f;
    --primary-color: #2c5f4f; /* olive */
    --secondary-color: #1e4640;
    --accent-color: #8b7355;
    --light-bg: #f7f3ef;
    --dark-text: #0f1a18;
    --white: #ffffff;
    --black: #0b0b0b;
    --overlay: rgba(11, 11, 11, 0.45);
}

html, body {
    width: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    line-height: 1.65;
    color: var(--dark-text);
    max-width: 100vw;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* NAVBAR STYLES */
.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, rgba(11,11,11,0.85), rgba(11,11,11,0.6));
    backdrop-filter: blur(12px);
    padding: 0 2rem;
    width: 100%;
    height: 120px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.navbar-brand a {
    display: inline-flex;
    align-items: center;
    height: 100%;
    line-height: 0;
}

.navbar-brand img {
    height: 100%;
    max-height: 120px;
    width: auto;
    padding: 0;
    margin: 0;
    display: block;
}

.navbar-brand h1 {
    color: var(--white);
    font-size: 1.5em;
    font-weight: 700;
}

.navbar-brand small {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75em;
    font-style: italic;
}

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

.nav-links a {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-media,
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: saturate(0.95) contrast(0.95) brightness(0.9);
    transform-origin: center;
    animation: heroZoom 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroZoom {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11,11,11,0.35), rgba(44,95,79,0.08));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 3rem 1.25rem;
}

#hero-title, .hero h1 {
    color: var(--white);
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 6px 22px rgba(11,11,11,0.45);
}

#hero-title, .hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--white);
    font-size: 3.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.06;
    text-shadow: 0 6px 22px rgba(11,11,11,0.45);
}

.hero-sub {
    font-family: 'Inter', system-ui, sans-serif;
    color: rgba(255,255,255,0.95);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    max-width: 720px;
}
.cta-btn {
    padding: 16px 40px;
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary, .cta-btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #b3925b 100%);
    color: var(--black);
    box-shadow: 0 14px 40px rgba(11,11,11,0.18);
    border: none;
    padding: 12px 24px;
    border-radius: 999px;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(28, 68, 61, 0.35);
}

.btn-secondary, .cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.18);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

/* SECTION STYLES */
section {
    padding: 80px 2rem;
    width: 100%;
    max-width: none;
    margin: 0;
}

section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-align: center;
    font-weight: 600;
}

section > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ABOUT SECTION */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
        text-align: left;
        margin-bottom: 1.25rem;
        line-height: 1.8;
        color: #555;
        font-size: 1rem;
}

/* spacing refinements */
section { padding: 4.5rem 1rem; }
.container { padding: 0 1rem; }
.story-grid { gap: 2.25rem; }
.card { padding: 1.6rem; }
.philosophy-grid .card { padding: 1.25rem; }
.testimonial { padding: 1.25rem; }
.timeline-step { padding: 0.65rem 1rem; }

/* Heading scale */
h1 { font-size: 3.25rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .hero-sub { font-size: 1rem; }
    section { padding: 3rem 0.75rem; }
}

/* New sections styling */
.section { padding: 5rem 1rem; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
.section-lead { color: #556664; max-width: 820px; margin: 0 auto 2rem; text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.story-grid { display: grid; grid-template-columns: 1fr 460px; gap: 2rem; align-items: center; }
.story-media img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 14px 40px rgba(11,11,11,0.08); }
.philosophy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; margin-top: 2rem; }
.card { background: var(--white); padding: 1.4rem; border-radius: 12px; box-shadow: 0 8px 26px rgba(11,11,11,0.06); }
.card h4 { color: var(--primary-color); margin-bottom: 0.5rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1rem; margin-top: 2rem; }
.timeline { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-top:1.5rem; }
.timeline-step { background: var(--white); padding: 1rem 1.25rem; border-radius: 24px; box-shadow:0 8px 30px rgba(11,11,11,0.06); color:var(--dark-text); display:flex; flex-direction:column; gap:0.35rem; min-width: 170px; text-align:left; }
.timeline-step strong { display:block; font-size: 1rem; color: var(--primary-color); }
.timeline-step span { font-size: 0.95rem; color: #5e6560; line-height: 1.6; }
.values-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap:1rem; margin-top:1.5rem; }
.values-list li p { margin:0.5rem 0 0; color:#555; }
.testimonials-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap:1rem; margin-top:1.25rem; }
.testimonial { padding:1.5rem; border-left:4px solid var(--gold); background: linear-gradient(180deg, rgba(247,243,239,1), rgba(255,255,255,1)); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Footer adjustments */
.footer-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap:1rem; width:100%; align-items:start; }
.newsletter { display:flex; gap:0.5rem; margin-top:0.5rem; }
.newsletter input { padding:0.6rem 0.9rem; border-radius:8px; border:1px solid rgba(11,11,11,0.08); }

/* Accessibility */
.sr-only { position:absolute; left:-10000px; width:1px; height:1px; top:auto; overflow:hidden; }

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

/* CONTACT FORM SECTION */
.contact-section {
    background: linear-gradient(180deg, rgba(245,230,211,0.9) 0%, rgba(255,255,255,0.95) 100%);
    padding: 80px 2rem;
}

.section-intro {
    max-width: 860px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 0.35rem 0.95rem;
    margin-bottom: 1rem;
    background: rgba(44, 95, 79, 0.12);
    color: var(--secondary-color);
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.contact-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-section p {
    max-width: 700px;
    margin: 0 auto;
    color: #5e6862;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(18, 42, 37, 0.08);
    padding: 2.5rem;
}

.contact-details h3,
.contact-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-details p {
    color: #57645c;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.contact-item {
    border-top: 1px solid rgba(44, 95, 79, 0.08);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    text-align: left;
}

.contact-item:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.55rem;
    color: var(--secondary-color);
}

.contact-item p {
    color: #424a46;
    line-height: 1.75;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    background: rgba(44, 95, 79, 0.05);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
}

.social-links {
    margin-top: 2rem;
}

.contact-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-form label {
    font-weight: 600;
    color: #30493f;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.05rem 1.15rem;
    border: 1px solid rgba(44, 95, 79, 0.16);
    border-radius: 16px;
    background: #fbfaf8;
    color: var(--dark-text);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(44, 95, 79, 0.08);
}

.contact-form textarea {
    min-height: 170px;
}

.contact-form .cta-btn {
    width: 100%;
    padding: 1.15rem 2rem;
    border-radius: 999px;
    font-size: 1rem;
}

.form-message {
    margin-top: 1.25rem;
    font-weight: 600;
    min-height: 1.5rem;
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4em;
}

/* TEAM SECTION */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4em;
}

.team-member p {
    text-align: center;
    color: #666;
    font-style: italic;
}

/* CONTACT SECTION */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3em;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* SOCIAL MEDIA LINKS */
.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    font-size: 1.5em;
}

.social-link:hover {
    transform: scale(1.1) translateY(-3px);
    background: var(--secondary-color);
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.95rem 1.5rem;
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(29, 74, 67, 0.18);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.social-button:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
    box-shadow: 0 16px 26px rgba(29, 74, 67, 0.22);
}

/* FOOTER */
footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

footer p {
    color: rgba(255, 255, 255, 0.9);
}

/* ABOUT PAGE SPECIFIC STYLES */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.lead {
    font-size: 1.125rem;
    color: #3f5b53;
    margin: 0.75rem 0 1.5rem;
    text-align: center;
}

.lead-small {
    font-size: 1rem;
    color: #556664;
    margin-bottom: 1rem;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    box-shadow: 0 10px 22px rgba(28, 68, 61, 0.18);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid rgba(44,95,79,0.06);
}

.about {
    padding-top: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.values-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: #444;
}

.values-list li::before {
    content: '•';
    color: var(--primary-color);
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.role {
    font-weight: 700;
    color: #355247;
    margin-bottom: 0.45rem;
}

.bio {
    color: #555;
    line-height: 1.7;
}

.cta {
    text-align: center;
    padding: 3rem 1rem;
}

.site-header .logo-img,
.logo-img {
    height: 64px;
    width: auto;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 60vh;
        padding: 3rem 1rem;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    section {
        padding: 60px 1rem;
    }

    .cta-buttons {
        gap: 1rem;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}
