/* ========================================
   RINGGALERIE — LUXURY RING AFFILIATE SITE
   Black & Gold Theme | 2025
   ======================================== */

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0A0A0A;
    --black-soft: #111111;
    --black-mid: #1A1A1A;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #9A7A2F;
    --cream: #FAF8F3;
    --white: #FFFFFF;
    --gray-100: #F7F7F7;
    --gray-200: #EBEBEB;
    --gray-300: #D4D4D4;
    --gray-400: #AAAAAA;
    --gray-500: #888888;
    --gray-600: #666666;
    --gray-700: #444444;
    --gray-800: #2A2A2A;

    --adbar-height: 44px;
    --header-height: 80px;
    --t: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
}

@media (max-width: 992px) {
    .container {
        padding: 0 28px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 18px;
    }
}

.section {
    padding: 110px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 8px;
    animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-logo span {
    color: var(--gold);
}

@keyframes preloaderPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.preloader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }

    50% {
        width: 220px;
        opacity: 1;
    }

    100% {
        width: 0;
        opacity: 0;
    }
}

/* ========== AD BAR ========== */
.adbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--adbar-height);
    background: var(--black-soft);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    z-index: 1100;
    transition: transform 0.35s ease;
}

.adbar.hidden {
    transform: translateY(-100%);
}

.adbar p {
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    color: var(--gray-500);
    text-align: center;
    width: 100%;
    font-weight: 300;
}

.adbar i {
    color: var(--gold);
    margin-right: 7px;
    font-size: 0.7rem;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: var(--adbar-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--t);
    background: transparent;
}

.header.scrolled {
    top: 0;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    transition: none;
}

.logo span {
    color: var(--gold);
    font-style: italic;
}

/* Desktop Nav */
.desktop-nav {
    display: flex;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 38px;
}

.desktop-nav a {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--gold);
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: var(--t);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 13px 34px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    transition: var(--t);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--black);
}

.btn-primary:hover::before {
    transform: scaleX(1);
}

.btn-outline {
    display: inline-block;
    padding: 13px 34px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    transition: var(--t);
}

.btn-outline:hover {
    border-color: var(--white);
    color: var(--black);
    background: var(--white);
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .header-actions .btn-primary {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 100vw);
    height: 100%;
    background: var(--black-soft);
    z-index: 2000;
    padding: 36px 40px;
    border-left: 1px solid rgba(201, 168, 76, 0.1);
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 52px;
}

.mobile-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.mobile-logo span {
    color: var(--gold);
    font-style: italic;
}

.close-menu {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 2.2rem;
    line-height: 1;
    transition: var(--t);
}

.close-menu:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu nav a {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--t);
    letter-spacing: 0.5px;
}

.mobile-menu nav a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.mobile-cta {
    margin-top: 40px;
}

.mobile-cta .btn-primary {
    display: block;
    text-align: center;
}

/* ========== COOKIE POPUP ========== */
.cookie-popup {
    position: fixed;
    bottom: 28px;
    left: 28px;
    background: var(--black-mid);
    border: 1px solid rgba(201, 168, 76, 0.35);
    padding: 22px 24px;
    max-width: 340px;
    z-index: 999;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-popup>i {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: block;
}

.cookie-popup p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-accept,
.cookie-decline {
    flex: 1;
    padding: 9px;
    border: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--t);
}

.cookie-accept {
    background: var(--gold);
    color: var(--black);
    font-weight: 500;
}

.cookie-accept:hover {
    background: var(--gold-light);
}

.cookie-decline {
    background: transparent;
    border: 1px solid var(--gray-600);
    color: var(--gray-400);
}

.cookie-decline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding-top: calc(var(--adbar-height) + var(--header-height) + 40px);
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(201, 168, 76, 0.07) 0%, transparent 40%),
        linear-gradient(160deg, #0C0C0C 0%, #1A1508 50%, #0A0A0A 100%);
    z-index: 0;
}

/* Decorative diagonal lines on hero background */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(45deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* Gold ring decoration */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 8%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.1);
    box-shadow:
        inset 0 0 80px rgba(201, 168, 76, 0.05),
        0 0 80px rgba(201, 168, 76, 0.05);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 680px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    font-weight: 400;
    position: relative;
    padding-left: 36px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
    font-weight: 600;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 44px;
    max-width: 520px;
    line-height: 1.85;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 54px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 68px;
}

.section-subtitle {
    display: block;
    font-size: 0.73rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--black);
    font-weight: 600;
}

.section-title span {
    color: var(--gold);
    font-style: italic;
}

/* ========== COLLECTION ========== */
.collection {
    background: var(--cream);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 992px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .collection-grid {
        grid-template-columns: 1fr;
    }
}

.collection-item {
    text-align: center;
    transition: var(--t);
    cursor: pointer;
}

.collection-item:hover {
    transform: translateY(-8px);
}

.item-image {
    background: var(--white);
    padding: 32px;
    margin-bottom: 22px;
    border: 1px solid var(--gray-200);
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.collection-item:hover .item-image {
    border-color: var(--gold);
}

.item-image img {
    max-width: 100%;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.collection-item:hover .item-image img {
    transform: scale(1.05);
}

.collection-item h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--black);
}

.collection-item>p {
    color: var(--gray-500);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ========== EXCLUSIVE PRODUCT ========== */
.exclusive {
    background: var(--white);
}

.exclusive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

@media (max-width: 992px) {
    .exclusive-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

.main-image {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    height: 440px;
    max-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    overflow: hidden;
    margin-bottom: 16px;
}

.main-image img {
    max-width: 100%;
    max-height: 360px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.main-image:hover img {
    transform: scale(1.04);
}

.image-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.thumb {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    padding: 10px;
    cursor: pointer;
    transition: var(--t);
    opacity: 0.55;
    height: 110px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb.active,
.thumb:hover {
    border-color: var(--gold);
    opacity: 1;
}

.thumb img {
    max-width: 100%;
    max-height: 85px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.exclusive-content {
    padding-top: 8px;
}

.exclusive-badge {
    display: inline-block;
    background: var(--black);
    color: var(--gold);
    padding: 6px 16px;
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    margin-bottom: 22px;
    font-family: 'Montserrat', sans-serif;
}

.exclusive-content h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--black);
    margin-bottom: 16px;
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.price span {
    font-size: 1.3rem;
    color: var(--gray-400);
    text-decoration: line-through;
    font-weight: 400;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 0.88rem;
}

.rating span {
    color: var(--gray-500);
    font-size: 0.78rem;
    margin-left: 6px;
}

.description {
    color: var(--gray-600);
    margin-bottom: 26px;
    line-height: 1.82;
    font-size: 0.9rem;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}

.features {
    margin-bottom: 28px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 11px;
    color: var(--gray-700);
    font-size: 0.88rem;
}

.feature i {
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.size-selector {
    margin-bottom: 22px;
}

.size-selector label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 9px;
}

.size-selector select {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: var(--black);
    cursor: pointer;
    transition: border-color 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.size-selector select:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
    padding: 16px;
    font-size: 0.82rem;
}

.small-note {
    font-size: 0.78rem;
    color: var(--gray-400);
    text-align: center;
}

/* ========== CRAFTSMANSHIP ========== */
.craftsmanship {
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.craftsmanship::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.07);
    pointer-events: none;
}

.craftsmanship .section-title {
    color: var(--white);
}

.craftsmanship .section-subtitle {
    color: var(--gold);
}

.craft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .craft-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }
}

.craft-text {
    color: rgba(255, 255, 255, 0.58);
    margin: 28px 0;
    line-height: 1.88;
    font-size: 0.92rem;
    font-weight: 300;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.73rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

/* Craft Highlights Grid */
.craft-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.craft-highlight-item {
    padding: 36px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.08);
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.craft-highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
}

.craft-highlight-item:hover {
    background: rgba(201, 168, 76, 0.04);
    border-color: rgba(201, 168, 76, 0.18);
}

.craft-highlight-item:hover::before {
    height: 100%;
}

.craft-highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 18px;
    transition: var(--t);
}

.craft-highlight-item:hover .craft-highlight-icon {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.craft-highlight-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.craft-highlight-item p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.75;
    font-weight: 300;
}

@media (max-width: 580px) {
    .craft-highlights {
        grid-template-columns: 1fr;
    }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--cream);
}

.testimonials-slider {
    max-width: 780px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 52px 56px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    text-align: center;
    border-top: 3px solid var(--gold);
}

@media (max-width: 640px) {
    .testimonial-card {
        padding: 36px 28px;
    }
}

.testimonial-card>i {
    color: var(--gold);
    font-size: 1.8rem;
    opacity: 0.25;
    margin-bottom: 22px;
    display: block;
}

.testimonial-card>p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 28px;
}

.testimonial-card h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: var(--black);
}

.testimonial-card>span {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
}

.slider-prev,
.slider-next {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-500);
    transition: var(--t);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--t);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

/* ========== FAQ ========== */
.faq {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    border: 1px solid var(--gray-200);
    padding: 26px 28px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black);
    line-height: 1.4;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 18px;
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.8;
    font-weight: 300;
}

/* ========== CONTACT ========== */
.contact {
    background: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.contact-info h3 {
    font-size: 2.4rem;
    color: var(--black);
    margin-bottom: 6px;
}

.contact-role {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    display: block;
}

.contact-info>p {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 14px;
    font-weight: 300;
}

.contact-info i {
    color: var(--gold);
    width: 18px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: var(--t);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-4px);
}

.contact-note {
    padding: 44px 40px;
    background: var(--black);
    border-left: 3px solid var(--gold);
    position: relative;
}

.contact-note p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.75;
    font-style: italic;
    color: rgba(255, 255, 255, 0.72);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--black-soft);
    color: var(--white);
    padding: 64px 0 24px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 580px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.footer-logo span {
    color: var(--gold);
    font-style: italic;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.85rem;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 18px;
}

.footer-contact-info {
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-owner {
    color: var(--gold) !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.5px;
    font-weight: 400 !important;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    font-size: 0.83rem;
    font-weight: 300;
}

.footer-contact-info i {
    color: var(--gold);
    width: 16px;
    flex-shrink: 0;
    font-size: 0.78rem;
}

.footer-contact-info a {
    color: var(--gray-500);
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--gold);
}

.footer-brand .social-links {
    margin-top: 16px;
}

.footer-brand .social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.85rem;
    transition: var(--t);
}

.footer-brand .social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 300;
    transition: var(--t);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-disclaimer {
    text-align: center;
    padding: 18px 28px;
    border: 1px solid rgba(201, 168, 76, 0.1);
    margin-bottom: 28px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.6;
    font-weight: 300;
}

.footer-bottom {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.78rem;
}

/* ========== MODALS ========== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 44px;
    max-width: 480px;
    width: 100%;
    position: relative;
    border-top: 3px solid var(--gold);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 2rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--t);
    line-height: 1;
    background: none;
    border: none;
    font-family: inherit;
}

.modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-content h2 {
    margin-bottom: 18px;
    font-size: 2rem;
}

.modal-content p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 300;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--black);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--t);
    z-index: 900;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-4px);
}

/* ========== UTILITY ========== */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--t);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}