/* ========================================
   Federal Cabinet Co Inc — Stylesheet
   Palette: Burgundy (#8B1A2B) + Blush (#F5D5C8)
   Fonts: Playfair Display + Inter
======================================== */

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

:root {
    --burgundy: #8B1A2B;
    --burgundy-dark: #6B1220;
    --burgundy-light: #A52237;
    --blush: #F5D5C8;
    --blush-light: #FAE8DF;
    --blush-dark: #E8B8A8;
    --cream: #FDF8F5;
    --white: #FFFFFF;
    --charcoal: #1A1A1A;
    --gray-900: #2D2D2D;
    --gray-700: #555555;
    --gray-500: #888888;
    --gray-300: #CCCCCC;
    --gray-100: #F0F0F0;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
    list-style: none;
}

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

/* ---------- Geometric Background Shapes ---------- */
.geo-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--burgundy);
    top: -200px;
    right: -150px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: var(--blush);
    bottom: 20%;
    left: -100px;
}

.geo-rect {
    position: absolute;
    opacity: 0.04;
}

.geo-rect--1 {
    width: 300px;
    height: 500px;
    background: var(--burgundy);
    top: 40%;
    right: 5%;
    transform: rotate(15deg);
}

.geo-rect--2 {
    width: 200px;
    height: 200px;
    background: var(--blush);
    top: 60%;
    left: 10%;
    transform: rotate(-30deg);
}

.geo-triangle {
    position: absolute;
    opacity: 0.05;
}

.geo-triangle--1 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 120px 200px 120px;
    border-color: transparent transparent var(--burgundy) transparent;
    top: 75%;
    right: 15%;
    transform: rotate(-20deg);
}

.geo-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 30%;
    left: 3%;
    background-image: radial-gradient(circle, var(--burgundy) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.12;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 26, 43, 0.08);
    transition: background 0.3s var(--ease-smooth);
}

.navbar.scrolled {
    background: rgba(253, 248, 245, 0.95);
    box-shadow: 0 4px 30px rgba(139, 26, 43, 0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--burgundy);
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--burgundy);
    color: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 8px;
}

.nav-logo-text {
    letter-spacing: -0.01em;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
    color: var(--burgundy);
    background: rgba(139, 26, 43, 0.06);
}

.nav-link--cta {
    background: var(--burgundy);
    color: var(--white) !important;
    border-radius: 8px;
    padding: 10px 20px;
    margin-left: 8px;
    transition: background 0.2s, transform 0.2s;
}

.nav-link--cta:hover {
    background: var(--burgundy-dark);
    transform: translateY(-1px);
}

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

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 26, 43, 0.25);
}

.btn--primary:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 26, 43, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--gray-300);
}

.btn--ghost:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.btn--white {
    background: var(--white);
    color: var(--burgundy);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 1rem;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 0;
    overflow: hidden;
}

.hero-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--burgundy) 0%, var(--blush) 50%, var(--burgundy) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

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

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

.hero-label-line {
    width: 40px;
    height: 2px;
    background: var(--burgundy);
    display: inline-block;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.headline-line {
    display: block;
}

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

.hero-subheadline {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gray-700);
    max-width: 480px;
    margin-bottom: 36px;
}

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

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

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--burgundy);
    line-height: 1;
}

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

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

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

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

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.hero-img--main {
    width: 380px;
    height: 480px;
    top: 20px;
    right: 0;
}

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

.hero-img--accent {
    width: 240px;
    height: 180px;
    bottom: 40px;
    left: 0;
    z-index: 2;
    border: 4px solid var(--white);
}

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

.hero-img-accent-border {
    position: absolute;
    inset: -12px;
    border: 2px solid var(--blush);
    border-radius: 20px;
    z-index: -1;
}

.hero-badge {
    position: absolute;
    bottom: 260px;
    left: -20px;
    z-index: 3;
    background: var(--white);
    color: var(--burgundy);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ---------- Section Shared ---------- */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--burgundy);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--burgundy);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

/* ---------- Services Section ---------- */
.services {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--cream);
    border-radius: 20px;
    padding: 40px 32px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(139, 26, 43, 0.1);
}

.service-card--featured {
    grid-row: span 2;
    background: var(--burgundy);
    color: var(--white);
}

.service-card--featured .service-title,
.service-card--featured .service-desc,
.service-card--featured .service-features li {
    color: var(--white);
}

.service-card--featured .service-title {
    font-size: 1.6rem;
}

.service-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: var(--blush);
    border-radius: 0 20px 0 80px;
    opacity: 0.3;
    transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out);
}

.service-card:hover .service-card-bg {
    width: 160px;
    height: 160px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--blush);
    color: var(--burgundy);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s;
}

.service-card--featured .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.service-card:hover .service-icon {
    background: var(--burgundy);
    color: var(--white);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blush-dark);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---------- Craft Section ---------- */
.craft {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--cream);
    overflow: hidden;
}

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

.craft-visual {
    position: relative;
    height: 600px;
}

.craft-image-main {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

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

.craft-image-float {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 220px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.craft-stat-card {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--burgundy);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(139, 26, 43, 0.3);
}

.craft-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.craft-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    font-weight: 500;
}

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

.craft-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 40px;
}

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

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

.step-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--blush-dark);
    line-height: 1;
    min-width: 48px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ---------- Gallery Section ---------- */
.gallery {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--white);
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--blush);
    margin-bottom: 6px;
}

.gallery-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.gallery-item--large {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 480px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    min-height: 230px;
}

.gallery-item--wide {
    grid-column: span 5;
    min-height: 230px;
}

/* ---------- About Section ---------- */
.about {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--cream);
    overflow: hidden;
}

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

.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
}

.about-value svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

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

.about-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-img--1 {
    width: 320px;
    height: 420px;
    top: 0;
    left: 0;
}

.about-img--2 {
    width: 240px;
    height: 180px;
    bottom: 20px;
    right: 0;
    border: 4px solid var(--white);
}

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

/* ---------- CTA Banner ---------- */
.cta-banner {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--burgundy);
    overflow: hidden;
}

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

.cta-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: var(--blush);
}

.cta-circle--1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -100px;
}

.cta-circle--2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: 10%;
}

.cta-geo {
    position: absolute;
    opacity: 0.06;
    background: var(--blush);
}

.cta-geo--1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
    transform: rotate(45deg);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

/* ---------- Contact Section ---------- */
.contact {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--white);
}

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

.contact-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 40px;
}

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

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

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

.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--burgundy);
    font-weight: 600;
    transition: color 0.2s;
}

.contact-detail-value a:hover {
    color: var(--burgundy-dark);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--cream);
    border-radius: 24px;
    padding: 44px;
}

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

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

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

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 4px rgba(139, 26, 43, 0.08);
}

.form-input::placeholder {
    color: var(--gray-500);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

/* Form Success */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--blush-light);
    color: var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
}

.success-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
    max-width: 300px;
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    z-index: 1;
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--burgundy);
    color: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 8px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--blush);
    margin-bottom: 20px;
}

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

.footer-col a,
.footer-col li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ---------- Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.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-grid {
        gap: 40px;
    }

    .hero-visual {
        height: 480px;
    }

    .hero-img--main {
        width: 300px;
        height: 380px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card--featured {
        grid-row: span 1;
    }

    .craft-layout,
    .about-layout,
    .contact-layout {
        gap: 50px;
    }

    .gallery-item--large {
        grid-column: span 12;
        min-height: 360px;
    }

    .gallery-item--wide {
        grid-column: span 6;
    }

    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(139, 26, 43, 0.08);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s var(--ease-out), opacity 0.3s;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link--cta {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .hero-visual {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

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

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

    .craft-visual {
        height: 400px;
        order: -1;
    }

    .craft-image-main {
        height: 350px;
    }

    .craft-image-float {
        right: 10px;
        width: 180px;
    }

    .craft-stat-card {
        right: 10px;
    }

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

    .gallery-item--large,
    .gallery-item--wide,
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        grid-column: span 1;
        min-height: 240px;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 360px;
        order: -1;
    }

    .about-img--1 {
        width: 240px;
        height: 300px;
    }

    .about-img--2 {
        width: 180px;
        height: 140px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

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

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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