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

:root {
    --green-dark: #1a4d2e;
    --green-mid: #2d7a4a;
    --green-light: #4a9c68;
    --green-pale: #e8f5ec;
    --cream: #f5f0e8;
    --cream-dark: #e8e0d0;
    --white: #ffffff;
    --text-dark: #1a2e22;
    --text-mid: #3d5a47;
    --text-light: #6b8f76;
    --gold: #d4a017;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(26, 77, 46, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 77, 46, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 77, 46, 0.16);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--green-dark);
    color: var(--cream);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    top: 16px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

.btn--light {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
}

.btn--light:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn--outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    transition: var(--transition);
}

.header.scrolled .logo {
    color: var(--green-dark);
}

.logo__accent {
    color: var(--gold);
}

.logo__icon {
    display: flex;
    align-items: center;
}

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

.nav__link {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--white);
}

.header.scrolled .nav__link {
    color: var(--text-mid);
}

.header.scrolled .nav__link:hover {
    color: var(--green-dark);
}

.nav__link--cta {
    background: var(--gold);
    color: var(--green-dark) !important;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-weight: 600;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: #e0b020;
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--white);
}

.header.scrolled .nav__toggle {
    color: var(--green-dark);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d3320 0%, #1a4d2e 25%, #2d7a4a 50%, #1a4d2e 75%, #0d3320 100%);
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(45, 122, 74, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(74, 156, 104, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 80% 20%, rgba(212, 160, 23, 0.15) 0%, transparent 60%);
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero__shape--1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    top: -200px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.hero__shape--2 {
    width: 400px;
    height: 400px;
    background: var(--green-light);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero__shape--3 {
    width: 200px;
    height: 200px;
    background: var(--cream);
    top: 30%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.hero__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(3deg); }
    66% { transform: translate(-15px, 15px) rotate(-2deg); }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.2);
    border: 1px solid rgba(212, 160, 23, 0.4);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero__headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero__sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(245, 240, 232, 0.8);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.hero__stat {
    text-align: center;
}

.hero__stat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.hero__stat-label {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.4);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== FEATURES ===== */
.features {
    padding: 80px 0;
    background: var(--cream);
    position: relative;
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-dark), var(--green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-pale);
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    background: var(--green-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-card__icon {
    background: var(--green-dark);
    color: var(--cream);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== SECTION HEADERS ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-mid);
    background: var(--green-pale);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--green-dark), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
}

/* ===== MENU ===== */
.menu {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    pointer-events: none;
}

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

.menu .section-label,
.menu .section-title,
.menu .section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.menu__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0 32px;
    flex-wrap: wrap;
}

.menu__tab {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--cream-dark);
    background: transparent;
    color: var(--text-mid);
    cursor: pointer;
    transition: var(--transition);
}

.menu__tab:hover {
    border-color: var(--green-mid);
    color: var(--green-mid);
}

.menu__tab.active {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--cream);
}

.menu__panel {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.menu__panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu__grid {
    display: grid;
    gap: 16px;
}

.menu-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.menu-item:hover {
    background: var(--green-pale);
    transform: translateX(4px);
}

.menu-item__info {
    flex: 1;
}

.menu-item__top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.menu-item__top h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.menu-item__tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    background: var(--green-dark);
    color: var(--cream);
}

.menu-item__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.menu__note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--green-pale);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-mid);
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--green-pale);
    border-radius: 50%;
    opacity: 0.5;
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about__image-wrap {
    position: relative;
}

.about__image-wrap img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about__floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--green-dark);
    color: var(--cream);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.about__content .section-title {
    margin-bottom: 24px;
}

.about__text {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.highlight__mark {
    width: 8px;
    height: 8px;
    background: var(--green-mid);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 0 80px;
    background: var(--white);
}

.gallery .container {
    text-align: center;
    margin-bottom: 48px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 77, 46, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay span {
    color: var(--cream);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.gallery__item--wide {
    grid-column: span 7;
}

.gallery__item--tall {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery__item:not(.gallery__item--wide):not(.gallery__item--tall) {
    grid-column: span 5;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--white) 100%);
    pointer-events: none;
}

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

.reviews .section-label,
.reviews .section-title,
.reviews .section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    border: 1px solid var(--cream-dark);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-pale);
}

.review-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-card__text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    background: var(--green-dark);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.review-card__author span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, #0d3320 100%);
    position: relative;
    overflow: hidden;
}

.cta__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.cta__shape--1 {
    width: 500px;
    height: 500px;
    background: var(--gold);
    top: -200px;
    left: -100px;
}

.cta__shape--2 {
    width: 300px;
    height: 300px;
    background: var(--green-light);
    bottom: -100px;
    right: -50px;
}

.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.2);
    border: 1px solid rgba(212, 160, 23, 0.4);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    background: var(--green-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact__detail a:hover {
    color: var(--green-mid);
}

.contact__map {
    margin-top: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact__form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact__form-wrap h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact__form-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 4px rgba(45, 122, 74, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-light);
}

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

.form__success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form__success.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

.form__success-icon {
    margin: 0 auto 16px;
    width: 64px;
    height: 64px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form__success h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form__success p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--green-dark);
    color: var(--cream);
    padding: 64px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.footer__brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
    max-width: 280px;
}

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

.footer__links h4,
.footer__hours h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--cream);
}

.footer__links ul,
.footer__hours ul {
    list-style: none;
}

.footer__links li,
.footer__hours li {
    margin-bottom: 12px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--gold);
}

.hours__day {
    display: block;
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
}

.hours__time {
    display: block;
    font-size: 0.9rem;
    color: var(--cream);
    margin-top: 2px;
}

.footer__hours-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.4);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.4);
}

.footer__bottom a {
    color: rgba(245, 240, 232, 0.6);
    transition: var(--transition);
}

.footer__bottom a:hover {
    color: var(--gold);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
    .nav__toggle {
        display: block;
    }

    .nav__list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--green-dark);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 30px rgba(0,0,0,0.2);
    }

    .nav__list.open {
        right: 0;
    }

    .nav__link {
        color: rgba(245, 240, 232, 0.85) !important;
        font-size: 1.1rem;
    }

    .nav__link:hover {
        color: var(--gold) !important;
    }

    .nav__link--cta {
        margin-top: 8px;
    }

    .nav__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }

    .nav__overlay.show {
        display: block;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about__image-wrap img {
        height: 400px;
    }

    .about__floating-card {
        left: 20px;
        bottom: 20px;
    }

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

    .gallery__item--wide,
    .gallery__item--tall,
    .gallery__item:not(.gallery__item--wide):not(.gallery__item--tall) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery__item img {
        height: 220px;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

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

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

    .contact__form-wrap {
        padding: 24px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}
