/* Base & Reset */
:root {
    --primary: #d8af6f;
    --primary-dark: #b89358;
    --color-text: #333333;
    --color-text-light: #555555;
    --bg-light: #fefdfb;
    --bg-off: #f7f5f2;
    --border-color: #e5e0d8;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--color-text);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
    color: var(--color-text);
    font-weight: 700;
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(216, 175, 111, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 175, 111, 0.45);
}

.btn-secondary {
    background-color: #fff;
    color: var(--color-text);
    border-color: #eee;
}

.btn-secondary:hover {
    border-color: var(--color-text);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.cta-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.125rem;
}

.cta-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Custom Elements */
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(216, 175, 111, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(216, 175, 111, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(216, 175, 111, 0);
    }
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

.pulse-glow:hover {
    animation: none;
}

.image-placeholder {
    background-color: #eae6df;
    border: 2px dashed #b89358;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-weight: 500;
    text-align: center;
    padding: 2rem;
    width: 100%;
}

.hero-placeholder {
    height: 500px;
}

.cta-placeholder {
    height: 300px;
}

.hero-image,
.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
}

.hero-image-wrapper {
    height: 500px;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-off) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(216, 175, 111, 0.15) 0%, rgba(216, 175, 111, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: rgba(216, 175, 111, 0.15);
    color: var(--primary-dark);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero .highlight {
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.about-content .lead {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-list svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-item {
    background-color: var(--bg-off);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.step-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: rgba(216, 175, 111, 0.3);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 10px rgba(216, 175, 111, 0.4);
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Treatments Section */
.treatments-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.card {
    background-color: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(216, 175, 111, 0.3);
}

.featured-card {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(216, 175, 111, 0.15);
    transform: scale(1.02);
}

.featured-card:hover {
    transform: scale(1.02) translateY(-5px);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
    font-size: 1.5rem;
}

.price-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: var(--color-text-light);
}

.price-list li span small {
    display: block;
    font-size: 0.8rem;
    color: var(--primary-dark);
}

.price-list li strong {
    font-size: 1.25rem;
    color: var(--color-text);
}

.price-list li strong small {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: normal;
}

.best-value {
    margin-top: 0.5rem;
    padding: 1rem;
    background-color: var(--bg-off);
    border-radius: var(--radius-md);
    border: 1px solid rgba(216, 175, 111, 0.2);
}

.best-value strong {
    color: var(--primary) !important;
    font-size: 1.4rem !important;
}

.card-footer {
    display: flex;
    flex-direction: column;
}

.card-footer .btn {
    width: 100%;
}


/* Contact & Hours Section */
.contact-section {
    padding: 6rem 0;
    background-color: var(--bg-off);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact-lead {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(216, 175, 111, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.info-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--color-text-light);
}

.info-item a {
    color: var(--color-text-light);
}

.info-item a:hover {
    color: var(--primary);
}

.hours-card {
    background-color: #fff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary);
}

.hours-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--border-color);
    color: var(--color-text-light);
}

.hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-list li span:first-child {
    font-weight: 500;
    color: var(--color-text);
}

.hours-list .closed span:last-child {
    color: #e53e3e;
    font-weight: 500;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand .logo-text small {
    font-weight: 400;
    font-size: 1rem;
    color: #ccc;
}

.footer-brand p {
    color: #888;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--primary);
}


/* CTA Banner */
.cta-banner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
    background-color: #fff;
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: 4rem;
    border: 1px solid var(--border-color);
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.cta-banner-image {
    height: 350px;
    width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-placeholder {
        height: 350px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-content {
        text-align: center;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-card {
        transform: none;
    }

    .featured-card:hover {
        transform: translateY(-5px);
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .cta-banner {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        text-align: center;
    }

    .cta-banner .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .hero-image-wrapper,
    .cta-banner-image {
        height: 250px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}