/* ===================================
   YANKEE CUTTERS — CUSTOM STYLES
   Plum + Amber | Editorial Bold
   =================================== */

/* --- CSS Custom Properties --- */
:root {
    --plum-900: #1a0a1e;
    --plum-800: #2d1233;
    --plum-700: #4a1a52;
    --plum-600: #6b2172;
    --plum-500: #8b2f96;
    --plum-400: #a855c4;
    --plum-300: #c084d4;
    --plum-200: #e0b8e8;
    --plum-100: #f3d9f5;
    --plum-50: #faf0fd;

    --amber-600: #b45309;
    --amber-500: #d97706;
    --amber-400: #f59e0b;
    --amber-300: #fbbf24;
    --amber-200: #fde68a;
    --amber-100: #fef3c7;
    --amber-50: #fffbeb;

    --cream-50: #fefcf3;
    --cream-100: #fdf6e3;
    --cream-200: #f5f0e1;
    --warm-50: #faf8f5;
    --warm-100: #f3efe8;
    --warm-200: #e8e0d4;
    --warm-700: #4a4036;
    --warm-800: #2d2520;
    --warm-900: #1a1510;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 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 1px 3px rgba(26, 10, 30, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 10, 30, 0.1);
    --shadow-lg: 0 8px 40px rgba(26, 10, 30, 0.15);
    --shadow-xl: 0 16px 60px rgba(26, 10, 30, 0.2);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 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.6;
    color: var(--warm-800);
    background-color: var(--cream-50);
    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;
}

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

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--plum-700);
    color: #fff;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 500;
    transition: top var(--transition-fast);
}

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

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--plum-900);
    margin-bottom: var(--space-lg);
}

.section-title em {
    font-style: italic;
    color: var(--plum-500);
}

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

.btn-primary {
    background: var(--plum-700);
    color: #fff;
    box-shadow: 0 4px 15px rgba(74, 26, 82, 0.3);
}

.btn-primary:hover {
    background: var(--plum-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 26, 82, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--plum-700);
    border: 1.5px solid var(--plum-200);
}

.btn-ghost:hover {
    background: var(--plum-50);
    border-color: var(--plum-400);
}

.btn-outline {
    background: transparent;
    color: var(--plum-700);
    border: 1.5px solid var(--plum-300);
}

.btn-outline:hover {
    background: var(--plum-50);
    border-color: var(--plum-500);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}

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

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254, 252, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 26, 82, 0.08);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(254, 252, 243, 0.95);
    box-shadow: var(--shadow-sm);
}

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

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-line1 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--plum-900);
}

.logo-line2 {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-600);
}

/* --- Navigation --- */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--plum-50);
}

.hamburger {
    position: relative;
    width: 22px;
    height: 16px;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--plum-800);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger::before { top: 0; }
.hamburger span { top: 50%; transform: translateY(-50%); }
.hamburger::after { bottom: 0; }

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

.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(254, 252, 243, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 26, 82, 0.08);
    padding: var(--space-sm) var(--space-md);
}

.nav-menu.is-open {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-menu li {
    border-bottom: 1px solid var(--warm-200);
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-menu a {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--plum-800);
    transition: color var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--plum-500);
}

.nav-cta {
    display: inline-flex !important;
    padding: 0.625rem 1.5rem !important;
    background: var(--plum-700);
    color: #fff !important;
    border-radius: 50px;
    margin-top: var(--space-xs);
    border-bottom: none !important;
}

.nav-cta:hover {
    background: var(--plum-600) !important;
    color: #fff !important;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex !important;
        position: static;
        background: none;
        border: none;
        backdrop-filter: none;
        padding: 0;
        gap: var(--space-lg);
        animation: none;
    }

    .nav-menu li {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 0;
        font-size: 0.9rem;
    }

    .nav-cta {
        margin-top: 0 !important;
    }
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--cream-50);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, var(--plum-100) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--space-3xl);
    }
}

/* Hero Content */
.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background: var(--amber-500);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    color: var(--plum-900);
    margin-bottom: var(--space-lg);
}

.hero-headline .headline-line {
    display: block;
}

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

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--warm-700);
    margin-bottom: var(--space-xl);
    max-width: 440px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--warm-200);
}

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

.stat-label {
    font-size: 0.8rem;
    color: var(--warm-700);
    margin-top: 0.25rem;
}

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

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

.hero-image-stack {
    position: relative;
    padding-left: var(--space-lg);
}

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

.hero-img-primary {
    width: 100%;
    aspect-ratio: 3/4;
}

.hero-img-secondary {
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 55%;
    aspect-ratio: 4/5;
    border: 5px solid var(--cream-50);
}

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

.hero-accent {
    position: absolute;
    top: 30px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--amber-300);
    opacity: 0.3;
    z-index: -1;
}

@media (min-width: 1024px) {
    .hero-img-secondary {
        left: -50px;
        bottom: -60px;
    }
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--plum-400);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--plum-400), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 48px; }
    50% { opacity: 0.4; height: 32px; }
}

@media (max-width: 767px) {
    .hero-scroll {
        display: none;
    }
}

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

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

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--warm-200);
    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-400));
    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-featured {
    background: var(--plum-900);
    border-color: var(--plum-800);
    color: #fff;
}

.service-card-featured::before {
    background: linear-gradient(90deg, var(--amber-400), var(--plum-400));
}

.service-card-featured:hover {
    border-color: var(--plum-600);
}

.service-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--amber-500);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--plum-50);
    color: var(--plum-600);
    margin-bottom: var(--space-md);
}

.service-card-featured .service-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--amber-300);
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--plum-900);
    margin-bottom: 0.5rem;
}

.service-card-featured .service-name {
    color: #fff;
}

.service-desc {
    font-size: 0.925rem;
    line-height: 1.65;
    color: var(--warm-700);
    margin-bottom: var(--space-md);
}

.service-card-featured .service-desc {
    color: rgba(255, 255, 255, 0.7);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.service-card-featured .service-list li {
    color: rgba(255, 255, 255, 0.65);
}

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

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

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: var(--space-3xl);
    }
}

.about-visual {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

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

.about-image-float {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 50%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--cream-50);
    box-shadow: var(--shadow-md);
}

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

.about-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--plum-700);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-year {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-300);
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

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

.about-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-500), var(--amber-400));
    border-radius: 3px;
    margin-bottom: var(--space-lg);
}

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

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

.value-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--plum-800);
    line-height: 1.4;
    padding-top: 0.5rem;
}

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

.gallery .container {
    margin-bottom: var(--space-xl);
}

.gallery .section-eyebrow {
    color: var(--amber-400);
}

.gallery .section-title {
    color: #fff;
}

.gallery .section-title em {
    color: var(--amber-300);
}

.gallery-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 var(--space-md) var(--space-lg);
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: var(--space-md);
    padding-bottom: var(--space-sm);
}

.gallery-item {
    flex-shrink: 0;
    width: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg) var(--space-md) var(--space-md);
    background: linear-gradient(to top, rgba(26, 10, 30, 0.8), transparent);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

@media (min-width: 640px) {
    .gallery-item {
        width: 320px;
    }
    .gallery-item img {
        height: 420px;
    }
}

@media (min-width: 1024px) {
    .gallery-item {
        width: 260px;
    }
    .gallery-item img {
        height: 350px;
    }
}

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

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

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

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

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

.testimonial-footer {
    padding-top: var(--space-md);
    border-top: 1px solid var(--warm-200);
}

.testimonial-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--plum-700);
}

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

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(168, 85, 196, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 40%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .cta-inner {
        grid-template-columns: 1fr auto;
        gap: var(--space-2xl);
    }
}

.cta-eyebrow {
    color: var(--amber-400);
}

.cta-title {
    color: #fff;
    margin-bottom: var(--space-md);
}

.cta-title em {
    color: var(--amber-300);
}

.cta-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.btn-primary.btn-large {
    background: var(--amber-500);
    color: var(--plum-900);
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.4);
}

.btn-primary.btn-large:hover {
    background: var(--amber-400);
    box-shadow: 0 6px 30px rgba(217, 119, 6, 0.5);
}

.btn-outline.btn-large {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

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

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

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
}

.contact-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-500), var(--amber-400));
    border-radius: 3px;
    margin-bottom: var(--space-xl);
}

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

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

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

.contact-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--plum-900);
    margin-bottom: 0.25rem;
}

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

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

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

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

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--warm-200);
    box-shadow: var(--shadow-sm);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-900);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.925rem;
    color: var(--warm-700);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--plum-800);
    margin-bottom: 0.375rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-400);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(139, 47, 150, 0.1);
}

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

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

.form-success {
    text-align: center;
    padding: var(--space-xl);
}

.success-icon {
    color: var(--plum-500);
    margin-bottom: var(--space-md);
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-900);
    margin-bottom: 0.5rem;
}

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

/* --- Footer --- */
.footer {
    background: var(--plum-900);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: var(--space-xl);
    }
}

.footer-brand .logo-text .logo-line1 {
    color: #fff;
}

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

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-md);
}

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

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

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

.footer-contact address {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.footer-contact a {
    color: var(--amber-400);
    transition: color var(--transition-fast);
}

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

.footer-hours {
    margin-top: var(--space-md);
    font-size: 0.85rem;
}

.footer-hours p {
    margin-bottom: 0.25rem;
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--amber-400);
}

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

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