/*
Theme Name: Aparatinės Procedūros
Theme URI: https://kokybiskasvetaine.lt
Author: kokybiskasvetaine.lt
Description: Aparatinių ir kosmetinių procedūrų svetainės tema
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: aparatines-proceduros
*/

/* ═══════════════════════════════════
   RESET
   ═══════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #b5956e;
    --gold-light: #cbb08a;
    --gold-pale: #f0e8dd;
    --gold-dark: #9a7d5b;
    --dark: #191919;
    --dark-soft: #2a2a2a;
    --text: #4a4a4a;
    --text-light: #8a8a8a;
    --light: #f8f6f3;
    --cream: #fdfcfa;
    --white: #fff;
    --border: #e9e4dd;
    --radius: 6px;
    --radius-lg: 14px;
    --font: 'DM Sans', sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow: 0 4px 24px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--dark);
    font-weight: 500;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}
.container-narrow {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

/* ═══════════════════════════════════
   HEADER
   ═══════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}
.site-logo {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    text-decoration: none;
    white-space: nowrap;
}
.logo-leaf {
    height: 24px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}
.site-header.scrolled .logo-text {
    color: var(--dark);
}

/* Inner pages - always dark */
body:not(.home) .logo-text { color: var(--dark); }
body:not(.home) .site-header { background: rgba(255,255,255,0.98); box-shadow: 0 1px 0 var(--border); }
body:not(.home) .main-nav a { color: var(--text); }
body:not(.home) .menu-toggle span { background: var(--dark); }

.main-nav { display: flex; align-items: center; }
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}
.main-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 0;
    position: relative;
    transition: all 0.3s ease;
}
.site-header.scrolled .main-nav a { color: var(--text); }
.main-nav a:hover { color: var(--gold-light); }
.site-header.scrolled .main-nav a:hover { color: var(--gold); }
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.main-nav a:hover::after { width: 100%; }

/* CTA button in nav */
.menu-cta > a,
.main-nav .menu-cta > a,
.main-nav ul > li.menu-cta > a,
.main-nav ul > .menu-item:last-child > a {
    padding: 11px 28px !important;
    background: var(--gold) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    transition: all var(--transition) !important;
    display: inline-block !important;
    line-height: 1.4 !important;
}
.menu-cta > a::after,
.main-nav ul > .menu-item:last-child > a::after {
    display: none !important;
}
.menu-cta > a:hover,
.main-nav ul > .menu-item:last-child > a:hover {
    background: var(--gold-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(181,149,110,0.35) !important;
}
/* Keep white text on all states */
.site-header.scrolled .menu-cta > a,
.site-header.scrolled .main-nav ul > .menu-item:last-child > a,
body:not(.home) .menu-cta > a,
body:not(.home) .main-nav ul > .menu-item:last-child > a {
    color: var(--white) !important;
    background: var(--gold) !important;
}
.menu-cta,
.main-nav ul > .menu-item:last-child {
    border-bottom: none !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 26px;
    height: 18px;
    position: relative;
}
.menu-toggle span {
    display: block; width: 100%; height: 1.5px;
    background: var(--white); position: absolute; left: 0;
    transition: all 0.3s;
}
.site-header.scrolled .menu-toggle span { background: var(--dark); }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 8px; }
.menu-toggle span:nth-child(3) { top: 16px; }
.menu-toggle.active span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 85vh;
    display: flex;
    background: var(--dark);
    overflow: hidden;
}
.hero-text-side {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 80px;
    position: relative;
    z-index: 2;
}
.hero-img-side {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}
.hero-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    display: none;
}
.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 85px;
}
.hero-content {
    max-width: 640px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border: 1px solid rgba(181,149,110,0.35);
    border-radius: 50px;
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 32px;
    font-weight: 500;
}
.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}
.hero h1 {
    font-size: clamp(42px, 5.5vw, 68px);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.5px;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 400;
}
.hero-text {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 42px;
    line-height: 1.8;
    max-width: 480px;
    font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    font-family: var(--font);
}
.btn-primary {
    background: var(--gold);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(181,149,110,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}
.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--white);
}

/* ═══════════════════════════════════
   SECTIONS
   ═══════════════════════════════════ */
.section { width: 100%; padding: 120px 0; position: relative; overflow: hidden; }
.section-light { background: var(--light); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--dark); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 600;
    font-family: var(--font);
}
.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}
.section-title {
    font-size: clamp(32px, 3.5vw, 50px);
    margin-bottom: 18px;
    font-weight: 400;
    letter-spacing: -0.3px;
}
.section-subtitle {
    font-size: 15px;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.75;
    font-weight: 300;
}
.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-header .section-label::before { display: none; }
.section-header .section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}
.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.service-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.15));
    z-index: 1;
}
.service-card:hover .service-card-img {
    /* subtle zoom via inner element */
}
.service-card-category {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 5px 14px;
    background: var(--white);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.service-card-body {
    padding: 28px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-body h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
}
.service-card-body p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.7;
}
.service-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.service-card-duration {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}
.service-card-price {
    font-size: 24px;
    font-weight: 500;
    color: var(--gold);
    font-family: var(--font-display);
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: gap var(--transition);
}
.service-card-link:hover { gap: 14px; }

/* ═══════════════════════════════════
   ABOUT - ASYMMETRIC LAYOUT
   ═══════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 90px;
    align-items: center;
}
.about-img-wrap {
    position: relative;
}
.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.about-img img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}
.about-img-placeholder {
    width: 100%;
    height: 580px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
}
.about-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
}
.about-badge {
    position: absolute;
    bottom: -15px;
    right: 35px;
    background: var(--dark);
    color: var(--white);
    padding: 22px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}
.about-badge .number {
    font-size: 40px;
    font-weight: 400;
    font-family: var(--font-display);
    display: block;
    line-height: 1;
    color: var(--gold-light);
}
.about-badge .text {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
    color: rgba(255,255,255,0.6);
}

.about-content .section-title { text-align: left; }
.about-content > p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.85;
    font-weight: 300;
}
.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    padding: 10px 0;
}
.feature-item .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-pale);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.process-card {
    text-align: center;
    padding: 40px 24px 36px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}
.process-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.process-number {
    font-size: 48px;
    font-weight: 300;
    color: var(--gold);
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 18px;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.process-card:hover .process-number { opacity: 1; }
.process-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}
.process-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.65;
    font-weight: 300;
}

/* ═══════════════════════════════════
   WHY US - HORIZONTAL FEATURES
   ═══════════════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    padding: 38px 28px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(181,149,110,0.3);
    transform: translateY(-4px);
}
.why-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
}
.why-card h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 500;
}
.why-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    font-weight: 300;
}

/* ═══════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all var(--transition);
    position: relative;
}
.testimonial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 60px;
    color: var(--gold-pale);
    position: absolute;
    top: 20px;
    right: 28px;
    line-height: 1;
}
.testimonial-stars {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 18px;
    letter-spacing: 3px;
}
.testimonial-text {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.8;
    font-weight: 300;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--gold-dark);
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 600;
    font-size: 13px;
    color: var(--dark);
}
.testimonial-date {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
}

/* ═══════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════ */
.cta-section {
    width: 100%;
    padding: 100px 0;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181,149,110,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section .section-title { color: var(--white); }
.cta-section p {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    margin-bottom: 38px;
    position: relative;
    z-index: 2;
    font-weight: 300;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

/* ═══════════════════════════════════
   DECORATIVE SHAPES
   ═══════════════════════════════════ */
.deco-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.deco-ring-1 {
    width: 280px;
    height: 280px;
    border: 1px solid var(--gold-pale);
    top: -60px;
    right: -80px;
    opacity: 0.5;
}
.deco-ring-2 {
    width: 220px;
    height: 220px;
    border: 1px solid var(--gold-pale);
    bottom: -40px;
    left: -60px;
    opacity: 0.4;
}
.deco-circle-1 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(181,149,110,0.06) 0%, transparent 70%);
    top: 80px;
    right: 40px;
}
.deco-dots-1 {
    width: 120px;
    height: 120px;
    bottom: 40px;
    left: 30px;
    opacity: 0.35;
    background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
    background-size: 14px 14px;
    border-radius: 0;
}
.deco-dots-2 {
    width: 100px;
    height: 100px;
    top: 60px;
    right: 50px;
    opacity: 0.25;
    background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
    background-size: 14px 14px;
    border-radius: 0;
}

/* ═══════════════════════════════════
   GALLERY
   ═══════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background var(--transition);
}
.gallery-item:hover::after {
    background: rgba(0,0,0,0.1);
}

/* ═══════════════════════════════════
   CONTACT
   ═══════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.contact-card {
    text-align: center;
    padding: 42px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all var(--transition);
}
.contact-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
}
.contact-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
    font-family: var(--font);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-card p { font-size: 15px; color: var(--text); }
.contact-card a { color: var(--text); font-weight: 400; }
.contact-card a:hover { color: var(--gold); }

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.site-footer {
    width: 100%;
}
.footer-cta {
    background: var(--gold);
    padding: 45px 0;
}
.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.footer-cta-text h3 {
    font-size: 26px;
    color: var(--white) !important;
    margin-bottom: 4px;
    font-weight: 500;
    font-family: var(--font-display);
    border-bottom: none !important;
    padding-bottom: 0 !important;
}
.footer-cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}
.footer-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.btn-outline-light {
    padding: 12px 28px;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    background: transparent;
    transition: all var(--transition);
    font-family: var(--font);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--gold-dark);
    border-color: var(--white);
}
.btn-footer-cta {
    padding: 12px 28px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    font-family: var(--font);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.btn-footer-cta:hover {
    background: var(--dark-soft);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.footer-main {
    background: var(--dark);
    color: rgba(255,255,255,0.5);
    padding: 70px 0 50px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.footer-brand img { height: 22px; width: auto; }
.footer-brand span {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    font-weight: 500;
}
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 24px; font-weight: 300; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--gold); border-color: var(--gold); color: var(--white);
}
.footer-col h4 {
    color: var(--white); font-size: 11px; margin-bottom: 22px;
    font-family: var(--font); font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 300; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px !important;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-contact-item a,
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.5; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 22px 0;
}
.footer-bottom-inner {
    display: flex; justify-content: center; align-items: center;
    font-size: 12px; color: rgba(255,255,255,0.25); font-weight: 300;
}
.footer-credit a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-credit a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════
   PAGE TEMPLATES
   ═══════════════════════════════════ */
.page-hero {
    width: 100%; padding: 160px 0 80px;
    background: var(--dark); text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(34px, 4vw, 52px); margin-bottom: 12px; font-weight: 400; }
.page-hero p { color: rgba(255,255,255,0.5); font-size: 16px; font-weight: 300; }

/* Single service */
.service-single { padding: 70px 0 120px; }
.service-single-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.service-main-img { width: 100%; height: 450px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 35px; }
.service-content h2 { font-size: 30px; margin-bottom: 16px; font-weight: 500; }
.service-content p { margin-bottom: 16px; font-size: 15px; line-height: 1.9; font-weight: 300; }
.service-sidebar { position: sticky; top: 110px; }
.service-booking-box {
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 34px; box-shadow: var(--shadow);
}
.service-booking-box h3 { font-size: 22px; margin-bottom: 22px; font-weight: 500; }
.service-booking-price {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 0; border-bottom: 1px solid var(--border);
    margin-bottom: 16px; font-size: 14px; color: var(--text-light);
}
.service-booking-price .price { font-size: 32px; font-weight: 400; color: var(--gold); font-family: var(--font-display); }
.service-booking-details { margin-bottom: 22px; }
.service-booking-details li {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 0; border-bottom: 1px solid var(--border);
    font-size: 14px; list-style: none;
}
.service-booking-details li:last-child { border-bottom: none; }
.service-booking-box .btn { width: 100%; justify-content: center; }
.booking-page { padding: 50px 0 120px; }
.booking-page .container { max-width: 1100px; }

/* WooCommerce section less padding */
.wc-section { padding: 50px 0 80px; }

/* WooCommerce overrides */
.woocommerce-page .container { max-width: 1100px; }

/* Checkout layout */
.woocommerce form.checkout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: start;
}
.woocommerce form.checkout #customer_details,
.woocommerce form.checkout #order_review {
    width: 100% !important;
    float: none !important;
}

.woocommerce-checkout h3,
.wc-block-checkout h3,
.wc-block-checkout__main h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

/* Form fields */
.woocommerce form .form-row {
    margin-bottom: 18px;
}
.woocommerce form .form-row label {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
    display: block;
    letter-spacing: 0.3px;
}
.woocommerce form .form-row .required {
    color: var(--gold);
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(181,149,110,0.1);
}

/* Order review box */
.woocommerce-checkout-review-order {
    background: var(--light);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--border);
}
.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    vertical-align: top;
}
.woocommerce-checkout-review-order-table th {
    color: var(--text-light);
    font-weight: 500;
    text-align: left;
}
.woocommerce-checkout-review-order-table td {
    text-align: right;
    color: var(--dark);
}
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    font-size: 18px;
    font-weight: 600;
    border-bottom: none;
    padding-top: 16px;
}
.woocommerce-checkout-review-order-table .order-total .amount {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 24px;
}

/* Cart item meta in checkout */
.woocommerce-checkout-review-order-table .variation dt,
.woocommerce-checkout-review-order-table dl.variation {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}
.woocommerce-checkout-review-order-table dl.variation dd {
    font-size: 12px;
    margin: 0 0 2px;
}
.woocommerce-checkout-review-order-table dl.variation dd p {
    margin: 0;
}

/* Payment methods */
.woocommerce-checkout-payment {
    margin-top: 20px;
}
.wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wc_payment_method {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 10px;
    background: var(--white);
    transition: border-color 0.2s ease;
}
.wc_payment_method:hover,
.wc_payment_method.active {
    border-color: var(--gold);
}
.wc_payment_method label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
}
.wc_payment_method .payment_box {
    padding: 12px 0 0 24px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Place order button */
#place_order {
    width: 100%;
    padding: 16px 32px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}
#place_order:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(181,149,110,0.3);
}

/* WC notices */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    list-style: none;
}
.woocommerce-error {
    background: #fdf0ef;
    border: 1px solid #f5c6c2;
    color: #8b2500;
}
.woocommerce-message {
    background: #eef7ee;
    border: 1px solid #c3e6c3;
    color: #2d5f2d;
}
.woocommerce-info {
    background: #f0f4f8;
    border: 1px solid #c8d6e5;
    color: #2c3e50;
}

/* Thank you page */
.woocommerce-order-received .woocommerce {
    text-align: center;
    padding: 40px 0;
}
.woocommerce-thankyou-order-received {
    font-size: 20px;
    font-family: var(--font-display);
    color: var(--dark);
    margin-bottom: 20px;
}

/* Hide unnecessary elements */
.woocommerce-checkout .woocommerce-additional-fields { display: none; }
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 { width: 100%; float: none; }

/* ═══════════════════════════════════
   WC BLOCKS CHECKOUT - HIDE FIELDS
   ═══════════════════════════════════ */
/* Hide: country, address, city, state, postcode */
.wc-block-components-address-form__country,
.wc-block-components-address-form__address_1,
.wc-block-components-address-form__address_2-toggle,
.wc-block-components-address-form__address_2-hidden-input,
.wc-block-components-address-form__city,
.wc-block-components-address-form__state,
.wc-block-components-address-form__postcode {
    display: none !important;
}
/* Hide: saved address card (shows old address data) */
.wc-block-components-address-card-wrapper {
    display: none !important;
}
/* Hide billing address title + divider */
#billing-fields > .wc-block-components-checkout-step__heading-container {
    display: none !important;
}
/* Hide: order notes */
#order-notes {
    display: none !important;
}
/* Hide: coupon form */
.wc-block-components-totals-coupon {
    display: none !important;
}
/* Hide: return to cart link */
.wc-block-components-checkout-return-to-cart-button {
    display: none !important;
}

/* ═══════════════════════════════════
   WC BLOCKS CHECKOUT - STYLE
   ═══════════════════════════════════ */
/* Main layout */
.wc-block-checkout.is-large {
    gap: 50px;
}
.wc-block-checkout__main {
    padding-right: 0;
}

/* FORCE sidebar layout side-by-side */
.wc-block-components-sidebar-layout {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr !important;
    gap: 50px !important;
    align-items: start !important;
}
.wc-block-components-sidebar-layout .wc-block-components-main {
    width: 100% !important;
}
.wc-block-components-sidebar-layout .wc-block-components-sidebar {
    width: 100% !important;
    position: sticky !important;
    top: 100px !important;
}

/* Step titles */
.wc-block-components-checkout-step__title {
    font-family: var(--font-display) !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    color: var(--dark) !important;
}

/* Fieldset sections */
.wc-block-components-checkout-step {
    border: none !important;
    padding-left: 0 !important;
    margin-bottom: 10px !important;
}
.wc-block-components-checkout-step::before,
.wc-block-components-checkout-step::after {
    display: none !important;
}
.wc-block-components-checkout-step__heading-container {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* Text inputs */
.wc-block-components-text-input input,
.wc-block-components-text-input textarea {
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    font-family: var(--font) !important;
    color: var(--dark) !important;
    background: var(--white) !important;
    height: auto !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}
.wc-block-components-text-input input:focus,
.wc-block-components-text-input textarea:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(181,149,110,0.1) !important;
    outline: none !important;
}
.wc-block-components-text-input label {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--text) !important;
}
.wc-block-components-text-input.is-active label {
    color: var(--gold) !important;
    font-size: 11px !important;
}

/* Select dropdowns */
.wc-blocks-components-select__select {
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    font-family: var(--font) !important;
}

/* Sidebar - Order summary */
.wc-block-checkout__sidebar {
    padding-left: 0;
}
.wc-block-components-checkout-order-summary__title {
    background: var(--light) !important;
    border-radius: 12px 12px 0 0 !important;
    padding: 18px 20px !important;
    border: 1px solid var(--border) !important;
    border-bottom: none !important;
}
.wc-block-components-checkout-order-summary__title-text {
    font-family: var(--font-display) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: var(--dark) !important;
}
.wc-block-components-checkout-order-summary__content {
    border: 1px solid var(--border) !important;
    border-top: none !important;
    border-radius: 0 0 12px 12px !important;
    padding: 0 !important;
}

/* Order summary items */
.wc-block-components-order-summary-item {
    padding: 16px 20px !important;
    border-bottom: 1px solid var(--border);
}
.wc-block-components-product-name {
    font-family: var(--font-display) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--dark) !important;
}
.wc-block-components-product-details {
    list-style: none !important;
    padding: 0 !important;
    margin: 8px 0 0 !important;
}
.wc-block-components-product-details li {
    font-size: 13px !important;
    color: var(--text-light) !important;
    padding: 2px 0 !important;
}
.wc-block-components-product-details__name {
    color: var(--text-light) !important;
}
.wc-block-components-product-details__value {
    color: var(--dark) !important;
    font-weight: 500 !important;
}

/* Totals */
.wc-block-components-totals-wrapper {
    padding: 0 20px !important;
}
.wc-block-components-totals-item {
    padding: 12px 0 !important;
}
.wc-block-components-totals-item__label {
    font-size: 14px !important;
    color: var(--text-light) !important;
}
.wc-block-components-totals-item__value {
    font-size: 14px !important;
    color: var(--dark) !important;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--dark) !important;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: var(--gold) !important;
    font-family: var(--font-display) !important;
}

/* Payment methods */
.wc-block-components-radio-control__option {
    padding: 14px 16px !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    margin-bottom: 8px !important;
    transition: border-color 0.2s ease !important;
}
.wc-block-components-radio-control__option:hover,
.wc-block-components-radio-control__option--checked {
    border-color: var(--gold) !important;
}
.wc-block-components-radio-control__label {
    font-size: 14px !important;
    font-weight: 500 !important;
}

/* No payment methods error */
.wc-block-checkout__no-payment-methods-notice {
    border-radius: 10px !important;
    padding: 16px 20px !important;
}

/* Place order button */
.wc-block-components-checkout-place-order-button {
    background: var(--gold) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px 32px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: var(--font) !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    justify-content: center !important;
}
.wc-block-components-checkout-place-order-button:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 25px rgba(181,149,110,0.3) !important;
}

/* Terms text */
.wc-block-checkout__terms {
    font-size: 12px !important;
    color: var(--text-light) !important;
}
.wc-block-checkout__terms a {
    color: var(--gold) !important;
}

/* Formatted money - fix $ to € */
.wc-block-formatted-money-amount {
    font-family: var(--font) !important;
}

/* Product image in summary - hide placeholder */
.wc-block-components-order-summary-item__image img[src*="placeholder"] {
    display: none;
}

/* Actions row */
.wc-block-checkout__actions_row {
    justify-content: center !important;
}

/* Error notices */
.wc-block-components-notice-banner {
    border-radius: 10px !important;
    padding: 14px 18px !important;
    margin-bottom: 16px !important;
}

@media (max-width: 768px) {
    .woocommerce form.checkout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .wc-section { padding: 30px 0 60px; }
    .wc-block-checkout.is-large {
        gap: 30px;
    }
    .wc-block-components-sidebar-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .wc-block-components-sidebar-layout .wc-block-components-sidebar {
        position: static !important;
    }
}

/* Category filters */
.cat-filters { display: flex; gap: 8px; margin-bottom: 45px; flex-wrap: wrap; justify-content: center; }
.cat-filters a {
    padding: 9px 24px; border: 1px solid var(--border); border-radius: 50px;
    background: var(--white); font-size: 12px; color: var(--dark);
    font-weight: 500; transition: all 0.2s; letter-spacing: 0.5px;
}
.cat-filters a:hover, .cat-filters a.active {
    background: var(--gold); color: var(--white); border-color: var(--gold);
}

/* ═══════════════════════════════════
   FAQ
   ═══════════════════════════════════ */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    text-align: left;
    line-height: 1.4;
    transition: color var(--transition);
}
.faq-question:hover {
    color: var(--gold);
}
.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform var(--transition);
    font-family: var(--font);
}
.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    overflow: hidden;
    height: 0;
}
.faq-answer p {
    padding: 0 0 24px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
    font-weight: 300;
}

/* ═══════════════════════════════════
   GSAP INITIAL STATES (JS sets inline)
   ═══════════════════════════════════ */
/* Smooth about img for GSAP parallax */
.about-img {
    overflow: hidden;
}
.about-img img {
    will-change: transform;
}
.hero-img-side img {
    will-change: transform;
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1100px) {
    .container, .container-narrow { padding-left: 24px; padding-right: 24px; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-img img, .about-img-placeholder { height: 400px; }
    .about-accent { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .footer-cta-inner { flex-direction: column; text-align: center; }
    .footer-cta-actions { justify-content: center; }
    .service-single-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
}

@media (max-width: 768px) {
    .container, .container-narrow { padding-left: 20px; padding-right: 20px; }
    .menu-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        display: none;
        padding: 10px 20px 30px;
        z-index: 9999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    /* WP admin bar offset */
    .admin-bar .main-nav { top: calc(85px + 32px); }
    .admin-bar .site-header { top: 32px; }
    .main-nav.open { display: block; }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }
    .main-nav li {
        border-bottom: 1px solid var(--border);
        list-style: none;
    }
    .main-nav a {
        display: block;
        padding: 18px 0 !important;
        font-size: 16px;
        color: var(--dark) !important;
        background: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        letter-spacing: 1px;
    }
    .main-nav a:hover {
        color: var(--gold) !important;
        background: none !important;
        box-shadow: none !important;
        transform: none !important;
    }
    /* Mobile CTA - full width gold button */
    .main-nav .menu-cta,
    .main-nav li:last-child {
        margin-top: 20px;
        border-bottom: none !important;
    }
    .main-nav .menu-cta > a,
    .main-nav li:last-child > a {
        display: block !important;
        text-align: center !important;
        padding: 16px 26px !important;
        background: var(--gold) !important;
        color: var(--white) !important;
        border-radius: 50px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
    }
    .main-nav .menu-cta > a:hover,
    .main-nav li:last-child > a:hover {
        background: var(--gold-dark) !important;
    }
    .hero { min-height: auto; flex-direction: column-reverse; }
    .hero-text-side { flex: none; padding: 100px 30px 50px; }
    .hero-img-side { flex: none; height: 50vh; }
    .hero-scroll { display: none; }
    .section { padding: 80px 0; }
    .section-header { margin-bottom: 50px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-cta { padding: 35px 0; }
    .footer-cta-actions { flex-direction: column; width: 100%; }
    .footer-cta-actions .btn,
    .footer-cta-actions .btn-outline-light { width: 100%; justify-content: center; text-align: center; }
    .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
    .features-list { grid-template-columns: 1fr; }
    .cta-section { padding: 70px 0; }
    .deco-shape { display: none; }
    .page-hero { padding: 135px 0 60px; }
}

@media (max-width: 768px) and (max-height: 500px) {
    /* Landscape phones */
    .main-nav a { padding: 12px 0 !important; font-size: 14px; }
}

@media (max-width: 480px) {
    .admin-bar .main-nav { top: calc(85px + 46px); }
    .admin-bar .site-header { top: 46px; }
    .container, .container-narrow { padding-left: 16px; padding-right: 16px; }
    .btn { padding: 14px 28px; font-size: 11px; }
    .process-grid { grid-template-columns: 1fr; }
    .about-badge { right: 16px; bottom: -12px; padding: 16px 24px; }
}

/* ═══════════════════════════════════
   PRELOADER
   ═══════════════════════════════════ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.preloader-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}
.preloader-icon {
    height: 30px;
    width: auto;
}
.preloader-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1;
}
@keyframes preloaderPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}
.preloader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.preloader-progress {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: preloaderBar 1s ease-in-out forwards;
}
@keyframes preloaderBar {
    from { width: 0; }
    to { width: 100%; }
}

/* ═══════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
    z-index: 900;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════
   STICKY PHONE (mobile only)
   ═══════════════════════════════════ */
.sticky-phone {
    display: none;
}
@media (max-width: 768px) {
    .sticky-phone {
        display: flex;
        position: fixed;
        bottom: 24px;
        right: 20px;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--gold);
        color: var(--white);
        align-items: center;
        justify-content: center;
        z-index: 910;
        box-shadow: 0 4px 20px rgba(181,149,110,0.4);
        animation: phonePulse 2.5s ease-in-out infinite;
    }
    .sticky-phone:hover {
        color: var(--white);
    }
    @keyframes phonePulse {
        0%, 100% { box-shadow: 0 4px 20px rgba(181,149,110,0.4); }
        50% { box-shadow: 0 4px 30px rgba(181,149,110,0.6), 0 0 0 8px rgba(181,149,110,0.1); }
    }
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ═══════════════════════════════════
   COOKIE CONSENT (BDAR)
   ═══════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0;
    animation: cookieSlideUp 0.5s ease forwards;
}
@keyframes cookieSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.cookie-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-text p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}
.cookie-text a {
    color: var(--gold-light);
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-accept {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: var(--font);
}
.cookie-accept:hover {
    background: var(--gold-dark);
}
.cookie-decline {
    padding: 10px 24px;
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font);
}
.cookie-decline:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
@media (max-width: 600px) {
    .cookie-inner {
        flex-direction: column;
        text-align: center;
        padding: 18px 20px;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════
   PRIVACY POLICY PAGE
   ═══════════════════════════════════ */
.page-hero--compact {
    padding: 140px 0 55px;
}
.privacy-page {
    padding: 60px 0 100px;
}
.privacy-page .container-narrow {
    max-width: 780px;
}
.privacy-content {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
}
.privacy-intro {
    font-size: 16px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}
.privacy-intro p {
    margin-bottom: 12px;
}

/* Table of contents */
.privacy-nav {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 50px;
}
.privacy-nav h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    font-family: var(--font);
    color: var(--dark);
}
.privacy-nav ol {
    list-style: none;
    counter-reset: toc;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 30px;
}
.privacy-nav li {
    counter-increment: toc;
    margin-bottom: 8px;
}
.privacy-nav li::before {
    content: counter(toc, decimal-leading-zero);
    color: var(--gold);
    font-weight: 600;
    font-size: 12px;
    margin-right: 8px;
}
.privacy-nav a {
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}
.privacy-nav a:hover {
    color: var(--gold);
}

/* Sections */
.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 100px;
}
.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.privacy-section h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 18px;
    display: flex;
    align-items: baseline;
    gap: 14px;
}
.privacy-num {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    flex-shrink: 0;
}
.privacy-section h3 {
    font-size: 17px;
    font-weight: 600;
    font-family: var(--font);
    color: var(--dark);
    margin: 20px 0 10px;
}
.privacy-section p {
    margin-bottom: 12px;
}
.privacy-section ul {
    padding-left: 0;
    margin: 12px 0 18px;
    list-style: none;
}
.privacy-section ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.7;
}
.privacy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}
.privacy-section a {
    color: var(--gold);
    font-weight: 500;
}
.privacy-section a:hover {
    color: var(--gold-dark);
}

/* Card blocks */
.privacy-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 16px 0;
    border-left: 3px solid var(--gold);
}
.privacy-card p {
    margin-bottom: 4px;
    font-size: 14px;
}

/* Rights grid */
.privacy-rights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 18px 0 24px;
}
.privacy-right {
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s ease;
}
.privacy-right:hover {
    border-color: var(--gold);
}
.privacy-right strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 4px;
}
.privacy-right p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .privacy-nav ol { columns: 1; }
    .privacy-rights { grid-template-columns: 1fr; }
    .privacy-section h2 { font-size: 20px; }
}
