/* ================================================================
   LUMIÈRE — style.css
   ================================================================ */

:root {
    /* Dark Luxury Palette */
    --black: #050505;
    --bg-deep: #0a0a0a;
    --bg-panel: #141414;
    --purple-deep: #2d0a4e;
    --purple-glow: rgba(183, 110, 121, 0.15);
    /* Rose gold tint */
    --rose-gold: #b76e79;
    --rose-gold-dark: #8c535c;
    --champagne: #f7e7ce;
    --text-main: #f0f0f0;
    --text-dim: #a0a0a0;

    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    /* UI Base */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* ─────────────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
}

em {
    font-style: italic;
    color: var(--rose-gold);
}

/* ─────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
    color: #fff;
    box-shadow: 0 8px 20px rgba(183, 110, 121, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(183, 110, 121, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--champagne);
    border: 1px solid rgba(247, 231, 206, 0.3);
}

.btn-outline:hover {
    background: rgba(247, 231, 206, 0.05);
    border-color: var(--champagne);
}

/* ─────────────────────────────────────────────────────
   NAVBAR (GLASSMORPHISM)
───────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--champagne);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--rose-gold);
}

.nav-book {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
}

/* ─────────────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 2rem;
    overflow: hidden;
}

/* Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    /* for subtle GSAP pan */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0a0a0a 20%, rgba(10, 10, 10, 0.85) 50%, rgba(10, 10, 10, 0.4) 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-eyebrow {
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    color: #fff;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* ─────────────────────────────────────────────────────
   HERO VISUAL: CLAY + GLASS + 3D
───────────────────────────────────────────────────── */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.clay-device {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 30px;
    background: linear-gradient(145deg, #1f1f1f, #0f0f0f);
    /* Claymorphism shadows */
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -4px 10px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    /* initial CSS rotation, GSAP will animate this */
    transform: rotateY(-15deg) rotateX(5deg);
}

.device-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    /* Inner depression */
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    opacity: 0.85;
    filter: contrast(1.1);
}

/* Glassmorphism Overlays */
.glass-pill,
.glass-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(16px) saturate(1.8);
    -webkit-backdrop-filter: blur(16px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: #fff;
}

.pill-top-right {
    top: -20px;
    right: -30px;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    transform: translateZ(50px);
    /* 3D pop out */
}

.dot.green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.card-bottom-left {
    bottom: -30px;
    left: -40px;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    transform: translateZ(80px);
    /* 3D pop out more */
}

.card-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icon {
    font-size: 1.5rem;
}

.card-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.card-text strong {
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.card-text span {
    font-size: 0.75rem;
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-scroll span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-dim);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--rose-gold);
    border-radius: 2px;
    animation: scrollDown 2s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(200%);
    }

    100% {
        transform: translateY(200%);
    }
}

/* ─────────────────────────────────────────────────────
   COMMON STRUCTURES
───────────────────────────────────────────────────── */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.section-sub {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ─────────────────────────────────────────────────────
   SERVICES MENU
───────────────────────────────────────────────────── */
.services-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-deep) 0%, #0d041c 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    perspective: 1200px;
}

/* Clay Card Element */
.clay-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    background: #1a1a1a;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -5px 15px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    /* For JS tilt */
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    filter: contrast(1.1) brightness(0.8);
    transition: transform 0.6s ease;
}

/* Glassmorphism Overlay inside card */
.glass-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 10, 25, 0.5);
    backdrop-filter: blur(12px) saturate(1.8);
    -webkit-backdrop-filter: blur(12px) saturate(1.8);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 2;
    transform: translateZ(40px);
    /* 3D pop out */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-top h3 {
    font-size: 1.5rem;
    color: #fff;
}

.card-price {
    font-family: var(--font-sans);
    color: var(--rose-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* Hover Effects */
.clay-card:hover .card-bg img {
    transform: scale(1.05);
}

/* ─────────────────────────────────────────────────────
   THE PROCESS SECTION
───────────────────────────────────────────────────── */
.process-section {
    padding: 8rem 0;
    position: relative;
    background: var(--bg-deep);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-step {
    padding: 3rem 2rem;
    text-align: center;
    border-radius: var(--radius-lg);
    position: relative;
    transition: transform 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--rose-gold);
    opacity: 0.3;
    margin-bottom: 1rem;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────
   STYLISTS SECTION (GLASSMORPHISM)
───────────────────────────────────────────────────── */
.stylists-section {
    padding: 8rem 0;
    position: relative;
    background: url('../assets/hero_bg.png') no-repeat center center/cover;
}

/* Add a very dark overlay to the background */
.stylists-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0d041c 0%, rgba(10, 10, 10, 0.95) 50%, var(--bg-deep) 100%);
    z-index: 0;
}

.stylists-section .container {
    position: relative;
    z-index: 1;
}

.stylist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.stylist-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease;
}

/* Base Glass Panel style */
.glass-panel {
    background: rgba(20, 15, 30, 0.4);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stylist-img-wrap {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.stylist-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.6s ease;
}

/* Optional soft gradient over the image base to blend with the card */
.stylist-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(0deg, rgba(20, 15, 30, 0.8) 0%, transparent 100%);
}

.stylist-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.stylist-info h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.stylist-info .title {
    font-family: var(--font-sans);
    color: var(--rose-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 1rem;
}

.stylist-info .bio {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.stylist-social {
    display: flex;
    gap: 1rem;
}

.stylist-social a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--champagne);
    opacity: 0.7;
    transition: opacity 0.3s;
    border-bottom: 1px solid rgba(247, 231, 206, 0.3);
    padding-bottom: 2px;
}

.stylist-social a:hover {
    opacity: 1;
    border-color: var(--champagne);
}

.stylist-card:hover {
    transform: translateY(-10px);
}

.stylist-card:hover .stylist-img-wrap img {
    transform: scale(1.05);
}

/* ─────────────────────────────────────────────────────
   BOOKING DASHBOARD (3D & GLASS)
───────────────────────────────────────────────────── */
.booking-section {
    padding: 8rem 0;
    position: relative;
    background: var(--bg-deep);
}

.booking-dashboard {
    display: flex;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 500px;
}

/* Left side visual with floating 3D orb */
.booking-visual {
    flex: 1;
    background: radial-gradient(circle at center, #1f0b35 0%, #0d041c 100%);
    position: relative;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.visual-text {
    position: relative;
    z-index: 2;
}

.visual-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.visual-text p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 80%;
}

.floating-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 30% 30%, var(--rose-gold) 0%, var(--purple-deep) 60%, transparent 80%);
    filter: blur(40px);
    opacity: 0.5;
    z-index: 0;
    animation: driftOrb 15s ease-in-out infinite alternate;
}

@keyframes driftOrb {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(-60%, -40%) scale(1.2) rotate(45deg);
    }
}

/* Right side form block */
.booking-form-wrap {
    flex: 1;
    padding: 4rem;
    background: rgba(10, 10, 10, 0.4);
    /* Sub-panel inside the glass */
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--rose-gold);
    font-weight: 500;
}

.booking-form input,
.booking-form select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--rose-gold);
    background: rgba(255, 255, 255, 0.05);
}

.booking-form ::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
    padding: 1.2rem;
}

/* ─────────────────────────────────────────────────────
   GALLERY (MASONRY GRID)
───────────────────────────────────────────────────── */
.gallery-section {
    padding: 8rem 0;
    background: #050505;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 300px;
    gap: 1.5rem;
}

.masonry-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.masonry-item.tall {
    grid-row: span 2;
}

.masonry-item.wide {
    grid-column: span 2;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(1.2);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.masonry-overlay span {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.1);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-item:hover .masonry-overlay span {
    transform: translateY(0);
}


/* ─────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────── */
.footer {
    background: #000;
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer h2 {
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: var(--champagne);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-dim);
    max-width: 300px;
    line-height: 1.6;
}

.footer h4 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a,
.footer-contact p {
    color: var(--text-dim);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--rose-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bridal-card {
        grid-column: 1 / -1;
    }

    .stylist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 6rem;
    }

    .hero-overlay {
        background: rgba(10, 10, 10, 0.7);
    }

    .hero-actions {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .clay-device {
        transform: none;
        width: 340px;
        height: 440px;
    }

    .pill-top-right {
        right: -10px;
    }

    .card-bottom-left {
        left: -10px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero {
        padding-top: 8rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .services-grid,
    .stylist-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .booking-dashboard {
        flex-direction: column;
    }

    .booking-visual {
        padding: 3rem 2rem;
        text-align: center;
    }

    .booking-form-wrap {
        padding: 3rem 2rem;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .clay-device {
        width: 100%;
        max-width: 320px;
        height: 400px;
    }

    .pill-top-right {
        top: -15px;
        right: 0;
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .card-bottom-left {
        bottom: -20px;
        left: 0;
        padding: 0.8rem 1rem;
    }

    .card-text strong {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .glass-overlay,
    .stylist-info {
        padding: 1.2rem;
    }

    .card-top h3 {
        font-size: 1.2rem;
    }
}