/* ===== CSS Custom Properties ===== */
:root {
    --color-terracotta: #C67B5C;
    --color-terracotta-dark: #A8624A;
    --color-terracotta-light: #E8C4B0;
    --color-sand: #F5EDE4;
    --color-sand-light: #FAF6F2;
    --color-sand-dark: #E8DDD2;
    --color-cream: #FFFDF9;
    --color-text: #3D2B1F;
    --color-text-light: #7A6455;
    --color-text-muted: #A89488;
    --color-white: #FFFFFF;
    --color-border: #EDE3D8;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 2px 8px rgba(61, 43, 31, 0.06);
    --shadow-md: 0 4px 20px rgba(61, 43, 31, 0.08);
    --shadow-lg: 0 8px 40px rgba(61, 43, 31, 0.10);
    --shadow-hover: 0 12px 48px rgba(61, 43, 31, 0.14);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

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

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

/* ===== Section Tag ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--color-terracotta);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(198, 123, 92, 0.3);
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    box-shadow: 0 6px 24px rgba(198, 123, 92, 0.4);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    border-color: var(--color-terracotta);
    color: var(--color-terracotta);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.625rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-text);
}

.nav-logo svg {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    border-radius: 2px;
    transition: width var(--transition-base);
}

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

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

.nav-cta {
    padding: 0.625rem 1.375rem !important;
    background: var(--color-terracotta);
    color: var(--color-white) !important;
    border-radius: 50px;
    font-weight: 500 !important;
}

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

.nav-cta:hover {
    background: var(--color-terracotta-dark) !important;
    color: var(--color-white) !important;
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

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

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

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-sand-light) 0%, var(--color-cream) 50%, var(--color-sand) 100%);
    padding: var(--space-3xl) 0 var(--space-2xl);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-terracotta-light) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-sand-dark) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-terracotta-light) 0%, transparent 70%);
    top: 40%;
    left: 35%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.02); }
    66% { transform: translate(-10px, 15px) scale(0.98); }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    letter-spacing: 0.04em;
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--color-terracotta);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-headline {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

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

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-terracotta);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

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

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

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

.hero-img-main {
    width: 75%;
    height: 85%;
    top: 5%;
    right: 0;
    z-index: 2;
}

.hero-img-accent {
    width: 50%;
    height: 50%;
    bottom: 5%;
    left: 0;
    z-index: 3;
    border: 4px solid var(--color-cream);
}

.hero-img-float {
    width: 43%;
    height: 30%;
    top: 0;
    left: 10%;
    z-index: 4;
    border: 4px solid var(--color-cream);
    animation: floatCard 5s ease-in-out infinite;
}

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

/* ===== About Section ===== */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-visual {
    position: relative;
}

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

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

.about-accent-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 2;
}

.about-accent-card p {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
}

.about-content {
    padding: var(--space-md) 0;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

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

.about-value h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.about-value p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ===== Collection Section ===== */
.collection {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-sand-light) 0%, var(--color-cream) 100%);
}

.collection-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.collection-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-xl);
}

.collection-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

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

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

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

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

.collection-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(61, 43, 31, 0.7) 0%, transparent 100%);
    color: var(--color-white);
    transform: translateY(10px);
    opacity: 0.9;
    transition: all var(--transition-base);
}

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

.collection-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-terracotta-light);
    margin-bottom: 0.375rem;
}

.collection-card h3 {
    font-size: 1.375rem;
    color: var(--color-white);
    margin-bottom: 0.375rem;
}

.collection-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

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

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

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

/* ===== Craft Section ===== */
.craft {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.craft-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.craft-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.craft-content {
    padding: var(--space-md) 0;
}

.craft-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.craft-process {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.craft-step {
    padding: var(--space-md);
    background: var(--color-sand-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.craft-step:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.craft-step-num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-terracotta-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.craft-step h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.craft-step p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.craft-visual {
    position: relative;
}

.craft-img-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.craft-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.craft-img-item:hover img {
    transform: scale(1.03);
}

/* ===== Quote Section ===== */
.quote-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-terracotta-light) 50%, var(--color-sand) 100%);
    position: relative;
    overflow: hidden;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-decor {
    margin-bottom: var(--space-md);
    opacity: 0.6;
}

.quote-section blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.quote-attribution {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* ===== Visit Section ===== */
.visit {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.visit-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.visit-info {
    padding: var(--space-md) 0;
}

.visit-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

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

.visit-detail h4 {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

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

.visit-detail a {
    color: var(--color-terracotta);
    transition: color var(--transition-fast);
}

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

.visit-hours {
    background: var(--color-sand-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
}

.visit-hours h4 {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9375rem;
}

.hours-row:last-of-type {
    border-bottom: none;
}

.hours-closed span:last-child {
    color: var(--color-text-muted);
    font-style: italic;
}

.hours-note {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
    font-style: italic;
}

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

/* ===== Contact Section ===== */
.contact {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-sand-light) 0%, var(--color-cream) 100%);
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-content {
    padding: var(--space-md) 0;
}

.contact-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-sand-light);
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-terracotta);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(198, 123, 92, 0.1);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    gap: var(--space-sm);
}

.form-success.show {
    display: flex;
}

.success-icon {
    margin-bottom: var(--space-xs);
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--color-text);
}

.form-success p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: var(--space-sm);
    max-width: 320px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-white);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-sm);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-terracotta-light);
}

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

.footer-contact a {
    color: var(--color-terracotta-light);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    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-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subheadline {
        max-width: 100%;
    }

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

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-layout,
    .craft-layout,
    .visit-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-accent-card {
        right: 10px;
        bottom: -20px;
    }

    .craft-visual {
        order: -1;
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-base);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero {
        padding: var(--space-2xl) 0;
        min-height: auto;
    }

    .hero-visual {
        height: 350px;
    }

    .hero-img-main {
        width: 70%;
        height: 75%;
    }

    .hero-img-accent {
        width: 55%;
        height: 45%;
    }

    .hero-img-float {
        width: 50%;
        height: 35%;
    }

    .collection-card-large {
        grid-column: span 12;
        min-height: 300px;
    }

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

    .collection-card-wide {
        grid-column: span 12;
        min-height: 200px;
    }

    .craft-process {
        grid-template-columns: 1fr;
    }

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

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

    .footer-brand {
        grid-column: span 1;
    }

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

    .visit-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 1.25rem;
        --space-xl: 2.5rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

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

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

    .contact-form-wrapper {
        padding: var(--space-md);
    }
}

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(61, 43, 31, 0.4);
    z-index: 998;
}

.nav-overlay.show {
    display: block;
}
