/* ===== CSS Custom Properties ===== */
:root {
    --color-forest: #2D5A3D;
    --color-forest-dark: #1E3D2A;
    --color-forest-deeper: #142A1C;
    --color-forest-light: #3D7A52;
    --color-forest-muted: #4A6B52;
    --color-cream: #F7F4EE;
    --color-cream-light: #FBF9F5;
    --color-cream-dark: #EDE8DD;
    --color-warm-gray: #8A8278;
    --color-warm-gray-light: #B0A89E;
    --color-text-dark: #1A1A1A;
    --color-text-body: #2C2C2C;
    --color-text-muted: #5A5A5A;
    --color-text-light: #F7F4EE;
    --color-white: #FFFFFF;
    --color-overlay: rgba(30, 61, 42, 0.85);

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);

    --transition-fast: 0.2s ease;
    --transition-medium: 0.35s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-body);
    background-color: var(--color-cream-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ===== Utility ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ===== Typography ===== */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-forest);
    margin-bottom: var(--space-sm);
}

.section-eyebrow--light {
    color: var(--color-cream-dark);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
}

.section-title--light {
    color: var(--color-text-light);
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 560px;
}

.section-subtitle--light {
    color: var(--color-cream-dark);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header--dark {
    padding: var(--space-2xl) 0 var(--space-xl);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--color-forest);
    color: var(--color-text-light);
    border: 1.5px solid var(--color-forest);
}

.btn--primary:hover {
    background-color: var(--color-forest-dark);
    border-color: var(--color-forest-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--primary-dark {
    background-color: var(--color-forest-dark);
    color: var(--color-text-light);
    border: 1.5px solid var(--color-forest-dark);
}

.btn--primary-dark:hover {
    background-color: var(--color-forest-deeper);
    border-color: var(--color-forest-deeper);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background-color: transparent;
    color: var(--color-cream-dark);
    border: 1.5px solid rgba(247, 244, 238, 0.4);
}

.btn--ghost:hover {
    background-color: rgba(247, 244, 238, 0.1);
    border-color: rgba(247, 244, 238, 0.7);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-forest);
    border-bottom: 1px solid rgba(247, 244, 238, 0.1);
    transition: box-shadow var(--transition-fast);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-light);
    letter-spacing: 0.02em;
}

.nav-logo-icon {
    color: var(--color-cream-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-cream-dark);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-cream-dark);
    transition: width var(--transition-fast);
}

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

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

.nav-link--cta {
    background-color: rgba(247, 244, 238, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(247, 244, 238, 0.25);
    transition: all var(--transition-fast);
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background-color: rgba(247, 244, 238, 0.25);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: var(--color-cream-dark);
    transition: all var(--transition-fast);
    transform-origin: center;
}

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

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

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

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--color-forest-deeper);
    padding-top: 72px;
}

.hero-split {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hero-split--left {
    background-color: var(--color-forest);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: var(--space-2xl) var(--space-xl);
    max-width: 600px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-cream-dark);
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.hero-headline em {
    font-style: italic;
    font-weight: 300;
}

.hero-subtext {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-cream-dark);
    margin-bottom: var(--space-xl);
    max-width: 440px;
    opacity: 0.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.hero-divider {
    width: 1px;
    background-color: rgba(247, 244, 238, 0.2);
    flex-shrink: 0;
    display: none;
}

.hero-split--right {
    flex: 1;
    min-height: 400px;
    background-color: var(--color-forest-dark);
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

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

/* ===== Services Section ===== */
.services {
    padding: var(--space-3xl) 0;
    background-color: var(--color-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-xl) var(--space-lg);
    transition: all var(--transition-medium);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 90, 61, 0.15);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(45, 90, 61, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    color: var(--color-forest);
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.service-card-text {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--color-text-muted);
}

/* ===== About Section ===== */
.about {
    padding: var(--space-3xl) 0;
    background-color: var(--color-forest-deeper);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-forest-deeper);
}

.about-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-col {
    padding: var(--space-lg) 0;
}

.about-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--color-cream-dark);
    margin-bottom: var(--space-md);
    opacity: 0.88;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin: var(--space-lg) 0 var(--space-xl);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-cream-dark);
}

.about-feature svg {
    color: var(--color-forest-light);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: var(--space-3xl) 0;
    background-color: var(--color-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 42, 28, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover::after {
    opacity: 1;
}

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

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item--large img {
    height: 100%;
    min-height: 500px;
}

.gallery-item--wide {
    grid-column: span 7;
}

.gallery-item--wide img {
    height: 100%;
    min-height: 250px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) img {
    height: 100%;
    min-height: 280px;
}

/* ===== Quote Section ===== */
.quote-section {
    padding: var(--space-3xl) 0;
    background-color: var(--color-forest);
    text-align: center;
}

.quote-wrapper {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    color: rgba(247, 244, 238, 0.15);
    margin-bottom: var(--space-md);
}

.quote-wrapper blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.quote-attribution {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cream-dark);
    opacity: 0.7;
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--space-3xl) 0;
    background-color: var(--color-forest-deeper);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-intro {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-cream-dark);
    opacity: 0.85;
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(247, 244, 238, 0.08);
    border-radius: var(--radius-sm);
    color: var(--color-forest-light);
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cream-dark);
    opacity: 0.6;
    margin-bottom: 2px;
}

.contact-detail-value {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.contact-detail-value a:hover {
    color: var(--color-cream-dark);
}

.contact-phone-area {
    opacity: 0.7;
}

.contact-hours {
    border-top: 1px solid rgba(247, 244, 238, 0.12);
    padding-top: var(--space-lg);
}

.contact-hours-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-cream-dark);
    opacity: 0.8;
}

.hours-day {
    font-weight: 400;
}

.hours-time {
    font-weight: 300;
    opacity: 0.8;
}

/* Contact Form */
.contact-form-col {
    display: flex;
    align-items: flex-start;
}

.contact-form-wrapper {
    width: 100%;
    background-color: var(--color-forest);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-cream-dark);
    opacity: 0.7;
    margin-bottom: 0.4rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--color-text-light);
    background-color: rgba(247, 244, 238, 0.08);
    border: 1px solid rgba(247, 244, 238, 0.18);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all var(--transition-fast);
}

.form-input::placeholder {
    color: rgba(247, 244, 238, 0.35);
}

.form-input:focus {
    border-color: rgba(247, 244, 238, 0.45);
    background-color: rgba(247, 244, 238, 0.12);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F7F4EE' 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 1rem center;
    padding-right: 2.5rem;
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 0.6rem;
    margin-top: var(--space-md);
    padding: 1rem;
    background-color: rgba(247, 244, 238, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.form-success svg {
    color: var(--color-forest-light);
    flex-shrink: 0;
}

/* ===== Map Section ===== */
.map-section {
    background-color: var(--color-cream-dark);
}

.map-container {
    width: 100%;
    height: 350px;
    filter: saturate(0.6) contrast(1.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-forest-deeper);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.footer-logo-icon {
    color: var(--color-cream-dark);
}

.footer-tagline {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-cream-dark);
    opacity: 0.65;
    max-width: 260px;
}

.footer-links-title {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cream-dark);
    opacity: 0.5;
    margin-bottom: var(--space-md);
}

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

.footer-links a,
.footer-contact a {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--color-cream-dark);
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
    color: var(--color-text-light);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact span {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--color-cream-dark);
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(247, 244, 238, 0.1);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--color-cream-dark);
    opacity: 0.45;
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
    .hero-split--left {
        flex-direction: row;
    }

    .hero-divider {
        display: block;
        height: 60vh;
        align-self: center;
    }

    .hero-image-wrapper {
        min-height: unset;
    }
}

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

    .gallery-item--large {
        grid-column: span 6;
        grid-row: span 1;
    }

    .gallery-item--large img {
        min-height: 350px;
    }

    .gallery-item--wide {
        grid-column: span 6;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--color-forest-dark);
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-lg);
        gap: 0;
        transform: translateY(-110%);
        transition: transform var(--transition-medium);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.open {
        transform: translateY(0);
    }

    .nav-link {
        padding: 0.9rem 0;
        border-bottom: 1px solid rgba(247, 244, 238, 0.08);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link--cta {
        margin-top: var(--space-sm);
        text-align: center;
        border: none;
    }

    /* Hero mobile */
    .hero {
        min-height: auto;
    }

    .hero-split--left {
        flex-direction: column;
    }

    .hero-content {
        padding: var(--space-xl) var(--space-lg);
    }

    .hero-divider {
        display: none;
    }

    .hero-split--right {
        min-height: 45vh;
    }

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

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

    .about-image-accent {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--space-md);
        border-color: var(--color-forest-deeper);
    }

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

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

    .gallery-item--large {
        grid-column: span 2;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .gallery-item--large img,
    .gallery-item--wide img {
        min-height: 250px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-content {
        padding: var(--space-lg) var(--space-md);
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

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

    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 1;
    }

    .gallery-item img {
        min-height: 220px;
    }

    .contact-form-wrapper {
        padding: var(--space-md);
    }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}
