/* ===================================
   MAGGIES — CSS
   Forest Green + Off-White | Vibrant Modern
   =================================== */

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

:root {
    --green-dark: #1B4332;
    --green-mid: #2D6A4F;
    --green-light: #40916C;
    --green-pale: #52B788;
    --green-accent: #95D1B4;
    --cream: #F5F0E6;
    --cream-light: #FAF7F0;
    --cream-dark: #E8E0CC;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --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: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
}

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

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.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-light {
    background: var(--cream);
    color: var(--green-dark);
    border-color: var(--cream);
}

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

.btn-ghost-light {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-ghost-light:hover {
    background: var(--cream);
    color: var(--green-dark);
    transform: translateY(-2px);
}

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

.site-header.scrolled {
    background: rgba(245, 240, 230, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--green-dark);
    color: var(--cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    transition: var(--transition);
}

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

.logo-word {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--green-dark);
}

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

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

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

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

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

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

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 2px;
    background: var(--green-dark);
    box-shadow: 0 -7px 0 var(--green-dark), 0 7px 0 var(--green-dark);
    transition: var(--transition);
}

.nav-toggle.active .hamburger {
    background: transparent;
    box-shadow: 0 -7px 0 transparent, 0 7px 0 transparent;
}

.nav-toggle.active .hamburger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--green-dark);
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--green-dark);
    transform: rotate(-45deg);
}

/* --- MOBILE NAV --- */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--green-dark);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--green-pale);
}

.mobile-nav-btn {
    margin-top: 16px;
}

/* --- HERO --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 67, 50, 0.88) 0%,
        rgba(45, 106, 79, 0.75) 50%,
        rgba(27, 67, 50, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--green-accent);
}

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

.hero-headline {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--cream);
    margin-bottom: 24px;
    line-height: 1.08;
}

.hero-headline .accent-italic {
    color: var(--green-accent);
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(245, 240, 230, 0.8);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 240, 230, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

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

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

/* --- GEOMETRIC SHAPES --- */
.geo {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.geo-circle-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--green-pale);
    opacity: 0.08;
    top: -100px;
    right: -100px;
}

.geo-triangle-1 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 104px 60px;
    border-color: transparent transparent var(--green-accent) transparent;
    opacity: 0.15;
    bottom: 120px;
    right: 15%;
    transform: rotate(15deg);
}

.geo-rect-1 {
    width: 120px;
    height: 120px;
    background: var(--green-pale);
    opacity: 0.1;
    border-radius: var(--radius-md);
    bottom: 200px;
    right: 5%;
    transform: rotate(30deg);
}

.geo-dot-cluster {
    display: flex;
    gap: 12px;
    opacity: 0.3;
    bottom: 160px;
    right: 25%;
}

.geo-dot-cluster span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-accent);
}

.geo-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--green-pale);
    opacity: 0.06;
    bottom: -80px;
    right: -80px;
}

.geo-square-1 {
    width: 80px;
    height: 80px;
    background: var(--green-mid);
    opacity: 0.08;
    border-radius: var(--radius-sm);
    top: 100px;
    right: 0;
    transform: rotate(45deg);
}

.geo-circle-3 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--green-light);
    opacity: 0.05;
    top: -100px;
    left: -150px;
}

.geo-triangle-2 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 87px 50px;
    border-color: transparent transparent var(--green-pale) transparent;
    opacity: 0.12;
    top: 50%;
    left: 5%;
    transform: rotate(-20deg);
}

.geo-rect-2 {
    width: 160px;
    height: 60px;
    background: var(--green-dark);
    opacity: 0.05;
    border-radius: var(--radius-md);
    bottom: 10%;
    right: -40px;
    transform: rotate(-10deg);
}

.geo-circle-quote {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--green-dark);
    opacity: 0.04;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.geo-dots-pattern {
    display: grid;
    grid-template-columns: repeat(6, 12px);
    gap: 16px;
    opacity: 0.15;
    top: 20%;
    right: 3%;
}

.geo-dots-pattern span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-dark);
}

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

.marquee-track {
    display: flex;
    gap: 24px;
    align-items: center;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
    white-space: nowrap;
    opacity: 0.9;
}

.marquee-dot {
    color: var(--green-pale);
    font-size: 0.6rem;
    flex-shrink: 0;
}

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

/* --- SECTIONS --- */
.section {
    padding: 120px 0;
    position: relative;
}

.section-alt {
    background: var(--cream-light);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--green-pale);
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--green-dark);
    margin-bottom: 20px;
}

.section-title .accent-italic {
    color: var(--green-pale);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* --- ABOUT --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

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

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

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

.about-stat {
    position: absolute;
    top: -30px;
    left: -30px;
    background: var(--green-dark);
    color: var(--cream);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--green-accent);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.4;
}

.about-text-block .section-label {
    justify-content: flex-start;
}

.about-text-block .section-title {
    text-align: left;
}

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

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

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

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

.feature-item:hover .feature-icon {
    background: var(--green-mid);
    transform: rotate(-5deg) scale(1.05);
}

.feature-item strong {
    display: block;
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 2px;
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* --- COLLECTION --- */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.collection-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.collection-card:nth-child(1) {
    --card-accent: #2D6A4F;
}

.collection-card:nth-child(2) {
    --card-accent: #40916C;
}

.collection-card:nth-child(3) {
    --card-accent: #52B788;
}

.collection-card:nth-child(4) {
    --card-accent: #95D1B4;
}

.card-img {
    overflow: hidden;
    height: 280px;
}

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

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

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

.card-body h3 {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.card-body p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- CRAFT --- */
.craft-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.craft-visual {
    position: relative;
}

.craft-img-large {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.craft-img-large img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.craft-img-small {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    height: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid var(--cream);
    box-shadow: var(--shadow-md);
}

.craft-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craft-content .section-label {
    justify-content: flex-start;
}

.craft-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

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

.craft-pillars {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pillar {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--green-pale);
    line-height: 1;
    opacity: 0.6;
    flex-shrink: 0;
}

.pillar h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.pillar p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* --- QUOTE --- */
.quote-section {
    background: var(--green-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.quote-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    color: var(--green-pale);
    opacity: 0.4;
    margin-bottom: 24px;
}

.quote-content blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--cream);
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 32px;
}

.quote-attr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.quote-author {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-accent);
}

.quote-location {
    font-size: 0.9rem;
    color: rgba(245, 240, 230, 0.5);
}

/* --- VISIT --- */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.visit-info .section-label {
    justify-content: flex-start;
}

.visit-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.visit-desc {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

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

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--green-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-accent);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--green-pale);
}

.visit-map {
    position: relative;
}

.map-placeholder {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1;
}

.map-illustration {
    width: 100%;
    height: 100%;
}

.map-caption {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.map-caption svg {
    color: var(--green-mid);
}

/* --- CTA BANNER --- */
.cta-banner {
    background: var(--green-mid);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--green-dark);
    opacity: 0.15;
    top: -150px;
    right: -100px;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    background: var(--green-pale);
    opacity: 0.1;
    bottom: -60px;
    left: 10%;
    transform: rotate(20deg);
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text {
    max-width: 500px;
}

.cta-headline {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--cream);
    margin-bottom: 16px;
}

.cta-text p {
    color: rgba(245, 240, 230, 0.75);
    font-size: 1.05rem;
    line-height: 1.7;
}

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

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

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

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

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

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

.footer-links strong {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 8px;
}

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

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

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

.footer-contact strong {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 8px;
}

.footer-contact address {
    font-style: normal;
    color: rgba(245, 240, 230, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-contact a {
    color: var(--cream);
    font-size: 1.05rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(245, 240, 230, 0.4);
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    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) {
    .about-grid,
    .craft-layout,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img-accent {
        right: 20px;
        bottom: -20px;
        width: 160px;
        height: 160px;
    }

    .about-stat {
        left: 20px;
        top: -20px;
    }

    .craft-img-small {
        right: 20px;
        bottom: -20px;
        width: 180px;
        height: 180px;
    }

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

    .footer-grid > :nth-child(1) {
        grid-column: 1 / -1;
    }
}

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

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: 600px;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

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

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

    .section {
        padding: 80px 0;
    }

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

    .card-img {
        height: 220px;
    }

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

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        justify-content: center;
    }

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

    .footer-grid > :nth-child(1) {
        grid-column: auto;
    }

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

    .geo-circle-1 { width: 300px; height: 300px; }
    .geo-circle-2 { width: 200px; height: 200px; }
    .geo-circle-3 { width: 250px; height: 250px; }
    .geo-circle-quote { width: 350px; height: 350px; }
}

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

    .hero-content {
        padding-top: 60px;
    }

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

    .about-img-accent {
        width: 120px;
        height: 120px;
        right: 10px;
        bottom: -10px;
        border-width: 4px;
    }

    .about-stat {
        padding: 16px 20px;
        left: 10px;
        top: -10px;
    }

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

    .craft-img-large img {
        height: 360px;
    }

    .craft-img-small {
        width: 140px;
        height: 140px;
        right: 10px;
        bottom: -10px;
        border-width: 4px;
    }

    .card-body {
        padding: 20px 24px 24px;
    }

    .quote-section {
        padding: 80px 0;
    }
}
