/* ===================================
   RISE AGAIN — Brand Stylesheet
   Burgundy + Blush | Confident Corporate
   =================================== */

/* --- CSS Custom Properties --- */
:root {
    --burgundy: #781F2E;
    --burgundy-dark: #5A1521;
    --burgundy-light: #9E2A3F;
    --blush: #FDF2F2;
    --blush-mid: #F8E4E4;
    --blush-dark: #E8C8C8;
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #EEEEEE;
    --neutral-300: #DDDDDD;
    --neutral-400: #BBBBBB;
    --neutral-500: #888888;
    --neutral-600: #666666;
    --neutral-700: #444444;
    --neutral-800: #2A2A2A;
    --neutral-900: #1A1A1A;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(120, 31, 46, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(120, 31, 46, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(120, 31, 46, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 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(--neutral-800);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    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;
}

ul { list-style: none; }

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

/* --- Typography --- */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.section-label-dark {
    color: var(--white);
}

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

.label-line-dark {
    background-color: var(--blush-dark);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--neutral-900);
    margin-bottom: 20px;
}

.section-title-light {
    color: var(--white);
}

.section-title-dark {
    color: var(--neutral-900);
}

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

.section-sub-light {
    color: var(--blush-dark);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--burgundy);
    color: var(--white);
    border: 2px solid var(--burgundy);
}

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

.btn-ghost {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
    transition: box-shadow var(--transition);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.logo-text {
    color: var(--neutral-900);
}

.logo-accent {
    color: var(--burgundy);
}

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

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--neutral-700);
    transition: color var(--transition);
    position: relative;
}

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

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

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

.nav-cta {
    background-color: var(--burgundy);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}

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

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    transition: all var(--transition);
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    color: var(--neutral-700);
    line-height: 1;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--neutral-800);
    transition: color var(--transition);
}

.mobile-link:hover {
    color: var(--burgundy);
}

.mobile-cta {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--burgundy);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--neutral-900);
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(120, 31, 46, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(120, 31, 46, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--neutral-900) 0%, #2A0A10 50%, var(--neutral-900) 100%);
    z-index: 0;
}

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

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

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

.eyebrow-line {
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--burgundy-light);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

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

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(253, 242, 242, 0.7);
    margin-bottom: 36px;
    max-width: 480px;
}

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

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

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(253, 242, 242, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background-color: rgba(253, 242, 242, 0.15);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 480px;
}

.hero-image-main img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -40px;
    left: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--neutral-900);
}

.hero-image-accent img {
    width: 400px;
    height: 300px;
    object-fit: cover;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--burgundy);
    color: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-top: 24px;
}

/* --- About Section --- */
.about {
    padding: 120px 0;
    background-color: var(--white);
}

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

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

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-accent-box {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background-color: var(--burgundy);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-md);
}

.accent-box-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    opacity: 0.8;
}

.accent-box-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

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

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

.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-color: var(--blush);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.value-item strong {
    display: block;
    font-size: 1rem;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.value-item span {
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* --- Collection Section --- */
.collection {
    padding: 120px 0;
    background-color: var(--burgundy);
    position: relative;
}

.collection::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(158, 42, 63, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

.container > .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 64px;
}

.collection-grid {
    position: relative;
    z-index: 1;
    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 img {
    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.05);
}

.collection-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.1) 50%, transparent 100%);
    pointer-events: none;
    transition: background var(--transition);
}

.collection-card:hover::after {
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.2) 50%, transparent 100%);
}

.collection-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 1;
}

.collection-card-tag {
    display: inline-block;
    background-color: var(--burgundy-light);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

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

.collection-card-content p {
    font-size: 0.9rem;
    color: rgba(253, 242, 242, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.collection-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blush);
    transition: color var(--transition);
}

.collection-link:hover {
    color: var(--white);
}

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

.collection-card--large img {
    height: 100%;
}

.collection-card:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
    min-height: 200px;
}

.collection-card:nth-child(3) {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
    min-height: 200px;
}

.collection-card--wide {
    grid-column: 1 / 13;
    grid-row: 3 / 4;
    min-height: 220px;
}

.collection-card--wide img {
    height: 100%;
}

/* --- Craft Section --- */
.craft {
    padding: 120px 0;
    background-color: var(--neutral-50);
}

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

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

.craft-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: 48px;
}

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

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

.step-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
    opacity: 0.3;
    flex-shrink: 0;
    width: 48px;
}

.craft-step strong {
    display: block;
    font-size: 1.05rem;
    color: var(--neutral-900);
    margin-bottom: 6px;
}

.craft-step p {
    font-size: 0.92rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

.craft-visual {
    position: relative;
}

.craft-image-stack {
    position: relative;
}

.craft-image-stack img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.craft-quote-card {
    position: absolute;
    bottom: -32px;
    left: -32px;
    background-color: var(--burgundy);
    color: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    max-width: 320px;
    box-shadow: var(--shadow-lg);
}

.craft-quote-card p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
}

.craft-quote-card span {
    font-size: 0.82rem;
    color: var(--blush-dark);
    font-weight: 500;
}

/* --- Trust Section --- */
.trust {
    padding: 100px 0;
    background-color: var(--neutral-900);
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(120, 31, 46, 0.25) 0%, transparent 60%);
}

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

.trust-quote {
    position: relative;
}

.trust-quote-mark {
    color: var(--burgundy);
    opacity: 0.5;
    margin-bottom: 24px;
}

.trust-quote blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 32px;
}

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

.attribution-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.attribution-location {
    font-size: 0.88rem;
    color: var(--neutral-500);
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.trust-stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.trust-stat-desc {
    font-size: 0.82rem;
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.trust-stat-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(253, 242, 242, 0.1);
}

/* --- Visit Section --- */
.visit {
    padding: 120px 0;
    background-color: var(--white);
}

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

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

.visit-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

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

.visit-detail strong {
    display: block;
    font-size: 0.92rem;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

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

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

.map-placeholder {
    position: relative;
    height: 500px;
}

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

.map-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(4px);
    gap: 12px;
    text-align: center;
    padding: 40px;
}

.map-content svg {
    color: var(--burgundy-light);
}

.map-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.map-content p {
    font-size: 0.95rem;
    color: var(--blush-dark);
}

/* --- Contact Section --- */
.contact {
    padding: 120px 0;
    background-color: var(--neutral-100);
}

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

.contact-content {
    max-width: 500px;
}

.contact-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: 40px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--neutral-700);
    transition: color var(--transition);
}

.contact-direct-item:hover {
    color: var(--burgundy);
}

.direct-icon {
    width: 40px;
    height: 40px;
    background-color: var(--blush);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neutral-700);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--neutral-800);
    background-color: var(--neutral-50);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(120, 31, 46, 0.1);
}

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

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background-color: rgba(120, 31, 46, 0.08);
    border: 1px solid rgba(120, 31, 46, 0.2);
    border-radius: var(--radius-sm);
    color: var(--burgundy);
    font-size: 0.92rem;
    font-weight: 500;
}

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

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-400);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--neutral-500);
    transition: color var(--transition);
}

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

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

.footer-contact p {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

.footer-contact a {
    color: var(--neutral-500);
    transition: color var(--transition);
}

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

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

.footer-hours p {
    font-size: 0.9rem;
    color: var(--neutral-500);
}

.footer-hours .hours-time {
    color: var(--white);
    font-weight: 500;
}

.footer-hours .hours-closed {
    color: var(--neutral-600);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--neutral-600);
}

/* --- Scroll Reveal (Progressive Enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
        align-items: center;
    }

    .hero-image-main img {
        height: 500px;
    }

    .hero-image-accent {
        left: 10px;
        bottom: -20px;
    }

    .hero-image-accent img {
        width: 280px;
        height: 200px;
    }

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

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

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

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

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

    .about-content,
    .visit-info,
    .contact-content {
        max-width: 100%;
    }

    .craft-quote-card {
        left: 16px;
        bottom: -24px;
    }

    .trust-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .collection-card--large {
        grid-column: 1 / 3;
    }

    .collection-card:nth-child(2),
    .collection-card:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
    }

    .collection-card--wide {
        grid-column: 1 / 3;
    }

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

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

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-image-main img {
        height: 360px;
    }

    .hero-image-accent {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .collection-card--large,
    .collection-card:nth-child(2),
    .collection-card:nth-child(3),
    .collection-card--wide {
        grid-column: 1 / 2;
        min-height: 260px;
    }

    .collection-card--large img,
    .collection-card:nth-child(2) img,
    .collection-card:nth-child(3) img,
    .collection-card--wide img {
        height: 260px;
    }

    .about-image-accent-box {
        right: 16px;
        bottom: -16px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

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

    .trust-quote blockquote {
        font-size: 1.2rem;
    }
}

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

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

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

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

    .section-title {
        font-size: 1.8rem;
    }
}
