*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --plum-deep: #4A0E4E;
    --plum: #6B1D6E;
    --plum-light: #8B3A8E;
    --plum-pale: #F5E6F7;
    --amber: #E8A838;
    --amber-light: #F5C96B;
    --amber-pale: #FFF8E7;
    --bg: #FAFAF8;
    --bg-warm: #F7F5F2;
    --text: #1A1A1A;
    --text-muted: #6B6B6B;
    --text-light: #9A9A9A;
    --line: #E8E6E1;
    --white: #FFFFFF;
    --font-sans: 'Instrument Sans', -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

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

/* ── GRADIENT BACKGROUND ── */
.gradient-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 40%, #8B4585 70%, var(--amber) 100%);
    opacity: 0.04;
}

.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--plum);
    top: -200px;
    right: -200px;
    opacity: 0.06;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--amber);
    bottom: 20%;
    left: -100px;
    opacity: 0.05;
    animation: float 15s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--plum-light);
    top: 50%;
    right: 10%;
    opacity: 0.04;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ── HEADER ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.4s var(--ease-out);
}

.header.scrolled {
    box-shadow: 0 1px 20px rgba(74, 14, 78, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--plum) 0%, var(--amber) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 11px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.logo-text {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.01em;
}

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

.nav a {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s var(--ease-out);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--plum);
    transition: width 0.3s var(--ease-out);
}

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

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

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

.nav-toggle-line {
    width: 20px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

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

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

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

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding-top: 72px;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 50%, #9B4DCA 80%, var(--amber) 100%);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(107, 29, 110, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(232, 168, 56, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    padding: 80px 24px 80px 80px;
    position: relative;
    z-index: 1;
    max-width: 580px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 28px;
    position: relative;
    padding-left: 32px;
}

.hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--amber-light);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

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

.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 44px;
    max-width: 420px;
    font-weight: 300;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.btn-primary {
    background: var(--amber);
    color: var(--plum-deep);
}

.btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 168, 56, 0.3);
}

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

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

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

.hero-image {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 500px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg) 0%, transparent 15%);
    pointer-events: none;
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
}

.trust-inner {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0;
}

.trust-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0 28px;
}

.trust-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--plum-light);
    opacity: 0.3;
    flex-shrink: 0;
}

/* ── SECTION COMMON ── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── PRODUCTS ── */
.products {
    padding: 120px 0;
    background: var(--bg);
}

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

.product-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(74, 14, 78, 0.08);
    border-color: transparent;
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-warm);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card > div:first-child + .product-name,
.product-name {
    padding: 24px 24px 0;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.01em;
}

.product-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    padding: 8px 24px 28px;
}

/* ── ABOUT ── */
.about {
    padding: 120px 0;
    background: var(--white);
}

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

.about-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--bg-warm);
}

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

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

.about-content .section-title {
    text-align: left;
    margin-bottom: 28px;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--plum);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--line);
    flex-shrink: 0;
}

/* ── VISIT ── */
.visit {
    padding: 120px 0;
    background: var(--bg);
}

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

.visit-info .section-eyebrow,
.visit-info .section-title {
    text-align: left;
}

.visit-info .section-title {
    margin-bottom: 40px;
}

.info-block {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
}

.info-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    align-items: start;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    padding-top: 3px;
}

.info-value {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.info-value a {
    color: var(--plum);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.info-value a:hover {
    color: var(--plum-light);
}

.visit-map {
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    border: 1px solid var(--line);
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

/* ── CONTACT ── */
.contact {
    padding: 120px 0;
    background: var(--white);
}

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

.contact-content .section-eyebrow,
.contact-content .section-title {
    text-align: left;
}

.contact-content .section-title {
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.contact-detail {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    text-decoration: none;
    padding: 16px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: all 0.3s var(--ease-out);
    width: fit-content;
}

.contact-detail:hover {
    border-color: var(--plum);
    color: var(--plum);
    background: var(--plum-pale);
}

.contact-detail svg {
    color: var(--plum);
    flex-shrink: 0;
}

/* ── FORM ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 16px;
    outline: none;
    transition: all 0.3s var(--ease-out);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(107, 29, 110, 0.08);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: var(--plum-pale);
    border: 1px solid var(--plum-light);
    border-radius: 8px;
    font-size: 14px;
    color: var(--plum);
    margin-top: 4px;
}

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

/* ── FOOTER ── */
.footer {
    background: var(--plum-deep);
    color: rgba(255, 255, 255, 0.6);
    padding: 48px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .logo-mark {
    background: linear-gradient(135deg, var(--plum-light) 0%, var(--amber) 100%);
}

.footer-brand .logo-text {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
}

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

.footer-info a {
    color: var(--amber-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ── SCROLL ANIMATIONS ── */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos].aos-visible:nth-child(2) { transition-delay: 0.08s; }
[data-aos].aos-visible:nth-child(3) { transition-delay: 0.16s; }
[data-aos].aos-visible:nth-child(4) { transition-delay: 0.24s; }
[data-aos].aos-visible:nth-child(5) { transition-delay: 0.32s; }
[data-aos].aos-visible:nth-child(6) { transition-delay: 0.40s; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: 120px 24px 80px;
        max-width: 100%;
    }

    .hero-image {
        display: none;
    }

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

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

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 250, 248, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav a {
        font-size: 18px;
        letter-spacing: 0.08em;
        color: var(--text);
    }

    .nav-toggle {
        display: flex;
    }

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

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

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

    .stat {
        padding: 0;
    }

    .trust-inner {
        flex-wrap: wrap;
        gap: 8px;
    }

    .trust-label {
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 56px);
    }

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

    .info-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

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

    .hero-content {
        padding: 100px 20px 60px;
    }

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

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