/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #2D2A26;
    background: #FAF6F1;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #B85642; color: #fff; padding: .5rem 1rem;
    border-radius: 0 0 6px 6px; z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
    font-size: .75rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: #B85642; margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700; color: #1A1714; margin-bottom: 1rem;
}
.section-sub {
    font-size: 1.05rem; color: #6B6560; max-width: 560px; line-height: 1.7;
}
.section-header--centered { text-align: center; }
.section-header--centered .section-sub { margin: 0 auto; }
.accent { color: #B85642; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .8rem 1.75rem; border-radius: 8px; font-weight: 600;
    font-size: .9375rem; transition: all .2s ease; white-space: nowrap;
}
.btn-primary {
    background: #B85642; color: #fff;
    border: 2px solid #B85642;
}
.btn-primary:hover { background: #9E4735; border-color: #9E4735; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184,86,66,.3); }
.btn-outline {
    background: transparent; color: #B85642;
    border: 2px solid #B85642;
}
.btn-outline:hover { background: #B85642; color: #fff; transform: translateY(-1px); }
.btn-sm { padding: .6rem 1.25rem; font-size: .875rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-map { margin-top: 1rem; }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250,246,241,.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184,86,66,.1);
    transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(45,42,38,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: .6rem; }
.logo-mark {
    width: 40px; height: 40px; border-radius: 8px;
    background: #B85642; color: #fff; font-family: 'Playfair Display', serif;
    font-weight: 800; font-size: 1.25rem;
    display: flex; align-items: center; justify-content: center;
}
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: #1A1714; }
.logo-text em { font-style: italic; font-weight: 600; color: #B85642; }

/* NAV */
.nav-list { display: flex; align-items: center; gap: .25rem; }
.nav-list a {
    padding: .5rem .875rem; border-radius: 6px; font-size: .9rem;
    font-weight: 500; color: #4A4540; transition: all .15s ease;
}
.nav-list a:hover { color: #B85642; background: rgba(184,86,66,.06); }

/* HAMBURGER */
.nav-toggle { display: none; width: 40px; height: 40px; position: relative; align-items: center; justify-content: center; }
.hamburger {
    position: relative; width: 20px; height: 14px;
}
.hamburger::before, .hamburger::after, .hamburger span {
    content: ''; position: absolute; left: 0; width: 100%; height: 2px;
    background: #2D2A26; border-radius: 2px; transition: all .25s ease;
}
.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); bottom: 6px; }

/* MOBILE NAV */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed; top: 72px; left: 0; right: 0;
        background: rgba(250,246,241,.98); backdrop-filter: blur(12px);
        flex-direction: column; padding: 1rem 1.5rem 1.5rem;
        border-bottom: 1px solid rgba(184,86,66,.1);
        transform: translateY(-120%); opacity: 0;
        transition: all .3s ease; pointer-events: none;
    }
    .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-list a { padding: .75rem 0; font-size: 1rem; width: 100%; }
    .nav-list .btn { margin-top: .5rem; text-align: center; justify-content: center; }
}

/* ===== HERO ===== */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #FAF6F1 0%, #F3E8DF 50%, #EBD5C8 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-eyebrow {
    font-size: .75rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: #B85642; margin-bottom: 1rem;
    display: flex; align-items: center; gap: .5rem;
}
.hero-eyebrow::before {
    content: ''; width: 24px; height: 2px; background: #B85642; border-radius: 2px;
}
.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800; color: #1A1714; line-height: 1.1;
    margin-bottom: 1.25rem;
}
.hero-sub {
    font-size: 1.05rem; color: #6B6560; line-height: 1.75;
    margin-bottom: 2rem; max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
    display: flex; align-items: center; gap: 0;
    background: rgba(255,255,255,.6); border-radius: 12px;
    padding: 1.25rem 1.5rem; backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.8);
}
.stat { display: flex; flex-direction: column; gap: .2rem; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: #1A1714; }
.stat-label { font-size: .8rem; color: #6B6560; }
.stat-divider {
    width: 1px; height: 36px; background: rgba(184,86,66,.2); margin: 0 1.25rem;
}

/* HERO IMAGE */
.hero-image { position: relative; }
.hero-img-wrapper {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(45,42,38,.15);
    aspect-ratio: 640/720;
}
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
    position: absolute; bottom: -1rem; left: -1.5rem;
    background: #fff; border-radius: 14px; padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: .875rem;
    box-shadow: 0 8px 32px rgba(45,42,38,.12);
    border: 1px solid rgba(184,86,66,.08);
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.float-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(184,86,66,.1); color: #B85642;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-float-card strong { display: block; font-size: .875rem; color: #1A1714; }
.hero-float-card span { font-size: .75rem; color: #6B6560; }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-image { order: -1; max-width: 480px; margin: 0 auto; }
    .hero-float-card { left: 0; bottom: -.75rem; }
    .hero { padding: 7rem 0 4rem; }
}
@media (max-width: 480px) {
    .hero-img-wrapper { border-radius: 14px; aspect-ratio: 4/5; }
    .hero-stats { flex-direction: column; gap: .75rem; align-items: flex-start; }
    .stat-divider { width: 36px; height: 1px; margin: 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: #1A1714; padding: 1.25rem 0;
}
.trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.trust-item {
    display: flex; align-items: center; gap: .625rem;
    color: rgba(255,255,255,.8); font-size: .875rem; font-weight: 500;
}
.trust-icon { color: #D4915B; flex-shrink: 0; }
@media (max-width: 600px) {
    .trust-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
    .trust-item { font-size: .8rem; }
}

/* ===== DEPARTMENTS ===== */
.departments { padding: 6rem 0; }
.departments .section-header { margin-bottom: 3rem; }
.dept-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.dept-card {
    display: block; border-radius: 16px; overflow: hidden;
    background: #fff; border: 1px solid rgba(184,86,66,.08);
    box-shadow: 0 2px 12px rgba(45,42,38,.04);
    transition: all .25s ease;
}
.dept-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(45,42,38,.1); border-color: rgba(184,86,66,.15); }
.dept-img { aspect-ratio: 4/3; overflow: hidden; }
.dept-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dept-card:hover .dept-img img { transform: scale(1.04); }
.dept-info { padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; }
.dept-icon {
    width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
    background: rgba(184,86,66,.08); color: #B85642;
    display: flex; align-items: center; justify-content: center;
}
.dept-info h3 { font-size: 1.1rem; font-weight: 700; color: #1A1714; margin-bottom: .375rem; }
.dept-info p { font-size: .875rem; color: #6B6560; line-height: 1.6; }
@media (max-width: 600px) {
    .dept-grid { grid-template-columns: 1fr; }
    .departments { padding: 4rem 0; }
}

/* ===== DEALS ===== */
.deals {
    padding: 6rem 0;
    background: linear-gradient(180deg, #FAF6F1 0%, #F3E8DF 100%);
}
.deals .section-header { margin-bottom: 3rem; }
.deals-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.deal-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(184,86,66,.08);
    box-shadow: 0 2px 12px rgba(45,42,38,.04);
    transition: all .25s ease; position: relative;
}
.deal-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(45,42,38,.1); }
.deal-badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 2;
    background: #B85642; color: #fff; font-size: .7rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase; padding: .3rem .75rem;
    border-radius: 20px;
}
.deal-img { aspect-ratio: 3/2; overflow: hidden; }
.deal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.deal-card:hover .deal-img img { transform: scale(1.04); }
.deal-body { padding: 1.5rem; }
.deal-body h3 { font-size: 1.1rem; font-weight: 700; color: #1A1714; margin-bottom: .375rem; }
.deal-body p { font-size: .875rem; color: #6B6560; line-height: 1.6; margin-bottom: .75rem; }
.deal-tag {
    display: inline-block; font-size: .75rem; font-weight: 600;
    color: #B85642; background: rgba(184,86,66,.08); padding: .25rem .625rem;
    border-radius: 20px;
}
@media (max-width: 900px) {
    .deals-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .deals-grid { grid-template-columns: 1fr; }
    .deals { padding: 4rem 0; }
}

/* ===== ABOUT ===== */
.about { padding: 6rem 0; }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 56px rgba(45,42,38,.12);
    aspect-ratio: 520/600;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute; bottom: -2rem; right: -1rem;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 12px 40px rgba(45,42,38,.15);
    border: 4px solid #FAF6F1;
    aspect-ratio: 360/280; width: 55%;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
    position: absolute; top: -1.5rem; right: 2rem;
    width: 80px; height: 80px; border-radius: 16px;
    background: #B85642; opacity: .12; z-index: -1;
}
.about-content .section-header { margin-bottom: 1.5rem; }
.about-content > p {
    font-size: 1rem; color: #6B6560; line-height: 1.75; margin-bottom: 1rem;
}
.about-values { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.value-item { display: flex; gap: 1rem; }
.value-num {
    font-family: 'Playfair Display', serif; font-size: 1.5rem;
    font-weight: 800; color: rgba(184,86,66,.2); line-height: 1; flex-shrink: 0;
}
.value-item h4 { font-size: 1rem; font-weight: 700; color: #1A1714; margin-bottom: .25rem; }
.value-item p { font-size: .875rem; color: #6B6560; line-height: 1.6; }
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { max-width: 480px; }
    .about { padding: 4rem 0; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 6rem 0;
    background: #1A1714;
}
.testimonials .section-eyebrow { color: #D4915B; }
.testimonials .section-title { color: #fff; }
.testimonials .section-title .accent { color: #D4915B; }
.testimonial-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.testimonial-card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px; padding: 2rem; transition: all .25s ease;
}
.testimonial-card:hover { background: rgba(255,255,255,.08); border-color: rgba(212,145,91,.2); transform: translateY(-2px); }
.quote-mark { color: #D4915B; opacity: .4; margin-bottom: 1rem; }
.testimonial-card > p {
    font-size: .9375rem; color: rgba(255,255,255,.75); line-height: 1.75;
    margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(184,86,66,.3); color: #D4915B;
    font-size: .8rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .875rem; color: #fff; }
.testimonial-author span { font-size: .75rem; color: rgba(255,255,255,.45); }
@media (max-width: 768px) {
    .testimonial-grid { grid-template-columns: 1fr; }
    .testimonials { padding: 4rem 0; }
}

/* ===== VISIT ===== */
.visit { padding: 6rem 0; }
.visit-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.visit-desc { font-size: 1rem; color: #6B6560; line-height: 1.75; margin-bottom: 2rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item dt {
    display: flex; align-items: center; gap: .625rem;
    font-size: .8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .06em; color: #B85642; margin-bottom: .25rem;
}
.contact-icon { color: #B85642; }
.contact-item dd { font-size: 1rem; color: #2D2A26; }
.contact-item a { color: #2D2A26; text-decoration: none; transition: color .15s; }
.contact-item a:hover { color: #B85642; }
.visit-map {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 12px 40px rgba(45,42,38,.1);
    border: 1px solid rgba(184,86,66,.08);
}
.map-placeholder {
    background: linear-gradient(135deg, #EBD5C8 0%, #D4B8A8 100%);
    aspect-ratio: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    padding: 2rem; gap: .5rem;
}
.map-icon { color: #B85642; opacity: .5; margin-bottom: .5rem; }
.map-placeholder p { font-size: 1rem; font-weight: 600; color: #1A1714; }
.map-placeholder .btn { margin-top: 0; }
@media (max-width: 900px) {
    .visit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .visit { padding: 4rem 0; }
}

/* ===== CONTACT ===== */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F3E8DF 0%, #EBD5C8 100%);
}
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.contact-desc { font-size: 1rem; color: #6B6560; line-height: 1.75; margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: .75rem; }
.contact-methods li {
    display: flex; align-items: center; gap: .75rem;
    font-size: .9375rem; color: #2D2A26;
}
.contact-methods a { color: #B85642; font-weight: 600; transition: color .15s; }
.contact-methods a:hover { color: #9E4735; }
.contact-methods svg { color: #B85642; flex-shrink: 0; }

/* FORM */
.contact-form {
    background: #fff; border-radius: 20px; padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(45,42,38,.08);
    border: 1px solid rgba(184,86,66,.06);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block; font-size: .8125rem; font-weight: 600;
    color: #2D2A26; margin-bottom: .375rem; letter-spacing: .02em;
}
.form-group input, .form-group textarea {
    width: 100%; padding: .75rem 1rem; border: 1.5px solid #E8E0D8;
    border-radius: 8px; font-size: .9375rem; font-family: inherit;
    color: #2D2A26; background: #FAF6F1; transition: all .15s ease;
    outline: none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: #B85642; background: #fff;
    box-shadow: 0 0 0 3px rgba(184,86,66,.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #B8B0A6; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .75rem; color: #B8B0A6; text-align: center; margin-top: .75rem; }
.form-success {
    display: flex; align-items: center; gap: .625rem;
    margin-top: 1rem; padding: .875rem 1rem; border-radius: 8px;
    background: rgba(34,197,94,.08); color: #16A34A;
    font-size: .875rem; font-weight: 500;
}
.form-success svg { flex-shrink: 0; }
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact { padding: 4rem 0; }
}

/* ===== FOOTER ===== */
.site-footer { background: #1A1714; color: rgba(255,255,255,.6); padding: 4rem 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem;
    padding-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-nav h4, .footer-contact h4 {
    font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4);
    margin-bottom: 1rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a { font-size: .9rem; transition: color .15s; }
.footer-nav a:hover { color: #D4915B; }
.footer-contact address { font-style: normal; font-size: .875rem; line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,.6); transition: color .15s; }
.footer-contact a:hover { color: #D4915B; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.25rem 0;
}
.footer-bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    font-size: .8rem; color: rgba(255,255,255,.35);
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner { flex-direction: column; gap: .25rem; text-align: center; }
}
