/*
Theme Name: Total Blinds Concept Luxe
Theme URI: https://totalblindsconcept.com/
Author: GitHub Copilot
Description: Premium custom WordPress theme for Total Blinds Concept.
Version: 1.0.0
Text Domain: tbc-luxe
*/

:root {
    --brand: #9e2628;
    --brand-deep: #751c1e;
    --ink: #221b1b;
    --ink-soft: #5e4f4f;
    --sand: #f7f3ef;
    --mist: #f1ebe5;
    --white: #ffffff;
    --line: rgba(34, 27, 27, 0.1);
    --shadow: 0 24px 60px rgba(25, 17, 17, 0.12);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --max-width: 1240px;
    --transition: 240ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(158, 38, 40, 0.12), transparent 28%),
        linear-gradient(180deg, #fbf7f2 0%, #f5efe8 100%);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(158, 38, 40, 0.25);
    outline-offset: 2px;
}

.shell {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
}

.eyebrow,
.footer-label,
.hero-panel__label {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand);
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.05;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 54px;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    box-shadow: 0 18px 34px rgba(158, 38, 40, 0.22);
}

.button--secondary,
.button--ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(34, 27, 27, 0.12);
    backdrop-filter: blur(14px);
}

.button--ghost:hover,
.button--secondary:hover {
    border-color: rgba(158, 38, 40, 0.32);
}

.glass-card {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: padding var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header--scrolled {
    padding: 0.6rem 0;
    background: rgba(247, 243, 239, 0.88);
    box-shadow: 0 10px 35px rgba(34, 27, 27, 0.08);
    backdrop-filter: blur(16px);
}

.header-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(160deg, var(--brand), #bf504f);
    box-shadow: 0 16px 30px rgba(158, 38, 40, 0.18);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.brand-copy strong {
    font-size: 1rem;
}

.brand-copy span {
    color: var(--ink-soft);
    font-size: 0.85rem;
}

.desktop-nav ul,
.mobile-nav ul,
.menu-fallback {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.desktop-nav a,
.mobile-nav a,
.menu-fallback a {
    font-weight: 600;
    color: var(--ink-soft);
    transition: color var(--transition);
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.menu-fallback a:hover {
    color: var(--brand);
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.header-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    color: var(--brand);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(158, 38, 40, 0.14);
    font-size: 0.92rem;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.mobile-nav {
    display: none;
    margin-top: 0.75rem;
}

.mobile-nav__panel {
    padding: 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.mobile-nav ul,
.mobile-nav .menu-fallback {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.hero-section,
.page-hero {
    position: relative;
    padding: 5.5rem 0 3.75rem;
}

.hero-section::before,
.page-hero::before {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 240px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7));
    pointer-events: none;
}

.hero-grid,
.page-hero__grid,
.product-hero,
.form-grid,
.prose-grid,
.footer-grid {
    display: grid;
    gap: 1.8rem;
}

.hero-grid,
.product-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
}

.hero-copy,
.product-hero__copy,
.page-hero__panel,
.prose-card,
.category-card,
.product-card,
.project-card,
.why-card,
.final-cta__shell {
    border-radius: var(--radius-lg);
}

.hero-copy h1,
.page-hero h1 {
    font-size: clamp(2.9rem, 6vw, 5.5rem);
    max-width: 12ch;
}

.hero-subtitle,
.product-summary,
.section-heading p,
.page-hero p:not(.eyebrow) {
    color: var(--ink-soft);
    font-size: 1.04rem;
}

.hero-copy > p:last-of-type,
.page-hero p:not(.eyebrow),
.section-heading p {
    max-width: 58ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.hero-points,
.benefit-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.hero-points li,
.benefit-list li {
    position: relative;
    padding-left: 1.3rem;
    color: var(--ink-soft);
}

.hero-points li::before,
.benefit-list li::before {
    content: '';
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand);
}

.hero-scene,
.hero-panel,
.page-hero__panel,
.prose-card,
.category-card,
.product-card,
.project-card,
.why-card {
    overflow: hidden;
}

.hero-scene {
    position: relative;
    min-height: 640px;
    padding: 1.5rem;
    border-radius: 38px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 243, 238, 0.92)),
        radial-gradient(circle at top right, rgba(158, 38, 40, 0.28), transparent 32%),
        radial-gradient(circle at bottom left, rgba(34, 27, 27, 0.16), transparent 28%);
    box-shadow: var(--shadow);
}

.hero-scene--luxe::before,
.hero-scene--luxe::after,
.visual::before,
.visual::after {
    content: '';
    position: absolute;
}

.hero-scene--luxe::before {
    inset: 8% 8% 22% 34%;
    border-radius: 32px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0 18%, rgba(222, 208, 201, 0.58) 18% 22%, rgba(255, 255, 255, 0.8) 22% 40%, rgba(221, 207, 199, 0.62) 40% 44%, rgba(255, 255, 255, 0.84) 44% 100%),
        linear-gradient(180deg, rgba(102, 73, 69, 0.08), transparent 60%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.hero-scene--luxe::after {
    inset: auto 10% 6% 14%;
    height: 28%;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(158, 38, 40, 0.16), transparent 34%),
        linear-gradient(135deg, #d9ccc0, #f3ece6 55%, #c7b1a3 100%);
}

.hero-panel {
    position: absolute;
    left: 1.5rem;
    right: 40%;
    bottom: 1.5rem;
    padding: 1.45rem;
    border-radius: 28px;
}

.hero-panel h2 {
    margin-bottom: 0.85rem;
    font-size: clamp(1.6rem, 2.8vw, 2.5rem);
}

.hero-stat-bar {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: grid;
    gap: 0.85rem;
    min-width: 200px;
}

.hero-stat-bar div {
    padding: 1rem 1.1rem;
    border-radius: 24px;
    background: rgba(34, 27, 27, 0.85);
    color: var(--white);
    backdrop-filter: blur(16px);
}

.hero-stat-bar strong,
.detail-list strong {
    display: block;
    font-size: 1.15rem;
}

.hero-stat-bar span,
.detail-list span,
.project-card__meta,
.testimonial-meta span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.section-block {
    padding: 3.5rem 0;
}

.section-block--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(245, 239, 232, 0.7));
}

.section-block--charcoal {
    color: var(--white);
    background: linear-gradient(180deg, #251b1c 0%, #392729 100%);
}

.section-heading {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    max-width: 13ch;
}

.section-heading--split {
    grid-template-columns: 1fr auto;
    align-items: end;
}

.section-heading--light p,
.section-heading--light .eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.product-category-grid,
.why-grid,
.product-grid,
.project-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
}

.category-card,
.product-card,
.project-card,
.why-card,
.prose-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(34, 27, 27, 0.08);
    box-shadow: var(--shadow);
}

.category-card {
    grid-column: span 4;
}

.category-card__body,
.product-card__body,
.project-card__body,
.prose-card,
.why-card {
    padding: 1.45rem;
}

.category-card h3,
.product-card h2,
.project-card h2,
.project-card h3,
.why-card h3,
.prose-card h2,
.prose-card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.55rem;
}

.category-card p,
.product-card p,
.project-card p,
.why-card p,
.prose-card p,
.prose-card li,
.contact-card p {
    color: var(--ink-soft);
}

.category-card a,
.project-card a,
.product-card a,
.prose-card a,
.footer-grid a {
    color: var(--brand);
    font-weight: 700;
}

.why-card {
    grid-column: span 3;
}

.why-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(145deg, var(--brand), #c35f55);
}

.featured-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(290px, 34vw);
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.45rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.featured-track::-webkit-scrollbar {
    display: none;
}

.project-card--featured {
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
}

.project-card--featured .project-card__body,
.project-card--featured .project-card__meta,
.project-card--featured h3,
.project-card--featured p {
    color: var(--white);
}

.carousel-controls {
    display: flex;
    gap: 0.8rem;
}

.carousel-button {
    min-width: 78px;
    min-height: 46px;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-slider {
    position: relative;
    min-height: 240px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition), transform var(--transition);
}

.testimonial-slide.is-active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-quote {
    margin-bottom: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.28;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.final-cta__shell {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 246, 244, 0.92));
    box-shadow: var(--shadow);
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    max-width: 13ch;
}

.page-hero__panel,
.detail-list {
    padding: 1.5rem;
}

.detail-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.detail-list div {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(34, 27, 27, 0.08);
}

.detail-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.detail-list span {
    color: var(--ink-soft);
}

.product-grid .product-card,
.project-grid .project-card {
    grid-column: span 4;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.3rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 27, 27, 0.1);
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink-soft);
    font-weight: 700;
}

.filter-chip.is-active {
    color: var(--white);
    background: var(--brand);
    border-color: var(--brand);
}

.prose-grid,
.form-grid,
.footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prose-shell {
    max-width: 860px;
}

.prose-card {
    padding: 1.8rem;
}

.prose-card--accent {
    background: linear-gradient(145deg, rgba(34, 27, 27, 0.96), rgba(66, 48, 49, 0.96));
}

.prose-card--accent,
.prose-card--accent p,
.prose-card--accent li,
.prose-card--accent h2,
.prose-card--accent h3,
.prose-card--accent strong,
.prose-card--accent a {
    color: var(--white);
}

.form-two-up {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.lead-form {
    display: grid;
    gap: 1rem;
}

.lead-form label {
    display: grid;
    gap: 0.45rem;
}

.lead-form span {
    font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(34, 27, 27, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
}

.notice-banner {
    padding: 1rem 1.2rem;
    border-radius: 18px;
    font-weight: 700;
}

.notice-banner--success {
    color: #0f5132;
    background: #dff4e5;
    border: 1px solid #bae5c7;
}

.file-name {
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.map-frame {
    margin-top: 1.5rem;
    overflow: hidden;
    border-radius: 24px;
}

.map-frame iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
}

.site-footer {
    padding: 4rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.82);
    background: linear-gradient(180deg, #281d1e 0%, #150f10 100%);
}

.site-footer h2 {
    margin-bottom: 0.85rem;
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    color: var(--white);
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    align-items: start;
}

.footer-grid li + li {
    margin-top: 0.75rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-whatsapp {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    box-shadow: 0 22px 40px rgba(158, 38, 40, 0.28);
    font-weight: 800;
}

.floating-whatsapp--fallback {
    background: linear-gradient(135deg, #1d1617, #4a3839);
}

.visual {
    position: relative;
    min-height: 240px;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, #efe7dd, #d8c5b6 58%, #f6efe8 100%);
}

.visual__frame,
.visual__accent,
.visual__label {
    position: absolute;
}

.visual__frame {
    inset: 12% 18% 15% 22%;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0 16%, rgba(210, 195, 184, 0.8) 16% 20%, rgba(255, 255, 255, 0.8) 20% 36%, rgba(210, 195, 184, 0.78) 36% 40%, rgba(255, 255, 255, 0.88) 40% 100%),
        linear-gradient(180deg, rgba(67, 47, 46, 0.1), transparent 72%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.66);
}

.visual__accent {
    inset: auto 0 0 0;
    height: 24%;
    background: linear-gradient(135deg, rgba(162, 123, 98, 0.28), rgba(87, 61, 58, 0.12));
}

.visual__label {
    left: 1.1rem;
    bottom: 1rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    color: var(--white);
    background: rgba(34, 27, 27, 0.72);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.visual--zebra-blinds .visual__frame,
.visual--motorized-blinds .visual__frame {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0 14%, rgba(194, 177, 165, 0.72) 14% 28%, rgba(255, 255, 255, 0.92) 28% 42%, rgba(194, 177, 165, 0.72) 42% 56%, rgba(255, 255, 255, 0.92) 56% 70%, rgba(194, 177, 165, 0.72) 70% 84%, rgba(255, 255, 255, 0.92) 84% 100%);
}

.visual--venetian-blinds .visual__frame,
.visual--wooden-blinds .visual__frame,
.visual--offices .visual__frame {
    background:
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0 10px, rgba(175, 146, 123, 0.9) 10px 14px, rgba(255, 255, 255, 0.95) 14px 24px),
        linear-gradient(180deg, rgba(50, 35, 33, 0.08), transparent 70%);
}

.visual--curtains .visual__frame,
.visual--residential .visual__frame,
.visual--apartments .visual__frame {
    background:
        radial-gradient(circle at 0 50%, rgba(239, 220, 205, 0.95), transparent 42%),
        radial-gradient(circle at 100% 50%, rgba(222, 198, 180, 0.95), transparent 42%),
        linear-gradient(90deg, rgba(241, 228, 216, 0.92), rgba(255, 255, 255, 0.84) 50%, rgba(235, 220, 209, 0.9));
}

.visual--motorized-blinds::after,
.visual--hotels::after {
    content: '';
    position: absolute;
    right: 14%;
    top: 14%;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(34, 27, 27, 0.82);
    box-shadow: 0 12px 24px rgba(34, 27, 27, 0.2);
}

.visual--hotels .visual__accent,
.visual--wooden-blinds .visual__accent {
    background: linear-gradient(135deg, rgba(130, 86, 62, 0.45), rgba(73, 44, 41, 0.22));
}

.desktop-only {
    display: inline-flex;
}

@media (max-width: 1100px) {
    .header-shell,
    .section-heading--split,
    .footer-grid,
    .hero-grid,
    .product-hero,
    .form-grid,
    .prose-grid,
    .final-cta__shell {
        grid-template-columns: 1fr;
    }

    .desktop-nav,
    .desktop-only {
        display: none;
    }

    .menu-toggle,
    .mobile-nav {
        display: block;
    }

    .hero-panel {
        right: 1.5rem;
    }

    .footer-grid {
        gap: 1.8rem;
    }
}

@media (max-width: 900px) {
    .category-card,
    .product-grid .product-card,
    .project-grid .project-card,
    .why-card {
        grid-column: span 6;
    }

    .featured-track {
        grid-auto-columns: minmax(300px, 82vw);
    }

    .hero-section,
    .page-hero,
    .section-block,
    .site-footer {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 680px) {
    .hero-copy h1,
    .page-hero h1 {
        font-size: 2.55rem;
    }

    .header-chip {
        display: none;
    }

    .hero-scene {
        min-height: 520px;
    }

    .hero-panel,
    .hero-stat-bar {
        position: static;
        margin-top: 1rem;
    }

    .product-category-grid,
    .why-grid,
    .product-grid,
    .project-grid,
    .form-two-up {
        grid-template-columns: 1fr;
    }

    .category-card,
    .product-grid .product-card,
    .project-grid .project-card,
    .why-card {
        grid-column: auto;
    }

    .floating-whatsapp {
        right: 0.85rem;
        left: 0.85rem;
        bottom: 0.85rem;
    }
}

/* Premium Polish Pass */
:root {
  --ease-premium: cubic-bezier(.22,.61,.36,1);
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,38,40,.26), transparent);
  opacity: .6;
}

.desktop-nav a,
.mobile-nav a,
.menu-fallback a {
  position: relative;
}

.desktop-nav a::after,
.mobile-nav a::after,
.menu-fallback a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand), #d17d6e);
  transition: transform .35s var(--ease-premium);
}

.desktop-nav a:hover::after,
.mobile-nav a:hover::after,
.menu-fallback a:hover::after {
  transform: scaleX(1);
}

.hero-copy h1,
.section-heading h2,
.final-cta h2 {
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  text-wrap: balance;
}

.section-block {
  padding: clamp(3.2rem, 6vw, 5rem) 0;
}

.hero-section {
  padding-top: clamp(4rem, 8vw, 6.4rem);
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  left: var(--mx, 50%);
  top: var(--my, 50%);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.32), transparent 68%);
  transition: transform .45s var(--ease-premium);
  z-index: -1;
}

.button:hover::before {
  transform: translate(-50%, -50%) scale(1.2);
}

.hero-scene {
  transform: perspective(1400px) rotateY(-2deg);
  transition: transform .8s var(--ease-premium), box-shadow .5s var(--ease-premium);
}

.hero-scene:hover {
  transform: perspective(1400px) rotateY(0deg) translateY(-4px);
  box-shadow: 0 30px 80px rgba(25, 17, 17, 0.16);
}

.category-card,
.product-card,
.project-card,
.why-card,
.prose-card,
.hero-panel,
.final-cta__shell {
  transition: transform .45s var(--ease-premium), box-shadow .45s var(--ease-premium), border-color .35s var(--ease-premium);
}

.category-card:hover,
.product-card:hover,
.project-card:hover,
.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(158, 38, 40, 0.22);
  box-shadow: 0 28px 60px rgba(24, 14, 14, 0.16);
}

.project-card::after,
.product-card::after,
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,.22), transparent 35%, transparent 70%, rgba(158,38,40,.08));
  mix-blend-mode: soft-light;
}

.visual::before {
  inset: 0;
  background: radial-gradient(circle at 85% 10%, rgba(255,255,255,.5), transparent 28%);
}

.visual::after {
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(20,13,13,.28), transparent);
  opacity: .26;
}

.featured-track {
  scroll-behavior: smooth;
}

.testimonial-slide {
  transition: opacity .6s var(--ease-premium), transform .6s var(--ease-premium), box-shadow .6s var(--ease-premium);
}

.testimonial-slide.is-active {
  box-shadow: 0 30px 65px rgba(34,27,27,.18);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px) scale(.99);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .75s var(--ease-premium), transform .75s var(--ease-premium);
}

.product-grid .product-card:nth-child(2n),
.project-grid .project-card:nth-child(2n),
.product-category-grid .category-card:nth-child(2n) {
  transition-delay: .08s;
}

.product-grid .product-card:nth-child(3n),
.project-grid .project-card:nth-child(3n),
.product-category-grid .category-card:nth-child(3n) {
  transition-delay: .16s;
}

.floating-whatsapp {
  animation: pulseBadge 2.4s ease-in-out infinite;
}

@keyframes pulseBadge {
  0% { transform: translateY(0); box-shadow: 0 22px 40px rgba(158,38,40,.28); }
  50% { transform: translateY(-2px); box-shadow: 0 26px 46px rgba(158,38,40,.36); }
  100% { transform: translateY(0); box-shadow: 0 22px 40px rgba(158,38,40,.28); }
}

@media (max-width: 1100px) {
  .hero-scene {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button::before,
  .floating-whatsapp,
  .reveal-ready,
  .reveal-ready.is-visible,
  .hero-scene,
  .hero-scene:hover,
  .category-card,
  .product-card,
  .project-card,
  .why-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}


/* Ultra Premium Final Pass */
.hero-actions--priority .button--primary {
  min-width: 240px;
}

.hero-actions--priority .button--secondary {
  border-color: rgba(158, 38, 40, 0.2);
}

.hero-kicker {
  margin-top: 0.95rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.portfolio-direction-note {
  margin: 0 0 1rem;
  color: rgba(255,255,255,.82);
  max-width: 72ch;
  font-size: 0.95rem;
}

.shot-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.65rem 0 0.35rem;
  min-height: 30px;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f6e9e6;
  background: rgba(158,38,40,.38);
  border: 1px solid rgba(255,255,255,.2);
}

.shot-direction {
  font-size: 0.85rem;
  color: rgba(255,255,255,.76) !important;
  margin-bottom: 0.8rem;
}

.shot-wide .visual__accent {
  background: linear-gradient(135deg, rgba(123,74,58,.45), rgba(58,35,35,.2));
}

.shot-detail .visual__frame {
  filter: contrast(1.08) saturate(1.05);
}

.shot-context .visual::before {
  background: radial-gradient(circle at 25% 15%, rgba(255,255,255,.35), transparent 35%);
}

.cta-text-link {
  align-self: center;
  color: rgba(34,27,27,.8);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color .25s var(--ease-premium);
}

.cta-text-link:hover {
  color: var(--brand);
}

@media (max-width: 900px) {
  .hero-actions--priority .button--primary,
  .hero-actions--priority .button--secondary,
  .hero-actions--priority .button--ghost {
    width: 100%;
  }

  .cta-text-link {
    width: 100%;
    text-align: center;
  }
}
