/* ===== CUSTOM PROPERTIES ===== */
:root {
    --plum: #6B2F5B;
    --plum-deep: #4A1D40;
    --plum-light: #8B4578;
    --plum-pale: #F3E8F0;
    --amber: #E8A838;
    --amber-deep: #C4871F;
    --amber-light: #F5C563;
    --amber-pale: #FFF3DC;
    --cream: #FDF8F4;
    --warm-white: #FFFAF5;
    --charcoal: #1A1420;
    --dark: #2D2233;
    --gray-900: #1C1625;
    --gray-700: #4A3F52;
    --gray-500: #7B6E85;
    --gray-300: #C4B8CC;
    --gray-100: #F0ECF3;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(107, 47, 91, 0.08);
    --shadow-md: 0 8px 30px rgba(107, 47, 91, 0.12);
    --shadow-lg: 0 16px 60px rgba(107, 47, 91, 0.16);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--cream);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: var(--charcoal); }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-plum { color: var(--plum); }
.text-amber { color: var(--amber); }
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-deep);
    background: var(--amber-pale);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}
.btn--amber {
    background: var(--amber);
    color: var(--charcoal);
}
.btn--amber:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--plum {
    background: var(--plum);
    color: #fff;
}
.btn--plum:hover { background: var(--plum-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--white {
    background: #fff;
    color: var(--plum);
}
.btn--white:hover { background: var(--plum-pale); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn--outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; padding: 16px 24px; font-size: 1.05rem; border-radius: var(--radius-md); }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}
.nav.scrolled {
    background: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--charcoal);
}
.nav-logo svg { color: var(--plum); }
.nav.scrolled .nav-logo { color: var(--charcoal); }
.nav:not(.scrolled) .nav-logo { color: #fff; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: var(--transition);
    position: relative;
}
.nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.nav:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav-links a:hover { color: var(--plum); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}
.nav:not(.scrolled) .nav-toggle span { background: #fff; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: var(--charcoal) !important; font-size: 1.1rem; }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(26, 20, 32, 0.5);
        z-index: 999;
    }
    .nav-overlay.active { display: block; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(74, 29, 64, 0.88) 0%,
        rgba(107, 47, 91, 0.75) 50%,
        rgba(26, 20, 32, 0.85) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 168, 56, 0.2);
    border: 1px solid rgba(232, 168, 56, 0.4);
    color: var(--amber-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 24px;
    max-width: 800px;
}
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Geometric shapes */
.geo {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}
.geo--circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,168,56,0.15) 0%, transparent 70%);
    top: 10%;
    right: -5%;
    animation: float 8s ease-in-out infinite;
}
.geo--triangle {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(107,47,91,0.2);
    bottom: 15%;
    right: 10%;
    animation: spin 20s linear infinite;
    transform-origin: center;
}
.geo--rect {
    width: 120px;
    height: 120px;
    background: rgba(232,168,56,0.1);
    border: 2px solid rgba(232,168,56,0.2);
    bottom: 20%;
    left: 5%;
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(45deg); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 1.5rem; }
    .geo--circle { width: 200px; height: 200px; }
    .geo--triangle { display: none; }
    .geo--rect { width: 60px; height: 60px; }
}

/* ===== MARQUEE ===== */
.marquee {
    background: var(--plum);
    overflow: hidden;
    padding: 14px 0;
}
.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
}
.marquee-dot {
    color: var(--amber) !important;
    font-size: 0.6rem !important;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card--featured {
    background: var(--plum);
    border-color: var(--plum);
    color: #fff;
}
.service-card--featured h3,
.service-card--featured p { color: #fff; }
.service-card--featured .link-arrow { color: var(--amber-light); }
.service-card-accent {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: var(--amber-pale);
    border-radius: 50%;
    opacity: 0.5;
}
.service-card--featured .service-card-accent {
    background: rgba(232,168,56,0.2);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--plum-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    margin-bottom: 20px;
}
.service-card--featured .service-icon {
    background: rgba(232,168,56,0.2);
    color: var(--amber-light);
}
.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 20px;
}
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--plum);
    transition: var(--transition);
}
.link-arrow:hover { gap: 10px; }
.link-arrow svg { transition: var(--transition); }

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}

.section-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107,47,91,0.06) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    pointer-events: none;
}

/* ===== CRAFT ===== */
.craft {
    padding: 100px 0;
    background: var(--warm-white);
}
.craft-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.craft-visual {
    position: relative;
}
.craft-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.craft-img-wrap img, .craft-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.craft-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--warm-white);
}
.craft-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--amber);
    color: var(--charcoal);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.3;
    box-shadow: var(--shadow-md);
}
.craft-content .section-title { margin-bottom: 20px; }
.craft-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 16px;
}
.craft-steps {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.craft-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
    min-width: 36px;
}
.craft-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.craft-step p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .craft-layout { grid-template-columns: 1fr; gap: 40px; }
    .craft-img-secondary { right: -10px; bottom: -20px; }
}

/* ===== WORK / GALLERY ===== */
.work {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    margin-bottom: 60px;
}
.work-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}
.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.work-item:hover img { transform: scale(1.05); }
.work-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,20,32,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}
.work-item:hover .work-item-overlay { opacity: 1; }
.work-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(232,168,56,0.2);
    padding: 4px 10px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 8px;
}
.work-item-overlay h3 {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}
.work-item--large { grid-column: span 7; min-height: 400px; }
.work-item { grid-column: span 5; min-height: 280px; }
.work-item--wide { grid-column: span 12; min-height: 300px; }

.work-geo {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232,168,56,0.08) 0%, transparent 70%);
    top: 10%;
    left: -100px;
    pointer-events: none;
}

.work-cta {
    text-align: center;
    padding: 40px;
    background: var(--plum-pale);
    border-radius: var(--radius-xl);
}
.work-cta p {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .work-item--large, .work-item, .work-item--wide { grid-column: span 12; min-height: 250px; }
    .work-item-overlay { opacity: 1; }
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--warm-white);
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-content .section-title { margin-bottom: 20px; }
.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 16px;
}
.about-values {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
}
.value-icon {
    width: 28px;
    height: 28px;
    background: var(--amber-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-deep);
    flex-shrink: 0;
}
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.about-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60%;
    height: 40%;
    background: var(--plum);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.15;
}

@media (max-width: 900px) {
    .about-layout { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--plum);
    position: relative;
    overflow: hidden;
}
.testimonials .section-tag { background: rgba(232,168,56,0.2); color: var(--amber-light); }
.testimonials .section-title { color: #fff; }
.testimonials .section-title .text-plum { color: var(--amber); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--amber);
    margin-bottom: 20px;
}
.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-initial {
    width: 40px;
    height: 40px;
    background: var(--amber);
    color: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 100px 0;
    background: var(--amber);
    position: relative;
    overflow: hidden;
}
.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-circle {
    position: absolute;
    border-radius: 50%;
}
.cta-circle--1 {
    width: 400px;
    height: 400px;
    background: rgba(107,47,91,0.12);
    top: -100px;
    right: -100px;
}
.cta-circle--2 {
    width: 200px;
    height: 200px;
    background: rgba(107,47,91,0.08);
    bottom: -50px;
    left: 10%;
}
.cta-rect {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(107,47,91,0.08);
    border: 2px solid rgba(107,47,91,0.12);
    top: 20%;
    left: 5%;
    transform: rotate(30deg);
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
}
.cta-text {
    font-size: 1.1rem;
    color: rgba(26,20,32,0.7);
    margin-bottom: 36px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-body {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--plum-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    flex-shrink: 0;
}
.contact-detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 2px;
}
.contact-detail p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.contact-detail a {
    color: var(--plum);
    transition: var(--transition);
}
.contact-detail a:hover { color: var(--plum-light); }

/* Form */
.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(107,47,91,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}
.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 12px;
}
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon {
    width: 64px;
    height: 64px;
    background: var(--plum-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    margin: 0 auto 20px;
}
.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.form-success p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
}
.footer-brand {
    max-width: 300px;
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 16px;
}
.footer-logo svg { color: var(--amber); }
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 16px;
}
.footer-col a, .footer-col p {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
    transition: var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-links { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
