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

:root {
    --forest: #2C4A3E;
    --forest-light: #3D6B58;
    --forest-dark: #1E352B;
    --cream: #F7F4EE;
    --cream-light: #FBF9F5;
    --cream-dark: #EDE8DD;
    --sand: #E8E0D0;
    --sand-light: #F0EBE0;
    --sage: #A8B59E;
    --sage-light: #C5CEBF;
    --terracotta: #C4836A;
    --terracotta-light: #D4A08A;
    --charcoal: #2A2A28;
    --warm-gray: #6B6560;
    --light-gray: #9E9890;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', system-ui, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(44, 74, 62, 0.06), 0 1px 2px rgba(44, 74, 62, 0.04);
    --shadow-md: 0 4px 16px rgba(44, 74, 62, 0.08), 0 2px 4px rgba(44, 74, 62, 0.04);
    --shadow-lg: 0 12px 40px rgba(44, 74, 62, 0.12), 0 4px 12px rgba(44, 74, 62, 0.06);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    position: relative;
}

.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

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

/* ─── NAVIGATION ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(247, 244, 238, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--sand);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--forest);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.nav-logo-mark {
    color: var(--forest);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--warm-gray);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--forest);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--forest);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--forest) !important;
    font-weight: 600 !important;
    background: var(--sand-light);
    border: 1px solid var(--sand);
    padding: 8px 16px;
    border-radius: 100px;
    transition: all var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--forest) !important;
    color: var(--cream) !important;
    border-color: var(--forest) !important;
}

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

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

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

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

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 40%, var(--sand-light) 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 20% 30%, var(--forest) 1px, transparent 1px),
                      radial-gradient(circle at 80% 70%, var(--forest) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

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

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 28px;
}

.hero-eyebrow-line {
    width: 32px;
    height: 1.5px;
    background: var(--forest);
    flex-shrink: 0;
}

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

.hero-title-line {
    display: block;
}

.hero-title-accent {
    display: block;
    font-style: italic;
    font-weight: 300;
    color: var(--forest);
    font-size: 1.05em;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--warm-gray);
    max-width: 420px;
    margin-bottom: 40px;
    font-weight: 300;
}

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

.hero-img-stack {
    position: relative;
    height: 620px;
}

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

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

.hero-img-main {
    width: 380px;
    height: 500px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img-secondary {
    width: 280px;
    height: 200px;
    bottom: 100px;
    left: 0;
    z-index: 3;
    border: 4px solid var(--cream);
}

.hero-img-caption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--forest);
    padding: 4px 10px;
    border-radius: 100px;
}

.hero-img-accent {
    width: 140px;
    height: 140px;
    bottom: 20px;
    right: 40px;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--cream);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--light-gray);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--light-gray), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--forest);
    color: var(--cream);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--forest-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--forest);
}

.btn-ghost:hover {
    background: var(--forest);
    color: var(--cream);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.78rem;
}

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

/* ─── TICKER ─── */
.ticker {
    background: var(--forest);
    padding: 16px 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

.ticker-item {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(247, 244, 238, 0.7);
    white-space: nowrap;
    padding: 0 20px;
    letter-spacing: 0.04em;
}

.ticker-dot {
    color: var(--terracotta-light);
    white-space: nowrap;
    padding: 0 8px;
    font-size: 0.6rem;
}

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

/* ─── SECTION COMMON ─── */
section {
    padding: 120px 0;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.accent-italic {
    font-style: italic;
    color: var(--forest);
}

.section-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--warm-gray);
    max-width: 520px;
    font-weight: 300;
}

/* ─── COLLECTION ─── */
.collection {
    background: var(--cream-light);
}

.collection .section-header {
    margin-bottom: 64px;
}

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

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--cream);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.collection-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.collection-card--large {
    grid-column: span 7;
}

.collection-card--wide {
    grid-column: span 12;
}

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

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

.collection-card-content {
    padding: 24px;
}

.collection-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.collection-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--warm-gray);
    font-weight: 300;
    margin-bottom: 12px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--forest);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: gap var(--transition);
}

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

/* ─── ABOUT ─── */
.about {
    background: var(--cream);
}

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

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

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

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

.about-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

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

.about-img-float-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--forest);
    color: var(--cream);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.about-content .section-desc {
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--sand);
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--forest);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--warm-gray);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    background: var(--sand);
    align-self: stretch;
}

/* ─── FEATURED ─── */
.featured {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, var(--forest-light) 100%);
    color: var(--cream);
}

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

.featured .section-eyebrow {
    color: var(--sage-light);
}

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

.featured .section-desc {
    color: rgba(247, 244, 238, 0.7);
    margin-bottom: 32px;
}

.featured .btn-primary {
    background: var(--cream);
    color: var(--forest);
}

.featured .btn-primary:hover {
    background: var(--sand-light);
}

.featured-images {
    height: 460px;
}

.featured-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 100%;
}

.featured-img-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-img-item--offset {
    margin-top: 40px;
}

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

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

/* ─── VISIT ─── */
.visit {
    background: var(--cream-light);
}

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

.visit-info .section-desc {
    margin-bottom: 40px;
}

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

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

.visit-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--cream);
    border: 1px solid var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    flex-shrink: 0;
}

.visit-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.visit-detail-text strong {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest);
}

.visit-detail-text span,
.visit-detail-text a {
    font-size: 0.92rem;
    color: var(--warm-gray);
    text-decoration: none;
    font-weight: 300;
    line-height: 1.6;
}

.visit-detail-text a:hover {
    color: var(--forest);
}

.visit-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--sand);
}

.visit-map-placeholder {
    background: var(--sand-light);
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.map-icon {
    color: var(--forest);
    opacity: 0.5;
}

.visit-map-placeholder p {
    font-size: 0.88rem;
    color: var(--warm-gray);
    font-weight: 300;
}

.visit-visual {
    position: relative;
}

.visit-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.visit-img-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream-light);
}

.visit-img-accent img {
    display: block;
    width: 100%;
    height: auto;
}

/* ─── CONTACT ─── */
.contact {
    background: var(--cream);
}

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

.contact-text .section-desc {
    margin-bottom: 32px;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--sand);
}

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.92rem;
    font-weight: 400;
    transition: color var(--transition);
}

.contact-quick-item:hover {
    color: var(--forest);
}

.contact-quick-item svg {
    color: var(--forest);
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: var(--cream-light);
    border: 1px solid var(--sand);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--sand);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--charcoal);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(44, 74, 62, 0.1);
}

.form-success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    margin-bottom: 8px;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--charcoal);
}

.form-success p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    font-weight: 300;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(247, 244, 238, 0.1);
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(247, 244, 238, 0.6);
    font-weight: 300;
    line-height: 1.7;
    max-width: 280px;
    margin-top: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col strong {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 4px;
}

.footer-col a {
    text-decoration: none;
    color: rgba(247, 244, 238, 0.6);
    font-size: 0.85rem;
    font-weight: 300;
    transition: color var(--transition);
}

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

.footer-col span {
    font-size: 0.85rem;
    color: rgba(247, 244, 238, 0.6);
    font-weight: 300;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 0.78rem;
    color: rgba(247, 244, 238, 0.4);
    font-weight: 300;
}

/* ─── 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-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-eyebrow {
        justify-content: center;
    }
    
    .about-layout,
    .featured-inner,
    .visit-layout,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-images {
        height: 400px;
        order: -1;
    }
    
    .collection-card--large {
        grid-column: span 12;
    }
    
    .collection-card--wide {
        grid-column: span 12;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        z-index: 999;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-cta {
        font-size: 0.85rem !important;
    }
    
    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-card--large,
    .collection-card--wide {
        grid-column: span 1;
    }
    
    .about-images {
        height: 320px;
    }
    
    .about-img-main {
        height: 320px;
        width: 80%;
    }
    
    .about-img-float {
        width: 55%;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .featured-img-grid {
        grid-template-columns: 1fr;
        height: 360px;
    }
    
    .featured-img-item--offset {
        margin-top: 0;
    }
    
    .visit-img-accent {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        width: 60%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .collection-card-content {
        padding: 16px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
}
