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

:root {
    --green-deep: #1B4332;
    --green-mid: #2D6A4F;
    --green-light: #40916C;
    --green-pale: #52B788;
    --green-faint: #B7E4C7;
    --cream: #F5F0E8;
    --cream-light: #FAF7F0;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --accent-orange: #E07A5F;
    --accent-yellow: #F2CC8F;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.08);
    --shadow-md: 0 8px 30px rgba(27, 67, 50, 0.12);
    --shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

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

ul {
    list-style: none;
}

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

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

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

/* ===== GEOMETRIC BACKGROUND ===== */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    opacity: 0.06;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--green-mid);
    top: -200px;
    right: -150px;
}

.geo-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--accent-orange);
    top: 50%;
    left: -80px;
}

.geo-square-1 {
    width: 200px;
    height: 200px;
    background: var(--green-pale);
    top: 40%;
    right: 5%;
    transform: rotate(45deg);
}

.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 200px solid var(--accent-yellow);
    top: 70%;
    left: 10%;
}

.geo-circle-3 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--green-light);
    top: 85%;
    right: 20%;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(245, 240, 232, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--green-deep);
    z-index: 1001;
}

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

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--green-deep);
    color: var(--cream);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo--light .logo-mark {
    background: var(--cream);
    color: var(--green-deep);
}

.logo-text em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--green-light);
}

.logo--light .logo-text em {
    color: var(--accent-yellow);
}

/* NAV */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-deep);
    position: absolute;
    left: 8px;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--green-deep);
    transition: var(--transition);
}

.hamburger::before { top: 7px; }
.hamburger::after { bottom: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    position: relative;
    transition: color var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-mid);
    transition: width var(--transition);
}

.nav-menu a:hover {
    color: var(--green-deep);
}

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
    background: var(--cream);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-mid);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--green-pale);
    display: block;
}

.hero-headline {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: var(--green-deep);
    margin-bottom: 24px;
}

.hero-headline em {
    font-style: italic;
    color: var(--green-light);
}

.accent-word {
    position: relative;
    display: inline-block;
}

.accent-word::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--accent-yellow);
    opacity: 0.5;
    z-index: -1;
    border-radius: 2px;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
}

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

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

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

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

.btn-outline {
    background: transparent;
    color: var(--green-deep);
    border-color: var(--green-deep);
}

.btn-outline:hover {
    background: var(--green-deep);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--cream);
    color: var(--green-deep);
    border-color: var(--cream);
}

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

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Instrument Serif', serif;
    font-size: 1.8rem;
    color: var(--green-deep);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--green-faint);
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-image-stack {
    position: relative;
    height: 100%;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-1 {
    width: 360px;
    height: 480px;
    top: 0;
    right: 0;
    z-index: 1;
}

.hero-img-2 {
    width: 240px;
    height: 300px;
    bottom: 40px;
    left: 0;
    z-index: 2;
    border: 4px solid var(--cream);
}

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

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

.hero-badge {
    position: absolute;
    bottom: 280px;
    right: 20px;
    z-index: 3;
    background: var(--green-deep);
    color: var(--cream);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

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

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    color: var(--cream-light);
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ===== MARQUEE ===== */
.marquee-strip {
    background: var(--green-deep);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-mid);
    background: rgba(45, 106, 79, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.tag-light {
    color: var(--cream);
    background: rgba(255, 255, 255, 0.15);
}

.section-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--green-deep);
    line-height: 1.15;
    margin-bottom: 16px;
}

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

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

/* ===== COLLECTIONS ===== */
.collections {
    padding: 100px 0;
    background: var(--cream-light);
    position: relative;
    z-index: 1;
}

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

.collections-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    group: true;
}

.collection-card--large {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    min-height: 600px;
}

.collection-card:not(.collection-card--large):not(.collection-card--wide) {
    grid-column: span 6;
    min-height: 280px;
}

.collection-card--wide {
    grid-column: 1 / 13;
    min-height: 300px;
}

.collection-img {
    position: absolute;
    inset: 0;
}

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

.collection-card:hover .collection-img img {
    transform: scale(1.08);
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.9) 0%, rgba(27, 67, 50, 0.6) 60%, transparent 100%);
    color: var(--cream);
    transform: translateY(20px);
    opacity: 0.9;
    transition: all var(--transition);
}

.collection-card:hover .collection-info {
    transform: translateY(0);
    opacity: 1;
}

.collection-num {
    font-family: 'Instrument Serif', serif;
    font-size: 3rem;
    color: var(--accent-yellow);
    opacity: 0.6;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.collection-info h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.collection-info p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 12px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-yellow);
    transition: gap var(--transition);
}

.link-arrow:hover {
    gap: 12px;
}

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

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

.about-visual {
    position: relative;
    height: 600px;
}

.about-img-main {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--cream);
    box-shadow: var(--shadow-md);
}

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

.about-accent-block {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--green-deep);
    color: var(--cream);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.accent-block-num {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
}

.accent-block-year {
    display: block;
    font-family: 'Instrument Serif', serif;
    font-size: 2rem;
    line-height: 1;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-body {
    margin: 24px 0 32px;
}

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

.about-body p em {
    font-family: 'Instrument Serif', serif;
    color: var(--green-mid);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(45, 106, 79, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
}

.value-item h4 {
    font-size: 1rem;
    color: var(--green-deep);
    margin-bottom: 4px;
}

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

/* ===== FEATURED BANNER ===== */
.featured-banner {
    padding: 0 0 100px;
    background: var(--cream-light);
    position: relative;
    z-index: 1;
}

.banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--green-deep);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    padding: 60px;
}

.banner-geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.geo-accent-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    top: -100px;
    right: -50px;
}

.geo-accent-line {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    bottom: -60px;
    left: -60px;
    border-radius: 50%;
}

.banner-content {
    position: relative;
    z-index: 1;
    color: var(--cream);
}

.banner-content .section-tag {
    margin-bottom: 20px;
}

.banner-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 16px;
}

.banner-title em {
    color: var(--accent-yellow);
}

.banner-desc {
    font-size: 1.05rem;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 440px;
}

.banner-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ===== VISIT ===== */
.visit {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    z-index: 1;
}

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

.visit-info .section-tag {
    margin-bottom: 16px;
}

.visit-details {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--green-deep);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
}

.visit-detail h4 {
    font-size: 0.95rem;
    color: var(--green-deep);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--green-mid);
    transition: color var(--transition);
}

.visit-detail a:hover {
    color: var(--green-deep);
    text-decoration: underline;
}

.visit-map {
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder {
    background: var(--green-faint);
    padding: 40px;
    text-align: center;
    border-radius: var(--radius-lg);
}

.map-placeholder svg {
    color: var(--green-mid);
    margin-bottom: 12px;
}

.map-placeholder p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 16px;
}

.visit-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.visit-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.visit-img--tall {
    height: 400px;
}

.visit-img--short {
    height: 200px;
}

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

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

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--green-deep);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

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

.contact-content .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-yellow);
}

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

.contact-content .section-title em {
    color: var(--accent-yellow);
}

.contact-desc {
    font-size: 1.05rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    font-weight: 500;
    transition: color var(--transition);
}

.contact-quick-link:hover {
    color: var(--accent-yellow);
}

/* FORM */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--cream);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 240, 232, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-yellow);
    background: rgba(255, 255, 255, 0.12);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    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='%23F5F0E8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--green-deep);
    color: var(--cream);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px;
    background: rgba(82, 183, 136, 0.15);
    border: 1px solid rgba(82, 183, 136, 0.3);
    border-radius: var(--radius-sm);
    color: var(--green-faint);
    font-weight: 500;
}

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

/* ===== FOOTER ===== */
.site-footer {
    background: #111;
    color: var(--cream);
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-links h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cream);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-newsletter h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}

.newsletter-input {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.newsletter-input input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: var(--cream);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    outline: none;
    min-width: 0;
}

.newsletter-input input::placeholder {
    color: rgba(245, 240, 232, 0.35);
}

.newsletter-input button {
    background: var(--green-mid);
    border: none;
    padding: 12px 16px;
    color: var(--cream);
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
}

.newsletter-input button:hover {
    background: var(--green-light);
}

.newsletter-success {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--green-faint);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.4);
}

.footer-bottom a {
    color: rgba(245, 240, 232, 0.4);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent-yellow);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }

    .hero-visual {
        height: 480px;
    }

    .hero-img-1 {
        width: 280px;
        height: 380px;
    }

    .hero-img-2 {
        width: 180px;
        height: 240px;
    }

    .about-grid,
    .visit-grid,
    .contact-grid {
        gap: 48px;
    }

    .banner-inner {
        padding: 40px;
    }

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

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

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(245, 240, 232, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }

    .nav-menu.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu a {
        font-size: 1.4rem;
        color: var(--green-deep);
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-visual {
        height: 360px;
        order: -1;
    }

    .hero-img-1 {
        width: 200px;
        height: 280px;
        right: 10px;
    }

    .hero-img-2 {
        width: 140px;
        height: 180px;
        left: 10px;
        bottom: 20px;
    }

    .hero-badge {
        bottom: 200px;
        right: 10px;
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

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

    .collection-card--large {
        grid-column: 1;
        grid-row: auto;
        min-height: 400px;
    }

    .collection-card:not(.collection-card--large):not(.collection-card--wide) {
        grid-column: 1;
        min-height: 240px;
    }

    .collection-card--wide {
        grid-column: 1;
        min-height: 240px;
    }

    .collection-info {
        transform: translateY(0);
        opacity: 1;
    }

    .about-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        height: 400px;
    }

    .about-img-main {
        height: 350px;
    }

    .about-img-float {
        width: 140px;
        height: 140px;
        right: -10px;
        bottom: -10px;
    }

    .banner-inner {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .banner-image {
        height: 250px;
        order: -1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .hero-headline {
        font-size: 2.2rem;
    }

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

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

    .hero-visual {
        height: 280px;
    }

    .hero-img-1 {
        width: 160px;
        height: 220px;
    }

    .hero-img-2 {
        width: 110px;
        height: 140px;
    }

    .hero-badge {
        display: none;
    }

    .collection-num {
        font-size: 2rem;
    }

    .collection-info h3 {
        font-size: 1.3rem;
    }
}
