/* ========================================
   AURA NAIL BAR — Style Sheet
   Palette: Soft Pink, Gold, Cream, Charcoal
   ======================================== */

/* --- CSS Variables --- */
:root {
    --pink-light: #fdf0f0;
    --pink: #f7d6d6;
    --pink-medium: #e8a8a8;
    --gold: #c0392b;
    --gold-light: #e74c3c;
    --gold-dark: #962d22;
    --cream: #fdfafa;
    --charcoal: #1a1a1a;
    --text: #3a3a3a;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --blush: #fdf0f0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-dark);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--charcoal);
    line-height: 1.2;
}

.section-tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 48px;
}

.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: var(--white);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-secondary:hover {
    background-color: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

.btn-full {
    width: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 252, 250, 0.95);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 1px;
}

.nav-logo span {
    color: var(--gold);
}

.nav-logo:hover {
    color: var(--charcoal);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--gold-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all var(--transition);
    display: block;
}

/* ========================================
   PROMO BANNER
   ======================================== */
.promo-banner {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    text-align: center;
    padding: 10px 48px 10px 24px;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all var(--transition);
}

.promo-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.promo-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.8;
}

.promo-close:hover {
    opacity: 1;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1604654894610-df63bc536371?w=1600&q=80') center/cover no-repeat;
    color: var(--charcoal);
}

.hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 245, 245, 0.88) 0%,
        rgba(250, 220, 218, 0.80) 55%,
        rgba(240, 200, 198, 0.72) 100%
    );
}

.hero-logo {
    width: 100%;
    max-width: 480px;
    animation: fadeInDown 0.8s ease both;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 48px 60px;
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-logo-col {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-col {
    flex: 1;
    text-align: left;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.hero-title span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 100px 24px 48px;
        gap: 28px;
    }
    .hero-text-col {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-logo {
        max-width: 260px;
    }
}

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

/* ========================================
   SERVICES
   ======================================== */
.services {
    text-align: center;
    background-color: var(--cream);
}

.services-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--pink-medium) transparent;
}

.services-grid::-webkit-scrollbar {
    height: 4px;
}
.services-grid::-webkit-scrollbar-track {
    background: transparent;
}
.services-grid::-webkit-scrollbar-thumb {
    background: var(--pink-medium);
    border-radius: 2px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
    flex: 0 0 160px;
    min-width: 160px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card-highlight {
    border: 2px solid var(--gold);
    background: linear-gradient(to bottom, var(--white), var(--pink-light));
}

.service-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-desc {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.5;
}

.services-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ========================================
   INSTAGRAM SECTION
   ======================================== */
.instagram-section {
    background: var(--white);
    text-align: center;
}

.instagram-cta-block {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
    padding: 20px 48px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: var(--white);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all var(--transition);
    text-decoration: none;
}

.instagram-cta-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(192, 57, 43, 0.35);
    color: var(--white);
}

.instagram-arrow {
    font-size: 1.2rem;
    transition: transform var(--transition);
}

.instagram-cta-block:hover .instagram-arrow {
    transform: translate(3px, -3px);
}

/* ========================================
   BLOG / NAIL CARE
   ======================================== */
.blog {
    text-align: center;
    background: var(--pink-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    text-align: left;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
}

.blog-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--pink-light);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--pink-medium);
    font-weight: 500;
}

/* ========================================
   BOOKING
   ======================================== */
.booking {
    text-align: center;
    background: var(--white);
}

.booking-options {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    text-align: left;
    align-items: start;
}

.booking-embed-placeholder {
    background: var(--pink-light);
    border-radius: var(--radius);
    padding: 60px 40px;
    text-align: center;
    border: 2px dashed var(--pink-medium);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.booking-embed-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.booking-embed-placeholder h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.booking-embed-placeholder p {
    color: var(--text-light);
    max-width: 400px;
}

.booking-sidebar h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.booking-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--pink-light);
    border-radius: var(--radius-sm);
}

.booking-method-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.booking-method strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.booking-method p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.booking-promo {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
    text-align: center;
}

.booking-promo h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.booking-promo p {
    font-size: 0.9rem;
    margin: 4px 0;
    opacity: 0.95;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    background: var(--cream);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-text .section-tagline,
.about-text .section-title {
    text-align: left;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text);
}

.about-signature {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold);
    margin-top: 24px;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    text-align: center;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    text-align: left;
    align-items: start;
}

.contact-form {
    background: var(--pink-light);
    padding: 40px;
    border-radius: var(--radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.form-group label span {
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
}

.contact-info {
    padding: 20px 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    display: inline-block;
    margin-bottom: 12px;
}

.footer-logo span {
    color: var(--gold-light);
}

.footer-logo:hover {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    transition: color var(--transition);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    transition: color var(--transition);
}

.social-link:hover {
    color: var(--gold-light);
}

.social-link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.social-link:hover svg {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 350px;
    }

    .about-text .section-tagline,
    .about-text .section-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .booking-options {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: right var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .booking-embed-placeholder {
        padding: 40px 24px;
        min-height: 300px;
    }

    .contact-form {
        padding: 28px 24px;
    }
}

/* ========================================
   HELPING HANDS SECTION
======================================== */
.helping-hands {
    background: linear-gradient(135deg, #fdf6f0 0%, #f9f0f5 100%);
}

.helping-hands .about-text p em {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #9b6b9b;
    border-left: 3px solid #c9a0c9;
    padding-left: 1.2rem;
    margin: 1.5rem 0;
    line-height: 1.7;
}

.helping-hands-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.helping-hands-cta p {
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}


/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
    padding: 140px 24px 60px;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink) 100%);
    text-align: center;
}

.page-hero-warm {
    background: linear-gradient(135deg, #fdf6f0 0%, #f9f0f5 100%);
}

.page-hero-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.page-hero-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* Active nav page indicator */
.nav-link.active-page {
    color: var(--gold);
}

.nav-link.active-page::after {
    width: 100%;
}

/* ========================================
   PAGE PREVIEW CARDS (homepage)
   ======================================== */
.page-previews {
    background: var(--cream);
    text-align: center;
}

.previews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: left;
}

.preview-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}

.preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.preview-image {
    height: 200px;
    overflow: hidden;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.preview-card:hover .preview-image img {
    transform: scale(1.05);
}

.preview-content {
    padding: 24px;
}

.preview-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 8px 0 10px;
    line-height: 1.4;
}

.preview-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.preview-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
}

/* ========================================
   VALUES GRID (about page)
   ======================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    text-align: center;
}

.value-card {
    background: var(--pink-light);
    border-radius: var(--radius);
    padding: 32px 20px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    font-size: 1.1rem;
    margin: 12px 0 8px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE — new elements
   ======================================== */
@media (max-width: 968px) {
    .previews-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .page-hero {
        padding: 120px 20px 48px;
    }
}
