@import url('https://fonts.googleapis.com/css2?family=Artifika&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Jost:wght@300;400;500;600;700&display=swap');

/* Global Settings */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Artifika', serif;
    background: var(--bg-base);
    color: var(--txt-primary);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    transition:
        background var(--dur-base) var(--ease-io),
        color var(--dur-base) var(--ease-io);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input,
select,
textarea {
    font-family: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-surface);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* Selection */
::selection {
    background: var(--gold-alpha-30);
    color: var(--txt-primary);
}


/* ─────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ───────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    line-height: 1.15;
    font-weight: 700;
    color: var(--txt-primary);
}

/* Display sizes */
.disp-2xl {
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
}

.disp-xl {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.disp-lg {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    letter-spacing: -0.015em;
}

.disp-md {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.disp-sm {
    font-size: clamp(1.15rem, 2vw, 1.65rem);
}

/* Eyebrow / Section label */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1.5px;
    background: var(--gold);
    opacity: 0.6;
}

/* Section block label (centered) */
.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
    content: '';
    flex: 1;
    max-width: 36px;
    height: 1.5px;
    background: var(--gold);
    opacity: 0.5;
}

/* Body text helper */
.lead {
    font-size: 1.08rem;
    color: var(--txt-secondary);
    line-height: 1.80;
    /* width: 80%; */
    margin-top: 14px;
}

/* Italic gold accent */
.italic-gold {
    font-style: italic;
    color: var(--gold);
}

/* Gold gradient text */
.gold-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─────────────────────────────────────────────────────────────
   LAYOUT HELPERS
   ───────────────────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    width: 100%;
}

.section {
    padding: 96px 0;
}

.section-sm {
    padding: 64px 0;
}

.section-xs {
    padding: 42px 0;
}

.section-head {
    margin-bottom: 56px;
}

.section-head.center {
    text-align: center;
}

.section-head.center .eyebrow {
    justify-content: center;
}

/* Grid helpers */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Flex helpers */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-1 {
    gap: 4px;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 12px;
}

.gap-4 {
    gap: 16px;
}

.gap-5 {
    gap: 20px;
}

.gap-6 {
    gap: 24px;
}

.gap-8 {
    gap: 32px;
}

/* Spacing */
.mt-2 {
    margin-top: 8px;
}

.mt-3 {
    margin-top: 12px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-6 {
    margin-top: 24px;
}

.mt-8 {
    margin-top: 32px;
}

.mt-10 {
    margin-top: 40px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

/* Width */
.w-full {
    width: 100%;
}

/* Text */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.text-muted {
    color: var(--txt-secondary);
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.78rem;
}

.font-600 {
    font-weight: 600;
}

.font-700 {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--r-sm);
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    transition:
        background var(--dur-base) var(--ease-io),
        color var(--dur-base) var(--ease-io),
        border-color var(--dur-base) var(--ease-io),
        transform var(--dur-fast) var(--ease-out),
        box-shadow var(--dur-base) var(--ease-io);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity var(--dur-fast);
}

.btn:active::after {
    opacity: 1;
}

/* Primary */
.btn-primary {
    background: var(--gold);
    color: var(--txt-inverse);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Outline */
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-gold);
    /* color: var(--txt-primary); */
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    background: var(--gold-alpha-10);
}

/* Ghost (text link style) */
.btn-ghost {
    background: transparent;
    padding: 10px 2px;
    color: var(--gold);
    font-weight: 600;
    gap: 6px;
}

.btn-ghost .arr {
    display: inline-block;
    transition: transform var(--dur-base) var(--ease-out);
}

.btn-ghost:hover .arr {
    transform: translateX(5px);
}

/* Sizes */
.btn-sm {
    padding: 9px 20px;
    font-size: 0.84rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-xl {
    padding: 18px 44px;
    font-size: 1.05rem;
}

/* Icon button */
.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--bg-elevated);
    border: 1px solid var(--border-dim);
    color: var(--txt-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--dur-base) var(--ease-io);
    cursor: pointer;
}

.btn-icon:hover {
    border-color: var(--border-gold);
    color: var(--gold);
    background: var(--gold-alpha-10);
}

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 1000;
    background: var(--bg-overlay);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dim);
    transition:
        background var(--dur-base) var(--ease-io),
        border-color var(--dur-base) var(--ease-io),
        box-shadow var(--dur-base) var(--ease-io);
    display: flex;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background: var(--bg-overlay);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-dim);
    /* box-shadow: var(--shadow-sm); */
}

.navbar .container {
    width: 100%;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

/* Logo */
.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
    justify-content: center;
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--gold);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform var(--dur-base) var(--ease-out);
}

.logo-group:hover .logo-mark {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--txt-primary);
    letter-spacing: 0.01em;
}

.logo-text em {
    color: var(--gold);
    font-style: italic;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    padding: 7px;
    border-radius: var(--r-sm);
    font-size: 18px;
    font-weight: 500;
    color: var(--txt-secondary);
    transition: all var(--dur-fast) var(--ease-io);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    right: 50%;
    height: 1.5px;
    background: var(--gold);
    border-radius: 1px;
    transition: all var(--dur-base) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: var(--gold-alpha-10);
}

.nav-link.active::after {
    left: 14px;
    right: 14px;
}

/* Stronger highlight for active menu */
.nav-link.active {
    color: #fff !important;
    background: var(--gold) !important;
    box-shadow: 0 2px 8px 0 rgba(255, 215, 0, 0.15);
}

/* Desktop Dropdowns */
.dropdown {
    position: relative;
    padding-bottom: 5px;
    /* Bridge gap for hover */
    margin-bottom: -5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-md);
    min-width: 180px;
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--dur-base) var(--ease-out);
    z-index: 1100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 24px;
    color: var(--txt-secondary);
    font-size: 0.90rem;
    font-weight: 500;
    transition: all var(--dur-fast) var(--ease-io);
}

.dropdown-link:hover {
    color: var(--gold);
    background: var(--gold-alpha-10);
    padding-left: 28px;
}

.dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 5px;
    transition: transform var(--dur-base) var(--ease-out);
    display: inline-block;
    vertical-align: middle;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--gold);
}

/* Nav end controls */
.nav-end {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Control buttons (theme, RTL) */
.ctrl-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: var(--bg-elevated);
    border: 1px solid var(--border-dim);
    color: var(--txt-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease-io);
}

.ctrl-btn:hover {
    border-color: var(--border-gold);
    color: var(--gold);
    background: var(--gold-alpha-10);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--txt-primary);
    border-radius: 2px;
    transition: all var(--dur-base) var(--ease-io);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-dim);
    padding: 16px var(--container-pad) 24px;
    z-index: 999;
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--dur-base) var(--ease-io);
    flex-direction: column;
    gap: 2px;
}

.mobile-nav.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    display: flex;
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    background: var(--bg-elevated);
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-sm);
    min-width: 140px;
    z-index: 10;
    padding: 8px 0;
    margin-left: 18px;
    margin-bottom: 8px;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    display: flex;
}

.mobile-dropdown>.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown .dropdown-arrow {
    margin-left: 6px;
}

.mobile-dropdown .dropdown-link {
    display: block;
    padding: 8px 18px;
    color: var(--txt-secondary);
    text-decoration: none;
    font-size: 0.95em;
    transition: background 0.2s;
}

.mobile-dropdown .dropdown-link:hover {
    background: var(--gold-alpha-10);
    color: var(--gold);
}

.mobile-nav .nav-link {
    display: block;
    padding: 13px 16px;
    font-size: 0.97rem;
    border-radius: var(--r-sm);
}

.mobile-sep {
    height: 1px;
    background: var(--border-dim);
    margin: 10px 0;
}

/* ─────────────────────────────────────────────────────────────
   CARDS — General
   ───────────────────────────────────────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition:
        transform var(--dur-base) var(--ease-out),
        border-color var(--dur-base) var(--ease-io),
        box-shadow var(--dur-base) var(--ease-io),
        background var(--dur-base) var(--ease-io);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    background: var(--bg-card-alt);
}

/* Feature card */
.feat-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-lg);
    transition: all var(--dur-base) var(--ease-io);
}

.feat-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-sm);
    background: var(--gold-alpha-10);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    transition: all var(--dur-base) var(--ease-io);
}

.feat-card:hover .feat-icon {
    background: var(--gold-alpha-18);
    transform: scale(1.05);
}

.feat-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--txt-primary);
    margin-bottom: 8px;
}

.feat-desc {
    font-size: 0.88rem;
    color: var(--txt-secondary);
    line-height: 1.70;
}

/* ─────────────────────────────────────────────────────────────
   INSTRUMENT CARD
   ───────────────────────────────────────────────────────────── */
.instr-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--dur-base) var(--ease-io);
    display: block;
}

.instr-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.instr-img {
    position: relative;
    height: 215px;
    background: var(--bg-elevated);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease-out);
}

.instr-card:hover .instr-img img {
    transform: scale(1.07);
}

.instr-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--txt-inverse);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: var(--r-full);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.instr-body {
    padding: 20px;
}

.instr-cat {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

.instr-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--txt-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.instr-desc {
    font-size: 0.87rem;
    color: var(--txt-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.instr-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-dim);
    padding-top: 14px;
}

.instr-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.instr-price .period {
    font-family: 'Jost', sans-serif;
    font-size: 0.76rem;
    font-weight: 400;
    color: var(--txt-muted);
    margin-left: 2px;
}

.rent-btn {
    padding: 8px 18px;
    border-radius: var(--r-sm);
    background: var(--gold-alpha-10);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease-io);
}

.rent-btn:hover {
    background: var(--gold);
    color: var(--txt-inverse);
}

/* Stars */
.stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

/* ─────────────────────────────────────────────────────────────
   TESTIMONIAL CARD
   ───────────────────────────────────────────────────────────── */
.testi-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-lg);
    transition: all var(--dur-base) var(--ease-io);
}

.testi-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.testi-quote {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 0.8;
    opacity: 0.55;
    margin-bottom: 12px;
}

.testi-text {
    font-size: 0.96rem;
    color: var(--txt-secondary);
    line-height: 1.80;
    font-style: italic;
    margin-bottom: 22px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-alpha-10);
    border: 2px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testi-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--txt-primary);
}

.testi-role {
    font-size: 0.76rem;
    color: var(--txt-muted);
    margin-top: 2px;
}

/* ─────────────────────────────────────────────────────────────
   PRICING CARD
   ───────────────────────────────────────────────────────────── */
.plan-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
    transition: all var(--dur-base) var(--ease-io);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

/* Featured plan */
.plan-card.featured {
    border-color: var(--border-gold-s);
    background: var(--bg-card-alt);
}

.plan-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gold);
    color: var(--txt-inverse);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--r-full);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.plan-name {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--txt-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.plan-price sup {
    font-size: 1.3rem;
    vertical-align: super;
    line-height: 0;
}

.plan-price sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--txt-secondary);
}

.plan-desc {
    font-size: 0.87rem;
    color: var(--txt-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
}

.plan-divider {
    height: 1px;
    background: var(--border-dim);
    margin: 20px 0;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 11px;
    font-size: 0.88rem;
    color: var(--txt-secondary);
    line-height: 1.5;
}

.plan-feature .chk {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-feature.no {
    color: var(--txt-muted);
}

.plan-feature.no .chk {
    color: var(--txt-muted);
}

/* ─────────────────────────────────────────────────────────────
    BLOG CARD
   ───────────────────────────────────────────────────────────── */
.blog-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--dur-base) var(--ease-io);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.blog-img {
    height: 200px;
    background: var(--bg-elevated);
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease-out);
}

.blog-card:hover .blog-img img {
    transform: scale(1.06);
}

.blog-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--txt-inverse);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: var(--r-full);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.blog-body {
    padding: 22px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--txt-muted);
    margin-bottom: 9px;
}

.blog-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--txt-muted);
    flex-shrink: 0;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--txt-primary);
    line-height: 1.38;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.blog-excerpt {
    font-size: 0.86rem;
    color: var(--txt-secondary);
    line-height: 1.70;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: gap var(--dur-base) var(--ease-out);
}

.blog-read-more:hover {
    gap: 10px;
}

/* ─────────────────────────────────────────────────────────────
   FAQ ACCORDION
   ───────────────────────────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--border-dim);
    transition: border-color var(--dur-base);
}

.faq-item.open {
    border-color: var(--border-gold);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--txt-primary);
    transition: color var(--dur-fast);
    user-select: none;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--border-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--txt-secondary);
    flex-shrink: 0;
    transition: all var(--dur-base) var(--ease-io);
}

.faq-item.open .faq-icon {
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(45deg);
    background: var(--gold-alpha-10);
}

.faq-answer {
    font-size: 0.9rem;
    color: var(--txt-secondary);
    line-height: 1.80;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s var(--ease-io), padding-bottom 0.3s;
    padding-bottom: 0;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 20px;
}

/* ─────────────────────────────────────────────────────────────
   CATEGORY CARD
   ───────────────────────────────────────────────────────────── */
.cat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-lg);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all var(--dur-base) var(--ease-io);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 130px;
}

.cat-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    background: var(--gold-alpha-10);
}

.cat-icon {
    font-size: 2.2rem;
}

.cat-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--txt-primary);
}

.cat-count {
    font-size: 0.76rem;
    color: var(--txt-muted);
}

/* ─────────────────────────────────────────────────────────────
   PILL / TAG
   ───────────────────────────────────────────────────────────── */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: var(--r-full);
    font-size: 0.84rem;
    font-weight: 500;
    background: var(--bg-elevated);
    border: 1px solid var(--border-dim);
    color: var(--txt-secondary);
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease-io);
    user-select: none;
}

.pill:hover,
.pill.active {
    background: var(--gold-alpha-10);
    border-color: var(--border-gold);
    color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   STAT BLOCK  
───────────────────────────────────────────────────────────── */
.stat-block {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--txt-secondary);
    margin-top: 6px;
    line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────
   SLIDER / CAROUSEL
   ───────────────────────────────────────────────────────────── */
.slider-wrap {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.52s var(--ease-io);
}

.slider-slide {
    flex-shrink: 0;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.sl-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    color: var(--txt-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease-io);
    flex-shrink: 0;
}

.sl-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-alpha-10);
}

.slider-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.sl-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--r-full);
    background: var(--border-mid);
    border: none;
    cursor: pointer;
    transition: all var(--dur-base) var(--ease-io);
}

.sl-dot.active {
    width: 24px;
    background: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   DIVIDER / SEPARATOR
   ───────────────────────────────────────────────────────────── */
.hr-line {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--border-dim) 25%,
            var(--border-dim) 75%,
            transparent 100%);
    border: none;
    margin: 0;
}

.accent-bar {
    width: 52px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-top: 16px;
}

.accent-bar.centered {
    margin: 16px auto 0;
}

/* ─────────────────────────────────────────────────────────────
   PAGE HERO (inner pages)
   ───────────────────────────────────────────────────────────── */
.page-hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    background: var(--bg-base);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-mid);
}

.hero-with-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff !important;
    border-bottom: none;
}

.hero-with-bg .hero-title,
.hero-v2 .hero-title,
.hero-with-bg h1 {
    color: #fff !important;
}

.hero-with-bg .hero-desc,
.hero-v2 .hero-desc,
.hero-with-bg .lead,
.hero-with-bg .hero-tag,
.hero-v2 .hero-tag,
.hero-with-bg .eyebrow,
.hero-with-bg p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-with-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 9, 16, 0.5) 0%, rgba(8, 9, 16, 0.8) 100%);
    z-index: 1;
}

.hero-with-bg .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--txt-muted);
    margin-bottom: 18px;
}

.breadcrumb a {
    color: var(--txt-muted);
    transition: color var(--dur-fast);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb-sep {
    color: var(--txt-muted);
    opacity: 0.4;
}

/* ─────────────────────────────────────────────────────────────
   SUBSCRIBE STRIP
   ───────────────────────────────────────────────────────────── */
.subscribe-strip {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-xl);
    padding: 42px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 440px;
}

.subscribe-input {
    flex: 1;
    padding: 13px 18px;
    border-radius: var(--r-sm);
    background: var(--bg-elevated);
    border: 1px solid var(--border-dim);
    color: var(--txt-primary);
    font-size: 0.92rem;
    outline: none;
    transition: border-color var(--dur-fast);
}

.subscribe-input:focus {
    border-color: var(--border-gold-s);
}

.subscribe-input::placeholder {
    color: var(--txt-muted);
}

/* ─────────────────────────────────────────────────────────────
   RENTAL PERKS
   ───────────────────────────────────────────────────────────── */
.perks-grid {
    margin-top: 48px;
}

.perk-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    padding: 32px;
    border-radius: var(--r-lg);
    transition: transform var(--dur-normal), border-color var(--dur-normal);
}

.perk-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold-s);
}

.perk-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-flex;
}

.perk-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--txt-primary);
}

.perk-text {
    font-size: 0.92rem;
    color: var(--txt-secondary);
    line-height: 1.70;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-dim);
    padding: 64px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 52px;
}

.footer-tagline {
    font-size: 0.87rem;
    color: var(--txt-secondary);
    line-height: 1.75;
    max-width: 265px;
    margin: 12px 0 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    background: var(--bg-elevated);
    border: 1px solid var(--border-dim);
    color: var(--txt-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--dur-fast) var(--ease-io);
    cursor: pointer;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--gold-alpha-10);
    border-color: var(--border-gold);
    color: var(--gold);
}

.footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--txt-primary);
    margin-bottom: 16px;
}

.faq-list {
    max-width: 1000px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-link {
    font-size: 0.88rem;
    color: var(--txt-secondary);
    transition: color var(--dur-fast) var(--ease-io);
    cursor: pointer;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-dim);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--txt-muted);
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--txt-muted);
    transition: color var(--dur-fast);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   ANIMATIONS & KEYFRAMES
   ───────────────────────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--gold-alpha-18);
    }

    50% {
        box-shadow: 0 0 0 14px transparent;
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes waveBar {

    0%,
    100% {
        transform: scaleY(0.3);
    }

    50% {
        transform: scaleY(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Page-load stagger helpers */
.anim-fade-up {
    animation: fadeUp 0.72s var(--ease-out) both;
}

.anim-fade-in {
    animation: fadeIn 0.60s var(--ease-out) both;
}

.anim-scale-in {
    animation: scaleIn 0.60s var(--ease-out) both;
}

.d-1 {
    animation-delay: 0.08s;
}

.d-2 {
    animation-delay: 0.18s;
}

.d-3 {
    animation-delay: 0.28s;
}

.d-4 {
    animation-delay: 0.38s;
}

.d-5 {
    animation-delay: 0.48s;
}

.d-6 {
    animation-delay: 0.58s;
}

/* Scroll-reveal */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.68s var(--ease-out),
        transform 0.68s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating card decoration */
.float-anim {
    animation: float 3.8s ease-in-out infinite;
}

/* Waveform decoration */
.waveform {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 38px;
}

.wave-bar {
    width: 4px;
    border-radius: 2px;
    background: var(--gold);
    opacity: 0.65;
    animation: waveBar 1.4s ease-in-out infinite;
}

.wave-bar:nth-child(1) {
    height: 14px;
    animation-delay: 0.00s;
}

.wave-bar:nth-child(2) {
    height: 28px;
    animation-delay: 0.14s;
}

.wave-bar:nth-child(3) {
    height: 22px;
    animation-delay: 0.28s;
}

.wave-bar:nth-child(4) {
    height: 36px;
    animation-delay: 0.42s;
}

.wave-bar:nth-child(5) {
    height: 18px;
    animation-delay: 0.56s;
}

.wave-bar:nth-child(6) {
    height: 32px;
    animation-delay: 0.70s;
}

.wave-bar:nth-child(7) {
    height: 12px;
    animation-delay: 0.84s;
}

/* ─────────────────────────────────────────────────────────────
   STICKY CTA & BACK-TO-TOP
   ───────────────────────────────────────────────────────────── */
.sticky-cta {
    position: fixed;
    bottom: -90px;
    left: 0;
    right: 0;
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-dim);
    padding: 14px 28px;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: bottom 0.42s var(--ease-out);
}

.sticky-cta.visible {
    bottom: 0;
}

#back-to-top {
    position: fixed;
    bottom: 86px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--txt-inverse);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 901;
    opacity: 0;
    transform: translateY(12px);
    transition: all var(--dur-base) var(--ease-out);
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--gold-light);
}

/* ─────────────────────────────────────────────────────────────
   HOME 2 SPECIFIC — VARIATION DESIGN
   ───────────────────────────────────────────────────────────── */

/* Hero V2 — Centered cinematic design */
.hero-v2 {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--nav-h);
    background: linear-gradient(to bottom, rgba(8, 9, 16, 0.6), rgba(8, 9, 16, 0.85)), url('../images/hero-v2.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-v2 .container {
    max-width: 900px;
    z-index: 2;
}

.hero-v2 .hero-tag {
    justify-content: center;
    margin-bottom: 24px;
}

.hero-v2 .hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    margin-bottom: 20px;
    color: #fff !important;
}

.hero-v2 .hero-desc {
    font-size: 1.15rem;
    margin: 0 auto 36px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-v2 .hero-actions {
    justify-content: center;
}

/* Featured Collections */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.collection-card {
    position: relative;
    height: 480px;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.collection-card:hover .collection-img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: background 0.4s;
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(to top, var(--gold-alpha-30) 0%, transparent 80%);
}

.collection-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.collection-link {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.collection-card:hover .collection-link {
    opacity: 1;
}

/* ─────────────────────────────────────────────────────────────
   HOME PAGE — HERO SECTION
   ───────────────────────────────────────────────────────────── */
.home-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    background: var(--bg-base);
    position: relative;
    overflow: hidden;
}

/* Radial glow orbs */
.hero-orb-1 {
    position: absolute;
    top: -180px;
    right: -140px;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-alpha-10) 0%, transparent 70%);
    pointer-events: none;
}

.hero-orb-2 {
    position: absolute;
    bottom: -120px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 168, 78, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Dot grid pattern */
.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--border-dim) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.7;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

/* Hero tag / pill */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-alpha-10);
    border: 1px solid var(--border-gold);
    border-radius: var(--r-full);
    padding: 6px 16px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-tag .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-gold 2.2s infinite;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--txt-secondary);
    line-height: 1.80;
    max-width: 480px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 46px;
}

/* Stats row below CTA */
.hero-stats {
    display: flex;
    gap: 28px;
    padding-top: 32px;
    border-top: 1px solid var(--border-dim);
    flex-wrap: wrap;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--txt-muted);
    margin-top: 3px;
}

/* Hero visual side */
.hero-visual {
    position: relative;
}

.hero-img-frame {
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 530px;
    background: var(--bg-elevated);
    position: relative;
}

.hero-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, transparent 55%, var(--bg-base) 100%); */
}

/* Floating cards */
.float-card-1 {
    position: absolute;
    bottom: 28px;
    left: -32px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--r-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    min-width: 190px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.float-card-2 {
    position: absolute;
    top: 30px;
    right: -26px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--r-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    z-index: 3;
    animation: float 3.5s ease-in-out infinite 0.8s;
}

.fc-label {
    font-size: 0.7rem;
    color: var(--txt-muted);
    margin-bottom: 3px;
}

.fc-value {
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--txt-primary);
}

.fc-sub {
    font-size: 0.78rem;
    color: var(--gold);
    margin-top: 3px;
    font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────
HOME PAGE — WHY CHOOSE US
   ───────────────────────────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ─────────────────────────────────────────────────────────────
    HOME PAGE — CATEGORY GRID
   ───────────────────────────────────────────────────────────── */
.cat-grid-home {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* ─────────────────────────────────────────────────────────────
  HOME PAGE — HOW IT WORKS
   ───────────────────────────────────────────────────────────── */
.how-wrap {
    background: var(--bg-surface);
    border-radius: var(--r-xl);
    padding: 64px;
    position: relative;
    overflow: hidden;
}

.how-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 50%, var(--gold-alpha-10) 0%, transparent 55%);
    pointer-events: none;
}

.how-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
}

/* Dashed connector between steps */
.how-steps-grid::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 12%;
    right: 12%;
    height: 1px;
    border-top: 1.5px dashed var(--border-gold);
    opacity: 0.5;
    pointer-events: none;
}

.how-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.how-step-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 2px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 18px;
    position: relative;
    transition: all var(--dur-base) var(--ease-io);
}

.how-step-circle:hover {
    background: var(--gold-alpha-18);
    border-color: var(--gold);
    transform: scale(1.1);
}

.how-step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--txt-inverse);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--txt-primary);
    margin-bottom: 6px;
}

.how-step-desc {
    font-size: 0.86rem;
    color: var(--txt-secondary);
    line-height: 1.68;
}

/* ─────────────────────────────────────────────────────────────
  HOME PAGE — FEATURED INSTRUMENTS GRID
   ───────────────────────────────────────────────────────────── */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ─────────────────────────────────────────────────────────────
 HOME PAGE — PRICING
   ───────────────────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Plan toggle switch */
.toggle-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--txt-secondary);
}

.toggle-label.active {
    color: var(--txt-primary);
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-full);
    transition: background var(--dur-base);
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    transition: transform var(--dur-base) var(--ease-out);
}

.toggle-switch input:checked+.toggle-slider {
    background: var(--gold-alpha-18);
}

.toggle-switch input:checked+.toggle-slider::after {
    transform: translateX(22px);
}

.save-badge {
    background: var(--gold-alpha-10);
    border: 1px solid var(--border-gold);
    border-radius: var(--r-full);
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────────────────
    HOME PAGE — BLOG
   ───────────────────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ─────────────────────────────────────────────────────────────
   ABOUT PAGE — STORY SECTION
   ───────────────────────────────────────────────────────────── */
.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.story-img-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 490px;
    background: var(--bg-elevated);
}

.story-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-badge {
    position: absolute;
    bottom: 26px;
    left: 26px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--r-md);
    padding: 16px 22px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.story-badge-yr {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.story-badge-lbl {
    font-size: 0.8rem;
    color: var(--txt-secondary);
    margin-top: 3px;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    margin-top: 28px;
}

.timeline-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 4px 0;
}

.tl-year {
    flex-shrink: 0;
    width: 52px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    padding-top: 3px;
}

.tl-line {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 5px;
    flex-shrink: 0;
}

.tl-bar {
    width: 1.5px;
    flex: 1;
    background: var(--border-dim);
    min-height: 32px;
}

.tl-text {
    font-size: 0.9rem;
    color: var(--txt-secondary);
    line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────────
  ABOUT PAGE — MISSION / VISION
   ───────────────────────────────────────────────────────────── */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mv-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}

.mv-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.mv-title {
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--txt-primary);
    margin-bottom: 14px;
    font-family: 'Playfair Display', serif;
}

.mv-text {
    font-size: 0.94rem;
    color: var(--txt-secondary);
    line-height: 1.80;
}

/* ─────────────────────────────────────────────────────────────
   ABOUT PAGE — TEAM CARDS
   ───────────────────────────────────────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.team-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-lg);
    transition: all var(--dur-base) var(--ease-io);
}

.team-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-alpha-10), var(--bg-elevated));
    border: 2px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 14px;
}

.team-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--txt-primary);
    margin-bottom: 3px;
}

.team-role {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--txt-secondary);
    line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────────
  ABOUT PAGE — VALUES
   ───────────────────────────────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.value-card {
    padding: 24px;
    border-left: 3px solid var(--gold);
    background: var(--bg-card);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    transition: all var(--dur-base) var(--ease-io);
}

.value-card:hover {
    background: var(--gold-alpha-10);
    border-color: var(--gold-light);
    transform: translateX(4px);
}

.value-title {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--txt-primary);
    margin-bottom: 6px;
}

.value-desc {
    font-size: 0.88rem;
    color: var(--txt-secondary);
    line-height: 1.68;
}

/* ─────────────────────────────────────────────────────────────
   ABOUT PAGE — PROCESS
   ─────────────────────────────────────────────────── */
.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.process-steps {
    display: flex;
    flex-direction: column;
}

.process-step {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-dim);
    transition: all var(--dur-base) var(--ease-io);
}

.process-step:last-child {
    border-bottom: none;
}

.process-step:hover .ps-icon {
    border-color: var(--border-gold);
    background: var(--gold-alpha-10);
}

.ps-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    background: var(--bg-elevated);
    border: 1px solid var(--border-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all var(--dur-base) var(--ease-io);
}

.ps-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--txt-primary);
    margin-bottom: 5px;
}

.ps-desc {
    font-size: 0.88rem;
    color: var(--txt-secondary);
    line-height: 1.68;
}

.process-visual {
    position: sticky;
    top: calc(var(--nav-h) + 20px);
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.process-visual img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.process-visual-body {
    padding: 28px;
}

.pv-stat {
    text-align: center;
}

.pv-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.pv-stat-lbl {
    font-size: 0.76rem;
    color: var(--txt-muted);
    margin-top: 4px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.impact-card {
    padding: 28px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-lg);
    transition: all var(--dur-base) var(--ease-io);
}

.impact-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.impact-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.impact-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.impact-lbl {
    font-size: 0.87rem;
    color: var(--txt-secondary);
    margin-top: 6px;
    line-height: 1.5;
}

.join-cta {
    text-align: center;
    /* padding: 84px 40px; */
    /* background: var(--bg-surface); */
    /* border: 1px solid var(--border-dim); */
    /* border-radius: var(--r-xl); */
    position: relative;
    overflow: hidden;
}

.join-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% -10%, var(--gold-alpha-10) 0%, transparent 65%);
    pointer-events: none;
}

.join-cta>* {
    position: relative;
    z-index: 1;
}

.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-left: 3px solid var(--gold);
    border-radius: var(--r-sm);
    padding: 14px 22px;
    font-size: 0.9rem;
    color: var(--txt-primary);
    z-index: 9999;
    box-shadow: var(--shadow-md);
    animation: fadeUp 0.3s var(--ease-out) both;
    max-width: 320px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bg-surface {
    background: var(--bg-surface);
}

.bg-elevated {
    background: var(--bg-elevated);
}

.border-top {
    border-top: 1px solid var(--border-dim);
}

.border-bot {
    border-bottom: 1px solid var(--border-dim);
}

.rounded-sm {
    border-radius: var(--r-sm);
}

.rounded-md {
    border-radius: var(--r-md);
}

.rounded-lg {
    border-radius: var(--r-lg);
}

.rounded-xl {
    border-radius: var(--r-xl);
}

.rounded-full {
    border-radius: var(--r-full);
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

/* Gold border highlight */
.gold-border {
    border-color: var(--border-gold) !important;
}

/* Shimmer skeleton */
.skeleton {
    background: linear-gradient(90deg,
            var(--bg-elevated) 25%,
            var(--bg-card-alt) 50%,
            var(--bg-elevated) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--r-sm);
}


/* ── Section backgrounds ─────────────────────────── */
.bg-alt {
    background: var(--bg-surface);
}

/* ── Testimonials slider ─────────────────────────── */
[data-slider] .slider-slide {
    min-width: calc((100% - 48px) / 3);
}

/* ── Slider track overflow ───────────────────────── */
.slider-overflow {
    overflow: hidden;
}


/* ─────────────────────────────────────────────────────────────
   PAGE SPECIFIC — BLOG
   ───────────────────────────────────────────────────────────── */
.blog-header {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    background: url('../images/newsletter-bg.png') center/cover no-repeat;
    color: #fff;
}

.blog-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 9, 16, 0.8) 0%, rgba(8, 9, 16, 0.4) 60%, var(--bg-base) 100%);
    z-index: 1;
    transition: background var(--dur-base);
}

.blog-header .container {
    position: relative;
    z-index: 2;
}

.blog-header h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.blog-header .lead {
    color: rgba(255, 255, 255, 0.9);
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.blog-main {
    padding: 100px 0 60px;
}

/* ─────────────────────────────────────────────────────────────
    PAGE SPECIFIC — CONTACT
   ───────────────────────────────────────────────────────────── */
.contact-flex {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.contact-form {
    flex: 1 1 320px;
    min-width: 280px;
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form label {
    font-weight: 500;
    color: var(--txt-secondary);
}

.contact-form input,
.contact-form textarea {
    border: 1px solid var(--border-dim);
    border-radius: var(--r-sm);
    padding: 8px 12px;
    background: var(--bg-surface);
    color: var(--txt-primary);
    font-size: 1em;
}

.contact-map {
    flex: 1 1 320px;
    min-width: 280px;
    background: var(--bg-card-alt);
    padding: 24px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
}

.office-list {
    margin: 16px 0 0 0;
    padding: 0;
    list-style: none;
}

.office-list li {
    margin-bottom: 8px;
    color: var(--txt-secondary);
}


/* ─────────────────────────────────────────────────────────────
   PAGE SPECIFIC — CATALOG
   ───────────────────────────────────────────────────────────── */
.instruments-hero {
    padding: 80px 0 60px;
    background: var(--bg-elevated);
    position: relative;
    overflow: hidden;
}

.instruments-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 168, 78, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.instruments-header {
    position: relative;
    z-index: 1;
}

.instruments-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--txt-primary);
}

.instruments-header p {
    max-width: 600px;
    color: var(--txt-secondary);
    font-size: 1.125rem;
    margin-bottom: 32px;
    line-height: 1.75;
}

.instr-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.instr-search {
    flex: 1;
    min-width: 200px;
}

.instr-search input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-sm);
    color: var(--txt-primary);
    font-size: 0.95rem;
    transition: all var(--dur-fast);
}

.instr-search input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-alpha-10);
}

.instr-sort {
    display: flex;
    gap: 12px;
}

.filter-btn,
.sort-select {
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-sm);
    color: var(--txt-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--dur-fast);
}

.filter-btn:hover,
.sort-select:focus {
    border-color: var(--gold);
    background: var(--bg-card-alt);
}

.instruments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.instrument-card {
    background: var(--bg-card);
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border-dim);
    transition: all var(--dur-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.instrument-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 48px rgba(217, 168, 78, 0.15);
    transform: translateY(-4px);
}

.instrument-card-img {
    width: 100%;
    height: 240px;
    background: var(--bg-elevated);
    overflow: hidden;
    position: relative;
}

.instrument-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-base);
}

.instrument-card:hover .instrument-card-img img {
    transform: scale(1.05);
}

.instrument-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--txt-inverse);
    padding: 6px 12px;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.instrument-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.instrument-category {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.instrument-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--txt-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.instrument-brand {
    color: var(--txt-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.instrument-desc {
    color: var(--txt-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.instrument-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.instrument-price-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.instrument-price-period {
    color: var(--txt-secondary);
    font-size: 0.85rem;
}

.instrument-card-actions {
    display: flex;
    gap: 12px;
}

.btn-view {
    flex: 1;
    padding: 10px 16px;
    background: var(--gold);
    color: var(--txt-inverse);
    border-radius: var(--r-sm);
    font-weight: 600;
    text-align: center;
    transition: all var(--dur-fast);
    font-size: 0.9rem;
}

.btn-view:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-like {
    width: 44px;
    height: 44px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--dur-fast);
}

.btn-like:hover {
    border-color: var(--gold);
    background: var(--gold-alpha-10);
}

.category-chips {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.chip {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-full);
    color: var(--txt-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--dur-fast);
}

.chip:hover,
.chip.active {
    background: var(--gold);
    color: var(--txt-inverse);
    border-color: var(--gold);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 60px 0;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-mid);
    background: var(--bg-card);
    border-radius: var(--r-sm);
    color: var(--txt-primary);
    cursor: pointer;
    transition: all var(--dur-fast);
    font-weight: 500;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--gold);
    color: var(--txt-inverse);
    border-color: var(--gold);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--txt-primary);
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--txt-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────
PAGE SPECIFIC — INSTRUMENT DETAIL
───────────────────────────────────────────────────────────── */
.detail-breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: var(--txt-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item a {
    color: var(--gold);
    transition: color var(--dur-fast);
}

.breadcrumb-item a:hover {
    color: var(--gold-light);
}

.breadcrumb-item.active {
    color: var(--txt-primary);
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.gallery-main {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-base);
}

.gallery-thumbnails {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 2px solid var(--border-mid);
    border-radius: var(--r-sm);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--dur-fast);
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--gold);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-header {
    border-bottom: 1px solid var(--border-mid);
    padding-bottom: 24px;
}

.detail-category {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--txt-primary);
}

.detail-brand {
    color: var(--txt-secondary);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-stars {
    display: flex;
    gap: 4px;
    font-size: 1.2rem;
}

.detail-rating-text {
    color: var(--txt-secondary);
    font-size: 0.95rem;
}

.detail-pricing {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--r-md);
    padding: 20px 24px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-dim);
}

.pricing-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pricing-label {
    color: var(--txt-secondary);
    font-size: 0.95rem;
}

.pricing-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
}

.rental-options {
    background: var(--gold-alpha-10);
    border: 1px solid var(--border-gold);
    border-radius: var(--r-md);
    padding: 20px 24px;
}

.rental-option {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: var(--r-sm);
    border: 1px solid transparent;
    transition: all var(--dur-fast);
}

.rental-option:hover {
    border-color: var(--gold);
    background: rgba(217, 168, 78, 0.05);
}

.rental-option input {
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
}

.rental-option-text {
    flex: 1;
}

.rental-option-title {
    font-weight: 600;
    color: var(--txt-primary);
    margin-bottom: 4px;
}

.rental-option-desc {
    color: var(--txt-secondary);
    font-size: 0.85rem;
}

.detail-actions {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.btn-rent {
    padding: 16px 24px;
    background: var(--gold);
    color: var(--txt-inverse);
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all var(--dur-fast);
    cursor: pointer;
}

.btn-rent:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 168, 78, 0.3);
}

.btn-wishlist {
    padding: 14px 24px;
    background: transparent;
    border: 2px solid var(--border-mid);
    color: var(--txt-primary);
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--dur-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-wishlist:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.detail-specs {
    /* background: var(--bg-card); */
    border-radius: var(--r-md);
    /* padding: 28px; */
}

.specs-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--txt-primary);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: var(--bg-surface);
    padding: 32px;
    border-radius: var(--r-md);
    border: 1px solid var(--border-dim);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-dim);
    padding: 12px 16px;
    transition: background var(--dur-fast);
}

.spec-item:hover {
    background: var(--gold-alpha-10);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--txt-secondary);
    font-size: 0.9rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.spec-value {
    color: var(--txt-primary);
    font-size: 1.05rem;
}

.detail-description {
    /* background: var(--bg-card); */
    border-radius: var(--r-md);
    margin-top: 50px;
    /* padding: 28px; */
}

.detail-description h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--txt-primary);
}

.detail-description p {
    color: var(--txt-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.detail-description p:last-child {
    margin-bottom: 0;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--txt-secondary);
    font-size: 0.95rem;
}

.feature-check {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.related-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-dim);
}

.related-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--txt-primary);
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.related-card {
    background: var(--bg-card);
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border-dim);
    transition: all var(--dur-base);
}

.related-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.related-card-img {
    width: 100%;
    height: 200px;
    background: var(--bg-elevated);
    overflow: hidden;
}

.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-card-body {
    padding: 20px;
}

.related-card-name {
    font-weight: 600;
    color: var(--txt-primary);
    margin-bottom: 8px;
}

.related-card-price {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
}

.related-card-link {
    display: inline-block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color var(--dur-fast);
}

.related-card-link:hover {
    color: var(--gold-light);
}

/* ─────────────────────────────────────────────────────────────
    PAGE SPECIFIC — BLOG DETAIL
   ───────────────────────────────────────────────────────────── */
.blog-detail-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 var(--container-pad);
}

.blog-grid-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.blog-content-left {
    min-width: 0;
}

.blog-content-right {
    position: sticky;
    top: 120px;
}

.blog-side-img {
    width: 100%;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.blog-side-img img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    font-family: 'Playfair Display', serif;
    margin: 40px 0 20px;
    color: var(--txt-primary);
}

.blog-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--txt-secondary);
    margin-bottom: 24px;
}

.blog-detail-content blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold);
    border-left: 4px solid var(--gold);
    padding-left: 30px;
    margin: 50px 0;
    line-height: 1.4;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 24px 0;
    padding-left: 20px;
}

.blog-detail-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--txt-secondary);
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.blog-detail-content li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.post-meta-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--txt-muted);
    font-size: 0.9rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
}

.share-strip {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-dim);
}

.share-label {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--txt-primary);
}

/* -------------------------------------------------------------
   DASHBOARD LAYOUT & COMPONENTS
   ------------------------------------------------------------- */
.dash-layout {
    display: flex;
    min-height: 100vh;
    background: var(--bg-base);
    color: var(--txt-primary);
}

/* Sidebar */
.dash-sidebar {
    width: 280px;
    background: var(--bg-surface);
    border-right: 1px solid var(--border-dim);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 1001;
    transition: transform var(--dur-base) var(--ease-io);
}

.dash-sidebar-header {
    padding: 28px;
    border-bottom: 1px solid var(--border-dim);
}

.dash-sidebar-nav {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.dash-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--r-sm);
    color: var(--txt-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--dur-fast) var(--ease-io);
}

.dash-sidebar-link:hover,
.dash-sidebar-link.active {
    color: var(--gold);
    background: var(--gold-alpha-10);
}

.dash-sidebar-link.active {
    background: var(--gold);
    color: var(--txt-inverse);
    box-shadow: var(--shadow-gold);
}

.dash-sidebar-footer {
    padding: 24px;
    border-top: 1px solid var(--border-dim);
}

/* Main Content Area */
.dash-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.dash-topbar {
    height: 80px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-base);
    border-bottom: 1px solid var(--border-dim);
}

.dash-page-content {
    padding: 40px;
}

/* Components */
.dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform var(--dur-base) var(--ease-out);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.stat-val {
    font-size: 2.22rem;
    font-weight: 700;
    color: var(--gold);
    font-family: "Playfair Display", serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--txt-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dash-card {
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-md);
    padding: 32px;
}

.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.dash-card-title {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Dashboard Table */
.dash-table-wrap {
    overflow-x: auto;
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
}

.dash-table th {
    text-align: left;
    padding: 16px;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--txt-secondary);
    border-bottom: 1px solid var(--border-dim);
}

.dash-table td {
    padding: 16px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-dim);
}

.badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Mobile Sidebar Toggle */
.sidebar-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-sm);
    margin-right: 16px;
}

.sidebar-close {
    display: none;
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.8rem;
    color: var(--txt-secondary);
    cursor: pointer;
}


/* ─────────────────────────────────────────────────────────────
    RESPONSIVE — TABLET (≤ 1024px)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .blog-grid-layout {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .blog-content-right {
        position: static;
        order: -1;
    }

    :root {
        --container-pad: 24px;
    }

    .section {
        padding: 72px 0;
    }

    /* Nav */
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .btn-primary.btn-sm {
        display: none;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero-img-frame {
        height: 380px;
    }

    .float-card-1,
    .float-card-2 {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-desc {
        max-width: 100%;
    }

    /* Grids */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-grid-home {
        grid-template-columns: repeat(3, 1fr);
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr 1fr;
        /* max-width: 400px; */
        margin: 0 auto;
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* How it works */
    .how-wrap {
        padding: 44px 32px;
    }

    .how-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .how-steps-grid::before {
        display: none;
    }

    /* About */
    .story-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .story-img-wrap {
        height: 340px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-layout {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .process-visual {
        position: static;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* Subscribe */
    .subscribe-strip {
        flex-direction: column;
        text-align: center;
        padding: 36px 32px;
    }

    .subscribe-form {
        max-width: 100%;
        width: 100%;
    }

    .instruments-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .instr-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .instr-search {
        min-width: 100%;
    }

    .instr-sort {
        width: 100%;
    }

    .sort-select {
        flex: 1;
    }

    .detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dash-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        transform: translateX(-100%);
    }

    .dash-sidebar.open {
        transform: translateX(0);
        box-shadow: var(--shadow-lg);
    }

    .sidebar-toggle {
        display: flex;
    }

    .sidebar-close {
        display: block;
    }

    .dash-topbar {
        padding: 0 24px;
    }

    .dash-page-content {
        padding: 24px;
    }

    .dash-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 60px;
        --container-pad: 18px;
    }

    .section {
        padding: 52px 0;
    }

    .section-sm {
        padding: 40px 0;
    }

    /* Typography scale-down */
    .disp-2xl {
        font-size: 2.4rem;
    }

    .disp-xl {
        font-size: 2rem;
        text-align: center;
    }

    .disp-lg {
        font-size: 1.7rem;
    }

    .disp-md {
        font-size: 1.4rem;
    }

    /* All 2-col and wider grids → 1-col */

    /* .grid-3, */
    .grid-4,
    .why-grid,
    .featured-grid,
    /* .blog-grid, */
    .cat-grid-home,
    /* .pricing-grid, */
    .mv-grid,
    .team-grid,
    .values-grid,
    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .how-steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .collections-grid,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 18px;
        justify-content: space-evenly;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Hero */
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        width: 40%;
        margin: 0 auto;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    /* Process */
    .process-layout {
        grid-template-columns: 1fr;
    }

    /* How */
    .how-wrap {
        padding: 32px 20px;
    }

    /* Story */
    .story-img-wrap {
        height: 260px;
    }

    .story-badge {
        bottom: 14px;
        left: 14px;
        padding: 12px 16px;
    }

    /* Join CTA */
    .join-cta {
        padding: 52px 20px;
    }

    /* Subscribe */
    .subscribe-strip {
        padding: 28px 20px;
    }

    .subscribe-form {
        flex-direction: column;
    }

    /* Sticky CTA */
    .sticky-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 18px;
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Slider */
    .slider-slide {
        min-width: 100%;
    }

    .instruments-hero {
        padding: 60px 0 40px;
    }

    .instrument-card-img {
        height: 180px;
    }

    .instrument-name {
        font-size: 1.1rem;
    }

    .instrument-price-main {
        font-size: 1.3rem;
    }

    .instruments-header h1 {
        font-size: 2rem;
    }

    .category-chips {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .detail-layout {
        gap: 32px;
        margin-bottom: 60px;
    }

    .detail-title {
        font-size: 1.5rem;
    }

    .detail-gallery {
        gap: 8px;
    }

    .gallery-thumbnails {
        overflow-x: auto;
    }

    .detail-actions {
        flex-direction: column;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ── How it works responsive fix ─────────────────── */
@media (max-width: 640px) {
    .how-steps-grid {
        grid-template-columns: 1fr !important;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .collection-card {
        height: 380px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --container-pad: 14px;
    }

    .navbar .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .btn {
        padding: 11px 20px;
        font-size: 0.87rem;
    }

    .btn-lg {
        padding: 12px 22px;
    }

    .instr-img {
        height: 185px;
    }

    .plan-card {
        padding: 22px;
    }

    .hero-tag {
        font-size: 0.7rem;
        padding: 5px 13px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .stat-num {
        font-size: 2.2rem;
    }

    .testi-card {
        padding: 20px;
    }

    .feat-card {
        padding: 22px;
    }

    .cat-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer {
        padding: 44px 0 20px;
    }

    .instr-controls {
        flex-direction: column;
    }

    .instrument-card-body {
        padding: 16px;
    }

    .instrument-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    .detail-title {
        font-size: 1.3rem;
    }

    .detail-gallery {
        gap: 6px;
    }

    .gallery-thumb {
        width: 60px;
        height: 60px;
    }

    .pricing-row {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .btn-rent,
    .btn-wishlist {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .specs-grid,
    .feature-list {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .featured-grid,
    .team-grid,
    .values-grid,
    .impact-grid,
    .perks-grid {
        grid-template-columns: 1fr !important;
    }

    .dash-grid {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────────────────────
   CONTACT PAGE — FORM & INFORMATION
   ───────────────────────────────────────────────────────────── */
.contact-grid {
    align-items: flex-start;
}

.contact-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--r-sm);
    background: var(--bg-surface);
    border: 1px solid var(--border-mid);
    color: var(--txt-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all var(--dur-fast) var(--ease-out);
}

.contact-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-alpha-10);
}

.contact-input::placeholder {
    color: var(--txt-muted);
}

textarea.contact-input {
    resize: none;
    min-height: 140px;
}

.hero-tel-btn {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.hero-tel-btn:hover {
    border-color: var(--gold) !important;
    background: var(--gold-alpha-10) !important;
}

.contact-info-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-alpha-10);
    border-radius: var(--r-sm);
}

.contact-map {
    flex: 1;
    min-height: 250px;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border-mid);
}

/* RTL Support for Contact Us */
[dir="rtl"] .contact-grid {
    direction: rtl;
}

[dir="rtl"] .contact-input {
    text-align: right;
}

[dir="rtl"] .hero-actions {
    flex-direction: row-reverse;
}

/* Responseive Contact Us Below */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-input {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .contact-grid .dash-card {
        padding: 24px;
    }
}

@media print {

    .navbar,
    .mobile-nav,
    .sticky-cta,
    #back-to-top {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    a {
        color: #000;
    }
}/* ─────────────────────────────────────────────────────────────
   404 ERROR PAGE
   ───────────────────────────────────────────────────────────── */
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-base);
    position: relative;
    overflow: hidden;
}

.error-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-alpha-10) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

.error-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.error-logo-top {
    margin-bottom: 40px;
    display: inline-flex;
}

.error-code {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 24px;
    /* opacity: 0.2; */
    letter-spacing: -0.05em;
}

.error-musical-icon {
    font-size: 4rem;
    margin-bottom: 32px;
    display: inline-block;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.error-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.error-desc {
    font-size: 1.1rem;
    color: var(--txt-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   COMING SOON PAGE
   ───────────────────────────────────────────────────────────── */
.soon-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-base);
    position: relative;
    overflow: hidden;
}

.soon-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-surface) 100%);
    z-index: 1;
}

.soon-bg-img {
    position: absolute;
    inset: 0;
    background-image: url('../images/newsletter-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    filter: grayscale(100%);
}

.soon-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    width: 100%;
}

.soon-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 24px;
}

.soon-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 32px;
}

.soon-logo-top {
    margin-bottom: 40px;
    display: inline-flex;
}

.soon-desc {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--txt-secondary);
    margin-bottom: 48px;
    max-width: 500px;
    margin-inline: auto;
    line-height: 1.6;
}

.soon-form-wrap {
    max-width: 480px;
    margin-inline: auto;
    margin-bottom: 64px;
}

.soon-form {
    display: flex;
    gap: 12px;
    background: var(--bg-surface);
    padding: 8px;
    border-radius: var(--r-md);
    border: 1px solid var(--border-mid);
    width: 100%;
}

.soon-input {
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: var(--txt-primary);
    flex: 1;
    font-size: 1rem;
}

.soon-input:focus {
    outline: none;
}

@media (max-width: 576px) {
    .soon-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }

    .soon-input {
        background: var(--bg-surface);
        border: 1px solid var(--border-mid);
        border-radius: var(--r-md);
        width: 100%;
        margin-bottom: 12px;
    }

    .soon-form .btn {
        width: 100%;
    }
}

.soon-social {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.soon-social-link {
    font-size: 1.2rem;
    color: var(--txt-muted);
    transition: all var(--dur-fast);
}

.soon-social-link:hover {
    color: var(--gold);
    transform: translateY(-4px);
}

/* ─────────────────────────────────────────────────────────────
   AUTH PAGES (Login & Sign Up)
   ───────────────────────────────────────────────────────────── */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-base);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.auth-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-alpha-18) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
}

.auth-circle-1 {
    top: -100px;
    right: -100px;
}

.auth-circle-2 {
    bottom: -100px;
    left: -100px;
}

.auth-container {
    width: 100%;
    max-width: 480px;
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-lg);
    padding: 48px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

.auth-tabs {
    display: flex;
    background: var(--bg-surface);
    padding: 4px;
    border-radius: var(--r-sm);
    margin-bottom: 32px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: var(--r-sm);
    transition: all var(--dur-fast);
    color: var(--txt-secondary);
}

.auth-tab.active {
    background: var(--gold);
    color: var(--txt-inverse);
    box-shadow: var(--shadow-sm);
}

.auth-form-group {
    display: none;
}

.auth-form-group.active {
    display: block;
    animation: fadeIn 0.4s var(--ease-out);
}

.auth-input-wrap {
    margin-bottom: 20px;
}

.auth-input-wrap label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--txt-secondary);
    margin-bottom: 8px;
}

.auth-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-sm);
    color: var(--txt-primary);
    font-size: 0.95rem;
    transition: all var(--dur-fast);
}

.auth-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-alpha-10);
}

.auth-footer {
    margin-top: 32px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--txt-secondary);
    padding-top: 24px;
    border-top: 1px solid var(--border-dim);
}

.social-auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.social-btn-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--dur-fast);
}

.social-btn-auth:hover {
    background: var(--bg-elevated);
    border-color: var(--border-mid);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
