@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&display=swap');

:root {
  --primary: #1a1a1a;
  --bg-color: #fcfcfc;
  --surface: #ffffff;
  --accent: #b5a38b; /* elegant muted gold/taupe */
  --text-main: #333333;
  --text-light: #666666;
  --font-family: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-family); background: var(--bg-color); color: var(--text-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* Header */
header { position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(5px); border-bottom: 1px solid #eee; transition: all 0.3s ease; }
header nav { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 8px;}
.logo svg { width: 28px; height: 28px; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-weight: 500; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* Hero */
.hero { height: 100vh; background-size: cover; background-position: center; display: flex; align-items: center; color: #fff; position: relative; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)); }
.hero .container { position: relative; z-index: 1; text-align: center; }
.hero h1 { font-size: 4rem; margin-bottom: 1rem; font-weight: 300; }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem; opacity: 0.9; }
.btn { display: inline-block; padding: 12px 32px; background: var(--accent); color: #fff; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; border: none; cursor: pointer; transition: background 0.3s ease; }
.btn:hover { background: #9c8b74; }
.btn-outline { background: transparent; border: 1px solid #fff; }
.btn-outline:hover { background: #fff; color: var(--primary); }

/* Section Title */
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-size: 2.5rem; font-weight: 400; color: var(--primary); margin-bottom: 1rem;}
.section-title p { color: var(--text-light); max-width: 500px; margin: 0 auto;}

/* Services */
.services { padding: 6rem 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { background: var(--surface); padding: 2rem; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s; text-align: center; }
.service-card:hover { transform: translateY(-5px); }
.service-img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--primary); }

/* Testimonials */
.testimonials { padding: 6rem 0; background: #f5f5f5; }
.testimony-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimony { background: var(--surface); padding: 3rem 2rem; position: relative; border-radius: 4px; }
.testimony p { font-style: italic; color: var(--text-light); margin-bottom: 1.5rem; }
.testimony .author { font-weight: 500; color: var(--primary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px;}
.quote-icon { position: absolute; top: 1rem; right: 1.5rem; font-size: 3rem; color: var(--accent); opacity: 0.2; }

/* Contact Form */
.contact-section { padding: 6rem 0; display: flex; flex-wrap: wrap; gap: 4rem; }
.contact-info { flex: 1; min-width: 300px; }
.contact-info h3 { font-size: 2rem; font-weight: 300; margin-bottom: 1rem; }
.contact-info p { color: var(--text-light); margin-bottom: 2rem; }
.contact-details { margin-bottom: 2rem; }
.contact-details strong { display: block; color: var(--primary); margin-top: 1rem; }
.contact-form { flex: 1; min-width: 300px; background: var(--surface); padding: 3rem; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border-radius: 4px;}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--primary); }
.form-control { width: 100%; padding: 12px; border: 1px solid #ddd; background: transparent; font-family: inherit; font-size: 1rem; outline: none; transition: border-color 0.3s; border-radius: 4px;}
.form-control:focus { border-color: var(--accent); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* Footer */
footer { background: var(--primary); color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem;}
.footer-col h4 { margin-bottom: 1.5rem; font-weight: 400; letter-spacing: 1px; color: var(--accent); }
.footer-col p { color: #aaa; font-size: 0.9rem; line-height: 1.8; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { color: #aaa; transition: color 0.3s; }
.footer-col a:hover { color: #fff; }
.subscribe-form { display: flex; margin-top: 1rem; }
.subscribe-form input { flex: 1; padding: 10px 15px; border: none; outline: none; border-radius: 4px 0 0 4px;}
.subscribe-form button { padding: 10px 20px; background: var(--accent); color: #fff; border: none; cursor: pointer; transition: background 0.3s; border-radius: 0 4px 4px 0;}
.subscribe-form button:hover { background: #9c8b74; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; color: #777; font-size: 0.9rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;}
.footer-bottom .links a { margin-left: 1rem; color: #777; }
.footer-bottom .links a:hover { color: #fff; }

/* Form Messages */
.form-msg { padding: 10px; margin-top: 10px; border-radius: 4px; display: none; font-size: 0.9rem; }
.form-msg.success { display: block; background: #e6f4ea; color: #1e8e3e; }
.form-msg.error { display: block; background: #fce8e6; color: #d93025; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .hero { padding-top: 80px; }
  .contact-section { flex-direction: column; }
}

/* Page Headers */
.page-header { background: var(--primary); padding: 8rem 0 4rem; text-align: center; color: #fff; }
.page-header h1 { font-size: 3rem; font-weight: 300; }
.page-content { padding: 4rem 0; }
.legal-content h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; color: var(--primary); }
.legal-content p { margin-bottom: 1rem; color: var(--text-light); }
