/* --- Variables & Setup --- */
:root {
    --bg-dark: #121110;
    --bg-darker: #0d0c0b;
    --bg-light: #f6f5f2;
    --text-light: #ffffff;
    --text-muted: #a19d98;
    --text-dark: #1a1a1a;
    --text-dark-muted: #555555;
    --accent-gold: #c6a87c;
    --accent-gold-hover: #b0946b;
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-light: rgba(0, 0, 0, 0.08);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 600;}

em {
    font-style: italic;
    font-weight: 400;
}

.center-text { text-align: center; }
.text-left { text-align: left; }
.text-gold { color: var(--accent-gold); }
.text-dark { color: var(--text-dark); }
.mb-2 { margin-bottom: 2rem; }
.mt-4 { margin-top: 4rem; }
.pt-0 { padding-top: 0 !important; }

.subheading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* --- Layout Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dark-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 6rem 0;
}

.light-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 6rem 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-dark);
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.05);
}

.btn-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border: 1px solid var(--bg-dark);
}

.btn-dark:hover {
    background-color: #000;
}

/* --- Navbar --- */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Override logo color when on light sections */
.light-section .logo, .navbar.light-mode .logo {
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-light);
}

.nav-btn {
    color: var(--text-dark) !important;
    padding: 0.6rem 1.5rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 8rem;
}

.badge {
    display: inline-block;
    border: 1px solid var(--border-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title em {
    color: var(--accent-gold);
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-dark-muted);
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.our-story {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 4rem;
    border-top: 1px solid var(--border-light);
}

.our-story h3 {
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.our-story p {
    color: var(--text-dark-muted);
}

/* --- Stats & Quote --- */
.quote-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.quote-mark {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 0;
    display: block;
    margin-bottom: 1rem;
}

.quote-box blockquote {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-style: italic;
    margin-bottom: 2rem;
}

.quote-box cite {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-dark-muted);
    font-style: normal;
    text-transform: uppercase;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-light);
    padding-top: 4rem;
}

.stat-item h4 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-dark-muted);
    font-size: 0.95rem;
}

/* --- Services / Cards --- */
.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-box-small {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.icon-box-gold {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.service-card p {
    color: var(--text-dark-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark-muted);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.dark-card {
    background: #181615;
    border: 1px solid var(--border-dark);
    padding: 2.5rem;
    border-radius: 16px;
}

.dark-card h3, .dark-card h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.dark-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Comparison Table --- */
.border-top {
    border-top: 1px solid var(--border-dark);
}

.table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
}

.comparison-table th, .comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-dark);
}

.comparison-table th {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-table td strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.comparison-table td span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    max-width: 300px;
}

.highlight-row {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table td:not(:first-child) {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.comparison-table td.cross {
    color: #555;
}

/* --- FAQ Accordion --- */
.faq-container {
    max-width: 800px;
}

.accordion-item {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header .icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    padding-bottom: 1.5rem;
    max-height: 200px; /* Arbitrary large number to allow animation */
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(180deg);
}

.accordion-content p {
    color: var(--text-dark-muted);
    font-size: 0.95rem;
}

/* --- CTA Section --- */
.cta-section {
    background-color: #d1b899; /* Tan background matching screenshot */
    padding: 6rem 0;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* --- Footer --- */
.footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 300px;
}

.footer h4 {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-contact .mail-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    margin-bottom: 1rem;
}

.email-link {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 3rem;}
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile hide for now */
    }
    .hamburger {
        display: flex;
    }
    h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .quote-box blockquote { font-size: 1.4rem; }
}