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

:root {
    --primary: #c9773a;
    --primary-light: #fc8040;
    --secondary: #8b6f4c;
    --navy: #1a1a2e;
    --dark: #2d2d2d;
    --text: #4a4a4a;
    --text-light: #888;
    --bg-warm: #f8f6f3;
    --bg-light: #f0eeea;
    --white: #fff;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.1);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', 'Open Sans', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

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

.row { display: flex; flex-wrap: wrap; margin: 0 -16px; }
.col-md-4, .col-md-6, .col-md-8, .col-md-12 { padding: 0 16px; flex: 0 0 100%; }

@media (min-width: 768px) {
    .col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-8 { flex: 0 0 66.666%; max-width: 66.666%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

a { color: var(--primary); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--primary-light); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--navy);
    line-height: 1.25;
    font-weight: 600;
}
h1 { font-size: 44px; }
h2 { font-size: 36px; margin-bottom: 20px; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }
p { margin-bottom: 16px; color: var(--text); }
img { max-width: 100%; height: auto; display: block; }

.section { padding: 80px 0; }
.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark p { color: var(--white); }

.section-label {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 12px;
}

.text-center { text-align: center; }

/* ===== HEADER ===== */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
}
.header-wrapper.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

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

#header .logo { flex-shrink: 0; }
#header .logo img { height: 44px; width: auto; }

#header .header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Navigation */
#main-menu .main-menu {
    list-style: none;
    display: flex;
    gap: 4px;
}
#main-menu .main-menu li a {
    display: block;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    border-radius: 8px;
    transition: all 0.3s;
}
#main-menu .main-menu li a:hover {
    background: var(--bg-warm);
    color: var(--primary);
}
#main-menu .main-menu li.active a {
    background: var(--bg-warm);
    color: var(--primary);
    font-weight: 600;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    width: 28px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Header CTA */
.header-cta {
    display: inline-block;
    padding: 9px 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    border-radius: 50px;
    transition: all 0.3s;
}
.header-cta:hover { background: var(--primary-light); color: var(--white); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    margin-top: 72px;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.75) 0%, rgba(26,26,46,0.3) 100%);
}
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
}
.hero-content-inner { max-width: 700px; animation: fadeUp 1s ease-out; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-content-inner h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
}
.hero-content-inner p {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.6;
}
.hero-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    border-radius: 50px;
    transition: all 0.3s;
}
.hero-btn:hover { background: var(--primary-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,119,58,0.3); }

@media (max-width: 768px) {
    .hero { height: 70vh; min-height: 400px; }
    .hero-content-inner h1 { font-size: 32px; }
    .hero-content-inner p { font-size: 16px; }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--navy);
    padding: 120px 0 60px;
    text-align: center;
}
.page-header h1 { color: var(--white); font-size: 42px; }
.page-header p { color: rgba(255,255,255,0.7); }

/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card-icon { margin-bottom: 20px; }
.card-icon img { width: 48px; height: auto; }
.card h3 { font-size: 22px; margin-bottom: 12px; }
.card p { font-size: 15px; line-height: 1.7; color: var(--text-light); }
.card-link { display: inline-block; margin-top: 12px; font-weight: 600; font-size: 14px; }

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

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ===== BLOG / NEWS ===== */
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    max-width: 600px;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card img { width: 100%; height: 240px; object-fit: cover; }
.blog-body { padding: 28px; }
.blog-body .date { font-size: 13px; color: var(--text-light); margin-bottom: 8px; }
.blog-body h3 { font-size: 20px; margin-bottom: 10px; }
.blog-body h3 a { color: var(--navy); }
.blog-body h3 a:hover { color: var(--primary); }
.blog-body p { font-size: 14px; color: var(--text-light); margin-bottom: 12px; }

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.team-card img { width: 100%; height: 280px; object-fit: cover; }
.team-info { padding: 24px; }
.team-info h4 { font-size: 18px; margin-bottom: 4px; }
.team-info .role { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 12px; }
.team-info p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-card img { height: 220px; }
}

/* ===== SERVICES / WHAT WE DO ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-card .icon { margin-bottom: 24px; }
.service-card .icon img { width: 56px; height: auto; }
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

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

/* ===== MISSION / VISION ===== */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.mv-box {
    padding: 40px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
}
.mv-box h3 { font-size: 24px; margin-bottom: 16px; }
.mv-box p { font-size: 16px; color: var(--text-light); line-height: 1.7; }

@media (max-width: 768px) {
    .mv-grid { grid-template-columns: 1fr; }
    .mv-box { padding: 28px; }
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info-box {
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.contact-info-box h3 { font-size: 24px; margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item .icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--bg-warm);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}
.contact-item .label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); margin-bottom: 2px; }
.contact-item .value { font-size: 16px; color: var(--dark); }
.map-container { border-radius: 16px; overflow: hidden; min-height: 400px; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-box { padding: 28px; }
    .map-container { min-height: 280px; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover { background: var(--primary-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,119,58,0.25); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); color: var(--white); transform: translateY(-2px); }

/* ===== BLOCKQUOTE ===== */
blockquote {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    padding: 24px 32px;
    margin: 24px 0;
    background: var(--bg-warm);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    font-style: italic;
}

/* ===== SEPARATOR ===== */
.sep { border: 0; height: 1px; background: rgba(0,0,0,0.08); margin: 0; }

/* ===== FOOTER ===== */
#footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
#footer .widget-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 24px;
}
#footer p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; }
#footer a { color: rgba(255,255,255,0.6); }
#footer a:hover { color: var(--primary-light); }
#footer .footer-logo { max-width: 120px; margin-bottom: 20px; }
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { font-size: 15px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 15px; }
.footer-contact-item i { color: var(--primary); width: 18px; margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; }

@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; text-align: center; }
    .section { padding: 60px 0; }
    #header .header-inner { height: 60px; }
    .hero { margin-top: 60px; }
    .page-header { padding: 100px 0 40px; }
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
}

/* ===== RESPONSIVE NAV ===== */
@media (max-width: 991px) {
    .mobile-toggle { display: flex; }
    #header .header-inner { position: static; }
    #main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid rgba(0,0,0,0.06);
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        padding: 12px 0;
    }
    #main-menu.open { display: block; }
    #main-menu .main-menu { flex-direction: column; gap: 2px; }
    #main-menu .main-menu li a { padding: 12px 24px; font-size: 16px; }
    .header-cta { display: none; }
}

@media (max-width: 768px) {
    .hero { margin-top: 60px; }
}
