/* ==========================================
   BEAUTY LANDING STYLES (styles.css)
   ========================================== */

:root {
    --primary: #cbb4a3;       /* Warm Taupe / Soft Gold */
    --primary-hover: #bda390;
    --primary-light: #f5ede6;
    --bg-body: #faf6f0;       /* Warm Sand/Beige */
    --text-main: #2c2c2c;     /* Soft Charcoal */
    --text-muted: #7c756e;    /* Warm Gray */
    --card-bg: #ffffff;
    --card-border: rgba(203, 180, 163, 0.15);
    --radius-lg: 16px;
    --radius-md: 10px;
    --shadow: 0 16px 40px -15px rgba(203, 180, 163, 0.15);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Header */
.header {
    background: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(203, 180, 163, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 75px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.logo-text {
    font-style: italic;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.cta-btn-header {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.cta-btn-header:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    padding-top: 150px;
    padding-bottom: 90px;
    background: radial-gradient(circle at 10% 20%, rgba(203, 180, 163, 0.08) 0%, transparent 45%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

.hero-info {
    padding-top: 3.5rem;
}

.badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--text-muted);
    border: 1px solid rgba(203, 180, 163, 0.3);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.25rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.features-mini {
    display: flex;
    gap: 2.5rem;
}

.feat-mini-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.feat-icon {
    font-size: 1.5rem;
}

/* Form Card */
.calc-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.calc-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
}

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

.group-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.text-input, .select-input {
    width: 100%;
    padding: 0.85rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(203, 180, 163, 0.2);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    background-color: white;
    color: var(--text-main);
    transition: var(--transition);
}

.text-input:focus, .select-input:focus {
    border-color: var(--primary-hover);
    background: white;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* Agreement Checkbox */
.form-agreement {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-agreement input {
    margin-top: 0.25rem;
    cursor: pointer;
}

.form-agreement label {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.form-agreement a {
    color: var(--text-main);
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: var(--text-main);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(203, 180, 163, 0.25);
}

/* Masters Section */
.masters-section {
    padding: 100px 0;
    background: white;
}

.section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-head p {
    color: var(--text-muted);
}

.masters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.master-card {
    background: var(--bg-body);
    border: 1px solid rgba(203, 180, 163, 0.1);
    padding: 2.5rem 1.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.master-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.master-img-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(203, 180, 163, 0.2);
}

.master-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.master-spec {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-hover);
    margin-bottom: 1.25rem;
}

.master-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.book-master-btn {
    background: white;
    border: 1px solid var(--primary);
    color: var(--text-main);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.book-master-btn:hover {
    background: var(--primary);
    color: white;
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

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

.service-card {
    background: white;
    border: 1px solid var(--card-border);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Footer */
.footer {
    background: #1c1a18;
    color: #a39c96;
    padding: 45px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: white;
}

.footer-brand .logo-icon {
    color: var(--primary);
}

.footer-copy {
    font-size: 0.85rem;
    max-width: 500px;
}

.footer-link {
    color: #a39c96;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-info {
        text-align: center;
    }
    .features-mini {
        justify-content: center;
    }
    .masters-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2.35rem;
    }
    .calc-card {
        padding: 1.5rem;
    }
    .input-row {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .nav {
        display: none;
    }
}
