:root {
    --cream: #faf7f2;
    --cream-dark: #f0ebe0;
    --white: #ffffff;
    --gold: #b8944b;
    --gold-dark: #9a7b3a;
    --gold-light: #d4b76a;
    --gold-grad: linear-gradient(135deg, #b8944b 0%, #d4b76a 50%, #b8944b 100%);
    --text: #2c2416;
    --text-light: #6b5e4a;
    --text-muted: #9e907a;
    --border: #e0d8c8;
    --border-light: #ede6d9;
    --shadow-sm: 0 2px 8px rgba(44,36,22,0.06);
    --shadow-md: 0 8px 30px rgba(44,36,22,0.10);
    --shadow-lg: 0 20px 60px rgba(44,36,22,0.12);
    --shadow-gold: 0 4px 20px rgba(184,148,75,0.25);
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lato', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.75;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.01em; line-height: 1.25; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--text); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--text); }
h3 { font-size: 1.3rem; color: var(--text); }
.accent-text { color: var(--gold); }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

/* TOPBAR */
.topbar { background: var(--text); color: var(--white); font-size: 0.8rem; padding: 0.6rem 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 1.5rem; }
.topbar a { color: rgba(255,255,255,0.8); text-decoration: none; transition: var(--transition); }
.topbar a:hover { color: var(--gold-light); }

/* HEADER */
.header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; }
.logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.logo-crest { font-size: 2.2rem; color: var(--gold); line-height: 1; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-heading); font-size: 1.4rem; color: var(--text); font-weight: 700; letter-spacing: 0.02em; }
.logo-accent { color: var(--gold); }
.logo-tagline { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.2em; font-family: var(--font-body); font-weight: 400; }

.nav-links { display: flex; list-style: none; gap: 2.2rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.88rem; transition: var(--transition); letter-spacing: 0.04em; text-transform: uppercase; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.btn-nav { background: var(--gold-grad); color: var(--white) !important; padding: 0.6rem 1.5rem; border-radius: 3px; font-weight: 600 !important; box-shadow: var(--shadow-gold); letter-spacing: 0.06em; }
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 25px rgba(184,148,75,0.35); color: var(--white) !important; }
.btn-nav::after { display: none !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 28px; height: 2px; background: var(--text); margin: 6px 0; transition: var(--transition); border-radius: 1px; }

/* HERO */
.hero { background: var(--text); color: var(--white); padding: 6rem 0 5rem; position: relative; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(160deg, #2c2416 0%, #3d3422 50%, #1a150d 100%); }
.hero-content { position: relative; z-index: 2; max-width: 750px; }
.hero-overline { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.75rem; color: var(--gold-light); margin-bottom: 1.2rem; font-weight: 600; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-separator { margin: 1.5rem 0; }
.hero-separator span { display: block; width: 60px; height: 2px; background: var(--gold); }
.hero-subtitle { font-size: 1.08rem; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; line-height: 1.8; }
.hero-subtitle strong { color: var(--white); }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* PAGE HERO */
.page-hero { background: var(--text); color: var(--white); padding: 4rem 0; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero .hero-overline { color: var(--gold-light); }
.breadcrumb { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 0.8rem; }
.breadcrumb a { color: var(--gold-light); text-decoration: none; }

/* BUTTONS */
.btn-primary {
    background: var(--gold-grad);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.06em;
    display: inline-block;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,148,75,0.4); }

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.06em;
    display: inline-block;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.4);
    font-size: 0.9rem;
    text-transform: uppercase;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* SECTION */
.section { padding: 5rem 0; }
.section-alt { padding: 5rem 0; background: var(--white); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-desc { max-width: 500px; margin: 1rem auto 0; color: var(--text-light); }
.section-subheader { text-align: center; margin-bottom: 2.5rem; }
.overline { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--gold); font-weight: 600; margin-bottom: 0.6rem; }
.section-separator { margin: 1rem auto; text-align: center; }
.section-separator span { display: inline-block; width: 50px; height: 2px; background: var(--gold); }
.section-separator.light span { background: rgba(255,255,255,0.3); }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 2rem; }
.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.card-icon { font-size: 2.5rem; margin-bottom: 1.2rem; display: block; }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { color: var(--text-light); line-height: 1.7; }
.card-link { display: inline-block; margin-top: 1rem; color: var(--gold-dark); text-decoration: none; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; transition: var(--transition); }
.card-link:hover { color: var(--gold); }

/* SERVICES DETAIL */
.services-detail-grid { display: flex; flex-direction: column; gap: 2rem; }
.service-detail { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; background: var(--white); border: 1px solid var(--border-light); border-radius: 4px; padding: 2.5rem; transition: var(--transition); box-shadow: var(--shadow-sm); }
.service-detail:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.service-detail-icon { font-size: 2.5rem; text-align: center; }
.service-detail-text h3 { margin-bottom: 0.8rem; }
.service-detail-text p { color: var(--text-light); margin-bottom: 0.6rem; }
.service-intro { font-style: italic; color: var(--text) !important; border-left: 3px solid var(--gold); padding-left: 1rem; margin-bottom: 1rem !important; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.value-card { text-align: center; padding: 2rem; background: var(--white); border: 1px solid var(--border-light); border-radius: 4px; transition: var(--transition); box-shadow: var(--shadow-sm); }
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.value-number { font-family: var(--font-heading); font-size: 3rem; color: var(--gold); display: block; margin-bottom: 0.5rem; opacity: 0.6; }
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { color: var(--text-light); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3.5rem; align-items: start; }
.about-main h2 { margin-bottom: 1.5rem; }
.about-main h3 { margin: 1.8rem 0 0.8rem; color: var(--gold-dark); }
.about-main p { margin-bottom: 1rem; color: var(--text-light); line-height: 1.8; }
.highlight-box { background: #fdfaf3; border-left: 4px solid var(--gold); padding: 1.5rem; margin-bottom: 1.5rem; border-radius: 0 4px 4px 0; }
.mission-quote { font-family: var(--font-heading); font-style: italic; font-size: 1.3rem; color: var(--gold-dark); border-left: 3px solid var(--gold); padding-left: 1.5rem; margin: 2rem 0; line-height: 1.5; }
.about-list { list-style: none; padding: 0; }
.about-list li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; color: var(--text-light); }
.about-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.about-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: var(--white); border: 1px solid var(--border-light); border-radius: 4px; padding: 1.5rem; box-shadow: var(--shadow-sm); }
.sidebar-card h4 { margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--gold); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }
.sidebar-card a { color: var(--gold-dark); text-decoration: none; font-weight: 500; }
.badge-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.5rem 0; font-size: 0.9rem; color: var(--text-light); }
.badge-icon { color: var(--gold); font-size: 1.2rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; }
.contact-info { background: var(--white); padding: 2.5rem; border-radius: 4px; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.contact-info h3 { margin-bottom: 1rem; font-size: 1.5rem; }
.contact-card { display: flex; gap: 1rem; margin-bottom: 1.5rem; padding: 1.2rem; background: var(--cream); border-radius: 4px; }
.contact-card-icon { width: 40px; height: 40px; background: var(--gold-grad); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; flex-shrink: 0; }
.contact-card-label { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-dark); margin-bottom: 0.2rem; }
.contact-card a { color: var(--text); text-decoration: none; font-weight: 600; font-size: 1.05rem; transition: var(--transition); }
.contact-card a:hover { color: var(--gold); }
.contact-card p { font-size: 0.8rem; color: var(--text-muted); }
.contact-crest { text-align: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }
.contact-crest span { font-size: 2rem; color: var(--gold); }
.contact-crest p { font-size: 0.85rem; color: var(--text-light); margin-top: 0.5rem; }

/* FORM */
.contact-form-wrapper { background: var(--white); padding: 2.5rem; border-radius: 4px; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.contact-form-wrapper h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; margin-bottom: 0.3rem; font-weight: 600; font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.form-input, select.form-input, textarea.form-input { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--border); border-radius: 3px; font-family: var(--font-body); font-size: 0.95rem; transition: var(--transition); background: var(--cream); color: var(--text); }
.form-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,148,75,0.1); background: var(--white); }
textarea.form-input { resize: vertical; min-height: 130px; }
.form-success, .form-error { padding: 1rem; border-radius: 4px; margin-top: 1rem; display: none; font-size: 0.9rem; }
.form-success { background: #f2f7f0; color: #3a6b35; border: 1px solid #c8e0c2; display: block; }
.form-error { background: #fdf5f5; color: #a53b3b; border: 1px solid #f0c8c8; display: block; }

/* CTA */
.cta-section { background: var(--text); color: var(--white); padding: 5rem 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

/* FOOTER */
.footer { background: #1a150d; color: rgba(255,255,255,0.65); padding: 4rem 0 2rem; font-size: 0.88rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand .footer-logo { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); margin-bottom: 0.5rem; }
.footer-brand .footer-logo span { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.8rem; line-height: 1.6; }
.footer h4 { color: var(--white); margin-bottom: 1rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; }
.footer a { color: rgba(255,255,255,0.55); text-decoration: none; display: block; margin-bottom: 0.5rem; transition: var(--transition); }
.footer a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; text-align: center; color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--white); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 999; }
    .nav-links.active { display: flex; }
    .hamburger { display: block; z-index: 1001; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .service-detail { grid-template-columns: 1fr; text-align: center; }
    .service-detail-icon { margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero { padding: 4rem 0 3rem; }
    .section { padding: 3rem 0; }
    .topbar-left { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }
    .hero-buttons { flex-direction: column; }
    .services-grid, .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}