/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fcfdfd;
    /* Body text uses Lato (clean sans-serif) */
    font-family: 'Lato', sans-serif; 
    font-size: 1.15rem; 
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

hr {
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 1.5rem 0;
}

/* Typography Hierarchy */
h1 {
    /* H1 strictly uses Playfair Display */
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

h2, h3 {
    /* H2 and H3 use Montserrat */
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: 0.5px;
}

h2 {
    margin-bottom: 1rem;
}

h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #444;
}

/* Navigation */
header {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0; /* Reduced nav padding slightly */
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #5e7264;
}

/* Hero Section */
.hero {
    background-color: #efece4;
    padding: 4rem 0; /* Reduced from 6rem */
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    max-width: 800px;
    margin: 0 auto 1rem auto;
    line-height: 1.2;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    background: #5e7264;
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn:hover {
    background: #4a5c50;
}

/* Layout for Content Sections */
.section-padding {
    padding: 2.5rem 0; /* Reduced from 4rem */
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.profile-img {
    flex: 1;
    min-width: 250px;
}

.profile-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.text-content {
    flex: 2;
    min-width: 300px;
}

/* Blockquote Section */
.quote-section {
    background-color: #5e7264;
    color: #ffffff;
    text-align: center;
    padding: 2.5rem 0; /* Reduced from 4rem */
}

.quote-section blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 1rem auto;
    line-height: 1.4;
}

.quote-section footer {
    font-family: 'Montserrat', sans-serif;
    background-color: #5e7264;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0rem;
    color: #e0e0e0;
}

.quote-section p {
    color: #ffffff;
    font-size: 0rem;
    margin-top: 0rem;
}

/* Lists and Boxes */
.service-list, .schedule-list {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.service-list li, .schedule-list li {
    margin-bottom: 0.5rem;
    color: #444;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: "•";
    color: #5e7264;
    font-weight: bold;
    display: inline-block;
    width: 1.5rem;
    margin-left: -1.5rem;
}

.rates-box {
    background: #f4f7f6;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid #5e7264;
}

.rates-box p {
    margin-bottom: 0.5rem;
}

.rates-box .service-list {
    margin-top: 0.5rem;
}

/* Contact & Footer */
.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #5e7264;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

footer {
    background: #5e7264;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

footer p {
    font-family: 'Montserrat', sans-serif;
    color: #ccc;
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}