/* ============================================
   The Thrift-ory — Custom Styles
   Palette: Emerald Green + Cream
   Fonts: Playfair Display + Space Grotesk
   ============================================ */

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

:root {
    --emerald-900: #042f2e;
    --emerald-800: #064e3b;
    --emerald-700: #065f46;
    --emerald-600: #047857;
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --cream-50: #fafaf5;
    --cream-100: #f5f5e8;
    --cream-200: #e8e8d0;
    --cream-300: #d4d4b8;
    --neutral-50: #f9fafb;
    --neutral-100: #f3f4f6;
    --neutral-200: #e5e7eb;
    --neutral-300: #d1d5db;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Space Grotesk', system-ui, sans-serif;
    
    --shadow-sm: 0 1px 2px rgba(4, 47, 46, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(4, 47, 46, 0.08), 0 2px 4px -2px rgba(4, 47, 46, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(4, 47, 46, 0.08), 0 4px 6px -4px rgba(4, 47, 46, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(4, 47, 46, 0.1), 0 8px 10px -6px rgba(4, 47, 46, 0.05);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--cream-50);
    color: var(--neutral-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ============================================
   Header
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(4, 120, 87, 0.08);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald-800);
    letter-spacing: -0.02em;
}

.logo-icon {
    display: flex;
    align-items: center;
    color: var(--emerald-600);
}

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

.logo--light .logo-icon {
    color: var(--emerald-400);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-600);
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-600);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--emerald-700);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--emerald-800);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 245, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

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

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--emerald-800);
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--emerald-500);
}

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

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(4, 120, 87, 0.04) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

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

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

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

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

.hero-eyebrow span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-700);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--neutral-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--neutral-600);
    margin-bottom: 40px;
    max-width: 480px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--emerald-700);
    color: white;
    border-color: var(--emerald-700);
}

.btn-primary:hover {
    background: var(--emerald-800);
    border-color: var(--emerald-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--emerald-700);
    border-color: var(--emerald-700);
}

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

.btn-white {
    background: white;
    color: var(--emerald-800);
    border-color: white;
}

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

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

.btn-outline:hover {
    background: white;
    color: var(--emerald-800);
    border-color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

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

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-700);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--neutral-500);
    font-weight: 500;
}

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

/* Hero Image Stack */
.hero-image-stack {
    position: relative;
    height: 600px;
}

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

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img-primary {
    width: 340px;
    height: 460px;
    top: 20px;
    right: 40px;
    z-index: 2;
}

.hero-img-secondary {
    width: 240px;
    height: 180px;
    bottom: 80px;
    left: 0;
    z-index: 3;
}

.hero-img-accent {
    width: 200px;
    height: 260px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.hero-badge {
    position: absolute;
    bottom: 200px;
    left: -20px;
    z-index: 4;
    background: white;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neutral-700);
}

.hero-badge svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* ============================================
   Section Shared Styles
   ============================================ */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.label-line {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--emerald-600);
    flex-shrink: 0;
}

.label-line-right {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--emerald-600);
    margin-left: auto;
}

.section-label span:last-child:not(.label-line):not(.label-line-right) {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-700);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--neutral-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--neutral-500);
    max-width: 560px;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 120px 0;
    background: white;
}

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

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

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

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

.about-img-float {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid white;
}

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

.about-accent-box {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--emerald-700);
    color: white;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-accent-box .accent-number {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 4px;
}

.about-accent-box .accent-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
}

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

.about-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: 20px;
}

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

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

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--cream-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.5;
}

/* ============================================
   Collections Section
   ============================================ */
.collections {
    padding: 120px 0;
    background: var(--cream-50);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-label {
    justify-content: center;
}

.section-header .section-description {
    margin: 0 auto;
}

.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;
}

.collection-card--large {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 520px;
}

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

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

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

.collection-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 47, 46, 0.85) 0%, rgba(4, 47, 46, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: background 0.3s ease;
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(to top, rgba(4, 47, 46, 0.9) 0%, rgba(4, 47, 46, 0.3) 60%, transparent 100%);
}

.collection-tag {
    display: inline-block;
    background: var(--emerald-500);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 12px;
}

.collection-overlay h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.collection-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 16px;
}

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

.collection-card:hover .link-arrow {
    gap: 10px;
}

/* ============================================
   Sustainability Section
   ============================================ */
.sustainability {
    padding: 120px 0;
    background: var(--emerald-900);
    color: white;
    position: relative;
    overflow: hidden;
}

.sustainability::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

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

.sustain-content .section-label {
    margin-bottom: 20px;
}

.sustain-content .label-line {
    background: var(--emerald-400);
}

.sustain-content .section-label span:last-child:not(.label-line) {
    color: var(--emerald-400);
}

.sustain-content .section-title {
    color: white;
}

.sustain-content .section-title em {
    color: var(--emerald-400);
}

.sustain-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
}

.sustain-impact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.impact-icon {
    color: var(--emerald-400);
    margin-bottom: 16px;
}

.impact-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.impact-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.sustain-visual {
    position: relative;
    height: 560px;
}

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

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

.sustain-img-accent {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--emerald-900);
    box-shadow: var(--shadow-lg);
}

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

/* ============================================
   Visit Section
   ============================================ */
.visit {
    padding: 120px 0;
    background: white;
}

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

.visit-info {
    max-width: 520px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--cream-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--cream-200);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--emerald-200);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--emerald-700);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-card h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--neutral-700);
    line-height: 1.5;
}

.contact-card a {
    color: var(--neutral-700);
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: var(--emerald-700);
    text-decoration: underline;
}

.visit-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 480px;
}

.visit-map iframe {
    width: 100%;
    height: 100%;
}

.map-cta {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

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

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    padding: 100px 0;
    background: var(--emerald-800);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-400);
    margin-bottom: 16px;
}

.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    line-height: 1.2;
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 80px 0 0;
    background: var(--neutral-900);
    color: white;
}

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

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-400);
    margin-bottom: 20px;
}

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

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-hours li span:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.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.8rem;
    color: rgba(255, 255, 255, 0.4);
}

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

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .hero-image-stack {
        height: 480px;
    }
    
    .hero-img-primary {
        width: 280px;
        height: 380px;
    }
    
    .hero-img-secondary {
        width: 200px;
        height: 150px;
    }
    
    .hero-img-accent {
        width: 160px;
        height: 220px;
    }
    
    .about-grid,
    .sustain-grid,
    .visit-grid {
        gap: 48px;
    }
    
    .about-image-wrapper {
        height: 480px;
    }
    
    .about-img-main {
        height: 380px;
    }
    
    .collections-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .collection-card--large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 400px;
    }
    
    .collection-card--wide {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-eyebrow {
        justify-content: center;
    }
    
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-stack {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-img-primary {
        width: 220px;
        height: 300px;
        right: 20px;
    }
    
    .hero-img-secondary {
        width: 160px;
        height: 120px;
        left: 0;
        bottom: 60px;
    }
    
    .hero-img-accent {
        width: 140px;
        height: 180px;
        right: 0;
    }
    
    .hero-badge {
        left: 10px;
        bottom: 160px;
        font-size: 0.75rem;
        padding: 10px 14px;
    }
    
    .about,
    .collections,
    .sustainability,
    .visit {
        padding: 80px 0;
    }
    
    .about-grid,
    .sustain-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        height: 400px;
        order: -1;
    }
    
    .about-img-main {
        height: 300px;
    }
    
    .about-img-float {
        right: -20px;
        width: 180px;
    }
    
    .about-accent-box {
        right: 20px;
        top: -16px;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-card--large {
        grid-column: span 1;
        min-height: 320px;
    }
    
    .collection-card--wide {
        grid-column: span 1;
        min-height: 200px;
    }
    
    .collection-card:not(.collection-card--large):not(.collection-card--wide) {
        min-height: 200px;
    }
    
    .sustain-impact {
        grid-template-columns: 1fr;
    }
    
    .sustain-visual {
        height: 400px;
        order: -1;
    }
    
    .sustain-img-main {
        height: 300px;
    }
    
    .sustain-img-accent {
        width: 150px;
        height: 150px;
        right: -16px;
    }
    
    .visit-map {
        height: 360px;
    }
    
    .cta-banner {
        padding: 80px 0;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .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: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-image-wrapper {
        height: 320px;
    }
    
    .about-img-main {
        height: 240px;
    }
    
    .about-img-float {
        display: none;
    }
    
    .contact-card {
        padding: 16px;
    }
}
