/* --- Variables & Reset --- */
:root {
    --navy: #1A365D;
    --copper: #B45309;
    --stone: #F2F4F7; /* Not white background */
    --text-dark: #2D3748;
    --text-light: #F7FAFC;
    --panel-bg: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    background-color: var(--stone);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation --- */
header {
    background: var(--panel-bg);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px; /* Adjust based on logo file */
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--copper);
}

/* --- Hero Section --- */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(242, 244, 247, 0.8), rgba(242, 244, 247, 0.8)), url('your-scenic-bg.jpg'); /* Optional background image */
    background-size: cover;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--copper);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.2s;
}

.btn-secondary {
    border: 2px solid var(--copper);
    color: var(--copper);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
}

/* --- Panels --- */
.panel {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 50px auto;
    text-align: center;
}

.panel.dark {
    background-color: var(--navy);
    color: white;
}

.panel.dark h2 {
    color: var(--stone);
}

/* --- Services --- */
.section-title {
    text-align: center;
    color: var(--navy);
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-top: 5px solid var(--copper);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
}

/* --- Footer & Contact Card --- */
footer {
    background: #E2E8F0;
    padding: 60px 0 20px;
}

.contact-card {
    background: white;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card-header {
    background: var(--navy);
    color: white;
    padding: 20px;
    text-align: center;
}

.card-body {
    padding: 30px;
}

.card-body p {
    margin-bottom: 10px;
}

.tagline {
    font-style: italic;
    font-size: 0.9rem;
    color: #CBD5E0;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8rem;
    color: #718096;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplified for mobile start */
    .hero h1 { font-size: 1.8rem; }
}

/* Add these to your existing style.css */

.mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-dark);
}

.service-card .tagline {
    font-weight: 700;
    color: var(--copper);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left; /* Concierge feel often looks better left-aligned */
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--navy);
}

.service-card:hover .card-accent {
    background: var(--copper); /* Subtle interactive feel */
}