/* Brand Colors */
:root {
    --primary: #081f2c; /* Deep Blue Header/Footer */
    --accent: #b96d4a;  /* Copper Primary */
    --accent-light: #e09a78; /* Copper Light */
    --bg-warm: #f3e1de;  /* Soft Warm Pink */
    --text-dark: #252834;
    --text-light: #ffffff;
    --text-muted: #a7a9ab;
    --border: #dfd2d0;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
}

.cormorant {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

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

/* Header */
header {
    background: var(--primary);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrap { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.logo-monogram { height: 45px; }
.logo-text { color: white; text-transform: uppercase; letter-spacing: 0.2em; font-size: 20px; font-family: 'Playfair Display'; }

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-left: 25px;
    transition: color 0.3s;
}

nav a:hover, nav a.active { color: var(--accent-light); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-light);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 30px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* Sections */
section { padding: 100px 0; }
.bg-warm { background-color: var(--bg-warm); }
.bg-dark { background-color: var(--primary); color: white; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Components */
.client-strip { background: white; padding: 40px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; text-align: center; }
.client-grid { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; opacity: 0.6; filter: grayscale(1); }
.client-grid img { height: 25px; }

.testimonial-card { text-align: center; max-width: 800px; margin: 0 auto; }
.testimonial-text { font-family: 'Cormorant Garamond'; font-size: 28px; font-style: italic; margin-bottom: 30px; line-height: 1.4; }
.testimonial-cite { text-transform: uppercase; letter-spacing: 0.1em; font-size: 14px; color: var(--accent); font-weight: 700; }

/* Footer */
footer { background: var(--primary); padding: 80px 0; color: white; text-align: center; }
.footer-logo { font-size: 24px; margin-bottom: 40px; color: var(--accent-light); display: block; text-decoration: none; text-transform: uppercase; letter-spacing: 0.2em; }
.footer-nav { margin-bottom: 40px; }
.footer-nav a { color: var(--text-muted); margin: 0 15px; text-decoration: none; font-size: 13px; text-transform: uppercase; }
.socials a { margin: 0 10px; color: white; opacity: 0.7; font-size: 20px; text-decoration: none; }

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; text-align: center; }
    header .container { flex-direction: column; gap: 20px; }
    nav a { margin: 0 10px; }
}
