@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;1,9..144,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    /* Navy & Emerald Palette */
    --color-coral: #0A2647;
    /* Navy Blue - Primary */
    --color-coral-light: #144272;
    /* Lighter Navy */
    --color-sage: #2ECC71;
    /* Emerald Green - Accent */
    --color-sage-dark: #27AE60;
    /* Darker Emerald */
    --color-sand: #F4F7F6;
    /* Cool White/Grey instead of warm sand */
    --color-ocean: #2980B9;
    --color-charcoal: #1B262C;

    /* Backgrounds */
    --bg-warm: #FFFBF0;
    --bg-white: #FFFFFF;
    --bg-soft-peach: #FFF0EB;

    /* Typography */
    --font-heading: 'Fraunces', serif;
    --font-body: 'Outfit', sans-serif;

    /* Shapes & Spacing */
    --radius-card: 16px;
    --radius-pill: 50px;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-float: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--bg-warm);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-charcoal);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #4A5568;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-coral {
    color: var(--color-coral);
}

.text-sage {
    color: var(--color-sage-dark);
}

.subtitle {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-coral);
    color: white;
    box-shadow: 0 4px 15px rgba(238, 108, 77, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: var(--color-coral-light);
}

.btn-secondary {
    background-color: white;
    color: var(--color-charcoal);
    border: 2px solid var(--color-coral);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--bg-soft-peach);
}

.full-width {
    width: 100%;
}

/* Navbar */
nav {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 251, 240, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
    /* Hidden by default on desktop */
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-charcoal);
}

.mark {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-coral);
    font-style: italic;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

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

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: var(--bg-warm);
    overflow: hidden;
}

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

.hero-text {
    animation: slideUp 0.8s ease-out;
}

.hero-image-wrapper {
    position: relative;
}

.hero-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-card);
    /* Clean rounded corners, no blobs */
    box-shadow: var(--shadow-float);
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-soft-peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

.service-card {
    background: var(--bg-warm);
    padding: 2.5rem;
    border-radius: var(--radius-card);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    background: white;
    border-color: var(--color-sage);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin-top: 1rem;
}

.service-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.service-list li::before {
    content: '•';
    color: var(--color-sage-dark);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Story Section */
.story {
    padding: 6rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-img-main {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-soft-peach);
}

.contact-box {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-text {
    padding: 4rem;
    background: var(--color-charcoal);
    color: white;
}

.contact-text h2,
.contact-text p,
.contact-text h4 {
    color: white;
}

.contact-text p {
    opacity: 0.9;
}

.contact-details {
    margin-top: 3rem;
    color: white;
    /* Ensure icons are visible if they use currentColor */
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item i {
    color: var(--color-coral);
    margin-top: 5px;
}

.contact-form {
    padding: 4rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

/* Footer */
footer {
    background: var(--color-charcoal);
    color: white;
    padding: 4rem 0 2rem;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    /* Explicitly lighter for contrast */
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    color: white;
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: opacity 0.3s;
}

.footer-links a:hover {
    color: var(--color-coral);
    opacity: 1;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.6;
}

/* Mobile */
@media (max-width: 968px) {

    .hero-content-grid,
    .story-grid,
    .contact-box,
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Reduce section padding */
    .hero {
        padding: 120px 0 60px;
    }

    .services,
    .story,
    .contact {
        padding: 4rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    /* Hero Image adjustments */
    .hero-img-main {
        height: 300px; /* Smaller height for mobile */
    }

    .hero-badge {
        bottom: 20px;
        left: 20px; /* Reset left position */
        right: 20px; /* Make it stretch or sit nicely */
        width: auto;
        justify-content: center;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        /* Show only on mobile */
    }

    .contact-text {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }

    .hero-badge {
        padding: 1rem;
    }
    
    .badge-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}