/* ========================================
   GLOBAL RESET & ROOT VARIABLES
   ======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-dark: #9A7B2F;
    --purple: #7B2FBE;
    --purple-light: #9B59D0;
    --purple-dark: #5A1F8C;
    --pink: #C2257A;
    --pink-light: #E040A0;
    --black: #0A0A0A;
    --dark: #111118;
    --dark2: #1A1A24;
    --dark3: #222230;
    --white: #FAFAF8;
    --gray: #9A9A9A;
    --gray-light: #E8E8E4;
    --surface: #F5F4F0;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}


/* ========================================
   TOPBAR
   ======================================== */

.topbar {
    background: var(--black);
    color: #ccc;
    font-size: 12.5px;
    padding: 10px 0;
}

.topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar a {
    color: #ccc;
    transition: color .2s;
}

.topbar a:hover {
    color: var(--gold);
}

.topbar svg {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 5px;
    opacity: .7;
}


/* ========================================
   NAVIGATION
   ======================================== */

nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav-logo img {
    height: 56px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 36px;
    font-size: 14px;
    font-weight: 500;
}

.nav-links a {
    color: #333;
    transition: color .2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .25s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--purple);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--purple);
    color: var(--white);
    padding: 11px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s, transform .15s;
}

.btn-nav:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: .3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 300;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu a,
.mobile-menu-toggle {
    color: var(--white);
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.mobile-menu-toggle {
    padding: 12px 0;
}

.mobile-products-submenu {
    display: none;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-top: 12px;
}

.mobile-products-submenu.open {
    display: flex;
}

.mobile-products-submenu a {
    font-size: 18px;
    color: var(--white);
    padding: 0;
    text-align: center;
    width: 100%;
}

.mobile-menu.open {
    display: flex;
}

.close-menu {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}


/* ========================================
   NAV DROPDOWN
   ======================================== */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .25s;
}

.nav-links .nav-dropdown-trigger {
    position: relative;
}

.nav-dropdown-trigger:hover {
    color: var(--purple);
}

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 720px;
    max-width: 75vw;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .18);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px) scale(.98);
    transform-origin: top;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
}

.nav-dropdown.open .nav-dropdown-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.nav-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
}

.nav-cat-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    text-align: left;
    height: 116px;
    display: block;
    border: 1px solid rgba(0, 0, 0, .06);
    transition: transform .25s ease, border-color .25s ease;
}

.nav-cat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(123, 47, 190, .25);
}

.nav-cat-bg {
    position: absolute;
    inset: 0;
    transition: transform .5s ease;
}

.nav-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 10, 10, .82) 0%, rgba(10, 10, 10, .15) 60%);
}

.nav-cat-content {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    color: #fff;
}

.nav-cat-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 6px;
    font-weight: 700;
}

.nav-cat-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
}

.nav-dropdown.open .nav-cat-bg {
    transform: scale(1.02);
}

.nav-dropdown-chevron {
    width: 18px;
    height: 18px;
    transition: transform .25s ease;
}

.nav-dropdown.open .nav-dropdown-chevron {
    transform: rotate(180deg);
}


/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    background: var(--dark);
    padding: 52px 0 44px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(123, 47, 190, .22) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(194, 37, 122, .12) 0%, transparent 50%);
}

.page-header-grid {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, .5) 39px, rgba(255, 255, 255, .5) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 255, 255, .5) 39px, rgba(255, 255, 255, .5) 40px);
}

.page-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 18px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .4);
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb svg {
    width: 14px;
    height: 14px;
    opacity: .5;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 14px;
}

.page-header h1 em {
    font-style: normal;
    color: var(--gold-light);
}

.page-header-sub {
    color: rgba(255, 255, 255, .55);
    font-size: 16px;
    max-width: 560px;
    line-height: 1.7;
}


/* ========================================
   SECTION COMMONS
   ======================================== */

.section {
    padding: 96px 0;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 18px;
}

.section-sub {
    color: #666;
    font-size: 16.5px;
    line-height: 1.75;
    max-width: 600px;
}


/* ========================================
   HERO
   ======================================== */

.hero {
    min-height: 100vh;
    background: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 40%, rgba(123, 47, 190, .25) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(194, 37, 122, .15) 0%, transparent 55%),
        var(--dark);
}

.hero-tiles-pattern {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255, 255, 255, .5) 59px, rgba(255, 255, 255, .5) 60px),
        repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255, 255, 255, .5) 59px, rgba(255, 255, 255, .5) 60px);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .3);
    color: var(--gold-light);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 600;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}

.hero-sub {
    color: rgba(255, 255, 255, .65);
    font-size: 17px;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    color: var(--white);
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: opacity .2s, transform .15s;
    display: inline-block;
}

.btn-primary:hover {
    opacity: .9;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, .25);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    transition: border-color .2s, background .2s;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, .1);
}

.hero-stats {
    display: flex;
    gap: 36px;
}

.hero-stat {
    border-left: 2px solid rgba(201, 168, 76, .4);
    padding-left: 16px;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.hero-tile {
    border-radius: 12px;
    overflow: hidden;
    background: var(--dark3);
}

.hero-tile:nth-child(1) {
    grid-row: span 2;
    min-height: 380px;
}

.hero-tile:nth-child(2) {
    min-height: 180px;
}

.hero-tile:nth-child(3) {
    min-height: 180px;
}

.tile-placeholder {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tile-placeholder span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    font-style: italic;
    letter-spacing: .05em;
    text-align: center;
    padding: 12px;
}

.tile-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-1 {
    background: linear-gradient(135deg, #2a1f3d 0%, #1a102e 50%, #2d1a1a 100%);
}

.tp-2 {
    background: linear-gradient(135deg, #1f1a2e 0%, #2e1f1a 100%);
}

.tp-3 {
    background: linear-gradient(135deg, #1a2a1f 0%, #1a1a2e 100%);
}

.tile-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .8) 0%, transparent 100%);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.floating-badge {
    position: absolute;
    bottom: -12px;
    left: -12px;
    background: var(--white);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.fb-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.fb-text {
    font-size: 12px;
    color: #555;
}

.fb-text strong {
    display: block;
    font-size: 15px;
    color: var(--black);
    font-weight: 600;
}


/* ========================================
   TRUST STRIP
   ======================================== */

.trust {
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    padding: 28px 0;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: #444;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--purple);
    flex-shrink: 0;
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: var(--gray-light);
}


/* ========================================
   OFFER BANNER
   ======================================== */

.offer-banner {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 40%, var(--pink) 100%);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.offer-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.offer-tag {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.offer-text {
    font-size: 14.5px;
    font-weight: 500;
}

.offer-text strong {
    font-weight: 700;
}

.offer-cta {
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: opacity .2s;
}

.offer-cta:hover {
    opacity: .9;
}


/* ========================================
   CATEGORIES / COLLECTIONS
   ======================================== */

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.cat-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 380px;
    background: var(--dark3);
    transition: transform .35s;
}

.cat-card:hover {
    transform: translateY(-6px);
}

.cat-card:first-child {
    grid-column: span 2;
    height: 380px;
}

.cat-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-bg {
    position: absolute;
    inset: 0;
    transition: transform .5s;
}

.cat-card:hover .cat-bg {
    transform: scale(1.06);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 10, 10, .85) 0%, rgba(10, 10, 10, .1) 60%);
}

.cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
}

.cat-eyebrow {
    font-size: 10.5px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.cat-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.cat-link {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}

.cat-card:hover .cat-link {
    color: var(--gold-light);
}

.cat-link svg {
    width: 16px;
    height: 16px;
    transition: transform .2s;
}

.cat-card:hover .cat-link svg {
    transform: translateX(4px);
}

/* Carousel inside category card */
.cat-card-carousel {
    position: relative !important;
}

.carousel-inner-card {
    display: flex;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    height: 100%;
    position: absolute;
    inset: 0;
    width: 100%;
}

.carousel-item-card {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls-card {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: background .3s, transform .3s;
    border: none;
    padding: 0;
    font-size: 0;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.25);
}

.carousel-arrow-card {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .4);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background .3s, transform .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow-card:hover {
    background: rgba(0, 0, 0, .7);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-card.prev {
    left: 20px;
}

.carousel-arrow-card.next {
    right: 20px;
}

.carousel-arrow-card svg {
    width: 24px;
    height: 24px;
}


/* ========================================
   WHY US / VALUES
   ======================================== */

.why {
    background: var(--dark);
    color: var(--white);
}

.why .section-eyebrow {
    color: var(--gold-light);
}

.why .section-title {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 64px;
    background: rgba(255, 255, 255, .06);
    border-radius: 16px;
    overflow: hidden;
}

.why-item {
    background: var(--dark2);
    padding: 36px 28px;
    transition: background .2s;
}

.why-item:hover {
    background: var(--dark3);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(123, 47, 190, .3), rgba(194, 37, 122, .2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon svg {
    width: 26px;
    height: 26px;
    color: var(--gold-light);
}

.why-item h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.why-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
}


/* ========================================
   PROCESS / HOW IT WORKS
   ======================================== */

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-light), var(--pink-light), transparent);
}

.step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: var(--white);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step h3 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}


/* ========================================
   TESTIMONIALS
   ======================================== */

.testi {
    background: var(--dark);
}

.testi-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.testi-header .section-title {
    color: var(--white);
    margin-bottom: 0;
}

.testi-header .section-eyebrow {
    color: var(--gold-light);
}

.rating-badge {
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 12px;
    padding: 16px 24px;
    text-align: center;
}

.rating-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.rating-stars {
    color: var(--gold);
    font-size: 16px;
    margin: 4px 0;
}

.rating-count {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-card {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 28px;
    transition: border-color .2s;
}

.testi-card:hover {
    border-color: rgba(201, 168, 76, .3);
}

.testi-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 14px;
}

.testi-text {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-text::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--purple-light);
    opacity: .5;
    display: block;
    line-height: .6;
    margin-bottom: 8px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 20px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
}

.testi-role {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
}


/* ========================================
   BRANDS
   ======================================== */

.brands {
    padding: 64px 0;
    border-top: 1px solid var(--gray-light);
}

.brands-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 36px;
}

.brands-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.brand-item {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #bbb;
    letter-spacing: .05em;
    transition: color .2s;
}

.brand-item:hover {
    color: var(--purple);
}


/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: var(--dark);
    padding: 0;
}

.cta-inner-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px 50px;
}

.cta-box {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 35%, var(--pink-light) 100%);
    border-radius: 24px;
    padding: 72px 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: 80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
}

.cta-box-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-box-sub {
    color: rgba(255, 255, 255, .75);
    font-size: 16px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.cta-box-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: background .2s, transform .15s;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-white-outline {
    border: 1.5px solid rgba(255, 255, 255, .4);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all .2s;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, .1);
}


/* ========================================
   WHATSAPP FLOAT
   ======================================== */

.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    transition: transform .2s;
}

.wa-float:hover {
    transform: scale(1.1);
}

.wa-float svg {
    width: 28px;
    height: 28px;
}


/* ========================================
   FOOTER
   ======================================== */

footer {
    background: var(--black);
    color: rgba(255, 255, 255, .6);
    padding: 64px 0 28px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand h2 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-brand h2 span {
    color: var(--gold);
}

.footer-brand-sub {
    font-size: 12px;
    color: var(--gold-light);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s;
    color: rgba(255, 255, 255, .6);
}

.social-btn:hover {
    border-color: var(--purple-light);
    background: rgba(123, 47, 190, .2);
    color: var(--white);
}

.social-btn svg {
    width: 17px;
    height: 17px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 11px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--gold-light);
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(123, 47, 190, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 16px;
    height: 16px;
    color: var(--purple-light);
}

.contact-text {
    font-size: 13.5px;
    line-height: 1.5;
}

.contact-text a {
    color: rgba(255, 255, 255, .55);
    transition: color .2s;
}

.contact-text a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--white);
}


/* ========================================
   INSPIRATION LOOKBOOK (Products page)
   ======================================== */

.lookbook-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.concept-section {
    margin-bottom: 72px;
}

.concept-header {
    margin-bottom: 24px;
}

.concept-header h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--black);
    margin-bottom: 6px;
}

.concept-header p {
    color: var(--gray);
    font-size: 15px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.concept-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.room-view-container {
    position: relative;
    display: flex;
    min-height: 420px;
    max-height: 520px;
}

.room-img-box {
    width: 70%;
    position: relative;
    background: var(--dark2);
    overflow: hidden;
    min-height: 420px;
    max-height: 520px;
}

.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 70%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.tile-spec-card {
    width: 30%;
    background: #fff;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--gray-light);
}

.tag-featured {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.tile-spec-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--black);
    line-height: 1.2;
}

.tile-meta-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tile-meta-specs span {
    font-size: 12px;
    font-weight: 500;
    background: var(--surface);
    padding: 5px 12px;
    border-radius: 6px;
    color: #555;
}

.showroom-note {
    font-size: 13.5px;
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.6;
}

.showroom-note strong {
    color: var(--black);
}

.btn-carousel-enquire {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: 0 4px 12px rgba(123, 47, 190, 0.2);
}

.btn-carousel-enquire:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border: 1px solid var(--gray-light);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: background .2s, color .2s;
}

.carousel-nav:hover {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: calc(30% + 20px);
}

.showroom-banner-footer {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 24px;
}

.showroom-banner-footer h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--gold-light);
}

.showroom-banner-footer p {
    color: #aaa;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 24px;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold-light);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
}


/* ========================================
   STORY (About page)
   ======================================== */

.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.story-visual {
    position: relative;
}

.story-img-main {
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    background: var(--dark3);
}

.story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: 14px;
    padding: 20px 26px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
    text-align: center;
}

.story-badge-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: var(--purple);
    line-height: 1;
}

.story-badge-label {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.story-text p {
    color: #555;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 18px;
}

.story-text p:last-child {
    margin-bottom: 0;
}


/* ========================================
   TIMELINE (About page)
   ======================================== */

.timeline {
    margin-top: 64px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(180deg, var(--purple-light), var(--pink-light));
}

.timeline-item {
    position: relative;
    padding-left: 64px;
    margin-bottom: 44px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 9px;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px rgba(123, 47, 190, .25);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: .05em;
    margin-bottom: 6px;
}

.timeline-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    max-width: 560px;
}


/* ========================================
   CATALOGUE GRID (Catalog page)
   ======================================== */

.catalog-section {
    padding: 64px 0 96px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 48px;
}

.catalog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
    transition: transform .25s, box-shadow .25s;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, .12);
}

.catalog-thumb {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.catalog-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .5;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .06) 2px, transparent 2px, transparent 14px);
}

.catalog-thumb svg {
    width: 54px;
    height: 54px;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, .92);
}

.catalog-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.catalog-pages {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.ct-1 {
    background: linear-gradient(135deg, #7B2FBE, #C2257A);
}

.ct-2 {
    background: linear-gradient(135deg, #C9A84C, #9A7B2F);
}

.ct-3 {
    background: linear-gradient(135deg, #5A1F8C, #7B2FBE);
}

.ct-4 {
    background: linear-gradient(135deg, #C2257A, #E2C97E);
}

.ct-5 {
    background: linear-gradient(135deg, #111118, #5A1F8C);
}

.ct-6 {
    background: linear-gradient(135deg, #9A7B2F, #C2257A);
}

.ct-7 {
    background: linear-gradient(135deg, #7B2FBE, #9A7B2F);
}

.catalog-body {
    padding: 22px 22px 24px;
}

.catalog-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 8px;
}

.catalog-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
}

.catalog-desc {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 18px;
}

.catalog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    color: var(--gray);
    margin-bottom: 18px;
}

.catalog-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.catalog-meta svg {
    width: 13px;
    height: 13px;
    opacity: .7;
}

.catalog-actions {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.btn-cat {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    text-align: center;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s, transform .15s, border-color .2s;
    box-sizing: border-box;
}

.btn-cat-view {
    background: var(--surface);
    color: var(--black);
    border: 1px solid var(--gray-light);
}

.btn-cat-view:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.btn-cat-download {
    background: var(--purple);
    color: #fff;
}

.btn-cat-download:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
}

.cat-cta {
    background: var(--dark);
    border-radius: 20px;
    padding: 48px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.cat-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 30%, rgba(123, 47, 190, .3) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 80%, rgba(194, 37, 122, .2) 0%, transparent 55%);
}

.cat-cta-text {
    position: relative;
    z-index: 1;
}

.cat-cta-text h3 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cat-cta-text p {
    color: rgba(255, 255, 255, .6);
    font-size: 14.5px;
    max-width: 440px;
}

.cat-cta-btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    background: var(--gold);
    color: var(--black);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14.5px;
    white-space: nowrap;
    transition: background .2s, transform .15s;
}

.cat-cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}


/* ========================================
   QUICK CONTACT CARDS (Contact page)
   ======================================== */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -35px;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 26px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    border: 1px solid var(--gray-light);
    transition: transform .2s, box-shadow .2s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(123, 47, 190, .14), rgba(194, 37, 122, .1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--purple);
}

.contact-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.contact-card a.card-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--purple);
}

.contact-card a.card-link:hover {
    color: var(--purple-dark);
}


/* ========================================
   CONTACT SPLIT (Form + Map)
   ======================================== */

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 96px;
    align-items: start;
}

.contact-form {
    background: var(--white);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--black);
    transition: border-color .2s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--purple);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    color: var(--white);
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: opacity .2s, transform .15s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    opacity: .9;
    transform: translateY(-2px);
}

.btn-submit svg {
    width: 18px;
    height: 18px;
}

.form-note {
    font-size: 12.5px;
    color: #999;
    margin-top: 14px;
    text-align: center;
}

.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
    background: var(--dark3);
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    display: block;
}

.map-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.map-badge svg {
    width: 20px;
    height: 20px;
    color: var(--purple);
}

.map-badge-text {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--black);
}


/* ========================================
   HOURS (Contact page)
   ======================================== */

.hours-box {
    background: var(--surface, #F5F4F0);
    border-radius: 16px;
    padding: 32px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 14.5px;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--black);
}

.hours-time {
    color: #666;
}

.hours-row.closed .hours-time {
    color: var(--pink);
}


/* ========================================
   FAQ (Contact page)
   ======================================== */

.faq {
    background: var(--dark);
    color: var(--white);
}

.faq .section-eyebrow {
    color: var(--gold-light);
}

.faq .section-title {
    color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 56px;
    background: rgba(255, 255, 255, .06);
    border-radius: 16px;
    overflow: hidden;
}

.faq-item {
    background: var(--dark2);
    padding: 30px 32px;
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.faq-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
}


/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Up to 1100px */
@media (max-width: 1100px) {
    .carousel-nav.next {
        right: calc(35% + 15px);
    }

    .room-img-box {
        width: 65%;
    }

    .tile-spec-card {
        width: 35%;
        padding: 32px 24px;
    }

    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }
}

/* Up to 1024px */
@media (max-width: 1024px) {

    .nav-links,
    .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-dropdown-panel {
        display: none !important;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cat-cta {
        flex-direction: column;
        text-align: center;
    }
}

/* Up to 900px */
@media (max-width: 900px) {
    .nav-dropdown-panel {
        width: 560px;
    }

    .story {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-visual {
        order: -1;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-box {
        grid-template-columns: 1fr;
        padding: 48px 36px;
    }

    .cta-box-actions {
        align-items: flex-start;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 100px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-tile:nth-child(1) {
        min-height: 220px;
    }

    .hero-tile:nth-child(2),
    .hero-tile:nth-child(3) {
        min-height: 120px;
    }

    .cat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cat-card:first-child {
        grid-column: span 2;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .process-steps::before {
        display: none;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .carousel-arrow-card {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow-card svg {
        width: 20px;
        height: 20px;
    }
}

/* Up to 860px */
@media (max-width: 860px) {
    .room-view-container {
        flex-direction: column;
        min-height: auto;
        max-height: none;
    }

    .room-img-box {
        width: 100%;
        height: 260px;
        min-height: 260px;
        max-height: 260px;
    }

    .tile-spec-card {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--gray-light);
        padding: 32px 24px;
    }

    .carousel-nav {
        top: 130px; /* Centered relative to the 260px image height */
    }

    .carousel-nav.next {
        right: 20px;
    }

    .carousel-nav.prev {
        left: 20px;
    }

    .card-img-overlay {
        background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.2) 100%);
    }
}

/* Up to 640px */
@media (max-width: 640px) {
    .topbar-left {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-dropdown-panel {
        display: none;
    }

    .lookbook-container {
        padding: 32px 16px 60px;
    }

    .concept-header h2 {
        font-size: 26px;
    }

    .tile-spec-card h3 {
        font-size: 22px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .cat-grid {
        grid-template-columns: 1fr;
    }

    .cat-card:first-child {
        grid-column: span 1;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .brands-row {
        gap: 24px;
    }

    .trust-divider {
        display: none;
    }

    .page-header {
        padding: 52px 0 116px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        margin-top: -64px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .cat-cta {
        padding: 36px 26px;
    }

    .story-badge {
        position: static;
        margin-top: 16px;
        display: inline-block;
    }

    .story-img-main {
        height: 280px;
    }

    .section {
        padding: 64px 0;
    }

    .carousel-arrow-card {
        width: 36px;
        height: 36px;
    }

    .carousel-arrow-card svg {
        width: 18px;
        height: 18px;
    }

    .carousel-arrow-card.prev {
        left: 10px;
    }

    .carousel-arrow-card.next {
        right: 10px;
    }
}