/* ================================================================
   KIT: ELEGANT SERIF
   Люксовый элегантный стиль с засечками и тонкими линиями
   Вдохновлён: Rolex.com, Cartier.com, Vogue.com
   ================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLES
   AI: Замени --accent-1 и --accent-2 на цвета из color_palette
---------------------------------------------------------------- */
:root {
    --bg-primary: #faf9f6;
    --bg-secondary: #f3f0eb;
    --bg-card: #ffffff;
    --bg-card-hover: #fffdf8;
    --text-primary: #1c1c1c;
    --text-secondary: #555555;
    --text-muted: #999999;
    --footer-dark-bg: #1c1c1c;
    --border-color: #e0dcd5;
    --border-light: #c9c3b8;

    --accent-1: #b08d57;
    --accent-2: #8b6f3a;
    --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --accent-glow: 0 4px 20px rgba(176, 141, 87, 0.15);

    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Cormorant Garamond', 'Georgia', serif;

    --fs-h1: 62px;
    --fs-h2: 46px;
    --fs-h3: 32px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --fs-body: 17px;
    --fs-small: 14px;

    --fw-bold: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;

    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;
    --radius-xl: 8px;
    --radius-pill: 50px;

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.07);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.09);

    --section-padding: 120px 0;
    --container-width: 1100px;
}

/* ----------------------------------------------------------------
   RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 1.8;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: var(--accent-1);
    transition: var(--transition);
}
a:hover { color: var(--accent-2); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--accent-1); color: #fff; }

/* ----------------------------------------------------------------
   TYPOGRAPHY — serif elegance
---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

h1 { font-size: var(--fs-h1); letter-spacing: -1px; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--accent-1); }
.text-accent-2 { color: var(--accent-2); }
.text-dark { color: var(--text-primary); }
.text-muted-custom { color: var(--text-muted); }

/* ----------------------------------------------------------------
   UTILITIES
---------------------------------------------------------------- */
.section-padding { padding: var(--section-padding); position: relative; }
.section-padding-sm { padding: 70px 0; }
.section-padding-lg { padding: 160px 0; }
.section-padding > .container { position: relative; z-index: 1; }

.bg-primary-custom { background-color: var(--bg-primary); }
.bg-secondary-custom { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--accent-gradient); }
.bg-gradient-custom {
    color: #fff;
}
.bg-gradient-custom h1, .bg-gradient-custom h2, .bg-gradient-custom h3,
.bg-gradient-custom h4, .bg-gradient-custom h5, .bg-gradient-custom h6 { color: #fff; }
.bg-gradient-custom p, .bg-gradient-custom li, .bg-gradient-custom span { color: rgba(255,255,255,0.8); }
.bg-gradient-custom a:not(.btn-custom) { color: #fff; }
.bg-gradient-custom .counter-number { color: #fff; }
.bg-gradient-custom .counter-label { color: rgba(255,255,255,0.7); }

.bg-dark-section {
    background-color: #1c1c1c;
    color: rgba(255,255,255,0.75);
}
.bg-dark-section h1, .bg-dark-section h2, .bg-dark-section h3,
.bg-dark-section h4, .bg-dark-section h5, .bg-dark-section h6 { color: #fff; }
.bg-dark-section p, .bg-dark-section li, .bg-dark-section span:not(.badge) { color: rgba(255,255,255,0.75); }
.bg-dark-section a:not(.btn-custom) { color: rgba(255,255,255,0.8); }
.bg-dark-section a:not(.btn-custom):hover { color: #fff; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pt-60 { padding-top: 60px; }
.pb-20 { padding-bottom: 20px; }
.pb-40 { padding-bottom: 40px; }
.pb-60 { padding-bottom: 60px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.gap-40 { gap: 40px; }

/* ----------------------------------------------------------------
   PRELOADER
---------------------------------------------------------------- */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-inner { display: flex; gap: 12px; }
.preloader-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-1);
    animation: preloaderBounce 1.6s ease-in-out infinite both;
}
.preloader-dot:nth-child(1) { animation-delay: -0.32s; }
.preloader-dot:nth-child(2) { animation-delay: -0.16s; }
.preloader-dot:nth-child(3) { animation-delay: 0; }

@keyframes preloaderBounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* ----------------------------------------------------------------
   BUTTONS — refined, thin borders
---------------------------------------------------------------- */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    border-radius: 0;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.btn-primary-custom {
    background: var(--accent-1);
    color: #fff;
    box-shadow: none;
}
.btn-primary-custom:hover {
    background: var(--accent-2);
    color: #fff;
    letter-spacing: 4px;
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}
.btn-outline-custom:hover {
    background: var(--text-primary);
    color: #fff;
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--accent-1);
    padding: 0;
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: var(--fs-small);
    position: relative;
}
.btn-link-custom::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 1px;
    background: var(--accent-1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.btn-link-custom:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-link-custom:hover { color: var(--accent-2); }
.btn-link-custom i { transition: transform 0.3s ease; }
.btn-link-custom:hover i { transform: translateX(5px); }

/* ----------------------------------------------------------------
   HEADER & NAVIGATION — minimal, refined
---------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
    background: transparent;
}
.site-header.scrolled {
    background: rgba(250, 249, 246, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    letter-spacing: 2px;
}
.site-logo:hover { color: var(--text-primary); }
.site-logo span { color: var(--accent-1); font-style: italic; }

.main-nav { display: flex; align-items: center; gap: 36px; }

.main-nav .nav-link {
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 8px 0;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: var(--accent-1);
    transition: width 0.4s ease, left 0.4s ease;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--text-primary); }
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { width: 100%; left: 0; }

.header-cta { margin-left: 16px; }

/* Centered logo variant: split nav groups */
.nav-group-left, .nav-group-right { display: flex; align-items: center; gap: 36px; }
.nav-group-left .nav-link, .nav-group-right .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--fw-medium); padding: 8px 0; letter-spacing: 2px; text-transform: uppercase;
}
.nav-group-left .nav-link:hover, .nav-group-right .nav-link:hover { color: var(--accent-1); }
.nav-group-left ~ .main-nav { display: none; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: none;
    border: 1px solid var(--text-primary);
    cursor: pointer;
    padding: 0;
    gap: 6px;
}

.mobile-toggle .burger-line {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 0;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.3s ease;
}

.mobile-toggle.active .burger-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.active .burger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .burger-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ----------------------------------------------------------------
   HERO SECTION — cinematic, serif typography
---------------------------------------------------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-secondary);
}
.hero-section .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: sepia(20%);
}
.hero-section .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, transparent 30%, transparent 70%, var(--bg-secondary) 100%);
}
.hero-content { position: relative; z-index: 2; }

.hero-tagline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent-1);
    margin-bottom: 28px;
    padding: 0;
    position: relative;
}
.hero-tagline::before,
.hero-tagline::after {
    content: '—';
    margin: 0 12px;
    color: var(--border-light);
}

.hero-title {
    font-size: var(--fs-h1);
    font-weight: var(--fw-bold);
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 44px;
    line-height: 1.8;
    font-style: italic;
}

.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }

.hero-image { position: relative; z-index: 2; }
.hero-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

/* decorative lines */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 40px;
    width: 1px; height: 200px;
    background: var(--border-color);
    transform: translateY(-50%);
    opacity: 0.5;
}

/* ----------------------------------------------------------------
   SECTION TITLE — centered with decorative lines
---------------------------------------------------------------- */
.section-header { margin-bottom: 70px; }

.section-tagline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent-1);
    margin-bottom: 16px;
}

.section-title {
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
}
.section-header.text-center .section-title::after {
    content: '';
    display: block;
    width: 60px; height: 1px;
    background: var(--accent-1);
    margin: 20px auto 0;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    font-style: italic;
}
.section-header.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------------------------------
   ICON BOX / FEATURE CARD — thin lines, elegant
---------------------------------------------------------------- */
.icon-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 44px 32px;
    transition: var(--transition);
    height: 100%;
    text-align: center;
}
.icon-box:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-1);
}

.icon-box .icon-wrap {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--accent-1);
    color: var(--accent-1);
    font-size: 24px;
    margin: 0 auto 24px;
    transition: var(--transition);
}
.icon-box:hover .icon-wrap {
    background: var(--accent-1);
    color: #fff;
}

.icon-box .icon-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}
.icon-box .icon-text {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.icon-box-horizontal {
    display: flex;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
}
.icon-box-horizontal:hover { box-shadow: var(--shadow-md); border-color: var(--accent-1); }
.icon-box-horizontal .icon-wrap {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--accent-1);
    color: var(--accent-1);
    font-size: 20px;
}

/* ----------------------------------------------------------------
   ABOUT SECTION
---------------------------------------------------------------- */
.about-section .about-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-section .about-image img { width: 100%; border-radius: var(--radius-md); }
.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--accent-1);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
}
.experience-badge .badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: var(--fw-bold);
    line-height: 1;
}
.experience-badge .badge-text { font-size: var(--fs-small); opacity: 0.9; }

.about-list { margin-top: 20px; }
.about-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--accent-1); font-size: 14px; }

/* ----------------------------------------------------------------
   COUNTER / STATS — refined numbers
---------------------------------------------------------------- */
.counter-section { background: var(--bg-secondary); }
.counter-item { text-align: center; padding: 24px; }
.counter-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.counter-number .counter-suffix { color: var(--accent-1); }
.counter-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* ----------------------------------------------------------------
   SERVICE CARDS
---------------------------------------------------------------- */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card .card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.service-card .card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.service-card:hover .card-image img { transform: scale(1.06); }
.service-card .card-image .card-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(28,28,28,0.85);
    color: #fff;
    padding: 4px 16px;
    font-size: 11px;
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.service-card .card-body { padding: 32px; }
.service-card .card-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}
.service-card .card-title a { color: var(--text-primary); }
.service-card .card-title a:hover { color: var(--accent-1); }
.service-card .card-text { font-size: var(--fs-small); color: var(--text-secondary); margin-bottom: 20px; }
.service-card .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
.service-card .card-price {
    font-family: var(--font-heading);
    font-size: var(--fs-h5);
    font-weight: var(--fw-bold);
    color: var(--accent-1);
}

/* ----------------------------------------------------------------
   TEAM SECTION
---------------------------------------------------------------- */
.team-card { text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); }
.team-card .team-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}
.team-card .team-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.team-card:hover .team-image img { transform: scale(1.04); }
.team-card .team-social {
    position: absolute;
    bottom: -60px; left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(0deg, rgba(28,28,28,0.7) 0%, transparent 100%);
    transition: bottom 0.4s ease;
}
.team-card:hover .team-social { bottom: 0; }
.team-social a {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    transition: var(--transition);
}
.team-social a:hover { background: var(--accent-1); border-color: var(--accent-1); }
.team-card .team-name {
    font-family: var(--font-heading);
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 4px;
    color: var(--text-primary);
}
.team-card .team-role {
    font-size: var(--fs-small);
    color: var(--accent-1);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: italic;
}

/* ----------------------------------------------------------------
   TESTIMONIALS — elegant quote style
---------------------------------------------------------------- */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 44px;
    transition: var(--transition);
    text-align: center;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card .quote-icon {
    font-family: var(--font-heading);
    font-size: 60px;
    color: var(--accent-1);
    margin-bottom: 16px;
    opacity: 0.25;
    line-height: 1;
}
.testimonial-card .quote-text {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 28px;
    font-style: italic;
    font-weight: var(--fw-regular);
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.testimonial-card .author-image {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}
.testimonial-card .author-name {
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: 2px;
}
.testimonial-card .author-role {
    font-size: var(--fs-small);
    color: var(--text-muted);
    letter-spacing: 1px;
}
.testimonial-card .stars { color: var(--accent-1); margin-bottom: 16px; }

/* ----------------------------------------------------------------
   PORTFOLIO / GALLERY
---------------------------------------------------------------- */
.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}
.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.08); filter: brightness(0.7); }
.portfolio-item .portfolio-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .portfolio-cat {
    font-size: 12px;
    color: var(--accent-1);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}
.portfolio-overlay .portfolio-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    color: #fff;
    margin-bottom: 0;
}

/* ----------------------------------------------------------------
   FAQ / ACCORDION
---------------------------------------------------------------- */
.faq-section .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: var(--fw-semibold);
    padding: 20px 28px;
    box-shadow: none;
    border: none;
}
.faq-section .accordion-button:not(.collapsed) {
    background: var(--bg-card-hover);
    color: var(--accent-1);
}
.faq-section .accordion-body {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.9;
}

/* ----------------------------------------------------------------
   PRICING — classic, understated
---------------------------------------------------------------- */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 44px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.pricing-card.featured {
    border-color: var(--accent-1);
}
.pricing-card.featured::before {
    content: 'Recommended';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent-1);
    color: #fff;
    padding: 4px 20px;
    font-size: 11px;
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}
.pricing-card .plan-name {
    font-size: var(--fs-small);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}
.pricing-card .plan-price {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.pricing-card .plan-price .currency {
    font-size: 22px;
    vertical-align: top;
    color: var(--accent-1);
}
.pricing-card .plan-period { font-size: var(--fs-small); color: var(--text-muted); margin-bottom: 30px; }
.pricing-card .plan-features { text-align: left; margin-bottom: 30px; }
.pricing-card .plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: var(--fs-small);
}
.pricing-card .plan-features li:last-child { border-bottom: none; }
.pricing-card .plan-features li i { color: var(--accent-1); }
.pricing-card .plan-features li.disabled { opacity: 0.4; text-decoration: line-through; }

/* ----------------------------------------------------------------
   BLOG CARDS
---------------------------------------------------------------- */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card .card-image { height: 220px; overflow: hidden; }
.blog-card .card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .card-image img { transform: scale(1.05); }
.blog-card .card-body { padding: 28px; }
.blog-card .card-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.blog-card .card-meta i { margin-right: 4px; color: var(--accent-1); }
.blog-card .card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-primary);
}
.blog-card .card-title a { color: var(--text-primary); }
.blog-card .card-title a:hover { color: var(--accent-1); }

/* ----------------------------------------------------------------
   CTA SECTION
---------------------------------------------------------------- */
.cta-section {
    background: #1c1c1c;
    position: relative;
    overflow: hidden;
}
.cta-section .cta-content { position: relative; z-index: 2; }
.cta-section .cta-title { font-size: var(--fs-h2); color: #fff; }
.cta-section .cta-text { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 560px; font-style: italic; }
.cta-section p, .cta-section li { color: rgba(255,255,255,0.7); }
.cta-section .btn-custom { background: var(--accent-1); color: #fff; border: none; }
.cta-section .btn-custom:hover { background: var(--accent-2); }
.cta-section .cta-shape { position: absolute; border-radius: 50%; background: rgba(176,141,87,0.06); pointer-events: none; z-index: 0; }
.cta-shape-1 { width: 400px; height: 400px; top: -200px; right: -100px; }
.cta-shape-2 { width: 250px; height: 250px; bottom: -120px; left: -80px; }

/* ----------------------------------------------------------------
   NEWSLETTER
---------------------------------------------------------------- */
.newsletter-form { display: flex; gap: 12px; max-width: 480px; }
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 14px 24px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--fs-body);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--accent-1); }

/* ----------------------------------------------------------------
   PROCESS / STEPS
---------------------------------------------------------------- */
.process-item { text-align: center; position: relative; padding: 0 20px; }
.process-item .step-number {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--accent-1);
    color: var(--accent-1);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: var(--fw-bold);
    margin: 0 auto 20px;
}
.process-item .step-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}
.process-item .step-text { font-size: var(--fs-small); color: var(--text-secondary); }
.process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px; right: -20px;
    width: 40px; height: 1px;
    background: var(--border-color);
}

/* ----------------------------------------------------------------
   MARQUEE / TEXT SLIDER
---------------------------------------------------------------- */
.marquee-section {
    padding: 40px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    gap: 60px;
}

.marquee-track .marquee-item {
    font-size: 64px;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    color: var(--text-primary);
}

.marquee-track .marquee-item.stroke {
    -webkit-text-stroke: 1px var(--text-primary);
    -webkit-text-fill-color: transparent;
}

.marquee-track .marquee-item.italic {
    font-style: italic;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   FOOTER — elegant dark
---------------------------------------------------------------- */
.site-footer {
    background: #1c1c1c;
    color: rgba(255,255,255,0.6);
}
.site-footer h1, .site-footer h2, .site-footer h3,
.site-footer h4, .site-footer h5 { color: #fff; }

.footer-widget .widget-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: var(--fw-semibold);
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 14px;
}
.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 1px;
    background: var(--accent-1);
}
.footer-widget p { color: rgba(255,255,255,0.5); font-size: var(--fs-small); }
.footer-links a { color: rgba(255,255,255,0.5); font-size: var(--fs-small); transition: var(--transition); }
.footer-links a:hover { color: var(--accent-1); padding-left: 5px; }
.footer-links li { margin-bottom: 10px; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px; color: rgba(255,255,255,0.5); font-size: var(--fs-small);
}
.footer-contact li i { color: var(--accent-1); margin-top: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent-1); border-color: var(--accent-1); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; margin-top: 60px; }
.footer-bottom p { margin: 0; font-size: var(--fs-small); color: rgba(255,255,255,0.3); }

.footer-policy { margin-top: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.footer-policy a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.3s; }
.footer-policy a:hover { color: var(--accent-1); }

/* ----------------------------------------------------------------
   POLICY PAGES
---------------------------------------------------------------- */
.policy-content h1 { font-size: var(--fs-h2); margin-bottom: 24px; }
.policy-content h2 { font-size: var(--fs-h4); margin-top: 32px; margin-bottom: 16px; }
.policy-content p { color: var(--text-secondary); line-height: 1.9; margin-bottom: 16px; }
.policy-content ul, .policy-content ol { color: var(--text-secondary); padding-left: 24px; margin-bottom: 16px; }
.policy-content li { margin-bottom: 8px; line-height: 1.7; }
.policy-content a { color: var(--accent-1); text-decoration: underline; }
.policy-content strong { color: var(--text-primary); }

/* ----------------------------------------------------------------
   SCROLL TO TOP
---------------------------------------------------------------- */
.scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    background: transparent;
    color: var(--accent-1);
    border: 1px solid var(--accent-1);
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--accent-1); color: #fff; }

/* ----------------------------------------------------------------
   FORMS
---------------------------------------------------------------- */
.form-custom .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    padding: 14px 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--fs-body);
}
.form-custom .form-control:focus {
    border-bottom-color: var(--accent-1);
    box-shadow: none;
    background: transparent;
    color: var(--text-primary);
}
.form-custom .form-control::placeholder { color: var(--text-muted); }
.form-custom textarea.form-control { min-height: 120px; resize: vertical; border: 1px solid var(--border-color); padding: 14px; }

/* ----------------------------------------------------------------
   SWIPER OVERRIDES
---------------------------------------------------------------- */
.swiper-pagination-bullet { background: var(--border-light); opacity: 1; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--accent-1); width: 20px; border-radius: 10px; }
.swiper-button-prev,
.swiper-button-next {
    width: 44px; height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 14px; }
.swiper-button-prev:hover,
.swiper-button-next:hover { background: var(--accent-1); border-color: var(--accent-1); color: #fff; }

/* ----------------------------------------------------------------
   WOW.JS / ANIMATION HELPERS
---------------------------------------------------------------- */
.wow { visibility: hidden; }
.animated { visibility: visible; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.float-anim { animation: floatUpDown 4s ease-in-out infinite; }

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 1200px) { :root { --fs-h1: 50px; --fs-h2: 38px; } }

@media (max-width: 992px) {
    :root { --fs-h1: 42px; --fs-h2: 34px; --fs-h3: 26px; --section-padding: 90px 0; }
    .main-nav {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        background: var(--bg-primary);
        border-left: 1px solid var(--border-color);
        padding: 90px 32px 40px;
        gap: 0;
        z-index: 10000;
        transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
        overflow-y: auto;
    }
    .main-nav.active { right: 0; }
    .main-nav .nav-link {
        display: block !important;
        font-size: 16px !important; padding: 14px 0 !important;
        border-bottom: 1px solid var(--border-color); width: 100%;
        color: var(--text-primary) !important;
        opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
    }
    .main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--accent-1) !important; }
    .main-nav .nav-link::after { display: none; }
    .header-cta { display: none !important; }
    .mobile-toggle {
        display: flex !important; z-index: 10001; position: relative;
        pointer-events: auto !important; opacity: 1 !important;
        background: none !important; border: none !important;
    }
    .mobile-overlay {
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.3);
        z-index: 9999;
        opacity: 0; visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    .mobile-overlay.active { opacity: 1; visibility: visible; }
    .hero-title { font-size: var(--fs-h1); }
    .hero-section::before { display: none; }
    .process-item:not(:last-child)::after { display: none; }
    .counter-number { font-size: 38px; }
}

@media (max-width: 768px) {
    :root { --fs-h1: 36px; --fs-h2: 28px; --fs-h3: 22px; --fs-h4: 20px; --section-padding: 70px 0; }
    .section-header { margin-bottom: 40px; }
    .hero-section { min-height: auto; padding: 140px 0 80px; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    .pricing-card .plan-price { font-size: 40px; }
    .footer-bottom { text-align: center; }
}

@media (max-width: 576px) {
    :root { --fs-h1: 30px; --fs-h2: 24px; --fs-h3: 20px; --section-padding: 50px 0; }
    .testimonial-card { padding: 28px; }
    .pricing-card { padding: 28px; }
    .icon-box { padding: 28px 20px; }
}
