@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Color Palette */
    --sage-dark: #3a4b3d;
    --sage: #5a725b;
    --sage-light: #8ca38a;
    --sage-bg: #f4f6f3;
    --cream: #faf9f6;
    --cream-dark: #f2ede2;
    --sand: #eae3d5;
    --text-dark: #2b2d2f;
    --text-muted: #5e6266;
    --accent-teak: #c68b59;
    --accent-teak-dark: #b17544;
    --white: #ffffff;
    
    /* Layout Tokens */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 15px -3px rgba(90, 114, 91, 0.08), 0 4px 6px -2px rgba(90, 114, 91, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(90, 114, 91, 0.12), 0 10px 10px -5px rgba(90, 114, 91, 0.06);
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 1. Reset & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--cream-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--sage-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--sage);
}

/* Typography Helpers */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--sage-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
}

p.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--sage-dark);
}

a {
    color: var(--sage);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-teak);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4.5rem 0;
}

.section-bg {
    background-color: var(--sage-bg);
}

.section-dark {
    background-color: var(--sage-dark);
    color: var(--cream);
}
.section-dark h1, 
.section-dark h2, 
.section-dark h3, 
.section-dark p {
    color: var(--cream);
}

.text-center {
    text-align: center;
}

.max-width-md {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--sage);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--sage-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--sage);
    color: var(--sage);
}

.btn-secondary:hover {
    background-color: var(--sage);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-teak);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--accent-teak-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* 2. Navigation Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(90, 114, 91, 0.08);
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    transition: var(--transition);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.header.scrolled .nav-container {
    padding: 0.4rem 2rem;
}

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

.logo-img {
    height: 110px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 70px;
}

nav {
    display: contents;
}

.mobile-page-title {
    display: none;
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
    font-weight: 600;
    color: var(--sage-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--sage);
}

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

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

/* Hamburger Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* 3. Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 170px;
    padding-bottom: 4rem;
    position: relative;
    background-color: var(--cream-dark);
}

.hero-header-full {
    margin-bottom: 2.2rem;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.9s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-header-full h1 {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    color: var(--sage-dark);
    margin-bottom: 0;
    line-height: 1.15;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: start;
}

/* Compact Subpage Header (for laptops) */
.page-header {
    padding-top: 170px;
    padding-bottom: 1.25rem;
    background-color: var(--cream-dark);
    border-bottom: 1px solid var(--sand);
    text-align: center;
}


/* Reduce spacing below header on subpages to pull content above the fold */
.page-header + .section {
    padding-top: 1.25rem;
    padding-bottom: 2.5rem;
}

.page-header h1 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    margin-bottom: 0.35rem;
    color: var(--sage-dark);
}

.page-header p {
    margin-bottom: 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    color: var(--text-muted);
}




.hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    opacity: 0;
    transform: scale(0.95);
    animation: scaleIn 1.2s forwards cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 4. Value Propositions & Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(90, 114, 91, 0.04);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(90, 114, 91, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-teak);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* 5. Team Section (About Page) */
.team-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.team-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    isolation: isolate;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.team-img-wrapper picture {
    display: block;
    width: 100%;
    height: 100%;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.03);
}


.team-info {
    padding: 2rem;
}

.team-info h3 {
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-teak);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-style {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--cream-dark);
    padding-top: 0.8rem;
    margin-top: 0.8rem;
}

.team-story {
    margin-top: 6rem;
    padding: 4rem;
    background-color: var(--cream-dark);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-story::before {
    content: "“";
    font-family: var(--font-heading);
    font-size: 10rem;
    color: rgba(90, 114, 91, 0.05);
    position: absolute;
    top: -2rem;
    left: 2rem;
}

/* 6. Pricing Cards */
.pricing-layout {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.pricing-section-title {
    border-bottom: 2px solid var(--sage-light);
    padding-bottom: 0.35rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--sage);
    font-family: var(--font-body);
    font-weight: 600;
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 1.25rem;
}

.price-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 1.6rem 1.4rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(90, 114, 91, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(90, 114, 91, 0.15);
}

.price-card.featured {
    border: 2px solid var(--sage);
    background-color: var(--white);
}

.price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-teak);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
}

.price-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    color: var(--sage-dark);
    margin-bottom: 0.35rem;
}

.price-value {
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
    font-family: var(--font-heading);
}

.price-value span {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
}

.price-features {
    list-style: none;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.price-features li {
    padding: 0.3rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.price-features li::before {
    content: "✓";
    color: var(--sage);
    font-weight: bold;
    margin-right: 0.65rem;
}

.price-features li.excluded {
    color: #c0c0c0;
    text-decoration: line-through;
}

.price-features li.excluded::before {
    content: "✕";
    color: #c0c0c0;
}

.rut-notice {
    background-color: var(--sage-bg);
    border-left: 4px solid var(--sage);
    padding: 1.1rem 1.3rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 2rem;
}

.rut-notice h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 0.35rem;
}

.rut-notice p {
    margin-bottom: 0;
    font-size: 0.88rem;
}


/* 7. Gallery / Portfolio Grid */
.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
}

.gallery-section-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-row-section {
    padding-bottom: 0;
    border-bottom: none;
}

.gallery-row-section:last-child {
    padding-bottom: 0;
}

.gallery-row-header {
    margin-bottom: 0.45rem;
}

.gallery-row-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--sage-dark);
    margin-bottom: 0;
    opacity: 0.9;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
    gap: 0.75rem;
}

.portfolio-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.portfolio-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}


@media (max-width: 1024px) {
    .portfolio-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid.cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .portfolio-grid.cols-4,
    .portfolio-grid.cols-3 {
        grid-template-columns: 1fr;
    }
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    background-color: var(--cream-dark);
    transition: var(--transition);
    isolation: isolate;
}

.portfolio-grid.cols-3 .portfolio-item {
    aspect-ratio: 16 / 10;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.portfolio-item picture {
    display: block;
    width: 100%;
    height: 100%;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item-step {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 2;
    background-color: rgba(58, 75, 61, 0.85);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58, 75, 61, 0.92) 0%, rgba(90, 114, 91, 0.4) 60%, transparent 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
    transition: var(--transition);
    z-index: 3;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.portfolio-desc {
    color: var(--sage-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(43, 45, 47, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-img-box {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-height: 75vh;
    max-width: 90vw;
    height: auto;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    display: block;
}

.lightbox-caption {
    color: var(--cream);
    min-height: 60px;
    margin-top: 1.2rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 800px;
    flex-shrink: 0;
}

.lightbox-subcaption {
    display: block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--sage-light);
    margin-top: 0.25rem;
}





.lightbox-close {
    position: absolute;
    top: -3.5rem;
    right: 0;
    color: var(--cream);
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-teak);
    transform: scale(1.1);
}

/* Lightbox Carousel Navigation */
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(250, 249, 246, 0.1);
    color: var(--cream);
    border: 1px solid rgba(250, 249, 246, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2010;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--accent-teak);
    color: var(--white);
    border-color: var(--accent-teak);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* Adjust buttons position on smaller viewports */
@media (max-width: 1100px) {
    .lightbox-prev { left: 1rem; }
    .lightbox-next { right: 1rem; }
    .lightbox-prev, .lightbox-next {
        background-color: rgba(43, 45, 47, 0.8);
        border: 1px solid rgba(250, 249, 246, 0.1);
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* 8. Contact Section & Forms */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-details {
    list-style: none;
    margin-bottom: 3rem;
}

.contact-details li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.contact-label {
    font-weight: 600;
    color: var(--sage);
    width: 100px;
    flex-shrink: 0;
}

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

.contact-form-wrapper {
    background-color: var(--white);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(90, 114, 91, 0.04);
    scroll-margin-top: 140px;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sage-dark);
    margin-bottom: 0.6rem;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--cream-dark);
    background-color: var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a725b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2em;
    cursor: pointer;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--sage);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(90, 114, 91, 0.1);
}

.form-textarea {
    height: 140px;
    resize: vertical;
}


/* File Upload Box */
.file-upload-box {
    position: relative;
    border: 2px dashed var(--sage-light);
    border-radius: var(--radius-sm);
    background-color: var(--sage-bg);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.file-upload-box:hover, .file-upload-box.dragover {
    border-color: var(--sage);
    background-color: #eaf0e9;
}

.file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    pointer-events: none;
}

.file-upload-icon {
    color: var(--sage);
    margin-bottom: 0.2rem;
}

.file-upload-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

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

.file-upload-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* File Preview Chips */
.file-preview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.file-preview-item {
    display: inline-flex;
    align-items: center;
    background-color: var(--cream-dark);
    border: 1px solid var(--sand);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-dark);
    gap: 0.5rem;
    animation: fadeIn 0.2s ease-in-out;
}

.file-preview-name {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.file-preview-size {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.file-remove-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.file-remove-btn:hover {
    color: #c94a4a;
    transform: scale(1.2);
}

/* Form Submission Status Alerts */
.form-status {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: fadeInUp 0.3s ease;
}

.form-status.success {
    background-color: #eaf4eb;
    border: 1px solid #c2e2c5;
    color: #2b5730;
}

.form-status.error {
    background-color: #fdf0ed;
    border: 1px solid #f5c6cb;
    color: #842029;
}

.btn.submitting {
    opacity: 0.75;
    cursor: not-allowed;
    pointer-events: none;
}


/* 9. Footer Styling (Minimalistic & Compact) */
.footer {
    background-color: var(--cream-dark);
    color: var(--text-dark);
    padding: 1.5rem 0;
    border-top: 1px solid var(--sand);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 0;
    margin-bottom: 0;
    max-width: 570px;
    font-size: 0.9rem;
    border-left: 1px solid var(--sand);
    padding-left: 2rem;
}

.footer-logo {
    height: 100px;
    width: auto;
    filter: none; /* Logo remains fully visible in original colors */
}

.social-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(90, 114, 91, 0.08);
    color: var(--sage);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: var(--transition);
}

.social-handle {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    text-align: center;
}

.social-link-item:hover .social-icon {
    background-color: var(--accent-teak);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link-item:hover .social-handle {
    color: var(--accent-teak);
}



.footer-bottom {
    margin-top: 1rem;
    border-top: 1px solid var(--sand);
    padding-top: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animation classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 10. Responsive Media Queries */
@media (max-width: 992px) {
    .hero {
        padding-top: 150px;
        padding-bottom: 3.5rem;
        min-height: auto;
    }

    .section {
        padding: 3rem 0;
    }
    
    .page-header + .section {
        padding-top: 1.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image-wrapper {
        order: 0;
        max-width: 450px;
        margin: 0 auto;
        aspect-ratio: 1.2/1;
    }
    
    .team-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .footer-brand p {
        border-left: none;
        padding-left: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 2.5rem;
    }
    
    .price-card, .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .header.scrolled .logo-img {
        height: 50px;
    }
    
    .mobile-page-title {
        display: block;
    }
    
    .page-header {
        padding-top: 110px;
    }
    
    .lightbox-img-box {
        height: 60vh;
    }

    .lightbox-img {
        max-height: 60vh;
        max-width: 92vw;
        height: auto;
        width: auto;
    }

    
    .lightbox-close {
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
    }

    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 0;
        overflow: hidden;
        background-color: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        border-bottom: 1px solid var(--sand);
        box-shadow: 0 15px 30px rgba(43, 45, 47, 0.08);
        z-index: 999;
    }
    
    .nav-menu.active {
        max-height: 350px;
        padding: 1rem 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        font-family: var(--font-heading);
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--sage-dark);
        border-bottom: 1px solid rgba(90, 114, 91, 0.04);
        transition: var(--transition);
    }
    
    .nav-menu li a:hover, .nav-menu li a.active {
        color: var(--accent-teak);
        background-color: rgba(90, 114, 91, 0.03);
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem 1.8rem;
        scroll-margin-top: 90px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
