:root {
    --gold: #B5756A;
    --gold-light: #CFA09A;
    --gold-pale: #F2E0DD;
    --dark: #080808;
    --dark-2: #121212;
    --dark-3: #1C1C1C;
    --dark-4: #262626;
    --cream: #F0EEEC;
    --cream-2: #DEDAD9;
    --text-muted: #808080;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--dark);
    color: var(--cream);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

a:visited,
a:hover,
a:active {
    color: inherit;
}

/* ─── CURSOR ─── */
* {
    cursor: none;
}

@media (hover: none), (pointer: coarse) {
    * {
        cursor: auto;
    }

    #cursor,
    #cursor-ring {
        display: none;
    }
}

#cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

#cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease, width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0.5;
}

body:hover #cursor {
    opacity: 1;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(14,12,8,0.95) 0%, transparent 100%);
    backdrop-filter: blur(0px);
    transition: var(--transition);
}


}
nav.menu-open {
    z-index: 400;
    background: var(--dark);
    position: fixed; 
    width: 100%;
    top: 0;
}

nav.scrolled {
    background: rgba(14,12,8,0.97);
    backdrop-filter: blur(12px);
    padding: 1rem 4rem;
    border-bottom: 1px solid rgba(181,117,106,0.15);
}

/* NAV LOGO */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    height: 64px;        /* збільшіть або зменшіть під ваш смак */
    width: auto;
    display: block;
    object-fit: contain;
}

/* При скролі навбар стає менший — лого теж */
nav.scrolled .nav-logo img {
    height: 56px;
    transition: height var(--transition);
}

@media (max-width: 1024px) {
    .nav-logo img {
        height: 46px;
    }
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo-img {
    display: block;
    height: 32px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: filter var(--transition);
}

.nav-logo-img:hover {
    filter: brightness(1.1);
}

/* На темному фоні - якщо лого вже золотого кольору, фільтр допоможе */
.nav.scrolled .nav-logo-img {
    filter: brightness(1);
}

/* MOBILE */
@media (max-width: 1024px) {
    .nav-logo-img {
        height: 28px;
        max-width: 160px;
    }
}

@media (max-width: 640px) {
    .nav-logo-img {
        height: 24px;
        max-width: 140px;
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-2);
    text-decoration: none;
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: 0.65rem 1.6rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--gold);
}

.nav-cta:hover {
    background: transparent;
    color: var(--gold);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 4rem 4rem;
    background-image: url("../images/fon.png");
    background-size: cover;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(181,117,106,0.06) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 80% 20%, rgba(181,117,106,0.04) 0%, transparent 60%);
}

.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-lines::before {
    content: '';
    position: absolute;
    top: -20%;
    right: 15%;
    width: 1px;
    height: 140%;
    background: linear-gradient(to bottom, transparent 0%, rgba(181,117,106,0.2) 30%, rgba(181,117,106,0.2) 70%, transparent 100%);
}

.hero-lines::after {
    content: '';
    position: absolute;
    top: -20%;
    right: 35%;
    width: 1px;
    height: 140%;
    background: linear-gradient(to bottom, transparent 0%, rgba(181,117,106,0.08) 30%, rgba(181,117,106,0.08) 70%, transparent 100%);
}

.lion-watermark {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-52%);
    width: 50%;
    max-width: 560px;
    opacity: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-eyebrow span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: 1.0;
    margin-bottom: 0.3rem;
    color: var(--cream);
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 1.8rem 0 2rem;
    max-width: 500px;
    border-left: 1px solid rgba(181,117,106,0.4);
    padding-left: 1.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: var(--transition);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--cream-2);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color var(--transition);
}

.btn-ghost svg {
    transition: transform var(--transition);
}

.btn-ghost:hover {
    color: var(--gold);
}

.btn-ghost:hover svg {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    z-index: 2;
    margin-top: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.5;
}

.stat-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.3rem;
}



/* ─── ABOUT ─── */
.about {
    padding: 7rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-photo {
    position: relative;
}

.photo-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.photo-frame img,
.photo-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-border {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    border: 1px solid rgba(181,117,106,0.3);
    pointer-events: none;
    z-index: -1;
}

.photo-tag {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--gold);
    color: var(--dark);
    padding: 0.8rem 1.2rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-eyebrow-line {
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-eyebrow span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.about-text h2 em {
    font-style: italic;
    color: var(--gold);
}

.about-text p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.team-block {
    margin-top: 2.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(181,117,106,0.2);
    background: var(--dark-2);
}

.team-block-title {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.team-member {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.6rem 0.5rem;
    border-top: 1px solid rgba(181,117,106,0.1);
    cursor: none;
    transition: background 0.25s;
    border-radius: 2px;
}

.team-member:first-of-type {
    border-top: none;
}

.team-member:hover {
    background: rgba(181,117,106,0.06);
}

.team-member.active-member .team-dot {
    background: var(--gold);
    box-shadow: 0 0 6px rgba(181,117,106,0.5);
}

.team-member.active-member .team-role {
    color: var(--cream);
}

.team-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(181,117,106,0.4);
    margin-top: 6px;
    flex-shrink: 0;
    transition: background 0.3s, box-shadow 0.3s;
}

.team-role {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--cream-2);
    transition: color 0.3s;
}

.team-desc {
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--text-muted);
}

/* ─── TEAM SLIDER ─── */
.team-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1.2rem;
    background: var(--dark-3);
}

.team-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.team-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.team-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.team-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 1rem 0.8rem;
    background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 100%);
}

.team-slide-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
}

.team-slide-role {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.2rem;
}

.team-slider-dots {
    position: absolute;
    bottom: 0.8rem;
    right: 0.8rem;
    display: flex;
    gap: 0.4rem;
    z-index: 2;
}

.team-dot-btn {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: background 0.3s, transform 0.3s;
    cursor: none;
}

.team-dot-btn.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ─── SERVICES ─── */
.services-section {
    padding: 7rem 4rem;
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(181,117,106,0.4), transparent);
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(181,117,106,0.4), transparent);
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--cream);
}

.services-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.services-header p {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(181,117,106,0.15);
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--dark-2);
    padding: 3rem 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: var(--dark-3);
}

.service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(181,117,106,0.12);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color var(--transition);
}

.service-card:hover .service-num {
    color: rgba(181,117,106,0.25);
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.8rem;
}

.service-desc {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
}

.service-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
    border: 1px solid rgba(181,117,106,0.25);
}

.service-featured .service-title {
    font-size: 1.8rem;
}

.service-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ─── CASES ─── */
.cases-section {
    padding: 7rem 4rem;
}

.cases-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.cases-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--cream);
}

.cases-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.cases-header p {
    max-width: 300px;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: right;
}

/* ─── CASES SLIDER ─── */
.cases-slider-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.cases-slider {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.cases-slide {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 0;
}

.cases-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: var(--dark-2);
    border: 1px solid rgba(181,117,106,0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
    cursor: none;
}

.cases-arrow:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.cases-arrow-prev { left: -1.5rem; }
.cases-arrow-next { right: -1.5rem; }

.cases-arrow:disabled {
    opacity: 0.25;
    pointer-events: none;
}

.cases-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
}

.cases-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(181,117,106,0.25);
    border: none;
    transition: background 0.3s, transform 0.3s;
    cursor: none;
}

.cases-dot.active {
    background: var(--gold);
    transform: scale(1.35);
}

.case-card {
    background: var(--dark-2);
    border: 1px solid rgba(181,117,106,0.1);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.case-card:hover {
    border-color: rgba(181,117,106,0.3);
    transform: translateY(-3px);
}

.case-tag {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(181,117,106,0.3);
}

.case-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1rem;
}

.case-desc {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.case-metrics {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(181,117,106,0.15);
}

.case-metric-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
}

.case-metric-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.case-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.case-service-pill {
    padding: 0.25rem 0.7rem;
    border: 1px solid rgba(181,117,106,0.2);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
    padding: 7rem 4rem;
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(181,117,106,0.4), transparent);
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(181,117,106,0.4), transparent);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--cream);
}

.testimonials-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: var(--dark);
    border: 1px solid rgba(181,117,106,0.12);
    padding: 2.5rem;
    transition: var(--transition);
}

.testimonial:hover {
    border-color: rgba(181,117,106,0.3);
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: rgba(181,117,106,0.2);
    line-height: 1;
    margin-bottom: -0.5rem;
}

.testimonial-text {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--cream-2);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    padding-top: 1.2rem;
    border-top: 1px solid rgba(181,117,106,0.15);
}

.testimonial-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.05em;
}

.testimonial-biz {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--gold);
    margin-top: 0.2rem;
}

.stars {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* ─── CONTACT ─── */
.contact-section {
    padding: 7rem 4rem;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.contact-info h2 em {
    font-style: italic;
    color: var(--gold);
}

.contact-info p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(181,117,106,0.15);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    border-color: rgba(181,117,106,0.4);
    background: var(--dark-2);
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(181,117,106,0.3);
    color: var(--gold);
    flex-shrink: 0;
}

.social-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.social-handle {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cream-2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input,
.form-textarea,
.form-select {
    background: var(--dark-2);
    border: 1px solid rgba(181,117,106,0.2);
    color: var(--cream);
    padding: 0.9rem 1.1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
    appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: rgba(181,117,106,0.6);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: none;
    height: 120px;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23B5756A' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-select option {
    background: var(--dark-2);
}

.form-submit {
    background: var(--gold);
    color: var(--dark);
    border: 1px solid var(--gold);
    padding: 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition);
    width: 100%;
}

.form-submit:hover {
    background: transparent;
    color: var(--gold);
}

.form-note {
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

#form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(181,117,106,0.3);
    background: rgba(181,117,106,0.05);
}

#form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

#form-success p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ─── FOOTER ─── */
footer {
    padding: 2.5rem 4rem;
    border-top: 1px solid rgba(181,117,106,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
}

.footer-copy {
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 {
    transition-delay: 0.1s;
}

.fade-up-delay-2 {
    transition-delay: 0.2s;
}

.fade-up-delay-3 {
    transition-delay: 0.3s;
}

/* ─── BURGER MENU ─── */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    padding: 4px;
    position: fixed;
    top: 1rem;
    right: 2rem;
    z-index: 9000;
    cursor: none;
}

.nav-burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--cream);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.4s ease,
                background 0.3s ease;
    transform-origin: center;
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
    background: var(--gold);
}

.nav-burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
    background: var(--gold);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 8000;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(181,117,106,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.mobile-menu-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 600;
    color: var(--cream-2);
    text-decoration: none;
    letter-spacing: 0.05em;
    line-height: 1.2;
    transition: color 0.3s ease;
    display: block;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.open .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open .mobile-menu-links li:nth-child(1) .mobile-menu-link {
    transition-delay: 0.05s;
}

.mobile-menu.open .mobile-menu-links li:nth-child(2) .mobile-menu-link {
    transition-delay: 0.10s;
}

.mobile-menu.open .mobile-menu-links li:nth-child(3) .mobile-menu-link {
    transition-delay: 0.15s;
}

.mobile-menu.open .mobile-menu-links li:nth-child(4) .mobile-menu-link {
    transition-delay: 0.20s;
}

.mobile-menu.open .mobile-menu-links li:nth-child(5) .mobile-menu-link {
    transition-delay: 0.25s;
}

.mobile-menu-link:hover {
    color: var(--gold);
}

.mobile-menu-cta {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: background 0.3s ease, color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: background 0.3s ease, color 0.3s ease, opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.mobile-menu.open .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-cta:hover {
    background: transparent;
    color: var(--gold);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    nav {
        padding: 1.5rem 2rem;
    }

    nav.scrolled {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .mobile-menu.open {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 6rem 2rem 4rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .lion-watermark {
        display: none;
    }

    .about,
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
    }

    .about-photo {
        max-width: 400px;
    }

    .team-slider {
        aspect-ratio: 4/3;
    }

    .services-section,
    .cases-section,
    .testimonials-section,
    .contact-section {
        padding: 4rem 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-featured {
        grid-column: span 1;
    }

    .cases-slide {
        flex: 0 0 100%;
    }

    .cases-arrow-prev { left: 0; }
    .cases-arrow-next { right: 0; }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cases-header {
        flex-direction: column;
        gap: 1rem;
    }

    .cases-header p {
        text-align: left;
    }

    footer {
        padding: 2rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ─── BLOG ─── */
.seo-content-block {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.blog-hero {
    padding: 11rem 0 6rem;
}

.blog-hero h1 {
    max-width: 850px;
    margin-top: 1.5rem;
}

.blog-hero p {
    max-width: 700px;
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
}

.blog-section {
    padding-bottom: 7rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: var(--dark-2);
    border: 1px solid rgba(181,117,106,0.1);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(181,117,106,0.35);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    display: block;
}

.blog-card-content {
    padding: 2rem;
}

.blog-category {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(181,117,106,0.3);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.blog-card h2 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cream);
}

.blog-card p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.88rem;
    font-weight: 300;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: gap var(--transition);
}

.blog-link:hover {
    gap: 0.8rem;
}

/* ─── ARTICLE ─── */
.article-page {
    padding: 11rem 0 7rem;
}

.article-page img {
    width: 100%;
    margin: 2.5rem 0;
    display: block;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.article-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--cream);
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

.article-content p,
.article-content li {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-muted);
    font-weight: 300;
}

.article-content p {
    margin-bottom: 1.2rem;
}

.article-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

