/* ===== Raymond Store — Clean White & Navy Theme ===== */

:root {
    --brown: #4a2f23;
    --brown-dark: #2c1c13;
    --brown-light: #6f4a34;
    --gold: #b8823f;
    --white: #ffffff;
    --off-white: #faf5ee;
    --gray: #7a6f65;
    --border: #e9dfd2;
    --shadow: 0 10px 30px rgba(44, 28, 19, 0.1);
    --radius: 10px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #1f2937;
    background: var(--white);
    line-height: 1.7;
}

h1, h2, h3, h4, .logo-main {
    font-family: 'Playfair Display', serif;
    color: var(--brown);
    line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: .5px;
    transition: all .25s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary { background: var(--brown); color: var(--white); }
.btn-primary:hover { background: var(--brown-dark); transform: translateY(-2px); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--brown); }
.btn-outline-brown { border-color: var(--brown); color: var(--brown); }
.btn-outline-brown:hover { background: var(--brown); color: var(--white); }

/* ===== Top Bar ===== */
.top-bar {
    background: var(--brown-dark);
    color: #e6d9c8;
    font-size: 13px;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 24px;
}
.top-bar-contact { display: flex; gap: 26px; }
.top-bar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e6d9c8;
    transition: color .2s ease;
}
.top-bar-contact a:hover { color: var(--gold); }
.tb-icon { font-size: 13px; }

.top-bar-social { display: flex; gap: 10px; }
.top-bar-social a {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: #e6d9c8;
    transition: all .2s ease;
}
.top-bar-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--brown-dark); }

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}
.logo img { height: 64px; width: auto; display: block; }
.logo { display: flex; align-items: center; }


.main-nav { display: flex; gap: 36px; }
.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    position: relative;
    padding: 6px 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--brown); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--brown); }

/* ===== Hero ===== */
.hero {
    position: relative;
    background-color: var(--brown);
    color: var(--white);
    padding: 130px 24px;
    text-align: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44,28,19,.6);
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 18px;
}
.hero p {
    max-width: 620px;
    margin: 0 auto 32px;
    font-weight: 300;
    font-size: 17px;
    opacity: .9;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Section generic ===== */
section { padding: 90px 0; }
.section-off { background: var(--off-white); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 500;
}
.section-head h2 { font-size: 34px; margin: 10px 0 14px; }
.section-head p { color: var(--gray); }

/* ===== Feature / value grid ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .card-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}
.card .card-body { padding: 26px 24px 32px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 14.5px; }

.card.team-card .card-img {
    height: auto;
    width: 140px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    margin: 30px auto 0;
    box-shadow: var(--shadow);
}

/* ===== Collections ===== */
.collection-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 320px;
    background: var(--brown-light);
    background-size: cover;
    background-position: center;
    display: flex; align-items: flex-end;
    color: var(--white);
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.collection-card .overlay {
    position: relative;
    z-index: 2;
    padding: 26px;
    background: linear-gradient(to top, rgba(44,28,19,.9), transparent);
    width: 100%;
}
.collection-card h3 { color: var(--white); font-size: 21px; margin-bottom: 6px; }

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 3 / 4;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.collection-card p { color: #e6d9c8; font-size: 13.5px; }

/* ===== About split ===== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: 420px;
    object-fit: cover;
    background: var(--off-white);
}
.split h2 { font-size: 32px; margin-bottom: 16px; }
.split p { color: var(--gray); margin-bottom: 16px; }

.stats { display: flex; gap: 40px; margin-top: 28px; }
.stats div strong { display: block; font-size: 28px; color: var(--brown); font-family: 'Playfair Display', serif; }
.stats div span { font-size: 13px; color: var(--gray); }

/* ===== CTA band ===== */
.cta-band {
    background: var(--brown);
    color: var(--white);
    text-align: center;
    padding: 70px 24px;
}
.cta-band h2 { color: var(--white); font-size: 30px; margin-bottom: 14px; }
.cta-band p { opacity: .85; margin-bottom: 28px; }

/* ===== Testimonials ===== */
.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
}
.testimonial-card p { font-style: italic; color: #374151; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--brown); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 600;
}
.testimonial-author strong { display: block; font-size: 14.5px; }
.testimonial-author span { font-size: 12.5px; color: var(--gray); }

/* ===== Page header (inner pages) ===== */
.page-header {
    background: var(--brown);
    color: var(--white);
    padding: 70px 24px;
    text-align: center;
}
.page-header h1 { color: var(--white); font-size: 38px; }
.page-header p { color: #e6d9c8; margin-top: 10px; }
.breadcrumb { font-size: 13px; color: var(--gold); margin-bottom: 10px; letter-spacing: 1px; }

/* ===== Contact page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}
.contact-info-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}
.contact-info-card h4 { font-size: 15px; margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { color: var(--gray); font-size: 14.5px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 500; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14.5px;
    background: var(--off-white);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--brown); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-check label {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--gray);
    cursor: pointer;
}
.form-check input[type="checkbox"] {
    -webkit-appearance: checkbox;
    appearance: checkbox;
    width: 17px;
    height: 17px;
    min-width: 17px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    border-radius: 0;
    accent-color: var(--brown);
    cursor: pointer;
    flex-shrink: 0;
}
.form-check .consent-text { flex: 1; }
.form-check a { color: var(--brown); text-decoration: underline; }
.form-check a:hover { color: var(--gold); }

.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 320px;
    margin-top: 40px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14.5px;
}
.alert-success { background: #e7f6ec; color: #1a7f3c; border: 1px solid #b9e6c5; }
.alert-error { background: #fdecec; color: #b3261e; border: 1px solid #f5c2c0; }

/* ===== Legal pages ===== */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; margin: 34px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--gray); margin-bottom: 12px; font-size: 15px; }
.legal-content ul { padding-left: 22px; list-style: disc; }
.legal-content .updated { color: var(--gold); font-size: 13.5px; margin-bottom: 30px; display: block; }

/* ===== Footer ===== */
.site-footer { background: var(--brown-dark); color: #ddd0c2; padding-top: 70px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h3 { color: var(--white); font-size: 20px; margin-bottom: 14px; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 18px; }
.footer-col p { font-size: 14px; color: #b8a793; }
.footer-links li { margin-bottom: 10px; font-size: 14px; }
.footer-links a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    font-weight: 600;
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--brown-dark); }
.footer-bottom { text-align: center; padding: 22px 0; font-size: 13px; color: #9a8873; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .split { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .top-bar-contact a:nth-child(2) { display: none; }
    .top-bar-inner { padding: 8px 24px; }
    .main-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        display: none;
        gap: 18px;
    }
    .main-nav.open { display: flex; }
    .nav-toggle { display: flex; }
    .hero h1 { font-size: 32px; }
    .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .stats { gap: 24px; flex-wrap: wrap; }
}
