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

:root {
    --green-900: #0d3318;
    --green-800: #1a4d2e;
    --green-700: #226b3f;
    --green-600: #2d8a52;
    --green-500: #3da864;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --cream-dark: #e8e0d0;
    --text-dark: #1a1a1a;
    --text-mid: #3a3a3a;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    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;
}

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

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--green-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s var(--ease-out-expo), visibility 0.5s;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--green-800);
    color: var(--cream);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 500;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: padding 0.3s var(--ease-out-expo), background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(26, 77, 46, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--green-800);
    color: var(--cream);
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: transform 0.3s var(--ease-out-expo);
}

.logo:hover .logo-mark {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 18px;
    color: var(--green-800);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
}

.site-header.scrolled .logo-name {
    color: var(--green-800);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    padding: 8px 16px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
    color: var(--green-800);
    background: rgba(26, 77, 46, 0.06);
}

.nav-cta {
    background: var(--green-800);
    color: var(--cream) !important;
    margin-left: 8px;
    transition: background 0.2s, transform 0.2s var(--ease-out-expo);
}

.nav-cta:hover {
    background: var(--green-700);
    transform: translateY(-1px);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: background 0.2s;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    background: rgba(26, 77, 46, 0.06);
}

.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--green-800);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out-expo), opacity 0.2s;
}

.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { bottom: 0; }

.mobile-menu-btn[aria-expanded="true"] .hamburger::before {
    transform: translateY(6px) rotate(45deg);
}
.mobile-menu-btn[aria-expanded="true"] .hamburger span {
    opacity: 0;
}
.mobile-menu-btn[aria-expanded="true"] .hamburger::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 51, 24, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

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

/* Hero */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d3318 0%, #1a4d2e 30%, #226b3f 60%, #2d8a52 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(45, 138, 82, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(13, 51, 24, 0.6) 0%, transparent 50%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 540px;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cream-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--cream-dark);
    border-radius: 2px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    font-weight: 700;
    color: var(--cream-dark);
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.75);
    margin-bottom: 40px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s var(--ease-out-expo);
    white-space: nowrap;
}

.btn-primary {
    background: var(--cream);
    color: var(--green-800);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(245, 240, 232, 0.12);
    color: var(--cream);
    border: 1px solid rgba(245, 240, 232, 0.25);
}

.btn-secondary:hover {
    background: rgba(245, 240, 232, 0.2);
    transform: translateY(-2px);
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--cream);
    color: var(--green-800);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 240, 232, 0.5);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(245, 240, 232, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* Section shared */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green-700);
    margin-bottom: 16px;
}

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

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    font-weight: 700;
    color: var(--green-700);
}

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

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

/* Services */
.services {
    padding: 120px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
    border: 1px solid rgba(26, 77, 46, 0.06);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(26, 77, 46, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green-800), var(--green-600));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    margin-bottom: 24px;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* About */
.about {
    padding: 120px 0;
    background: var(--cream-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
}

.about-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: var(--green-800);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
}

.about-content {
    max-width: 480px;
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-dark);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 900;
    color: var(--green-800);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--cream-dark);
}

/* Why Us */
.why-us {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, var(--green-700) 100%);
    position: relative;
    overflow: hidden;
}

.why-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-us .section-header {
    margin-bottom: 72px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 24px;
    padding: 48px 40px;
    transition: background 0.3s, transform 0.3s var(--ease-out-expo);
}

.why-card:hover {
    background: rgba(245, 240, 232, 0.1);
    transform: translateY(-4px);
}

.why-number {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 900;
    color: rgba(245, 240, 232, 0.1);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.why-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.why-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.65);
    max-width: 380px;
}

/* Gallery */
.gallery {
    padding: 120px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

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

.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; }

/* Location */
.location {
    padding: 120px 0;
    background: var(--cream-light);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.location-info {
    max-width: 480px;
}

.location-info .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-style: normal;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.location-address svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--green-700);
}

.location-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.location-phone,
.location-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--green-700);
    transition: color 0.2s;
}

.location-phone:hover,
.location-email:hover {
    color: var(--green-500);
}

.location-hours {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(26, 77, 46, 0.06);
}

.hours-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--cream-dark);
}

.hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-list .day {
    color: var(--text-mid);
    font-weight: 500;
}

.hours-list .time {
    color: var(--text-dark);
    font-weight: 600;
}

.location-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(26, 77, 46, 0.12);
}

.map-link {
    display: block;
    position: relative;
}

.map-link img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 77, 46, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--cream);
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.map-link:hover .map-overlay {
    background: rgba(26, 77, 46, 0.75);
}

/* Contact */
.contact {
    padding: 120px 0;
    background: var(--cream);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-content {
    max-width: 480px;
}

.contact-content .section-header {
    text-align: left;
    margin-bottom: 24px;
}

.contact-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 40px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-phone-link,
.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 600;
    color: var(--green-700);
    padding: 16px 24px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid rgba(26, 77, 46, 0.06);
    transition: all 0.3s var(--ease-out-expo);
}

.contact-phone-link:hover,
.contact-email-link:hover {
    background: var(--green-800);
    color: var(--cream);
    transform: translateX(4px);
    border-color: var(--green-800);
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(26, 77, 46, 0.06);
    box-shadow: 0 24px 64px rgba(26, 77, 46, 0.06);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--cream-light);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 4px rgba(45, 138, 82, 0.1);
    background: var(--white);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5.5 5.5L12 1' stroke='%236b6b6b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
    cursor: pointer;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(45, 138, 82, 0.08);
    border-radius: 12px;
    color: var(--green-700);
    font-weight: 500;
    font-size: 15px;
}

.form-success[hidden] {
    display: none;
}

/* Footer */
.site-footer {
    background: var(--green-900);
    color: var(--cream);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding: 80px 0 60px;
}

.footer-brand .logo-name {
    color: var(--cream);
}

.footer-tagline {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.6);
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--cream);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
    color: var(--cream);
    padding-left: 4px;
}

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
}

.footer-contact a {
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(245, 240, 232, 0.4);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease-out-expo);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top a {
    width: 48px;
    height: 48px;
    background: var(--green-800);
    color: var(--cream);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(26, 77, 46, 0.3);
    transition: background 0.2s, transform 0.2s var(--ease-out-expo);
}

.back-to-top a:hover {
    background: var(--green-700);
    transform: translateY(-2px);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image img {
        height: 420px;
    }

    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container,
    .location-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-content,
    .location-info,
    .contact-content {
        max-width: 100%;
    }

    .about-content .section-header,
    .location-info .section-header,
    .contact-content .section-header {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        padding: 100px 32px 40px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out-expo);
        box-shadow: -16px 0 48px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 10px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

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

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

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

    .gallery-item {
        height: 200px;
    }

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

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

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

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-image img {
        height: 300px;
    }

    .hero-badge {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 16px;
        display: inline-flex;
    }

    .services,
    .about,
    .why-us,
    .gallery,
    .location,
    .contact {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .why-card {
        padding: 32px 28px;
    }

    .why-number {
        font-size: 48px;
    }

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

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

    .map-link img {
        height: 300px;
    }

    .location-map {
        order: -1;
    }
}
