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

:root {
    /* Typography System */
    --font-heading: "Baskerville", "Baskerville Old Face", "Hoefler Text", "Garamond", "Times New Roman", serif;
    --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --weight-heading: 600;
    --weight-heading-light: 500;
    --weight-body: 400;
    --weight-body-medium: 500;
    --line-height-heading: 1.2;
    --line-height-body: 1.65;
    
    /* Color System */
    --primary-color: #1a1a2e;
    --secondary-color: #b8986a;
    --accent-color: #8b7355;
    --accent-light: #d4c5b0;
    --text-dark: #111827;
    --text-muted: #475569;
    --text-hero-subhead: #3d4451;
    --text-light: #ffffff;
    
    /* Quiet Luxury Tokens */
    --watermark-opacity: 0.03;
    --watermark-opacity-mobile: 0.015;
    --btn-padding-vertical: 1.125rem;
    --btn-padding-horizontal: 2.75rem;
    --btn-letter-spacing: 0.04em;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-cream: #f5f0eb;
    --bg-beige: #e8dfd6;
    --bg-warm: #f7f3ef;
    --border-color: #e5e7eb;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-body);
    line-height: var(--line-height-body);
    color: var(--text-dark);
    overflow-x: hidden;
    letter-spacing: 0;
    font-weight: var(--weight-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--weight-heading);
    line-height: var(--line-height-heading);
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
    font-weight: var(--weight-heading);
    letter-spacing: -0.01em;
}

.tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: var(--weight-body-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: var(--weight-body-medium);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.01em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 75vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-beige) 50%, var(--bg-warm) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    overflow: hidden;
}



.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: var(--weight-heading);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-hero-subhead);
    font-family: var(--font-body);
    font-weight: var(--weight-body-medium);
    letter-spacing: -0.005em;
    line-height: 1.65;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--btn-padding-vertical) var(--btn-padding-horizontal);
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
    font-weight: var(--weight-body-medium);
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    letter-spacing: var(--btn-letter-spacing);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--primary-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    border-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-submit {
    background: var(--primary-color);
    color: var(--text-light);
    width: 100%;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

/* About Section */
.about-section {
    padding: 7rem 0;
    background: var(--bg-warm);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    font-family: var(--font-heading);
    font-weight: var(--weight-heading);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--secondary-color);
    margin: 1.5rem auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-family: var(--font-body);
    font-weight: var(--weight-body);
    letter-spacing: 0;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: var(--weight-heading);
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: var(--weight-body);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 0;
    background: var(--bg-white);
    border: 1px solid var(--accent-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
}

.feature-icon {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    color: var(--secondary-color);
}

.feature h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: var(--weight-heading-light);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-family: var(--font-body);
    font-weight: var(--weight-body);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.profile-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border: 8px solid var(--bg-white);
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.02);
}

/* Services Section */
.services-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-cream) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    margin-bottom: 5rem;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    max-width: 800px;
    text-align: left;
}

.services-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li strong {
    color: var(--text-dark);
}

.service-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 0;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--secondary-color);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-icon {
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: var(--weight-heading-light);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: var(--weight-body);
}

.credentials {
    background: linear-gradient(135deg, var(--bg-beige) 0%, var(--accent-light) 100%);
    padding: 4rem 3rem;
    border-radius: 0;
    margin-top: 4rem;
    border: 1px solid var(--accent-light);
}

.credentials h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.credentials-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.credential-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-white);
    border-radius: 0;
    border: 1px solid var(--accent-light);
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
    background: var(--bg-white);
}

.credential-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.credential-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 0 0 7rem 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-cream) 100%);
}

.contact-section .section-title {
    color: var(--text-dark);
    padding-top: 7rem;
}

.contact-section .section-title::after {
    background: var(--secondary-color);
}

.contact-section .section-subtitle {
    color: var(--text-muted);
}

.contact-info a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 0;
    border: 1px solid var(--accent-light);
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
    font-weight: var(--weight-heading);
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    flex-shrink: 0;
    opacity: 0.7;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
}

.info-item strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: var(--weight-body-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.info-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: var(--weight-body);
}

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 0;
    border: 1px solid var(--accent-light);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: var(--weight-body-medium);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: var(--weight-body);
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--bg-cream);
}

.form-group textarea {
    resize: vertical;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    min-height: 1.2rem;
}

.success-message {
    background: #2ecc71;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    display: none;
    text-align: center;
    font-weight: 600;
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer .container {
    text-align: center;
}

.footer p {
    margin: 0.75rem 0;
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: var(--weight-body);
    letter-spacing: 0;
    text-align: center;
}

.small-print {
    font-size: 0.7rem !important;
    opacity: 0.65;
    line-height: 1.5;
    max-width: 600px;
    margin: 0.5rem auto !important;
    text-align: center !important;
    font-family: var(--font-body);
    font-weight: var(--weight-body);
    letter-spacing: 0;
}

.disclaimer {
    font-size: 0.8rem !important;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 800px;
    margin: 1rem auto 0 !important;
    text-align: center !important;
    text-align: center;
    font-family: var(--font-body);
    font-weight: var(--weight-body);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .credentials-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .company-logo {
        height: 40px;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-features {
        gap: 1rem;
    }

    .feature {
        padding: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .credentials-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-brand h1 {
        font-size: 1.4rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
        letter-spacing: 0.03em;
    }

    .credentials-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}
