/* ============================================
   Maude's Milk Soap — Stylesheet
   Palette: Plum + Amber, Classic & Elegant
   ============================================ */

/* --- Custom Properties --- */
:root {
    --plum-50: #faf5f7;
    --plum-100: #f5e9ee;
    --plum-200: #ebd0da;
    --plum-300: #d9a8bc;
    --plum-400: #c47a96;
    --plum-500: #a85574;
    --plum-600: #8c3f5c;
    --plum-700: #72314a;
    --plum-800: #5e283d;
    --plum-900: #4f2233;
    --plum-950: #2a1119;

    --amber-50: #fefce8;
    --amber-100: #fef9c3;
    --amber-200: #fef08a;
    --amber-300: #fde047;
    --amber-400: #facc15;
    --amber-500: #eab308;
    --amber-600: #ca8a04;
    --amber-700: #a16207;
    --amber-800: #854d0e;
    --amber-900: #713f12;

    --cream: #fdf8f4;
    --warm-white: #faf6f2;
    --sand: #f0e6db;
    --charcoal: #1a1512;
    --warm-gray: #3d3230;
    --muted: #6b5b58;
    --light-muted: #9e8e8a;

    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Lora', 'Georgia', 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: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 3px rgba(78, 34, 51, 0.06), 0 1px 2px rgba(78, 34, 51, 0.04);
    --shadow-md: 0 4px 16px rgba(78, 34, 51, 0.08), 0 2px 6px rgba(78, 34, 51, 0.04);
    --shadow-lg: 0 12px 40px rgba(78, 34, 51, 0.12), 0 4px 12px rgba(78, 34, 51, 0.06);
    --shadow-xl: 0 24px 60px rgba(78, 34, 51, 0.15);

    --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;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--warm-gray);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--plum-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--plum-700);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--plum-800);
    color: var(--cream);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-family: var(--font-body);
}

.skip-link:focus {
    top: var(--space-sm);
}

/* --- Typography --- */
.section-eyebrow {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-700);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    line-height: 1.15;
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--plum-700);
    color: var(--cream);
    border-color: var(--plum-700);
}

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

.btn-secondary {
    background: transparent;
    color: var(--plum-700);
    border-color: var(--plum-300);
}

.btn-secondary:hover {
    background: var(--plum-100);
    border-color: var(--plum-500);
    color: var(--plum-800);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--cream);
    border-color: var(--charcoal);
}

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

.btn-light {
    background: var(--cream);
    color: var(--plum-800);
    border-color: var(--cream);
}

.btn-light:hover {
    background: var(--warm-white);
    color: var(--plum-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--cream);
    border-color: rgba(253, 248, 244, 0.5);
}

.btn-outline-light:hover {
    background: rgba(253, 248, 244, 0.1);
    border-color: var(--cream);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--plum-100);
    transition: box-shadow var(--transition-base);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--charcoal);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
}

.logo:hover {
    color: var(--plum-700);
}

.logo--light {
    color: var(--cream);
}

.logo--light:hover {
    color: var(--amber-200);
}

.logo-icon {
    color: var(--plum-600);
    flex-shrink: 0;
}

.logo--light .logo-icon {
    color: var(--amber-400);
}

/* --- Navigation --- */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.main-nav a {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--warm-gray);
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--plum-500);
    transition: width var(--transition-base);
}

.main-nav a:hover {
    color: var(--plum-700);
}

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

.btn-nav {
    font-family: var(--font-display);
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
    background: var(--plum-700);
    color: var(--cream) !important;
    border-radius: var(--radius-md);
    border: none;
    transition: all var(--transition-base);
}

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

.btn-nav:hover {
    background: var(--plum-800);
    color: var(--cream) !important;
    transform: translateY(-1px);
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 110;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    position: relative;
    transition: all var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all var(--transition-base);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--plum-950) 0%,
        var(--plum-800) 20%,
        var(--plum-700) 35%,
        var(--plum-600) 50%,
        var(--plum-700) 65%,
        var(--amber-800) 80%,
        var(--amber-900) 100%
    );
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(168, 85, 116, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(165, 98, 7, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 20%, rgba(250, 200, 50, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
    max-width: 900px;
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber-300);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: var(--space-lg);
}

.hero-title .accent {
    color: var(--amber-300);
    font-style: italic;
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(253, 248, 244, 0.8);
    max-width: 640px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(253, 248, 244, 0.4), transparent);
}

.divider-diamond {
    color: var(--amber-400);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(253, 248, 244, 0.7);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-feature-icon {
    width: 18px;
    height: 18px;
    color: var(--amber-400);
    flex-shrink: 0;
}

/* --- Services --- */
.services {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background: var(--warm-white);
    border: 1px solid var(--plum-100);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-500), var(--amber-500));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--plum-200);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    color: var(--plum-600);
    margin-bottom: var(--space-md);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--charcoal);
}

.service-card > p {
    color: var(--muted);
    margin-bottom: var(--space-md);
    font-size: 0.975rem;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.service-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--plum-400);
    border-radius: 50%;
}

/* --- About --- */
.about {
    padding: var(--space-3xl) 0;
    background: var(--plum-50);
}

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

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

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

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--plum-200), var(--amber-200));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.6;
}

.about-content .section-eyebrow {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--space-md);
}

.about-content > p {
    color: var(--muted);
    margin-bottom: var(--space-md);
    font-size: 0.975rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--plum-200);
    border-bottom: 1px solid var(--plum-200);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--plum-700);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--light-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--plum-200);
}

.about-content .btn {
    margin-top: var(--space-md);
}

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

.craft-steps {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.craft-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--plum-100);
    align-items: start;
}

.craft-step:first-child {
    border-top: 1px solid var(--plum-100);
}

.step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--plum-200);
    line-height: 1;
    padding-top: 0.25rem;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-xs);
    color: var(--charcoal);
}

.step-content p {
    color: var(--muted);
    font-size: 0.975rem;
}

/* --- Gallery --- */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--plum-50);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-item:nth-child(2) {
    grid-column: span 4;
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-column: span 4;
}

.gallery-item:nth-child(4) {
    grid-column: span 4;
}

.gallery-item:nth-child(5) {
    grid-column: span 4;
}

.gallery-item:nth-child(6) {
    grid-column: span 8;
}

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

.gallery-item--wide img {
    aspect-ratio: 8/5;
}

.gallery-item:not(.gallery-item--wide) img {
    aspect-ratio: 5/6;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 17, 25, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

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

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
}

/* --- Testimonials --- */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--warm-white);
    border: 1px solid var(--plum-100);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--plum-200);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--plum-200);
    position: absolute;
    top: var(--space-md);
    left: var(--space-lg);
    pointer-events: none;
}

.testimonial-text {
    font-size: 0.975rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--plum-700);
    font-style: italic;
}

/* --- CTA --- */
.cta {
    position: relative;
    padding: var(--space-3xl) 0;
    background: linear-gradient(
        135deg,
        var(--plum-900) 0%,
        var(--plum-800) 40%,
        var(--plum-700) 60%,
        var(--amber-900) 100%
    );
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.cta-content .section-eyebrow {
    color: var(--amber-300);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.cta-text {
    color: rgba(253, 248, 244, 0.75);
    font-size: 1.05rem;
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

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

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

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

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

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--charcoal);
}

.contact-item p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--plum-600);
}

.contact-item a:hover {
    color: var(--plum-800);
    text-decoration: underline;
}

.contact-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--plum-200), transparent);
}

.contact-map {
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* --- Contact Form --- */
.contact-form-wrap {
    background: var(--warm-white);
    border: 1px solid var(--plum-100);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

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

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

.form-group label {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--warm-gray);
    background: var(--cream);
    border: 1px solid var(--plum-200);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-500);
    box-shadow: 0 0 0 3px rgba(168, 85, 116, 0.1);
}

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

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

.form-note {
    font-size: 0.8rem;
    color: var(--light-muted);
    text-align: center;
    margin-top: var(--space-xs);
}

/* --- Form Success --- */
.form-success {
    text-align: center;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--plum-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-600);
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

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

.form-success p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* --- Footer --- */
.site-footer {
    background: var(--plum-950);
    color: rgba(253, 248, 244, 0.7);
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: var(--space-md);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(253, 248, 244, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--amber-300);
    text-decoration: none;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.footer-contact a {
    color: rgba(253, 248, 244, 0.6);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.8rem;
    color: rgba(253, 248, 244, 0.4);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

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

    .about-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content .section-eyebrow,
    .about-content .section-title {
        text-align: center;
    }

    .about-content > p {
        text-align: center;
    }

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

    .about-content .btn {
        display: inline-flex;
    }

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

    .gallery-item--wide,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(6) {
        grid-column: span 2;
    }

    .gallery-item:not(.gallery-item--wide):not(:nth-child(2)):not(:nth-child(6)) {
        grid-column: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

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

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 244, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--plum-100);
        padding: var(--space-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition-base);
        pointer-events: none;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .main-nav a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }

    .btn-nav {
        margin-top: var(--space-sm);
        text-align: center;
        display: block;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.75rem);
    }

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

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

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

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

    .service-card {
        padding: var(--space-lg);
    }

    .craft-step {
        grid-template-columns: 60px 1fr;
        gap: var(--space-md);
    }

    .step-number {
        font-size: 2rem;
    }

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

    .gallery-item--wide,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
    }

    .gallery-item img {
        aspect-ratio: 4/3 !important;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

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

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

    .about-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

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

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

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
