:root {
    --bg-color: #fcfcfc;
    --text-main: #111111;
    --text-muted: #666666;
    --accent: #000000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
    -webkit-font-smoothing: antialiased;
}

/* Luxury Entrance Animation */
.fade-in {
    animation: fadeIn ease 1.6s;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

header {
    width: 100%;
}

.status-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-weight: 500;
}

main {
    max-width: 600px;
    margin: 4rem 0;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.tagline {
    font-family: 'Georgia', serif; /* Fallback for your luxury font */
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.price-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.price-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.price-card .amount {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.price-card ul {
    list-style: none;
    color: var(--text-muted);
    text-align: center;
}

/* À La Carte Table */
#service-table {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    border-collapse: collapse;
}

#service-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
    transition: background 0.2s;
}

#service-table tr:hover {
    background-color: #f9f9f9;
}

.selected {
    background-color: #f0f0f0 !important;
    border-left: 5px solid var(--accent);
}

/* Footer */
footer {
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-line {
    height: 1px;
    background-color: #e5e5e5;
    flex-grow: 1;
    margin: 0 1.5rem;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    body { padding: 2rem 1.5rem; }
    footer { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .footer-line { display: none; }
}