/* ========================================================
   LumaScape — Home Page Styles
   ======================================================== */

/* ========== HERO ========== */
.hero {
    position: relative; width: 100%; min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.28), rgba(0,0,0,0.18));
}
.hero-content {
    position: relative; z-index: 10;
    padding: 0 24px; width: 100%; max-width: 960px;
    margin: 80px auto 0; text-align: center;
}
.hero-label {
    color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 32px;
}
@media (min-width: 768px) { .hero-label { font-size: 13px; } }

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff; line-height: 0.92; margin-bottom: 32px;
}
.hero-title-main {
    display: block; font-size: clamp(64px, 12vw, 144px);
    font-weight: 500; letter-spacing: -0.02em;
}
.hero-title-sub {
    display: block; font-style: italic; font-weight: 400;
    font-size: clamp(56px, 11vw, 144px);
    color: rgba(255,255,255,0.82); margin-top: 4px;
}
.hero-desc {
    color: rgba(255,255,255,0.6); font-size: 16px;
    font-weight: 300; max-width: 420px; margin: 0 auto 48px;
    line-height: 1.7;
}
@media (min-width: 768px) { .hero-desc { font-size: 18px; } }

.hero-actions {
    display: flex; flex-direction: column; align-items: center; gap: 24px;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; justify-content: center; } }

.btn-primary-hero {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 10px 10px 10px 28px;
    border: 1px solid rgba(255,255,255,0.3); color: #fff;
    border-radius: 50px; font-size: 14px; font-weight: 500;
    letter-spacing: 0.02em; background: transparent;
    transition: all 0.3s;
}
.btn-primary-hero:hover { background: #fff; color: var(--charcoal); }
.btn-primary-hero:hover .btn-icon { background: var(--charcoal); color: #fff; }
.btn-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: #fff; color: var(--charcoal);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.btn-icon .material-symbols-outlined {
    font-size: 18px; transform: rotate(-45deg); transition: transform 0.3s;
}
.btn-primary-hero:hover .btn-icon .material-symbols-outlined { transform: rotate(0deg); }

.hero-text-link {
    color: rgba(255,255,255,0.75); font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.2em;
    transition: all 0.3s;
}
.hero-text-link:hover { color: #fff; text-decoration: underline; text-underline-offset: 8px; }

/*@media (max-width: 669px) {*/
/*    .scroll-indicator {*/
/*    position: static;}*/
/*}*/

/*.scroll-indicator {*/
/*    position: absolute; bottom: 40px; left: 50%;*/
/*    transform: translateX(-50%); z-index: 10;*/
/*    display: flex; flex-direction: column; align-items: center; gap: 12px;*/
/*}*/
.scroll-indicator span {
    color: rgba(255,255,255,0.35); font-size: 10px;
    letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-indicator::after {
    content: ''; width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

/* ========== CHALLENGE SECTION ========== */
.challenge-header {
    display: flex; flex-direction: column; gap: 24px;
    margin-bottom: 96px;
}
@media (min-width: 1024px) {
    .challenge-header { flex-direction: row; gap: 96px; align-items: flex-start; }
}
.challenge-title { font-size: clamp(32px, 5vw, 56px); max-width: 640px; }
.challenge-subtitle {
    color: rgba(28,28,28,0.45); font-size: 15px;
    font-weight: 300; line-height: 1.7; max-width: 360px;
}
@media (min-width: 1024px) { .challenge-subtitle { margin-top: 16px; } }

.pain-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 42px;
}
@media (min-width: 768px) { .pain-grid { grid-template-columns: 1fr 1fr; gap: 48px 32px; } }
@media (min-width: 1024px) { .pain-grid { grid-template-columns: repeat(4, 1fr); gap: 48px; } }

.pain-icon {
    color: rgba(28,28,28,0.25); margin-bottom: 24px;
}
.pain-icon .material-symbols-outlined { font-size: 40px; font-weight: 200; }
.pain-title {
    font-size: 19px; font-weight: 500; color: var(--charcoal); margin-bottom: 12px;
}
.pain-desc {
    font-size: 14px; color: rgba(28,28,28,0.5);
    line-height: 1.7; font-weight: 300;
}

/* ========== SERVICES SECTION ========== */
.services-header { margin-bottom: 30px; }
.services-title { font-size: clamp(32px, 5vw, 56px); max-width: 720px; }

.services-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
    background: rgba(247, 244, 238, 0.7);
    padding: 36px;
    border-radius: 16px;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: background 0.5s;
    min-height: 320px;
}
@media (min-width: 1024px) { .service-card { padding: 40px; } }
.service-card:hover { background: var(--cream); }

.service-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(228, 219, 204, 0.5);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 32px; color: rgba(28,28,28,0.55);
}
.service-icon .material-symbols-outlined { font-weight: 300; }
.service-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px; color: var(--charcoal); margin-bottom: 16px;
}
.service-desc {
    font-size: 15px; color: rgba(28,28,28,0.5);
    font-weight: 300; line-height: 1.7; margin-bottom: 40px;
}
.service-link {
    display: inline-flex; align-items: center;
    font-size: 14px; font-weight: 500;
    color: rgba(28,28,28,0.6); letter-spacing: 0.02em;
    transition: all 0.3s;
}
.service-card:hover .service-link { transform: translateX(4px); color: var(--charcoal); }
.service-link .material-symbols-outlined { font-size: 16px; margin-left: 8px; }

/* ========== PORTFOLIO SECTION ========== */
.portfolio-header {
    display: flex; flex-direction: column; gap: 32px;
    margin-bottom: 80px;
}
@media (min-width: 768px) {
    .portfolio-header { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.portfolio-title { font-size: clamp(44px, 6vw, 72px); line-height: 1.05; }
.portfolio-right { max-width: 360px; }
@media (min-width: 768px) { .portfolio-right { text-align: right; } }
.portfolio-desc {
    font-size: 14px; color: rgba(28,28,28,0.45);
    line-height: 1.7; font-weight: 300; margin-bottom: 24px;
}

.portfolio-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.portfolio-item { cursor: pointer; }
.portfolio-item:nth-child(2) { margin-top: 0; }
@media (min-width: 768px) { .portfolio-item:nth-child(2) { margin-top: 64px; } }

.portfolio-img-wrap {
    position: relative; overflow: hidden;
    border-radius: 12px; margin-bottom: 20px;
    aspect-ratio: 4/5; background: var(--bone);
}
.portfolio-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease;
}
.portfolio-item:hover .portfolio-img-wrap img { transform: scale(1.05); }
.portfolio-img-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0); transition: background 0.5s;
}
.portfolio-item:hover .portfolio-img-overlay { background: rgba(0,0,0,0.08); }

.portfolio-location {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(28,28,28,0.35); margin-bottom: 6px;
}
.portfolio-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px; color: var(--charcoal);
}

/* ========== TESTIMONIAL ========== */
.testimonial { text-align: center; }
.testimonial-wrap { position: relative; }
.testimonial-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 120px; line-height: 1;
    color: rgba(28,28,28,0.04);
    position: absolute; top: -48px; left: 50%;
    transform: translateX(-50%);
    user-select: none; pointer-events: none;
}
@media (min-width: 768px) { .testimonial-mark { font-size: 160px; top: -64px; } }
.testimonial-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 5vw, 56px);
    color: var(--charcoal); line-height: 1.15;
    font-style: italic; font-weight: 400;
    margin-bottom: 48px; position: relative; z-index: 10;
}
.testimonial-divider {
    width: 48px; height: 1px; background: rgba(28,28,28,0.12);
    margin: 0 auto 24px;
}
.testimonial-name { font-size: 16px; font-weight: 500; color: var(--charcoal); }
.testimonial-project {
    font-size: 11px; color: rgba(28,28,28,0.4);
    letter-spacing: 0.2em; text-transform: uppercase; margin-top: 8px;
}

/* ========== FURNITURE / SHOP ========== */
.shop-section {
    display: flex; flex-direction: column; gap: 64px;
    align-items: center;
}
@media (min-width: 1024px) { .shop-section { flex-direction: row; gap: 96px; } }

.shop-content { width: 100%; }
@media (min-width: 1024px) { .shop-content { width: 50%; } }
.shop-title { font-size: clamp(32px, 4.5vw, 48px); margin-bottom: 24px; }
.shop-desc {
    font-size: 16px; color: rgba(28,28,28,0.5);
    font-weight: 300; line-height: 1.7;
    margin-bottom: 40px; max-width: 480px;
}
@media (min-width: 768px) { .shop-desc { font-size: 18px; } }

.shop-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }

.shop-text-link {
    display: inline-flex; align-items: center;
    font-size: 14px; font-weight: 500; color: rgba(28,28,28,0.6);
    border-bottom: 1px solid rgba(28,28,28,0.12);
    padding-bottom: 4px; transition: all 0.3s;
}
.shop-text-link:hover { color: var(--charcoal); border-color: rgba(28,28,28,0.4); }
.shop-text-link .material-symbols-outlined { font-size: 14px; margin-left: 8px; transition: transform 0.3s; }
.shop-text-link:hover .material-symbols-outlined { transform: translateX(4px); }

.shop-images { width: 100%; display: flex; gap: 20px; align-items: flex-end; }
@media (min-width: 1024px) { .shop-images { width: 50%; } }

.shop-col-left { width: 50%; }
.shop-col-right { width: 50%; display: flex; flex-direction: column; gap: 20px; margin-bottom: -32px; }

.shop-img {
    position: relative; overflow: hidden;
    border-radius: 12px; background: var(--bone);
}
.shop-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s;
}
.shop-img:hover img { transform: scale(1.05); }
.shop-img-tall { aspect-ratio: 3/4; }
.shop-img-square { aspect-ratio: 1/1; }
.shop-img-wide { aspect-ratio: 4/3; }
