/* Fransindo International Pte Ltd — Singapore Fashion Wholesale Design */

:root {
    --ink: #1A1A1A;
    --ink-soft: #3D3D3D;
    --ink-muted: #6B6B6B;
    --ink-light: #9A9A9A;
    --blush: #C4786A;
    --blush-light: #D49A8E;
    --blush-muted: rgba(196, 120, 106, 0.12);
    --charcoal: #222222;
    --charcoal-mid: #2E2E2E;
    --ivory: #FAF8F6;
    --ivory-dark: #F0EBE6;
    --white: #FFFFFF;
    --border: #E8E2DC;
    --border-dark: #D4CDC5;
    --radius: 4px;
    --radius-lg: 8px;
    --shadow-sm: 0 1px 3px rgba(26, 26, 26, 0.05);
    --shadow: 0 4px 24px rgba(26, 26, 26, 0.08);
    --shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.12);
    --transition: 0.25s ease;
    --font: "Inter", system-ui, sans-serif;
    --font-display: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.container { width: min(1140px, 92%); margin: 0 auto; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 0.55rem;
}
.eyebrow.light { color: var(--blush-light); }

/* Top bar */
.top-bar {
    background: var(--charcoal);
    color: rgba(255,255,255,0.88);
    font-size: 0.78rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(196, 120, 106, 0.3);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.top-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.top-links a { color: rgba(255,255,255,0.75); }
.top-links a:hover { color: var(--blush-light); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.55rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-primary {
    background: var(--blush);
    color: #fff;
}
.btn-primary:hover {
    background: var(--blush-light);
    box-shadow: var(--shadow);
}
.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--blush-light);
}
.btn.full { width: 100%; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
    color: var(--blush);
    background: var(--charcoal);
    border-radius: 50%;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.3;
    letter-spacing: 0.02em;
}
.brand-tagline {
    font-size: 0.62rem;
    color: var(--ink-light);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--ink-muted);
    letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--blush); }
.nav-cta { padding: 0.5rem 1.15rem; font-size: 0.82rem; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

/* Hero */
.hero {
    position: relative;
    padding: 5rem 0 4.5rem;
    background: linear-gradient(165deg, var(--charcoal) 0%, var(--charcoal-mid) 55%, #3a3532 100%);
    color: #fff;
    overflow: hidden;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(196, 120, 106, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}
.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    max-width: 16ch;
    margin-bottom: 0.35rem;
    font-weight: 600;
}
.lead {
    color: rgba(255,255,255,0.85);
    font-size: 1.02rem;
    max-width: 54ch;
    margin: 1rem 0 1.5rem;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-badge {
    margin-top: 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(196, 120, 106, 0.3);
    border-radius: var(--radius);
    padding: 0.55rem 1rem;
    letter-spacing: 0.04em;
}
.hero-badge strong { color: var(--blush-light); }
.hero-panel { display: grid; gap: 0.85rem; }
.stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.45rem;
    transition: background var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.07); }
.stat-card.accent {
    background: var(--blush-muted);
    border-color: rgba(196, 120, 106, 0.3);
}
.stat-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--blush-light);
}
.stat-card span { font-size: 0.8rem; opacity: 0.7; }

/* Trust bar */
.trust-bar {
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 0;
}
.trust-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
}
.trust-item {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-muted);
}

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--ivory); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    margin-top: 0.15rem;
    color: var(--charcoal);
}
.section-head p { color: var(--ink-muted); margin-top: 0.7rem; }

.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.65rem;
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.card:hover {
    box-shadow: var(--shadow);
    border-color: var(--border-dark);
    transform: translateY(-2px);
}
.icon-wrap {
    width: 48px; height: 48px;
    display: grid; place-items: center;
    background: var(--blush-muted);
    border-radius: 50%;
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
}
.product h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    color: var(--charcoal);
}
.product p { color: var(--ink-muted); font-size: 0.9rem; }

/* About */
.about-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.about-copy h2 {
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    margin-bottom: 0.9rem;
    color: var(--charcoal);
}
.about-copy p { color: var(--ink-muted); margin-bottom: 0.8rem; }
.check-list { list-style: none; margin-top: 1.1rem; display: grid; gap: 0.6rem; }
.check-list li {
    position: relative;
    padding-left: 1.65rem;
    font-weight: 500;
    font-size: 0.93rem;
}
.check-list li::before {
    content: "•";
    position: absolute; left: 0;
    color: var(--blush);
    font-weight: 700;
    font-size: 1.1rem;
}
.about-info { display: grid; gap: 0.85rem; }
.info-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--blush);
    border-radius: var(--radius-lg);
    padding: 1.15rem 1.35rem;
}
.info-block h4 {
    font-family: var(--font);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blush);
    margin-bottom: 0.35rem;
    font-weight: 700;
}
.info-block p { font-weight: 500; font-size: 0.92rem; line-height: 1.55; }
.info-block a { color: var(--ink-soft); font-weight: 600; }
.info-block a:hover { color: var(--blush); }

/* Features */
.feature { position: relative; }
.feature-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--ivory-dark);
    line-height: 1;
    margin-bottom: 0.65rem;
}
.feature.featured {
    background: var(--charcoal);
    color: #fff;
    border-color: var(--charcoal);
}
.feature.featured .feature-num { color: rgba(196, 120, 106, 0.3); }
.feature.featured p { color: rgba(255,255,255,0.8); }
.feature.featured h3 { color: var(--blush-light); }
.feature h3 { font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--charcoal); }
.feature p { color: var(--ink-muted); font-size: 0.9rem; }

/* Categories strip */
.category { text-align: center; padding: 1.4rem; }
.category .icon-wrap { margin: 0 auto 0.85rem; }
.category h3 {
    font-size: 1rem;
    color: var(--charcoal);
}

/* Team */
.member { text-align: center; }
.avatar {
    width: 68px; height: 68px;
    border-radius: 50%;
    margin: 0 auto 0.9rem;
    display: grid; place-items: center;
    background: var(--charcoal);
    color: var(--blush-light);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--blush);
}
.member h3 { font-size: 1.02rem; font-family: var(--font); font-weight: 600; }
.member p { color: var(--ink-muted); font-size: 0.86rem; margin-top: 0.1rem; }

/* CTA */
.cta {
    background: linear-gradient(165deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
    color: #fff;
}
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.cta-copy h2 {
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    margin-top: 0.25rem;
}
.cta-copy p { color: rgba(255,255,255,0.72); margin-top: 0.7rem; }
.contact-info { list-style: none; margin-top: 1.5rem; display: grid; gap: 0.9rem; }
.contact-info li { font-size: 0.9rem; }
.contact-info strong {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.15rem;
    font-family: var(--font);
}
.contact-info a { color: var(--blush-light); font-weight: 500; }
.contact-info a:hover { color: #fff; }
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.85rem;
    display: grid;
    gap: 0.9rem;
    box-shadow: var(--shadow-lg);
}
.contact-form h3 {
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 0.15rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--ivory);
    resize: vertical;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--blush);
    box-shadow: 0 0 0 3px rgba(196, 120, 106, 0.12);
    background: var(--white);
}
.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.74rem;
    color: var(--ink-muted);
    line-height: 1.45;
    cursor: pointer;
}
.privacy-check input { margin-top: 2px; accent-color: var(--blush); }
.form-note { font-size: 0.84rem; color: var(--blush); text-align: center; min-height: 1.2rem; font-weight: 500; }

/* Footer & Legal */
.site-footer { background: var(--ivory); border-top: 1px solid var(--border); padding: 3rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 3rem; padding-bottom: 2.5rem; }
.footer-brand .brand { margin-bottom: 0.75rem; }
.footer-brand p { color: var(--ink-muted); max-width: 42ch; font-size: 0.88rem; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-cols h4 {
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.footer-cols a { display: block; color: var(--ink-muted); margin-bottom: 0.45rem; font-size: 0.86rem; }
.footer-cols a:hover { color: var(--blush); }

.legal-section {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    background: var(--white);
}
.legal-section.legal-alt { background: var(--ivory); }
.legal-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--ink);
}
.legal-note { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 1rem; }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; font-size: 0.9rem; line-height: 1.7; }
.legal-grid a { color: var(--blush); }
.legal-section p { color: var(--ink-muted); font-size: 0.88rem; max-width: 72ch; line-height: 1.7; }

.footer-bottom {
    display: flex; justify-content: space-between;
    border-top: 1px solid var(--border);
    padding: 1.25rem 0 1.5rem;
    font-size: 0.8rem; color: var(--ink-light);
}

@media (max-width: 900px) {
    .hero-inner, .about-inner, .cta-inner, .footer-inner, .legal-grid { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 76px; left: 0; right: 0;
        background: var(--white); padding: 1.25rem 5%;
        gap: 0.9rem; border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
    .top-bar-inner { justify-content: center; text-align: center; }
    .top-links { flex-direction: column; gap: 0.3rem; align-items: center; }
}

@media (max-width: 560px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; }
    .brand-name { font-size: 0.92rem; }
}
