/* ============================================
   Angela's Color Concepts
   Editorial Beauty Magazine Aesthetic
   ============================================ */

:root {
    /* Core palette — moody editorial */
    --bg-dark: #1e1a18;
    --bg-espresso: #2a2422;
    --bg-charcoal: #322b28;
    --gold: #d4af78;
    --gold-light: #e8d5b0;
    --blush: #c8968c;
    --blush-light: #dbb5ad;
    --cream: #f5f0eb;
    --white: #ffffff;
    --text-primary: #f0ebe6;
    --text-secondary: #b8a99e;
    --text-muted: #8a7d75;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-pad: clamp(60px, 8vw, 120px);
    --container-max: 1200px;
    --container-pad: clamp(20px, 4vw, 40px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Film grain overlay on body */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* Section labels */
.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 2rem;
    line-height: 1.1;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(30, 26, 24, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 120, 0.1);
    transition: background 0.3s ease;
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 120, 0.3);
}

.header-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.header-nav {
    display: flex;
    gap: 2rem;
}

.header-nav a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

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

.header-nav a:hover { color: var(--gold); }
.header-nav a:hover::after { width: 100%; }

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--gold);
    color: var(--bg-dark);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 175, 120, 0.3);
}

.header-cta svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
    .header-nav { display: none; }
    .header-cta span { display: none; }
    .header-cta { padding: 10px; border-radius: 50%; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px var(--container-pad) 40px;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 120, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(200, 150, 140, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(42, 36, 34, 1) 0%, transparent 60%),
        var(--bg-dark);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 512px 512px;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    border: 1px solid rgba(212, 175, 120, 0.3);
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease both;
}

.badge-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

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

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
}

.hero-title-line--1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    color: var(--cream);
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title-line--2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--text-secondary);
    font-weight: 400;
    animation: fadeInUp 0.7s ease 0.25s both;
}

.hero-title-line--3 {
    font-size: clamp(4rem, 12vw, 8.5rem);
    background: linear-gradient(135deg, var(--gold), var(--blush-light), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-title-line--3 em {
    font-style: italic;
}

.hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeInUp 0.7s ease 0.55s both;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.7s both;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: fadeInUp 0.7s ease 0.85s both;
}

.trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 100px;
    transition: all 0.35s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 4px 24px rgba(212, 175, 120, 0.25);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 120, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--cream);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 120, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* ============================================
   EDITORIAL DIVIDER
   ============================================ */
.editorial-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 var(--container-pad);
    max-width: var(--container-max);
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 120, 0.2), transparent);
}

.divider-text {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-style: italic;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse at 10% 90%, rgba(212, 175, 120, 0.04) 0%, transparent 40%),
        var(--bg-espresso);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.service-card:hover {
    background: rgba(212, 175, 120, 0.05);
    border-color: rgba(212, 175, 120, 0.15);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 120, 0.08);
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 0 var(--container-pad);
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: contrast(1.03) saturate(0.95);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item--wide {
        grid-column: span 2;
    }
    .gallery-item {
        aspect-ratio: 1 / 1;
    }
}

/* ============================================
   FEATURED REVIEW
   ============================================ */
.featured-review {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(200, 150, 140, 0.06) 0%, transparent 50%),
        var(--bg-charcoal);
}

.featured-review-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.featured-quote-mark {
    font-family: var(--font-display);
    font-size: clamp(6rem, 12vw, 10rem);
    color: var(--gold);
    opacity: 0.15;
    line-height: 0.6;
    margin-bottom: -1rem;
}

.featured-quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-author {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-style: normal;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.featured-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 3px;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    padding: var(--section-pad) 0;
    background: var(--bg-espresso);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 3rem;
}

.review-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(212, 175, 120, 0.15);
}

.review-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-name {
    font-weight: 600;
    color: var(--cream);
    font-size: 0.88rem;
}

.review-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.reviews-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   WHY CHOOSE
   ============================================ */
.why-choose {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 120, 0.04) 0%, transparent 50%),
        var(--bg-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.why-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.why-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.why-traits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trait h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.trait p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-traits { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(200, 150, 140, 0.05) 0%, transparent 50%),
        var(--bg-charcoal);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.contact-item a {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-extras {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-extras span {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.contact-cta-block {
    background: rgba(212, 175, 120, 0.05);
    border: 1px solid rgba(212, 175, 120, 0.12);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.contact-cta-block h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1rem;
}

.contact-cta-block p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-cta-block .btn {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 2.5rem 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 120, 0.2);
}

.footer-brand span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.footer-info {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-info a {
    transition: color 0.3s ease;
}

.footer-info a:hover { color: var(--gold); }

.footer-sep {
    margin: 0 0.75rem;
    opacity: 0.3;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    padding: 14px 24px;
    background: var(--gold);
    color: var(--bg-dark);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.88rem;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(212, 175, 120, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.floating-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 40px rgba(212, 175, 120, 0.5);
}

.floating-cta svg {
    width: 20px;
    height: 20px;
}

.floating-cta.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

@media (max-width: 768px) {
    .floating-cta {
        display: flex;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(212, 175, 120, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(212, 175, 120, 0.6); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   CUSTOM SCROLLBAR (Desktop)
   ============================================ */
@media (min-width: 769px) {
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--bg-dark); }
    ::-webkit-scrollbar-thumb {
        background: rgba(212, 175, 120, 0.2);
        border-radius: 100px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(212, 175, 120, 0.4);
    }
}
