/* ========== ACCESSIBILITY ========== */
.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0e0c0b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.preloader-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: #f5f0eb;
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    animation: preloaderReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.preloader-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(201, 169, 110, 0.7);
    opacity: 0;
    transform: translateY(8px);
    animation: preloaderReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

@keyframes preloaderReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ========== CSS VARIABLES ========== */
:root {
    --color-primary: #bd7b73;
    --color-accent: #bd7b73;
    --color-accent-dark: #a66860;
    --color-accent-light: #f5e8e6;
    --color-dark: #1a1614;
    --color-text: #3d3935;
    --color-text-light: #6b6662;
    --color-white: #ffffff;
    --color-cream: #efdede;
    --color-bg: #efdede;
    --color-border: #e6d5d5;
    --color-gold: #c9a96e;
    --color-gold-light: #f0e6d2;
    --color-rose-gold: #bd7b73;
    --color-champagne: #f5efe6;
    --font-display: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
    --shadow-sm: 0 2px 8px rgba(26, 22, 20, 0.06), 0 4px 16px rgba(201, 169, 110, 0.06);
    --shadow-md: 0 4px 12px rgba(26, 22, 20, 0.08), 0 12px 28px rgba(201, 169, 110, 0.10);
    --shadow-lg: 0 8px 20px rgba(26, 22, 20, 0.10), 0 20px 50px rgba(201, 169, 110, 0.14);
    --shadow-luxury: 0 12px 36px rgba(26, 22, 20, 0.12), 0 24px 64px rgba(201, 169, 110, 0.10);
    --gradient-gold: linear-gradient(135deg, #c9a96e 0%, #e0c99a 40%, #c9a96e 100%);
    --gradient-luxury: linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, rgba(201, 169, 110, 0.04) 100%);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.3px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 110, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Flower background decorations — subtle half-opacity */
.section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 580px;
    background: url('../images/flower-bg.png') no-repeat center/contain;
    opacity: 0.15;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
}

.section:nth-child(even)::before {
    right: auto;
    left: -120px;
    transform: translateY(-50%) scaleX(-1);
}

.section:nth-child(3n)::before {
    transform: translateY(-50%) rotate(15deg);
}

.section:nth-child(3n):nth-child(even)::before {
    right: auto;
    left: -120px;
    transform: translateY(-50%) scaleX(-1) rotate(-15deg);
}

.text-center {
    text-align: center;
}

.section-title {
    font-family: var(--font-elegant);
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 6px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(201, 169, 110, 0.35);
}

.section-title::before {
    content: '◆';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gold);
    font-size: 0.65rem;
    opacity: 0.6;
    letter-spacing: 8px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-white);
    color: var(--color-dark);
    border: 1.5px solid rgba(201, 169, 110, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-gold);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35), 0 0 0 1px rgba(201, 169, 110, 0.2);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-white);
    border: 1.5px solid var(--color-accent);
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.25);
}

.btn-accent:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(201, 169, 110, 0.35), 0 0 0 1px rgba(201, 169, 110, 0.15);
}

.btn-cta {
    background: var(--gradient-gold);
    color: #fff;
    padding: 16px 44px;
    font-size: 0.85rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.15);
    box-shadow: 0 6px 24px rgba(201, 169, 110, 0.3);
}

.btn-cta:hover {
    background: linear-gradient(135deg, #b89860 0%, #d4bc8c 40%, #b89860 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(201, 169, 110, 0.4);
    border-color: transparent;
}

.btn-cta i {
    background: rgba(255,255,255,0.2);
    color: var(--color-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.btn-cta:hover i {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.3);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-dark);
    border: 1.5px solid var(--color-border);
}

.btn-light:hover {
    background: var(--color-champagne);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.15);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-centered {
    justify-content: center;
    gap: 0;
}

.navbar-centered .nav-menu {
    flex: 1;
}

.navbar-centered .nav-menu-left {
    justify-content: flex-end;
    padding-right: 50px;
}

.navbar-centered .nav-menu-right {
    justify-content: flex-start;
    padding-left: 50px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-shrink: 0;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    min-width: 80px;
}

.logo-image {
    height: 90px;
    width: auto;
    display: block;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.logo-text {
    font-family: var(--font-elegant);
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 1.9rem;
    white-space: nowrap;
    opacity: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

/* Scrolled state - hide image, show text */
.header.scrolled .logo-image {
    opacity: 0;
    transform: scale(0.7);
    pointer-events: none;
    height: 0;
}

.header.scrolled .logo-text {
    opacity: 1;
    position: relative;
    left: auto;
    transform: translateX(0) translateY(0);
    pointer-events: all;
    color: var(--color-dark);
}

.header.scrolled .nav-logo {
    color: var(--color-dark);
}

.header.scrolled .nav-logo:hover {
    color: var(--color-accent);
}

/* Inner pages - always show text, hide image */
.header-inner .logo-image {
    opacity: 0;
    height: 0;
    pointer-events: none;
}

.header-inner .logo-text {
    opacity: 1;
    position: relative;
    left: auto;
    transform: translateX(0) translateY(0);
    pointer-events: all;
    color: var(--color-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 2px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
    text-shadow: 0 0 12px rgba(201, 169, 110, 0.4);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header.scrolled .nav-link {
    color: var(--color-text);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--color-gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.header.scrolled .menu-toggle span {
    background: var(--color-dark);
}

/* ========== MOBILE NAV DRAWER ========== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--color-white);
    z-index: 1200;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
}

.mobile-drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mobile-drawer-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.mobile-drawer-logo-text {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-dark);
}

.mobile-nav-close {
    background: none;
    border: 1px solid var(--color-border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text);
    font-size: 0.9rem;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.mobile-nav-links {
    padding: 16px 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.mobile-nav-links li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.mobile-nav-links li a i {
    width: 20px;
    text-align: center;
    color: var(--color-accent);
    font-size: 0.85rem;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
    background: var(--gradient-luxury);
    color: var(--color-gold);
    padding-left: 34px;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #1a1614;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.65) 0%, rgba(189,123,115,0.15) 50%, rgba(26,26,26,0.4) 100%);
}

.hero-floral {
    position: absolute;
    width: 300px;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
}

.hero-floral-left {
    left: 0;
    top: 0;
    background-position: left center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 800'%3E%3Cpath d='M20,0 Q60,100 30,200 Q0,300 40,400 Q80,500 20,600 Q-20,700 30,800' stroke='%23c9a96e' stroke-width='1' fill='none' opacity='0.4'/%3E%3Cpath d='M60,0 Q100,150 70,300 Q40,450 80,600' stroke='%23c9a96e' stroke-width='0.8' fill='none' opacity='0.3'/%3E%3Ccircle cx='30' cy='200' r='8' fill='%23c9a96e' opacity='0.2'/%3E%3Ccircle cx='50' cy='400' r='12' fill='%23c9a96e' opacity='0.15'/%3E%3Ccircle cx='25' cy='600' r='6' fill='%23c9a96e' opacity='0.2'/%3E%3Cpath d='M30,180 Q50,170 40,150 M30,180 Q10,170 20,150' stroke='%23c9a96e' stroke-width='0.8' fill='none' opacity='0.3'/%3E%3Cpath d='M50,380 Q70,370 60,350 M50,380 Q30,370 40,350' stroke='%23c9a96e' stroke-width='0.8' fill='none' opacity='0.3'/%3E%3C/svg%3E");
}

.hero-floral-right {
    right: 0;
    top: 0;
    background-position: right center;
    transform: scaleX(-1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 800'%3E%3Cpath d='M20,0 Q60,100 30,200 Q0,300 40,400 Q80,500 20,600 Q-20,700 30,800' stroke='%23c9a96e' stroke-width='1' fill='none' opacity='0.4'/%3E%3Cpath d='M60,0 Q100,150 70,300 Q40,450 80,600' stroke='%23c9a96e' stroke-width='0.8' fill='none' opacity='0.3'/%3E%3Ccircle cx='30' cy='200' r='8' fill='%23c9a96e' opacity='0.2'/%3E%3Ccircle cx='50' cy='400' r='12' fill='%23c9a96e' opacity='0.15'/%3E%3Ccircle cx='25' cy='600' r='6' fill='%23c9a96e' opacity='0.2'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: var(--color-gold);
    letter-spacing: 6px;
    margin-bottom: 16px;
    font-style: italic;
    text-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
}

.hero-title {
    font-family: var(--font-elegant);
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: 36px;
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}
.hero-scroll-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.hero-scroll-line {
    display: block;
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%   { top: -100%; }
    50%  { top: 100%; }
    100% { top: 100%; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ========== PHILOSOPHY SECTION ========== */
/*
 * Architecture:
 *   .philosophy-section  — tall scroll container (320vh)
 *   .philo-viewport      — sticky 100vh frame, overflow:hidden (clips all children)
 *   .philo-text-sticky   — z-index:1, text in upper center (position:absolute inside viewport)
 *   .philo-col-left/right — z-index:2, dual image columns (position:absolute, JS drives translateY)
 *   .philo-fullwidth     — z-index:3, final landscape image (position:absolute, JS drives translateY)
 */
.philosophy-section {
    position: relative;
    background: #ffffff;
    height: 130vh;
}

/* Sticky clipping frame — sticks to viewport, clips all children */
.philo-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: #f8f6f3;
}

/* ── Text layer (z-index 1) ── */
.philo-text-sticky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 14vh 40px 0;
    z-index: 1;
    pointer-events: none;
}

.philosophy-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(150, 110, 60, 0.9);
    margin-bottom: 28px;
    display: block;
}

.philosophy-heading {
    font-family: var(--font-elegant);
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1614;
    letter-spacing: 0.2px;
    margin-bottom: 22px;
    max-width: 760px;
    text-shadow: 0 1px 20px rgba(248,246,243,0.8);
}

.philosophy-heading .philo-word {
    display: inline-block;
    filter: blur(12px);
    opacity: 0.1;
    will-change: filter, opacity;
    transition: filter 0.3s ease, opacity 0.3s ease;
    margin-right: 0.25em;
}

.philosophy-heading .philo-word.sharp {
    filter: blur(0px);
    opacity: 1;
}

.philosophy-credit {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(26, 22, 20, 0.45);
    display: block;
}

/* ── Dual image columns (z-index 2) ── */
/* Absolutely positioned inside .philo-viewport — clipped by overflow:hidden */
/* JS drives translateY to scroll them upward */
.philo-col-left,
.philo-col-right {
    position: absolute;
    top: 0;
    width: 17%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
    transform: translateY(100vh);
}

/* ── Landscape image at the bottom end of side columns (z-index 2) ── */
.philo-landscape {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100vh);
    width: 92%;
    max-width: 1400px;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
}

.philo-landscape img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    margin-bottom: 0;
}

.philo-col-left {
    left: 4%;
}

.philo-col-right {
    right: 4%;
}

.philo-col-left img,
.philo-col-right img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}


/* ========== SERVICES / HOW CAN WE HELP ========== */
.services-help-section {
    background: #ffffff;
    padding: 100px 0 110px;
}

.services-help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.services-help-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1614;
    border: 1px solid rgba(26, 22, 20, 0.2);
    border-radius: 50px;
    padding: 6px 18px;
    margin-bottom: 32px;
}

.services-help-heading {
    font-family: var(--font-elegant);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1614;
    margin-bottom: 24px;
}

.services-help-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(26, 22, 20, 0.7);
    margin-bottom: 16px;
}

.services-help-includes {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1614;
    margin-top: 28px;
    margin-bottom: 16px;
}

.services-help-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
}

.services-help-checklist li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #1a1614;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-help-checklist li i {
    color: rgba(26, 22, 20, 0.5);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.services-help-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #f8f6f3;
    background: #1a1614;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-help-btn:hover {
    background: #2a2420;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 22, 20, 0.2);
}

/* Right column: Service cards */
.services-help-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.service-card-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card-text h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1614;
    margin-bottom: 6px;
}

.service-card-text p {
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(26, 22, 20, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    .services-help-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .services-help-heading {
        font-size: 2rem;
    }
    .services-help-right {
        padding-top: 0;
    }
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio-section {
    background: #efe7e7;
    position: relative;
    padding: 110px 0 120px !important;
    margin-top: 0 !important;
}

/* Header */
.port-header {
    text-align: center;
    margin-bottom: 60px;
}
.port-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 14px;
}
.port-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 16px;
    line-height: 1.15;
}
.port-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(0,0,0,0.5);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Video block */
.port-video-block {
    margin-bottom: 40px;
}

/* TV screen frame */
.video-wrapper {
    position: relative;
    border-radius: 28px;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
    background: linear-gradient(145deg, #2a2a2a 0%, #0a0a0a 40%, #1a1a1a 60%, #2a2a2a 100%);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.25),
        0 2px 0 rgba(255,255,255,0.06) inset,
        0 -2px 0 rgba(0,0,0,0.3) inset;
    transition: all 0.4s ease;
}
.video-wrapper::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    border-radius: 50%;
    z-index: 2;
}
.video-wrapper-wide {
    max-width: 80%;
}
.video-wrapper-wide video,
.video-wrapper-wide img {
    aspect-ratio: 16/7;
}
.video-wrapper img,
.video-wrapper video {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}
.video-wrapper:hover {
    box-shadow:
        0 24px 70px rgba(0,0,0,0.3),
        0 2px 0 rgba(255,255,255,0.08) inset,
        0 -2px 0 rgba(0,0,0,0.3) inset;
    transform: translateY(-3px);
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--gradient-gold);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--color-white);
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5), 0 0 0 20px rgba(201, 169, 110, 0.12);
}
.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.6), 0 0 0 30px rgba(201, 169, 110, 0.15);
    border-color: rgba(255,255,255,0.6);
}

/* Gallery Grid — masonry-style */
.port-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 18px;
    margin-bottom: 50px;
}
.port-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.port-card-tall {
    grid-row: span 2;
}
.port-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.port-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    transform: translateY(-4px);
}
.port-card:hover img {
    transform: scale(1.06);
}
.port-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.port-card-overlay i {
    color: #fff;
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
    transform: scale(0.8);
    transition: transform 0.3s ease;
}
.port-card:hover .port-card-overlay {
    opacity: 1;
}
.port-card:hover .port-card-overlay i {
    transform: scale(1);
}

/* CTA Button */
.port-cta {
    text-align: center;
}
.port-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 16px 44px;
    border-radius: 50px;
    background: #0a0a0a;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.port-btn:hover {
    background: var(--color-gold);
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}
.port-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}
.port-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .portfolio-section { padding: 80px 0 90px !important; }
    .port-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .port-heading { font-size: 2rem; }
    .video-wrapper-wide { max-width: 100%; }
    .video-wrapper-wide video,
    .video-wrapper-wide img { height: 380px; }
    .port-btn { padding: 14px 36px; font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .portfolio-section { padding: 60px 0 70px !important; }
    .port-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 14px; }
    .port-card-tall { grid-row: span 1; }
    .port-header { margin-bottom: 40px; }
    .video-wrapper-wide video,
    .video-wrapper-wide img { height: 260px; }
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: linear-gradient(to bottom, var(--color-cream) 0%, var(--color-white) 50%, var(--color-cream) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0.3;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-label {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--color-accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-title {
    font-family: var(--font-elegant);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    position: relative;
    border-left: 3px solid var(--color-gold);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.about-card-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--color-gold-light);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.15);
    transition: var(--transition);
}

.about-card:hover .about-card-avatar {
    border-color: var(--color-gold);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.25);
}

.about-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.85;
    letter-spacing: 0.2px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-accent);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-item {
    transition: var(--transition);
    padding: 20px;
    border-radius: var(--radius-sm);
}

.stat-item:hover {
    background: var(--gradient-luxury);
    transform: translateY(-4px);
}

.about-right {
    position: relative;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.about-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* ========== PACKAGES SECTION ========== */
.packages-section {
    background: #ffffff;
    position: relative;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.packages-header {
    text-align: center;
    margin-bottom: 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.back-link:hover {
    color: var(--color-accent);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.package-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(201, 169, 110, 0.15);
}

.package-card.featured {
    border: 2px solid var(--color-gold);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.12);
}

.package-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-gold);
    color: #fff;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.package-content {
    padding: 24px;
}

.package-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.package-card:hover .package-name {
    color: var(--color-gold);
    letter-spacing: 1.5px;
}

.package-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.package-features li {
    font-size: 0.88rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
    transition: var(--transition);
}

.package-card:hover .package-features li {
    padding-left: 6px;
}

.package-features li i {
    color: var(--color-gold);
    font-size: 0.8rem;
    transition: var(--transition);
}

.package-card:hover .package-features li i {
    transform: scale(1.2);
}

/* ========== QUOTE SECTION ========== */
.quote-section {
    background: #efe7e7;
    position: relative;
}

.quote-desc {
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 24px;
    line-height: 1.8;
    text-align: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--color-text-light);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    accent-color: var(--color-accent);
}

/* ========== FAQS SECTION ========== */
.faqs-section {
    background: #ffffff;
    position: relative;
}

.faqs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.faq-category {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-accent-light);
}

.faq-item {
    margin-bottom: 8px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: var(--transition);
    border-bottom: 1px solid var(--color-border);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-question i {
    font-size: 0.7rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 12px 0;
    font-size: 0.82rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ========== TESTIMONIAL SECTION (Aperture Style) ========== */
.testi-new-section {
    background: #efe7e7;
    padding: 110px 0 120px;
}

.testi-new-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 72px;
}

.testi-new-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(26,22,20,0.4);
    margin-bottom: 18px;
}

.testi-new-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.15;
    color: #1a1614;
    margin: 0 0 20px;
}

.testi-new-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(26,22,20,0.5);
    margin: 0;
}

/* Slider outer — full width, overflow hidden with fade edges */
.testi-slider-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0 12px;
}

.testi-slider-outer::before,
.testi-slider-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.testi-slider-outer::before {
    left: 0;
    background: linear-gradient(to right, #f8f6f3 0%, transparent 100%);
}

.testi-slider-outer::after {
    right: 0;
    background: linear-gradient(to left, #f8f6f3 0%, transparent 100%);
}

.testi-slider-viewport {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.testi-slider-viewport.dragging {
    cursor: grabbing;
}

.testi-slider-viewport *,
.testi-slider-track *,
.testi-new-card * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.testi-slider-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
    padding: 8px 60px;
}

.testi-new-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(26,22,20,0.07);
    width: 360px;
    flex-shrink: 0;
    transition: box-shadow 0.3s ease;
    user-select: none;
}

.testi-new-card:hover {
    box-shadow: 0 12px 40px rgba(26,22,20,0.08);
}

.testi-new-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.97rem;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(26,22,20,0.75);
    margin: 0;
    flex: 1;
}

.testi-new-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(26,22,20,0.07);
}

.testi-new-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(201,169,110,0.3);
}

.testi-new-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testi-new-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1a1614;
}

.testi-new-city {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(26,22,20,0.45);
}

@media (max-width: 900px) {
    .testi-new-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-new-heading { font-size: 2.4rem; }
}

@media (max-width: 600px) {
    .testi-new-grid { grid-template-columns: 1fr; }
    .testi-new-heading { font-size: 2rem; }
    .testi-new-section { padding: 70px 0 80px; }
}

/* ========== TEAM SECTION ========== */
.team-section {
    background: #ffffff;
}

.team-label {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--color-accent);
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    flex: 0 0 auto;
}

.team-card:nth-child(even) {
    margin-top: 80px;
}

.team-arch {
    position: relative;
    width: 240px;
    height: 320px;
    margin: 0 auto 18px;
    transition: transform 0.4s ease;
}

.team-arch-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

.team-card:hover .team-arch {
    transform: translateY(-8px);
}

.team-photo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 82%;
    height: 90%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    transition: transform 0.4s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.04);
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 5px;
    margin-top: 8px;
}

.team-role {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
    letter-spacing: 0.5px;
}

/* ========== CTA SECTION (NEW) ========== */
.cta-new-section {
    background: #ffffff;
    padding: 70px 40px 0;
    text-align: center;
    overflow: visible;
}

.cta-new-top {
    max-width: 680px;
    margin: 0 auto 44px;
}

.cta-new-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 20px;
}

.cta-new-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #888;
    line-height: 1.7;
    margin: 0 0 32px;
    font-weight: 400;
}

.cta-new-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0a0a0a;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}
.cta-new-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

/* ── Fanned photo cards ── */
.cta-new-cards {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 440px;
    margin-bottom: 0;
    padding-bottom: 30px;
}

/* Base — all cards vertically centered at same midpoint */
.cta-fan-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    top: 50%;
}

.cta-fan-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Left card — tucked behind center, pivots from bottom-right */
.cta-fan-left {
    width: 185px;
    height: 285px;
    transform-origin: center center;
    transform: translateX(-100px) translateY(-50%) rotate(-16deg);
    z-index: 1;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    opacity: 0.88;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.5s ease;
}
.cta-new-cards:hover .cta-fan-left {
    transform: translateX(-200px) translateY(-50%) rotate(-22deg);
    opacity: 1;
}

/* Center card — perfectly straight, largest, highest z */
.cta-fan-center {
    width: 235px;
    height: 370px;
    transform: translateY(-50%);
    z-index: 3;
    box-shadow: none;
}

/* Corner bracket decoration on center card */
.cta-fan-center::before,
.cta-fan-center::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--color-gold);
    border-style: solid;
    z-index: 4;
}
.cta-fan-center::before {
    top: 12px;
    left: 12px;
    border-width: 2px 0 0 2px;
    border-radius: 3px 0 0 0;
}
.cta-fan-center::after {
    bottom: 12px;
    right: 12px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 3px 0;
}

/* Right card — tucked behind center, pivots from bottom-left */
.cta-fan-right {
    width: 185px;
    height: 285px;
    transform-origin: center center;
    transform: translateX(100px) translateY(-50%) rotate(16deg);
    z-index: 1;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    opacity: 0.88;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.5s ease;
}
.cta-new-cards:hover .cta-fan-right {
    transform: translateX(200px) translateY(-50%) rotate(22deg);
    opacity: 1;
}

/* ── Social links ── */
.cta-new-socials {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 20px 0 36px;
    background: #fff;
    position: relative;
    z-index: 5;
}

.cta-new-socials a,
.cta-social-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #888;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}
.cta-new-socials a:hover,
.cta-social-link:hover { color: #0a0a0a; }
.cta-new-socials a i { font-size: 0.7rem; }

@media (max-width: 768px) {
    .cta-new-section { padding: 50px 20px 0; }
    .cta-new-cards { height: 340px; padding-bottom: 20px; }
    .cta-fan-left  { width: 140px; height: 215px; transform: translateX(-75px) translateY(-50%) rotate(-14deg); }
    .cta-fan-center { width: 175px; height: 280px; transform: translateY(-50%); }
    .cta-fan-right { width: 140px; height: 215px; transform: translateX(75px) translateY(-50%) rotate(14deg); }
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 0;
}

.cta-bg {
    position: relative;
    background: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?w=1600&h=700&fit=crop') center/cover no-repeat;
    padding: 120px 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(189,123,115,0.2) 50%, rgba(26,26,26,0.85) 100%);
}

.cta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.cta-label {
    font-family: var(--font-elegant);
    font-size: 0.9rem;
    color: var(--color-gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
}

.cta-title {
    font-family: var(--font-elegant);
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.cta-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    line-height: 1.9;
    letter-spacing: 0.5px;
}

.inquiry-card {
    background: var(--color-accent);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(26, 22, 20, 0.25), 0 0 0 1px rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(255,255,255,0.08);
}

.inquiry-title {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: var(--transition);
    outline: none;
    letter-spacing: 0.3px;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15), 0 4px 12px rgba(201, 169, 110, 0.08);
    transform: translateY(-1px);
}

.inquiry-form textarea {
    resize: vertical;
    margin-bottom: 12px;
}

.inquiry-form .btn-accent {
    background: var(--color-dark);
    margin-top: 8px;
    border-color: rgba(201, 169, 110, 0.3);
}

.inquiry-form .btn-accent:hover {
    background: #2a2522;
    border-color: var(--color-gold);
    box-shadow: 0 8px 24px rgba(26, 22, 20, 0.3), 0 0 0 1px rgba(201, 169, 110, 0.2);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--color-dark);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.footer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.footer-top {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-logo-img {
    height: 72px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.footer-logo-text {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-white);
}

.footer-logo:hover {
    color: var(--color-gold);
}

.footer-logo:hover .footer-logo-text {
    color: var(--color-gold);
}

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

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer-social a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-social a:hover {
    background: var(--gradient-gold);
    color: var(--color-white);
    border-color: rgba(201, 169, 110, 0.5);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
    transform: translateY(-4px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col ul li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-col ul li i {
    color: var(--color-gold);
    font-size: 0.85rem;
    width: 18px;
    opacity: 0.7;
}

.footer-col > p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 16px;
}

.subscribe-form {
    display: flex;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
    background: rgba(255,255,255,0.04);
}

.subscribe-form:focus-within {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.subscribe-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    color: var(--color-white);
    background: transparent;
}

.subscribe-form input::placeholder {
    color: rgba(255,255,255,0.35);
}

.subscribe-form button {
    background: var(--gradient-gold);
    color: var(--color-white);
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.subscribe-form button:hover {
    opacity: 0.85;
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

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

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
}

/* ========== WHY WORK WITH ME — BENTO GRID ========== */
.why-work-section {
    background: #ffffff;
    padding: 120px 0 130px;
}

.why-work-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.1;
    color: #1a1614;
    text-align: center;
    margin-bottom: 18px;
}

.why-work-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(26, 22, 20, 0.5);
    text-align: center;
    max-width: 500px;
    margin: 0 auto 60px;
}

/* ── Bento grid layout ── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto 170px 200px;
    gap: 14px;
}

.bento-card {
    background: #edeae6;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.bento-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1614;
    margin: 0;
}

.bento-title-light {
    color: #fff;
}

/* ── Card 1: Photo stack + experience ── */
.bento-card-1 {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-end;
}

.bento-card-1,
.bento-card-2,
.bento-card-3 {
    background-image: none;
}

.bento-card-1,
.bento-card-2,
.bento-card-3 {
    aspect-ratio: 4 / 5;
}

.bento-photos-stack {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-stack-img {
    position: absolute;
    width: 160px;
    height: 210px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.14);
    border: 3px solid #fff;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

/* Start state: all stacked at center, invisible */
.bento-stack-img.s1 { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(0deg) scale(0.85); opacity: 0; z-index: 1; transition-delay: 0s; }
.bento-stack-img.s2 { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(0deg) scale(0.85); opacity: 0; z-index: 3; transition-delay: 0.1s; }
.bento-stack-img.s3 { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(0deg) scale(0.85); opacity: 0; z-index: 2; transition-delay: 0.2s; }
.bento-stack-img.s4 { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(0deg) scale(0.85); opacity: 0; z-index: 0; transition-delay: 0.15s; }

/* Animated end state — fan out from center */
.bento-photos-stack.animated .s1 { top: 45%; left: 22%; transform: translate(-50%, -50%) rotate(-12deg) scale(1); opacity: 1; }
.bento-photos-stack.animated .s2 { top: 38%; left: 50%; transform: translate(-50%, -50%) rotate(4deg)   scale(1); opacity: 1; }
.bento-photos-stack.animated .s3 { top: 45%; left: 78%; transform: translate(-50%, -50%) rotate(-5deg)  scale(1); opacity: 1; }
.bento-photos-stack.animated .s4 { top: 62%; left: 36%; transform: translate(-50%, -50%) rotate(9deg)   scale(1); opacity: 1; }

/* ── Card 2: Sony G Master lens ── */
.bento-card-2 {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    padding: 0;
}

.bento-lens-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter: drop-shadow(0 10px 28px rgba(0,0,0,0.2));
    z-index: 1;
}

.bento-card2-title {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    margin: 0;
}

/* ── Card 3: Before/After slider ── */
.bento-card-3 {
    grid-column: 3;
    grid-row: 1;
    padding: 0;
}

.bento-ba-container {
    user-select: none;
    -webkit-user-select: none;
    position: absolute;
    inset: 0;
    overflow: hidden;
    cursor: ew-resize;
}

.bento-ba-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bento-ba-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.bento-ba-before-img {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--ba-w, 400px);
    height: 100%;
    object-fit: cover;
    object-position: left center;
    filter: grayscale(1) brightness(0.82) contrast(0.95);
}

.bento-ba-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #fff;
    z-index: 3;
    transform: translateX(-50%);
}

.bento-ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #1a1614;
    font-size: 0.75rem;
    font-weight: 700;
}

.bento-ba-labels {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 14px;
    z-index: 4;
    pointer-events: none;
}

.bento-ba-label {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 20px;
}

.bento-ba-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 4;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ── Card 4: Seamless client experience (spans 2 rows) ── */
.bento-card-4 {
    grid-column: 1;
    grid-row: 2 / 4;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0;
}

.bento-seamless-img {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: calc(100% - 90px);
    object-fit: contain;
    object-position: center bottom;
    display: block;
    z-index: 1;
}

.bento-card-4 .bento-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 24px 24px;
}


/* ── Card 5: Tailored to your vision (spans 2 cols) ── */
.bento-card-5 {
    grid-column: 2 / 4;
    grid-row: 2;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 22px 28px;
}

.bento-card-5 .bento-title {
    flex-shrink: 0;
    max-width: 170px;
}

.bento-vision-img {
    flex: 1;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ── Card 6: Satisfied clients ── */
.bento-card-6 {
    grid-column: 2;
    grid-row: 3;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 28px;
    gap: 0;
}

.bento-c6-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex-shrink: 0;
}

.bento-stars {
    color: #e8622a;
    font-size: 1.45rem;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 4px;
}

.bento-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #1a1614;
    line-height: 1;
}

.bento-stat-label {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #888;
    font-weight: 400;
    margin-top: 4px;
}

.bento-avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: -28px;
}

.bento-avatars img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 3px solid #edeae6;
    object-fit: cover;
    margin-left: -16px;
    flex-shrink: 0;
}

.bento-avatars img:first-child {
    margin-left: 0;
}

.bento-clients-row {
    display: contents;
}

/* ── Card 7: 7 day turnaround with clock ── */
.bento-card-7 {
    grid-column: 3;
    grid-row: 3;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    padding: 24px 24px 0;
}

.bento-turnaround-top {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 0;
    flex-shrink: 0;
}

.bento-clock-icon {
    width: 22px;
    height: 22px;
    color: #1a1614;
    flex-shrink: 0;
}

.bento-turnaround-label {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1614;
    letter-spacing: 0.3px;
    color: #1a1614;
}

.bento-clock-wrap {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.bento-clock-svg {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    margin-bottom: -100px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .why-work-heading { font-size: 2.6rem; }
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .bento-card-1, .bento-card-2, .bento-card-3,
    .bento-card-4, .bento-card-5, .bento-card-6, .bento-card-7 {
        grid-column: 1;
        grid-row: auto;
    }
    .bento-card { min-height: 240px; }
    .bento-card-3 { min-height: 320px; }
    .bento-card-5 { flex-direction: column; }
    .bento-card-5 .bento-title { max-width: 100%; }
    .bento-title { font-size: 1.6rem; }
}

/* ========== CINEMATIC CATEGORIES SECTION ========== */
.categories-section {
    width: 100%;
    overflow: hidden;
}

.category-strip {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    cursor: default;
}

.category-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 22, 20, 0.7) 0%, rgba(26, 22, 20, 0.15) 50%, rgba(26, 22, 20, 0.1) 100%);
    transition: background 0.6s ease;
}

.category-label {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-elegant);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 2;
    white-space: nowrap;
    transition: var(--transition);
}

.category-strip:hover img {
    transform: scale(1.06);
}

.category-strip:hover .category-overlay {
    background: linear-gradient(to top, rgba(26, 22, 20, 0.85) 0%, rgba(26, 22, 20, 0.35) 50%, rgba(26, 22, 20, 0.25) 100%);
}

.category-strip:hover .category-label {
    letter-spacing: 10px;
    text-shadow: 0 4px 30px rgba(201, 169, 110, 0.4);
}

/* ========== LEGACY STATS SECTION ========== */
.legacy-section {
    position: relative;
    background: #1a1614;
    padding: 110px 0 120px;
    overflow: hidden;
    text-align: center;
}

.legacy-bg-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.legacy-section .container {
    position: relative;
    z-index: 1;
}

/* Header */
.legacy-top {
    margin-bottom: 70px;
}

.legacy-eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(201, 169, 110, 0.6);
    margin-bottom: 20px;
}

.legacy-heading {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 28px;
}

.legacy-heading em {
    font-style: italic;
    color: var(--color-gold);
}

.legacy-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.legacy-divider span {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.legacy-divider i {
    font-size: 0.65rem;
    color: var(--color-gold);
}

/* Stats Grid */
.legacy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.legacy-card {
    position: relative;
    padding: 0 30px;
}

.legacy-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.3), transparent);
}

.legacy-card-inner {
    padding: 30px 10px;
    transition: transform 0.4s ease;
}

.legacy-card:hover .legacy-card-inner {
    transform: translateY(-6px);
}

.legacy-num {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: inline;
}

.legacy-suffix {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-left: 2px;
}

.legacy-line {
    width: 32px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 18px auto 16px;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.legacy-card:hover .legacy-line {
    width: 50px;
}

.legacy-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

/* Responsive */
@media (max-width: 900px) {
    .legacy-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
    .legacy-card:nth-child(2)::after { display: none; }
    .legacy-section { padding: 80px 0 90px; }
}

@media (max-width: 480px) {
    .legacy-grid { grid-template-columns: 1fr; gap: 10px 0; }
    .legacy-card::after { display: none !important; }
    .legacy-card-inner { padding: 20px 10px; }
    .legacy-num { font-size: 3rem; }
    .legacy-suffix { font-size: 2rem; }
    .legacy-top { margin-bottom: 50px; }
}


/* ========== GET TO KNOW ME SECTION ========== */
.knowme-section {
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.knowme-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.knowme-grid {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 70px;
    align-items: center;
    min-height: 600px;
}

.knowme-photo {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.knowme-photo::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 80%;
    border-radius: var(--radius);
    background: var(--gradient-luxury);
    border: 1px solid rgba(201, 169, 110, 0.15);
    box-shadow: 0 20px 60px rgba(26, 22, 20, 0.08);
    z-index: 0;
}

.knowme-photo img {
    max-height: 600px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: grayscale(0.05);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.knowme-photo:hover img {
    filter: grayscale(0);
    transform: scale(1.02);
}

.knowme-content {
    padding: 40px 0;
}

.knowme-section-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.knowme-section-title::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--color-gold);
}

.knowme-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    color: var(--color-gold);
    font-size: 0.7rem;
    opacity: 0.5;
}

.knowme-divider::before,
.knowme-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--color-gold), transparent);
}

.knowme-divider::after {
    background: linear-gradient(to left, var(--color-gold), transparent);
}

.knowme-label {
    font-family: var(--font-elegant);
    font-size: 0.9rem;
    color: var(--color-text-light);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.knowme-name {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.knowme-text {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.9;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
}

/* ========== TEAM SECTION ENHANCEMENTS ========== */
.team-label {
    font-family: var(--font-elegant);
    font-size: 2.8rem;
    color: var(--color-dark);
    text-align: center;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 60px;
    font-weight: 500;
}

.team-arch {
    width: 280px;
    height: 370px;
}

.team-name {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.team-role {
    font-size: 1.05rem;
    letter-spacing: 1px;
}

/* ========== VIDEO FULLSCREEN POPUP ========== */
.video-fullscreen-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-fullscreen-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.video-fullscreen-overlay video {
    width: 90%;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.video-fullscreen-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-size: 1.3rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
}

.video-fullscreen-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-champagne);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--color-gold), var(--color-accent));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--color-accent), var(--color-gold));
}

/* ========== INNER PAGE HERO ========== */
.header-inner {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.header-inner .nav-logo {
    color: var(--color-dark);
    font-size: 1.6rem;
}

.header-inner .nav-link {
    color: var(--color-text);
}

.header-inner .nav-link:hover,
.header-inner .nav-link.active {
    color: var(--color-accent);
}

.header-inner .menu-toggle span {
    background: var(--color-dark);
}

.page-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?w=1600&h=500&fit=crop') center/cover no-repeat;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(189,123,115,0.2) 50%, rgba(26,26,26,0.6) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
    transition: var(--transition);
}

.back-home-link:hover {
    color: var(--color-white);
}

.page-hero-title {
    font-family: var(--font-elegant);
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 2px;
}

/* ========== PORTFOLIO TABS ========== */
.portfolio-tabs-section {
    background: var(--color-white);
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0;
}

.portfolio-tab {
    background: none;
    border: none;
    padding: 18px 40px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.portfolio-tab i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.portfolio-tab:hover {
    color: var(--color-gold);
}

.portfolio-tab:hover i {
    transform: scale(1.1);
    color: var(--color-gold);
}

.portfolio-tab.active {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
    background: var(--gradient-luxury);
    font-weight: 600;
}

.portfolio-tab.active i {
    transform: scale(1.15);
    color: var(--color-gold);
}

.portfolio-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.portfolio-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes portFadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Category filter pills ── */
.port-cat-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 32px 0 28px;
}

.port-cat-btn {
    padding: 8px 22px;
    border-radius: 50px;
    border: 1.5px solid rgba(26,22,20,0.15);
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(26,22,20,0.6);
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.port-cat-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.port-cat-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
    font-weight: 600;
}

/* Category tag on overlay */
.port-cat-tag {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.port-play-icon {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
    display: block;
    opacity: 0.9;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    aspect-ratio: 4/5;
}

.portfolio-item:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-luxury);
    transform: translateY(-8px);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 22, 20, 0.92) 0%, rgba(201, 169, 110, 0.15) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: var(--color-white);
}

.portfolio-info i {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.portfolio-info h3 {
    font-family: var(--font-display);
    letter-spacing: 1px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: var(--color-white);
}

.portfolio-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.portfolio-video-item .portfolio-overlay {
    background: linear-gradient(135deg, rgba(26, 22, 20, 0.9) 0%, rgba(201, 169, 110, 0.4) 100%);
}

/* ========== QUOTE FORM NEW ========== */
.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: -10px auto 30px;
    font-size: 0.95rem;
}

.quote-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 56px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.quote-block {
    margin-bottom: 28px;
    position: relative;
}

.quote-block-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #efe7e7;
}

.quote-block-title i {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.event-day-badge {
    background: var(--gradient-gold);
    color: #fff;
    font-size: 0.68rem;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.quote-form .form-group {
    flex: 1;
    min-width: 0;
}

.quote-form .form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 6px;
}

.quote-form .form-group label .req {
    color: #ef4444;
}

.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e8e0e0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #1a1a1a;
    background: #faf7f7;
    transition: all 0.3s ease;
}

.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.08);
}

.quote-form .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.quote-form .form-row.full .form-group {
    width: 100%;
}

.quote-add-day {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 22px;
    margin-bottom: 24px;
    background: #faf7f7;
    border-radius: 14px;
    border: 2px dashed #e0d6d6;
}

.quote-add-day p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a4040;
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    padding: 9px 22px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gradient-gold);
    color: #fff;
}

.quote-divider {
    border: none;
    border-top: 1.5px solid #efe7e7;
    margin: 30px 0;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.remove-day-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: #ef4444;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.remove-day-btn:hover {
    background: #fef2f2;
}

/* ========== CREATIVE SUBMIT BUTTON ========== */
.btn-submit-creative {
    width: 100%;
    justify-content: center;
    padding: 18px 40px;
    background: var(--gradient-gold);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 24px rgba(201, 169, 110, 0.3);
    margin-top: 10px;
}

.btn-submit-creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.7s ease;
}

.btn-submit-creative:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #b89860 0%, #d4bc8c 40%, #b89860 100%);
    box-shadow: 0 12px 36px rgba(201, 169, 110, 0.4);
    letter-spacing: 3px;
}

.btn-submit-creative:hover::before {
    left: 100%;
}

.btn-submit-creative:active {
    transform: translateY(0) scale(0.98);
}

.btn-submit-creative i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-submit-creative:hover i {
    transform: translateX(4px);
}

/* ========== SUCCESS POPUP OVERLAY ========== */
.success-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.success-popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.success-popup {
    background: var(--color-white);
    border-radius: 24px;
    padding: 60px 50px;
    text-align: center;
    max-width: 460px;
    width: 90%;
    transform: scale(0.8) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.success-popup-overlay.active .success-popup {
    transform: scale(1) translateY(0);
}

.success-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.success-popup-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: popIn 0.6s ease 0.2s both;
}

.success-popup-icon i {
    font-size: 2.2rem;
    color: #2e7d32;
}

@keyframes popIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.success-popup h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.success-popup p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.success-popup .btn-close-popup {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--gradient-gold);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.success-popup .btn-close-popup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}

/* Confetti particles */
.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    opacity: 0;
}

.success-popup-overlay.active .confetti {
    animation: confettiFall 1.5s ease forwards;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(-50px) rotate(0deg) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(20px) rotate(180deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(100px) rotate(360deg) scale(0.5);
    }
}

/* ========== FAQs SINGLE COLUMN ========== */
.faqs-grid-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.faqs-grid-single .faq-item {
    background: var(--color-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    padding: 0;
    transition: var(--transition);
}

.faqs-grid-single .faq-item:hover {
    border-color: var(--color-gold-light);
    box-shadow: var(--shadow-sm);
}

.faqs-grid-single .faq-question {
    padding: 18px 20px;
    border-bottom: none;
    font-size: 0.88rem;
    font-weight: 500;
}

.faqs-grid-single .faq-answer p {
    padding: 0 20px 18px;
}

.faqs-grid-single .faq-item.active {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-sm);
}

/* ========== PACKAGES CTA SECTION ========== */
.pkg-cta-section {
    padding: 100px 0 110px;
    background: linear-gradient(135deg, #1a1614 0%, #2a2420 100%);
    position: relative;
    overflow: hidden;
}
.pkg-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201,169,110,0.3) 50%, transparent 100%);
}
.pkg-cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.pkg-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.2;
}
.pkg-cta-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0 0 40px;
}
.pkg-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.pkg-cta-btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.pkg-cta-btn-primary {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}
.pkg-cta-btn-primary:hover {
    background: transparent;
    color: var(--color-gold);
    transform: translateY(-2px);
}
.pkg-cta-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.pkg-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* ========== PORTFOLIO TAB BANNER ========== */
.port-tab-banner {
    position: relative;
    width: 100%;
    height: 88vh;
    min-height: 520px;
    overflow: hidden;
}

.port-tab-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.port-tab-banner-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.port-tab-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.port-tab-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26,22,20,0.15) 0%,
        rgba(26,22,20,0.50) 55%,
        rgba(26,22,20,0.88) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 0 0 120px 0;
}

.port-tab-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

/* Prominent back button */
.port-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 28px;
    padding: 10px 22px 10px 16px;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.4);
    border-radius: 50px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.port-back-btn i {
    width: 28px;
    height: 28px;
    background: var(--color-gold);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.port-back-btn:hover {
    background: rgba(201,169,110,0.28);
    border-color: rgba(201,169,110,0.7);
    transform: translateX(-3px);
}
.port-back-btn:hover i {
    transform: translateX(-2px);
}

.port-tab-banner-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 14px;
    opacity: 0.9;
}

.port-tab-banner-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 16px;
}

.port-tab-banner-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    margin: 0;
}

/* ── Segmented control tab switcher ── */
.port-tab-pills {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.port-tab-track {
    position: relative;
    display: flex;
    background: rgba(26,22,20,0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 50px;
    padding: 5px;
    gap: 0;
}

/* Sliding gold pill indicator */
.port-tab-indicator {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    background: var(--gradient-gold);
    border-radius: 50px;
    transition: left 0.35s cubic-bezier(0.4,0,0.2,1), width 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
    box-shadow: 0 4px 16px rgba(201,169,110,0.35);
}

.port-tab-pill {
    position: relative;
    z-index: 1;
    background: none;
    border: none;
    padding: 12px 36px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.port-tab-pill i {
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.port-tab-pill.active {
    color: var(--color-dark);
    font-weight: 600;
}

.port-tab-pill.active i {
    color: var(--color-dark);
}

.port-tab-pill:hover:not(.active) {
    color: rgba(255,255,255,0.8);
}

/* Tab content panels */
.port-tab-content {
    display: none;
    padding: 0 0 80px;
}
.port-tab-content.active { display: block; }

.port-cat-section {
    background: #f8f6f3;
}

/* Section banner inside categories */
.port-cat-section-banner {
    background: var(--color-dark);
    padding: 28px 40px;
    margin-bottom: 48px;
}

.port-cat-section-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.port-cat-section-banner-icon {
    font-size: 1.6rem;
    color: var(--color-gold);
    width: 52px;
    height: 52px;
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.port-cat-section-banner-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.port-cat-section-banner-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin: 3px 0 0;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .port-tab-banner { height: 70vh; min-height: 400px; }
    .port-tab-banner-overlay { padding-bottom: 110px; }
    .port-tab-banner-content { padding: 0 20px; }
    .port-tab-pill { padding: 10px 22px; font-size: 0.72rem; }
    .port-tab-pills { bottom: 20px; }
    .port-cat-section-banner { padding: 20px; }
}

/* ========== PORTFOLIO CATEGORY CARDS (main portfolio page) ========== */
.port-cat-section-header { margin-bottom: 28px; }
.port-section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(26,22,20,0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.port-cat-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.port-cat-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(26,22,20,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.port-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(26,22,20,0.12);
}
.port-cat-card-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.port-cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.port-cat-card:hover .port-cat-card-img img { transform: scale(1.06); }
.port-cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,22,20,0.85) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.port-cat-card:hover .port-cat-card-overlay { opacity: 1; }
.port-cat-card-icon {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}
.port-cat-card-cta {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}
.port-cat-card-info { padding: 18px 20px 20px; }
.port-cat-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1614;
    margin: 0 0 6px;
}
.port-cat-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: rgba(26,22,20,0.5);
    line-height: 1.55;
    margin: 0 0 8px;
}
.port-cat-card-count {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gold);
}
@media (max-width: 768px)  { .port-cat-cards-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ========== PORTFOLIO CATEGORY PAGE HERO BANNER ========== */
.cat-hero-banner {
    position: relative;
    width: 100%;
    height: 72vh;
    min-height: 460px;
    overflow: hidden;
}

.cat-hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cat-hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26,22,20,0.2) 0%,
        rgba(26,22,20,0.55) 55%,
        rgba(26,22,20,0.92) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 0 0 60px 0;
}

.cat-hero-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

.cat-hero-banner-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.cat-hero-banner-icon {
    color: var(--color-gold);
    font-size: 1rem;
}

.cat-hero-banner-type {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.cat-hero-banner-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 14px;
}

.cat-hero-banner-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    margin: 0;
}

@media (max-width: 768px) {
    .cat-hero-banner { height: 55vh; min-height: 360px; }
    .cat-hero-banner-overlay { padding-bottom: 40px; }
    .cat-hero-banner-content { padding: 0 20px; }
}

/* ========== VIDEO GRID ========== */
.cat-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.cat-video-item {
    background: var(--color-dark);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201,169,110,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cat-video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(26,22,20,0.25);
}

.cat-video-wrap {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
}

.cat-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cat-video-info {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cat-video-play-icon {
    color: var(--color-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cat-video-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.3px;
}

.cat-empty-msg {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: rgba(26,22,20,0.4);
    text-align: center;
    padding: 60px 0;
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .cat-video-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ========== PORTFOLIO CATEGORY GALLERY PAGE ========== */
.cat-page-hero { min-height: 38vh; }
.cat-gallery-section {
    background: #f8f6f3;
    padding: 60px 0 100px;
}
.cat-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.cat-gallery-grid {
    columns: 3;
    column-gap: 20px;
}
.cat-gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.cat-gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: unset;
    border-radius: 12px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform-origin 0s;
    will-change: transform;
}
.cat-gallery-item.zoomed img {
    transform: scale(1.5);
}
@media (max-width: 900px) { .cat-gallery-grid { columns: 2; } .cat-gallery-container { padding: 0 20px; } }
@media (max-width: 560px) { .cat-gallery-grid { columns: 1; } }

/* Lightbox */
.cat-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,8,7,0.96);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cat-lightbox.active { display: flex; }
.cat-lb-img-wrap {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-lb-img-wrap img {
    max-width: 90vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.cat-lb-close {
    position: fixed;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.8rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 100000;
}
.cat-lb-close:hover { opacity: 1; }
.cat-lb-prev, .cat-lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 2.2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 100000;
}
.cat-lb-prev { left: 20px; }
.cat-lb-next { right: 20px; }
.cat-lb-prev:hover, .cat-lb-next:hover { background: rgba(255,255,255,0.25); }
.cat-lb-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* ========== ABOUT US PAGE (v3 — dark moody) ========== */

/* ── Camera Cursor ── */
.ab-hero { cursor: none; }
.ab-hero a, .ab-hero button { cursor: none; }

.cam-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.cam-cursor.active {
    opacity: 1;
}
.cam-cursor-icon {
    color: #fff;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.5));
    display: block;
    transition: transform 0.1s ease;
}
.cam-cursor.flash .cam-cursor-icon {
    transform: scale(0.75);
    filter: drop-shadow(0 0 14px rgba(255,255,255,0.9));
}

/* Shutter flash overlay */
.cam-shutter {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.35);
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transform: translate(0,0);
    left: auto;
    top: auto;
}
.cam-shutter.flash {
    animation: camFlash 0.2s ease-out forwards;
}
@keyframes camFlash {
    0%   { opacity: 1; }
    100% { opacity: 0; }
}

/* Popup bubble */
.cam-popup {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}
.cam-popup.show {
    opacity: 1;
    transform: translateY(0);
}
.cam-popup.hide {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.cam-popup-text {
    display: inline-block;
    background: #fffdf8;
    color: #3a3a3a;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.08);
    letter-spacing: 0.2px;
}
.cam-popup-arrow {
    position: absolute;
    bottom: -5px;
    left: 20px;
    width: 10px;
    height: 10px;
    background: #fffdf8;
    transform: rotate(45deg);
    box-shadow: 2px 2px 4px rgba(0,0,0,0.06);
    border-radius: 1px;
}

/* ── Interactive Hero ── */
.ab-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Parallax wrapper + slow zoom on load */
.ab-hero-parallax {
    position: absolute;
    inset: -30px;
    will-change: transform;
    transition: transform 0.15s ease-out;
}
.ab-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: abHeroBgZoom 18s ease-out forwards;
}
@keyframes abHeroBgZoom {
    0%   { transform: scale(1.12); }
    100% { transform: scale(1); }
}

/* Overlay */
.ab-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18,22,20,0.3) 0%, rgba(18,22,20,0.55) 35%, rgba(18,22,20,0.88) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.ab-hero-content {
    text-align: center;
    padding: 0 30px;
    max-width: 760px;
}

/* Label */
.ab-hero-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 18px;
}

/* Title */
.ab-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 10px;
}
.ab-hero-title em {
    font-style: italic;
    color: var(--color-gold);
}

/* Divider line */
.ab-hero-divider {
    display: flex;
    justify-content: center;
    margin: 22px 0 26px;
}
.ab-hero-divider span {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
}

/* Description */
.ab-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto 14px;
}
.ab-hero-desc-secondary {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.42);
    margin-bottom: 14px;
}
.ab-hero-desc-accent {
    font-size: 0.88rem;
    color: rgba(201,169,110,0.7);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 30px;
}

/* Buttons */
.ab-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.ab-hero-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    position: relative;
    overflow: hidden;
}
.ab-hero-btn i { margin-left: 6px; font-size: 0.72rem; transition: transform 0.3s ease; }
.ab-hero-btn:hover i { transform: translateX(3px); }

.ab-hero-btn-fill {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}
.ab-hero-btn-fill:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,169,110,0.3);
}
.ab-hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.22);
}
.ab-hero-btn-outline:hover {
    background: #fff;
    color: #0a0a0a;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}

/* Scroll hint */
.ab-hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}
.ab-hero-scroll-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.ab-hero-scroll-line {
    display: block;
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.ab-hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    animation: abScrollPulse 2s ease-in-out infinite;
}
@keyframes abScrollPulse {
    0%   { top: -100%; }
    50%  { top: 100%; }
    100% { top: 100%; }
}

/* Staggered entrance animation */
.ab-anim {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s cubic-bezier(0.25,0.46,0.45,0.94),
                transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.ab-anim.ab-visible {
    opacity: 1;
    transform: translateY(0);
}
.ab-hero-scroll-hint.ab-anim {
    transform: translateX(-50%) translateY(32px);
}
.ab-hero-scroll-hint.ab-anim.ab-visible {
    transform: translateX(-50%) translateY(0);
}

/* ── Our Mission (Philosophy-style) ── */
.mis-section {
    position: relative;
    background: url('../images/About us/OUR MISSION.png') center center / cover no-repeat;
    height: 130vh;
}
.mis-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: transparent;
}

/* Text layer */
.mis-text-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 14vh 40px 0;
    z-index: 1;
    pointer-events: none;
}
.mis-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(201, 169, 110, 0.9);
    margin-bottom: 28px;
    display: block;
}
.mis-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    letter-spacing: 0.2px;
    margin-bottom: 22px;
    max-width: 760px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.mis-heading .mis-word {
    display: inline-block;
    filter: blur(12px);
    opacity: 0.1;
    will-change: filter, opacity;
    transition: filter 0.3s ease, opacity 0.3s ease;
    margin-right: 0.25em;
}
.mis-heading .mis-word.sharp {
    filter: blur(0px);
    opacity: 1;
}
.mis-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}
.mis-sub.mis-sub-visible {
    opacity: 1;
    transform: translateY(0);
}
.mis-credit {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    display: block;
}

/* Dual image columns */
.mis-col {
    position: absolute;
    top: 0;
    width: 17%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
    transform: translateY(100vh);
}
.mis-col-left { left: 4%; }
.mis-col-right { right: 4%; }

.mis-col img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

/* Landscape image */
.mis-landscape {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100vh);
    width: 92%;
    max-width: 1400px;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
}
.mis-landscape img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

/* ── Section Divider ── */
.ab-section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201,169,110,0.3) 50%, transparent 100%);
    margin: 0;
}

/* ── What Makes Us Different ── */
.ab-diff {
    position: relative;
    background: #0e0e0c;
    padding: 110px 0 120px;
    overflow: hidden;
}
.ab-diff-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(6rem, 14vw, 14rem);
    font-weight: 800;
    color: rgba(255,255,255,0.018);
    letter-spacing: 12px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.ab-diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.ab-diff-left {
    position: sticky;
    top: 120px;
}
.ab-diff-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 28px;
}
.ab-diff-title em {
    font-style: italic;
    color: var(--color-gold);
}
.ab-diff-closing {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: rgba(201,169,110,0.65);
    font-style: italic;
    line-height: 1.75;
    max-width: 360px;
    border-left: 2px solid rgba(201,169,110,0.3);
    padding-left: 20px;
}

/* Right column — numbered list */
.ab-diff-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ab-diff-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.35s ease, padding-left 0.35s ease;
    border-radius: 8px;
}
.ab-diff-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
}
.ab-diff-item:hover {
    background: rgba(255,255,255,0.02);
    padding-left: 14px;
}
.ab-diff-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(201,169,110,0.15);
    line-height: 1;
    flex-shrink: 0;
    min-width: 50px;
    transition: color 0.35s ease;
}
.ab-diff-item:hover .ab-diff-num {
    color: rgba(201,169,110,0.5);
}
.ab-diff-body {
    flex: 1;
}
.ab-diff-point {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
}
.ab-diff-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin: 0;
}

/* ── Shared label ── */
.ab-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}
.ab-label-light { color: rgba(201,169,110,0.9); }

/* ── Services / Zigzag ── */
.ab-services {
    padding: 90px 0 70px;
    background: #f5f3f0;
    position: relative;
}
.ab-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/About us/Services We Offer.png') center center / cover no-repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}
.ab-services > * {
    position: relative;
    z-index: 1;
}
.ab-services-header {
    text-align: center;
    margin-bottom: 60px;
}
.ab-services-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

/* Zigzag timeline */
.ab-zigzag {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}
.ab-zigzag::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(to bottom, rgba(0,0,0,0.12) 0px, rgba(0,0,0,0.12) 6px, transparent 6px, transparent 12px);
    transform: translateX(-50%);
}

.ab-zz-row {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: center;
    margin-bottom: 10px;
}

.ab-zz-dot {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.ab-zz-dot span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-gold);
    border: 3px solid #f5f3f0;
    display: block;
}

.ab-zz-content {
    padding: 28px 30px;
}
.ab-zz-left { text-align: right; }
.ab-zz-right { text-align: left; }

.ab-zz-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 8px;
}
.ab-zz-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #777;
    line-height: 1.7;
    margin: 0 0 12px;
}
.ab-zz-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0a0a0a;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}
.ab-zz-link:hover { color: var(--color-gold); }
.ab-zz-link i { font-size: 0.7rem; margin-left: 4px; }

.ab-zz-spacer { min-height: 1px; }

.ab-services-cta {
    text-align: center;
    margin-top: 50px;
}
.ab-pill-btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 13px 34px;
    border-radius: 50px;
    background: #0a0a0a;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ab-pill-btn:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
}

/* ── Full-width Banner ── */
.ab-banner {
    width: 100%;
    height: 45vh;
    min-height: 280px;
    overflow: hidden;
}
.ab-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Founder ── */
.ab-founder {
    position: relative;
    background: #f5f3f0;
    overflow: hidden;
}
.ab-founder-overlay {
    position: relative;
    padding: 90px 0;
}
.ab-founder-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: center;
}
.ab-founder-photo {
    display: flex;
    justify-content: center;
}
.ab-founder-photo img {
    width: 100%;
    max-width: 340px;
    border-radius: 22px;
    display: block;
}
.ab-founder-name {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #1a1614;
    margin: 0 0 20px;
    line-height: 1.15;
}
.ab-founder-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(26,22,20,0.65);
    line-height: 1.8;
    margin: 0 0 16px;
}
.ab-founder-text strong {
    color: #1a1614;
    font-weight: 600;
}
.ab-founder-socials {
    display: flex;
    gap: 10px;
    margin: 20px 0 24px;
}
.ab-founder-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(26,22,20,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(26,22,20,0.5);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ab-founder-socials a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
    transform: translateY(-3px);
}
.ab-founder-btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 50px;
    background: var(--color-dark);
    border: 1px solid var(--color-dark);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ab-founder-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark);
}
.ab-founder-btn i { margin-left: 6px; font-size: 0.75rem; }

/* ── Stats ── */
.ab-stats {
    position: relative;
    background: #0e0e0c;
    overflow: hidden;
}
.ab-stats-overlay {
    position: relative;
    padding: 100px 0 110px;
}
.ab-stats-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(40px, 8vw, 100px);
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}
.ab-stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 180px;
}

/* Luxury icon circle */
.ab-stat-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, rgba(201,169,110,0.05) 100%);
    border: 2px solid rgba(201,169,110,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(201,169,110,0.1), inset 0 1px 0 rgba(255,255,255,0.1);
}
.ab-stat-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.ab-stat-item:hover .ab-stat-icon-wrap {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(201,169,110,0.6);
    box-shadow: 0 8px 30px rgba(201,169,110,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}
.ab-stat-item:hover .ab-stat-icon-wrap::before {
    opacity: 1;
}
.ab-stat-icon {
    font-size: 2rem;
    color: var(--color-gold);
    filter: drop-shadow(0 2px 8px rgba(201,169,110,0.3));
    transition: all 0.3s ease;
}
.ab-stat-item:hover .ab-stat-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(201,169,110,0.5));
}

/* Content */
.ab-stat-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ab-stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.ab-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(201,169,110,0.3);
    transition: color 0.3s ease;
}
.ab-stat-item:hover .ab-stat-num {
    color: var(--color-gold);
}
.ab-stat-plus {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.9;
}
.ab-stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* ── Team ── */
.ab-team {
    padding: 90px 0;
    background: #f5f3f0;
}
.ab-team-header {
    text-align: center;
    margin-bottom: 50px;
}
.ab-team-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}
.ab-team-grid {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}
.ab-team-card {
    text-align: center;
    width: 200px;
}
.ab-team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--color-gold);
}
.ab-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ab-team-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0a0a0a;
    margin: 0 0 4px;
}
.ab-team-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: #777;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto 12px;
}
.ab-team-desc:last-of-type {
    margin-bottom: 0;
}
.ab-team-role {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

/* ── Meet the Team (description) ── */
.ab-meet-team {
    padding: 90px 0 100px;
    background: #fff;
}
.ab-meet-team-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.ab-meet-team-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.25;
    margin: 0 0 30px;
}
.ab-meet-team-body p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.85;
    margin: 0 0 16px;
}
.ab-meet-team-body p:last-child {
    margin-bottom: 0;
}

/* ── Why Choose Us ── */
.ab-why {
    position: relative;
    background: #0e0e0c;
    padding: 110px 0 120px;
    overflow: hidden;
}
.ab-why-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 800;
    color: rgba(255,255,255,0.018);
    letter-spacing: 10px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.ab-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.ab-why-left {
    position: sticky;
    top: 120px;
}
.ab-why-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 24px;
}
.ab-why-title em {
    font-style: italic;
    color: var(--color-gold);
}
.ab-why-lead {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}

/* Checklist */
.ab-why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.ab-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: padding-left 0.3s ease;
}
.ab-why-list li:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
}
.ab-why-list li:hover {
    padding-left: 10px;
}
.ab-why-list li i {
    color: var(--color-gold);
    font-size: 0.72rem;
    margin-top: 5px;
    flex-shrink: 0;
    opacity: 0.7;
}
.ab-why-list li span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* Focus line */
.ab-why-focus {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.45);
    margin: 0 0 28px;
}

/* Quote block */
.ab-why-quote {
    font-family: 'Poppins', sans-serif;
    font-size: 1.08rem;
    color: rgba(201,169,110,0.75);
    font-style: italic;
    line-height: 1.7;
    border-left: 2px solid rgba(201,169,110,0.35);
    padding-left: 22px;
    margin: 0;
}
.ab-why-quote strong {
    color: var(--color-gold);
    font-weight: 600;
}

/* ── About Page Responsive ── */
@media (max-width: 900px) {
    .ab-hero { height: 90vh; }
    .ab-hero-content { max-width: 600px; }
    .ab-hero-desc-secondary { font-size: 0.8rem; }
    .mis-heading { font-size: 2.6rem; }
    .mis-col { width: 22%; }
    .mis-landscape img { height: 400px; }
    .ab-diff-grid { grid-template-columns: 1fr; gap: 50px; }
    .ab-diff-left { position: static; }
    .ab-diff-closing { max-width: 100%; }
    .ab-why-grid { grid-template-columns: 1fr; gap: 50px; }
    .ab-why-left { position: static; }
    .ab-zigzag::before { left: 20px; }
    .ab-zz-row { grid-template-columns: 40px 1fr; }
    .ab-zz-spacer { display: none; }
    .ab-zz-left, .ab-zz-right { text-align: left; }
    .ab-zz-dot { justify-content: center; }
    .ab-founder-grid { grid-template-columns: 1fr; gap: 40px; }
    .ab-founder-photo { order: -1; }
    .ab-founder-photo img { max-width: 280px; }
}
@media (max-width: 600px) {
    .pkg-cta-section { padding: 70px 0 80px; }
    .pkg-cta-title { font-size: 1.8rem; }
    .pkg-cta-buttons { gap: 12px; }
    .pkg-cta-btn { padding: 13px 32px; font-size: 0.82rem; }
    .ab-hero { height: 100vh; min-height: 540px; }
    .ab-hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .ab-hero-desc { font-size: 0.84rem; }
    .ab-hero-desc-secondary { font-size: 0.78rem; }
    .ab-hero-desc-accent { font-size: 0.82rem; }
    .ab-hero-content { padding: 0 20px; }
    .ab-hero-scroll-hint { bottom: 24px; }
    .ab-hero-btn { padding: 11px 24px; font-size: 0.78rem; }
    .mis-heading { font-size: 1.8rem; max-width: 90%; }
    .mis-text-layer { padding: 10vh 20px 0; }
    .mis-sub { font-size: 0.78rem; max-width: 90%; }
    .mis-col { display: none; }
    .mis-landscape { width: 96%; }
    .mis-landscape img { height: 300px; }
    .ab-diff { padding: 70px 0 80px; }
    .ab-diff-title { font-size: 1.8rem; }
    .ab-diff-num { font-size: 1.6rem; min-width: 36px; }
    .ab-diff-item { gap: 16px; padding: 24px 0; }
    .ab-meet-team { padding: 60px 0 70px; }
    .ab-meet-team-title { font-size: 1.5rem; }
    .ab-why { padding: 70px 0 80px; }
    .ab-why-title { font-size: 1.8rem; }
    .ab-why-list li { padding: 14px 0; }
    .ab-services { padding: 70px 0 50px; }
    .ab-banner { height: 30vh; min-height: 200px; }
    .ab-founder-overlay { padding: 60px 0; }
    .ab-stats-row { gap: 40px; }
    .ab-team { padding: 70px 0; }
    .ab-founder-socials a { width: 36px; height: 36px; font-size: 0.82rem; }
}

/* ========== BLOG SECTION STYLES ========== */
.blog-hero {
    background: linear-gradient(135deg, #161210 0%, #241d19 100%);
    position: relative;
    padding: 130px 0 70px;
    text-align: center;
}
.page-hero-subtitle {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent, #c9a96e);
    margin-bottom: 12px;
    font-weight: 600;
}
.blog-listing-section {
    background: #faf8f5;
    padding: 70px 0 100px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.1);
}
.blog-card-img-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #241d19;
}
.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog-card:hover .blog-card-img {
    transform: scale(1.06);
}
.blog-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(22, 18, 16, 0.75);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.74rem;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.15);
}
.blog-card-body {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    color: #8c827a;
    margin-bottom: 12px;
}
.blog-card-meta i {
    color: var(--color-accent, #c9a96e);
    margin-right: 4px;
}
.blog-card-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--color-dark, #161210);
    font-weight: 600;
}
.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}
.blog-card-title a:hover {
    color: var(--color-accent, #c9a96e);
}
.blog-card-excerpt {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #5c544e;
    margin-bottom: 20px;
    flex: 1;
}
.blog-card-footer {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 16px;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent, #c9a96e);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: gap 0.25s ease;
}
.blog-read-more:hover {
    gap: 12px;
    color: #a8883f;
}
.empty-blog-state {
    text-align: center;
    padding: 70px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px dashed rgba(0,0,0,0.12);
}
.empty-blog-state .empty-icon {
    font-size: 3rem;
    color: var(--color-accent, #c9a96e);
    margin-bottom: 16px;
}

/* ========== SINGLE BLOG POST ARTICLE ========== */
.blog-post-hero {
    background: linear-gradient(135deg, #161210 0%, #201a17 100%);
    padding: 130px 0 60px;
    text-align: center;
}
.blog-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}
.blog-breadcrumbs a {
    color: var(--color-accent, #c9a96e);
    text-decoration: none;
}
.blog-breadcrumbs .sep {
    color: rgba(255,255,255,0.3);
}
.blog-breadcrumbs .current {
    color: rgba(255,255,255,0.85);
}
.blog-article-hero-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    max-width: 860px;
    margin: 0 auto 18px;
    line-height: 1.3;
    font-weight: 600;
}
.blog-article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.7);
}
.blog-article-meta i {
    color: var(--color-accent, #c9a96e);
}
.blog-article-meta .dot {
    color: rgba(255,255,255,0.3);
}
.blog-article-section {
    background: #ffffff;
    padding: 50px 0 90px;
}
.blog-article-container {
    max-width: 820px;
    margin: 0 auto;
}
.blog-article-cover {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.blog-article-cover img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}
.blog-article-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #3b3632;
}
.blog-article-body p {
    margin-bottom: 24px;
}
.blog-heading-2 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.8rem;
    color: var(--color-dark, #161210);
    margin: 40px 0 18px;
    line-height: 1.35;
    font-weight: 600;
}
.blog-heading-3 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.4rem;
    color: var(--color-dark, #161210);
    margin: 32px 0 14px;
    line-height: 1.4;
    font-weight: 600;
}
.blog-blockquote {
    border-left: 4px solid var(--color-accent, #c9a96e);
    background: #faf8f5;
    padding: 20px 24px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #4a423d;
}
.blog-author-card {
    display: flex;
    gap: 24px;
    align-items: center;
    background: #faf8f5;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    margin: 50px 0 36px;
}
.blog-author-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #161210;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px;
}
.blog-author-avatar img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.blog-author-info h4 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: var(--color-dark, #161210);
}
.blog-author-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #665d56;
    margin-bottom: 12px;
}
.blog-author-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.blog-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 28px;
}
.blog-share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #665d56;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.share-btn.whatsapp { background: #25d366; }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #0f1419; }

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-author-card { flex-direction: column; text-align: center; }
    .blog-author-links { justify-content: center; }
    .blog-article-footer { flex-direction: column; align-items: stretch; text-align: center; }
    .blog-share-buttons { justify-content: center; }
}

/* ========== SELECTION ========== */
::selection {
    background: var(--color-accent);
    color: var(--color-white);
}

