/* ============================================================
   TANKRAS JEWELLERY — index-styles.css (REDESIGNED)
   Aesthetic: Ultra-luxury dark editorial with gold accents
   Fonts: Playfair Display (display) + Jost (body)
   ============================================================ */

/* ===================================
   ROOT / GLOBAL TOKENS
=================================== */
:root {
    --gold:        #d4a017;
    --gold-light:  #f0c842;
    --gold-dim:    rgba(212, 160, 23, 0.18);
    --gold-line:   rgba(212, 160, 23, 0.4);
    --black:       #000000;
    --near-black:  #080808;
    --card-bg:     #0f0f0f;
    --surface:     #141414;
    --white:       #ffffff;
    --muted:       rgba(255,255,255,0.55);
    --light-bg:    #f5f3ef;
    --text-dark:   #0f172a;
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --ease-out:    cubic-bezier(0.19, 1, 0.22, 1);
    --ease-circ:   cubic-bezier(0.23, 1, 0.32, 1);
    --shadow-gold: 0 0 40px rgba(212, 160, 23, 0.15);
    --section-pad: 120px 0;
}

/* ===================================
   1. HERO SLIDER
=================================== */
.hero-full-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-full-swiper {
    width: 100%;
    height: auto;
}

.hero-full-swiper .swiper-slide {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Subtle vignette over every slide */
.hero-full-swiper .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(0,0,0,0.55) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-full-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Navigation arrows — refined gold */
.hero-full-swiper .swiper-button-next,
.hero-full-swiper .swiper-button-prev {
    color: var(--white);
    width: 52px;
    height: 52px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    transition: all 0.35s var(--ease-out);
}

.hero-full-swiper .swiper-button-next::after,
.hero-full-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

.hero-full-swiper .swiper-button-next:hover,
.hero-full-swiper .swiper-button-prev:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

/* Dots */
.hero-full-swiper .swiper-pagination {
    bottom: 22px;
    z-index: 5;
}

.hero-full-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.45);
    opacity: 1;
    transition: all 0.4s ease;
    border-radius: 4px;
}

.hero-full-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 28px;
}

/* ===================================
   2. SIGNATURE COLLECTIONS (BENTO)
=================================== */
.brand-unique-section {
    padding: 130px 0;
    background: var(--black);
    overflow: hidden;
    position: relative;
}

/* Ambient background orbs */
.brand-unique-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212,160,23,0.05) 0%, transparent 65%);
    pointer-events: none;
    animation: orbDrift 18s ease-in-out infinite;
}

.brand-unique-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,160,23,0.04) 0%, transparent 65%);
    pointer-events: none;
    animation: orbDrift 22s ease-in-out infinite reverse;
}

@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0); }
    33%       { transform: translate(30px, -30px); }
    66%       { transform: translate(-20px, 20px); }
}

/* Section header */
.brand-unique-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.brand-unique-header .u-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    padding: 0 55px;
    opacity: 0.9;
}

.brand-unique-header .u-subtitle::before,
.brand-unique-header .u-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 38px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-line));
    transform: translateY(-50%);
}

.brand-unique-header .u-subtitle::before { left: 0; }
.brand-unique-header .u-subtitle::after  { right: 0; background: linear-gradient(270deg, transparent, var(--gold-line)); }

.brand-unique-header .u-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 300;
    background: linear-gradient(135deg, #fff 0%, var(--gold) 30%, #fff 60%, var(--gold-light) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    margin: 0;
    line-height: 1.15;
    animation: shimmerText 9s ease-in-out infinite;
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% center; }
    50%       { background-position: 100% center; }
}

.brand-unique-header .u-title::after {
    content: '';
    display: block;
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 28px auto 0;
    animation: lineBreath 4s ease-in-out infinite;
}

@keyframes lineBreath {
    0%, 100% { width: 90px; opacity: 0.7; }
    50%       { width: 130px; opacity: 1; }
}

/* Bento layout */
.brand-bento-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.brand-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 155px;
    gap: 18px;
}

.bento-card-1 { grid-column: span 7; grid-row: span 4; }
.bento-card-2 { grid-column: span 5; grid-row: span 4; }
.bento-card-3 { grid-column: span 12; grid-row: span 3; }

/* Card base */
.bento-card {
    position: relative;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    transition: transform 0.8s var(--ease-out), box-shadow 0.8s var(--ease-out), border-color 0.5s ease;
    text-decoration: none;
    display: block;
    isolation: isolate;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.bento-card:hover {
    transform: translateY(-10px) scale(1.008);
    border-color: rgba(212,160,23,0.3);
    box-shadow:
        0 28px 70px rgba(0,0,0,0.6),
        0 0 50px rgba(212,160,23,0.07),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Image fill */
.bento-card-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.bento-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.6s var(--ease-out), filter 1.2s ease;
    filter: grayscale(60%) brightness(0.42) contrast(1.1);
}

.bento-card:hover .bento-card-image img {
    transform: scale(1.07);
    filter: grayscale(0%) brightness(0.6) contrast(1.2);
}

/* Gradient overlay */
.bento-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.45) 45%,
        rgba(0,0,0,0.9) 90%,
        rgba(0,0,0,0.98) 100%
    );
    transition: opacity 0.8s ease;
    z-index: 1;
}

/* Gold shimmer on hover */
.bento-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 25% 25%, rgba(212,160,23,0.1) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 2;
}

.bento-card:hover .bento-card-image::before { opacity: 1; }

/* Content area */
.bento-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 44px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Number badge */
.bento-badge {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212,160,23,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 300;
    transition: all 0.7s var(--ease-out);
    z-index: 6;
}

.bento-card:hover .bento-badge {
    border-color: var(--gold);
    transform: scale(1.12) rotate(360deg);
    box-shadow: 0 0 24px rgba(212,160,23,0.25);
    background: rgba(212,160,23,0.12);
}

/* Category tag */
.bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 20px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212,160,23,0.22);
    border-radius: var(--radius-sm);
    font-family: 'Jost', sans-serif;
    font-size: 9.5px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    width: fit-content;
    font-weight: 500;
    transition: all 0.5s var(--ease-out);
}

.bento-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.75); }
}

.bento-card:hover .bento-tag {
    background: rgba(212,160,23,0.14);
    border-color: rgba(212,160,23,0.5);
    transform: translateY(-3px);
}

/* Title */
.bento-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    color: var(--white);
    margin: 0;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.2;
    transition: color 0.6s ease, letter-spacing 0.6s ease;
}

.bento-card:hover .bento-title {
    color: var(--gold);
    letter-spacing: 2.8px;
}

/* Description */
.bento-desc {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    margin: 0;
    font-weight: 300;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.7s var(--ease-out) 0.1s, opacity 0.6s ease 0.1s;
}

.bento-card:hover .bento-desc {
    max-height: 110px;
    opacity: 1;
    color: rgba(255,255,255,0.82);
}

/* CTA */
.bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 34px;
    border: 1px solid rgba(212,160,23,0.4);
    border-radius: var(--radius-sm);
    color: var(--gold);
    font-family: 'Jost', sans-serif;
    font-size: 10.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    width: fit-content;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s var(--ease-out) 0.2s, background 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
    position: relative;
}

.bento-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,0.18), transparent);
    transition: left 0.7s ease;
}

.bento-cta:hover::before { left: 100%; }

.bento-card:hover .bento-cta {
    opacity: 1;
    transform: translateY(0);
}

.bento-cta:hover {
    background: rgba(212,160,23,0.18);
    border-color: var(--gold);
}

.bento-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s var(--ease-out);
}

.bento-cta:hover svg { transform: translateX(5px); }

/* Wide card-3 layout */
.bento-card-3 .bento-card-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 44px 50px;
}

.bento-card-3 .bento-title { font-size: clamp(1.8rem, 2.4vw, 2.6rem); }
.bento-card-3 .bento-desc  { max-width: 460px; }

.bento-card-3 .bento-content-left {
    flex: 1;
    display: grid;
    gap: 14px;
}

/* Responsive bento */
@media (max-width: 1400px) {
    .brand-bento-grid { grid-auto-rows: 138px; }
    .brand-bento-container { padding: 0 28px; }
}

@media (max-width: 1200px) {
    .brand-unique-section { padding: 90px 0; }
    .brand-bento-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 130px;
    }
    .bento-card-1, .bento-card-2 { grid-column: span 6; grid-row: span 4; }
    .bento-card-3 { grid-column: span 6; grid-row: span 3; }
}

@media (max-width: 768px) {
    .brand-unique-section { padding: 70px 0; }
    .brand-unique-header { margin-bottom: 48px; }
    .brand-unique-header .u-title { letter-spacing: 2px; }
    .brand-bento-container { padding: 0 18px; }
    .brand-bento-grid { display: flex; flex-direction: column; gap: 16px; }
    .bento-card { height: 480px; border-radius: var(--radius-md); }
    .bento-card-content { padding: 32px 26px; }
    .bento-badge { width: 52px; height: 52px; font-size: 1rem; top: 22px; right: 22px; }
    .bento-desc { max-height: 100px; opacity: 1; font-size: 13px; }
    .bento-cta { opacity: 1; transform: translateY(0); padding: 13px 28px; font-size: 10px; }
    .bento-card-3 .bento-card-content { flex-direction: column; align-items: flex-start; padding: 32px 26px; gap: 14px; }
}

@media (max-width: 480px) {
    .bento-card { height: 440px; }
    .bento-title { font-size: 1.7rem; }
}

/* ===================================
   3. ABOUT — EDITORIAL HERITAGE
=================================== */
.about-editorial-section {
    padding: 110px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

/* Watermark */
.about-bg-watermark {
    position: absolute;
    top: 50%;
    left: -2%;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(8rem, 14vw, 16rem);
    color: rgba(0,0,0,0.03);
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.about-wrapper { position: relative; z-index: 2; }
.about-visual-col { position: relative; }
.about-img-frame {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

.about-img-editorial {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.about-editorial-section:hover .about-img-editorial { transform: scale(1.04); }

/* Decorative gold line on image */
.about-img-frame::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 2;
}

/* Floating content card */
.about-content-col {
    margin-top: 80px;
    margin-left: -90px;
    position: relative;
    z-index: 5;
}

.about-card-floating {
    background: var(--white);
    padding: 56px 52px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    border-radius: var(--radius-sm);
}

/* Gold left accent bar */
.about-card-floating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), rgba(212,160,23,0.3));
    border-radius: 4px 0 0 4px;
}

/* Corner ornament */
.about-card-floating::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    opacity: 0.35;
}

.about-sub-tag {
    font-family: 'Jost', sans-serif;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 18px;
}

.about-title-edit {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 3.1rem);
    color: var(--text-dark);
    margin-bottom: 28px;
    line-height: 1.15;
}

.about-text-edit {
    font-family: 'Jost', sans-serif;
    color: #6b7a91;
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 0;
}

.about-text-edit p { margin-bottom: 1em; }
.about-text-edit p:last-child { margin-bottom: 0; }

.about-signature-area {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #ebebeb;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sign-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    color: #aaa;
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .about-content-col { margin-left: 0; margin-top: -40px; padding: 0 16px; }
    .about-img-frame { height: 420px; }
    .about-card-floating { padding: 38px 30px; }
    .about-bg-watermark { display: none; }
}

/* ===================================
   4. DIRECTOR / FOUNDER SECTION
=================================== */
.director-modern-section {
    background: var(--light-bg);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.director-modern-section::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.director-modern-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
}

.director-modern-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 28px;
    line-height: 1.2;
}

.director-modern-desc {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    color: #6b7a91;
    font-weight: 300;
}

.director-modern-desc p { margin-bottom: 1em; }

.director-visual-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.director-shape {
    position: absolute;
    width: 340px;
    height: 340px;
    background: linear-gradient(135deg, var(--gold-dim) 0%, rgba(212,160,23,0.06) 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: shapePulse 6s ease-in-out infinite;
}

@keyframes shapePulse {
    0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.5; }
    50%       { transform: translate(-50%,-50%) scale(1.06); opacity: 0.8; }
}

.director-img-overlay {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 4px solid var(--white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 8px rgba(212,160,23,0.12);
    transition: transform 0.6s var(--ease-out);
}

.director-img-overlay:hover { transform: scale(1.04); }

/* ===================================
   5. TREASURY — COLLECTIONS
=================================== */
:root {
    --eng-bg-dark:   #000000;
    --eng-card-bg:   #111111;
    --eng-gold:      #d4af37;
    --eng-gold-light:#f3e5ab;
    --eng-text-main: #ffffff;
    --eng-text-mute: #d1d5db;
}

.treasury-section {
    background: var(--eng-bg-dark);
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

/* Subtle background texture */
.treasury-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 60px,
            rgba(255,255,255,0.008) 60px,
            rgba(255,255,255,0.008) 61px
        );
    pointer-events: none;
}

.treasury-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--eng-gold);
    letter-spacing: 2px;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 12px;
}

.treasury-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.6rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 28px;
}

.treasury-desc {
    font-family: 'Jost', sans-serif;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 44px;
    border-left: 3px solid var(--eng-gold);
    padding-left: 22px;
}

/* 2×2 grid */
.treasury-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.treasury-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 36px;
    border-radius: var(--radius-md);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Bottom gold bar reveal */
.treasury-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--eng-gold);
    transition: width 0.45s var(--ease-out);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.treasury-card:hover {
    background: rgba(212,175,55,0.04);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.35);
    border-color: rgba(212,175,55,0.25);
}

.treasury-card:hover::after { width: 100%; }

.t-card-icon {
    font-size: 2rem;
    color: var(--eng-gold);
    margin-bottom: 18px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.treasury-card:hover .t-card-icon { transform: scale(1.12) rotate(6deg); }

.t-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.t-card-desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.93rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
}

/* Trust badges */
.trust-badge-row {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-item h5 {
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    margin: 0 0 2px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .treasury-grid { grid-template-columns: 1fr; }
}

/* ===================================
   6. AMERI LUXURY PRODUCT SECTIONS
=================================== */
@keyframes float-img {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

.ameri-section {
    background: linear-gradient(150deg, #000 0%, #141414 50%, #0a0a0a 100%);
    padding: 130px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ameri-section.alt-bg {
    background: linear-gradient(150deg, #0e0e0e 0%, #000 50%, #111 100%);
}

/* Ambient gold orb */
.ameri-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,160,23,0.05) 0%, transparent 65%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.ameri-content-wrap {
    padding: 24px;
    z-index: 2;
    position: relative;
}

.ameri-eyebrow {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: var(--eng-gold);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 16px;
}

.ameri-title-modern {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 28px;
}

.ameri-highlight-box {
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.04));
    border-left: 3px solid var(--eng-gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin-bottom: 30px;
}

.ameri-highlight-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.92);
    margin: 0;
}

.ameri-desc-modern {
    font-family: 'Jost', sans-serif;
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 42px;
    max-width: 92%;
}

/* Visual / image */
.ameri-visual {
    position: relative;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative ring behind image */
.ameri-visual::before {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    border: 1px solid rgba(212,160,23,0.12);
    border-radius: var(--radius-lg);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(3deg);
    pointer-events: none;
}

.ameri-img-main {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: 20px 30px 60px rgba(0,0,0,0.5), 0 0 60px rgba(212,160,23,0.06);
    animation: float-img 7s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 2;
}

.ameri-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 14rem;
    color: rgba(255,255,255,0.018);
    font-weight: 900;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

/* CTA button */
.btn-ameri-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 44px;
    border: 1px solid var(--eng-gold);
    color: var(--eng-gold);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease-out);
    font-weight: 600;
}

.btn-ameri-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--eng-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease-circ);
    z-index: -1;
}

.btn-ameri-modern:hover {
    color: var(--black);
    box-shadow: 0 10px 30px rgba(212,175,55,0.28);
    transform: translateY(-3px);
}

.btn-ameri-modern:hover::before { transform: scaleX(1); }

@media (max-width: 991px) {
    .ameri-title-modern  { font-size: 2.6rem; }
    .ameri-bg-text       { display: none; }
    .ameri-desc-modern   { max-width: 100%; }
    .ameri-visual::before { display: none; }
}

/* ===================================
   7. GALLERY — COVERFLOW SLIDER
=================================== */
.gallery-section {
    padding: 100px 0;
    background: var(--near-black);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212,160,23,0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Section header style (shared) */
.trust-promise-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
}

.trust-promise-divider {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-line));
}

.trust-promise-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 400;
    color: var(--white);
    margin: 0;
    letter-spacing: 1px;
    white-space: nowrap;
}

.trust-promise-header + .swiper,
.trust-promise-header ~ .swiper { position: relative; }

/* Gallery slides */
.gallery-coverflow {
    width: 100%;
    padding-bottom: 20px;
}

.gallery-coverflow .swiper-slide {
    width: 340px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
}

.gallery-coverflow .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-md);
    transition: transform 0.6s var(--ease-out);
}

.gallery-coverflow .swiper-slide:hover img { transform: scale(1.05); }

/* Nav buttons */
.gallery-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.gallery-nav-btn {
    position: relative !important;
    inset: auto !important;
    margin: 0 !important;
    width: 48px !important;
    height: 48px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 50% !important;
    color: var(--white) !important;
    transition: all 0.35s ease !important;
}

.gallery-nav-btn::after { font-size: 14px !important; font-weight: 700 !important; }

.gallery-nav-btn:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--black) !important;
}

/* ===================================
   8. REELS / VIDEO SECTION
=================================== */
.reels-section {
    padding: 90px 0;
    background: #000;
    position: relative;
}

.reels-swiper {
    overflow: visible !important;
    padding-bottom: 16px;
}

.reel-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--card-bg);
    aspect-ratio: 9 / 16;
    cursor: pointer;
    box-shadow: 0 12px 36px rgba(0,0,0,0.5);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.reel-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 56px rgba(0,0,0,0.6), 0 0 24px rgba(212,160,23,0.1);
}

.reel-video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-md);
}

/* Play overlay */
.reel-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    transition: background 0.35s ease;
    z-index: 2;
}

.reel-play-overlay svg {
    width: 52px;
    height: 52px;
    color: var(--white);
    background: rgba(212,160,23,0.8);
    border-radius: 50%;
    padding: 12px;
    transition: transform 0.35s var(--ease-out), background 0.35s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.reel-card:hover .reel-play-overlay { background: rgba(0,0,0,0.15); }
.reel-card:hover .reel-play-overlay svg {
    transform: scale(1.15);
    background: var(--gold);
}

/* Info overlay */
.reel-info-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 18px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    z-index: 3;
    transition: padding 0.35s ease;
}

.reel-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--white);
    margin: 0 0 4px;
    font-weight: 400;
    line-height: 1.3;
}

.reel-item-views {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===================================
   9. TESTIMONIALS
=================================== */
.testimonial__section {
    background: var(--light-bg);
    padding: 100px 0;
}

.testimonial__section .trust-promise-title { color: var(--text-dark); }
.testimonial__section .trust-promise-divider {
    background: linear-gradient(90deg, transparent, rgba(212,160,23,0.5));
}

.testimonial-card-modern {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 44px 40px;
    min-height: 280px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Gold top stripe */
.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), rgba(212,160,23,0.4));
    border-radius: 3px 3px 0 0;
    transition: width 0.5s var(--ease-out);
}

.testimonial-card-modern:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }
.testimonial-card-modern:hover::before { width: 100%; }

.testimonial-quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold);
    line-height: 0.8;
    margin-bottom: 18px;
    opacity: 0.35;
}

.testimonial-text-modern {
    font-family: 'Jost', sans-serif;
    font-size: 0.97rem;
    line-height: 1.8;
    color: #4a5568;
    font-weight: 300;
    font-style: italic;
    margin: 0;
}

.testimonial-user-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 12px rgba(212,160,23,0.2);
    flex-shrink: 0;
}

.testimonial-info h5 {
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 3px;
}

.testimonial-info span {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.testimonial__pagination {
    margin-top: 36px !important;
}

.testimonial__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.testimonial__pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 24px;
}

/* ===================================
   10. CONTACT + MAP SECTION
=================================== */
.contact-section {
    background: var(--white);
    padding: 110px 0;
    position: relative;
}

.contact-section .trust-promise-title { color: var(--text-dark); }
.contact-section .trust-promise-divider {
    background: linear-gradient(90deg, transparent, rgba(212,160,23,0.5));
}

.contact-form-wrapper {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 52px 44px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* Inputs */
.contact-input {
    width: 100%;
    padding: 15px 20px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: 'Jost', sans-serif;
    font-size: 0.94rem;
    font-weight: 300;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
    display: block;
}

.contact-input::placeholder {
    color: #aab0bb;
    font-weight: 300;
}

.contact-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}

textarea.contact-input { resize: vertical; min-height: 130px; }

/* Submit button */
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 44px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Jost', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.contact-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.35s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212,160,23,0.35);
    background: var(--gold-light);
}

/* Map wrapper upgrade */
.map-wrapper {
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    height: 100%;
    min-height: 520px;
    position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.1) !important;
    border: 6px solid var(--white) !important;
}

.map-wrapper iframe {
    border-radius: var(--radius-lg);
}

/* Map marker pin */
.custom-map-marker {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -100%) !important;
    z-index: 10;
    pointer-events: none;
    text-align: center;
}

.custom-map-marker img {
    border-radius: 50% !important;
    border: 2px solid var(--gold) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25) !important;
}

@media (max-width: 991px) {
    .contact-form-wrapper { padding: 36px 28px; }
    .map-wrapper { min-height: 380px !important; }
}

@media (max-width: 768px) {
    .contact-section { padding: 80px 0; }
    .contact-form-wrapper { padding: 28px 22px; }
}

/* ===================================
   11. WHATSAPP FLOAT BUTTON
=================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
    text-decoration: none;
    color: var(--white);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(-6deg);
    box-shadow: 0 12px 36px rgba(37,211,102,0.55);
    color: var(--white);
}

/* Pulse ring */
.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(37,211,102,0.4);
    border-radius: 50%;
    animation: waPulse 2.5s ease-in-out infinite;
}

@keyframes waPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%       { transform: scale(1.18); opacity: 0; }
}

/* ===================================
   12. SHARED UTILITIES & ACCESSIBILITY
=================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Touch devices — disable hover transforms */
@media (hover: none) and (pointer: coarse) {
    .bento-card:hover        { transform: none; }
    .treasury-card:hover     { transform: none; }
    .testimonial-card-modern:hover { transform: none; }
    .reel-card:hover         { transform: none; }

    /* Keep mobile-always-visible states for bento */
    .bento-desc { max-height: 100px; opacity: 1; }
    .bento-cta  { opacity: 1; transform: translateY(0); }
}

/* Performance hints */
.bento-card,
.bento-card-image img,
.gallery-coverflow .swiper-slide img,
.reel-card,
.ameri-img-main { will-change: transform; }